diff --git a/5.differential-expression.ipynb b/5.differential-expression.ipynb new file mode 100644 index 0000000..888fe55 --- /dev/null +++ b/5.differential-expression.ipynb @@ -0,0 +1,845 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Compute cancer-type-specific differential expression scores for each gene\n", + "\n", + "Compares tumor to normal tissue in the same patient." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import os\n", + "\n", + "import pandas\n", + "import numpy\n", + "from scipy.stats import ttest_1samp" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "path = os.path.join('data', 'complete', 'expression-matrix.tsv.bz2')\n", + "expr_df = pandas.read_table(path, index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sample_idpatient_idsample_typediseaseacronymorgan_of_origingenderage_diagnoseddeaddays_survivedrecurreddays_recurrence_free
35TCGA-02-0047-01TCGA-02-0047Primary Tumorglioblastoma multiformeGBMBrainMale78.01.0448.0NaNNaN
40TCGA-02-0055-01TCGA-02-0055Primary Tumorglioblastoma multiformeGBMBrainFemale62.01.076.0NaNNaN
\n", + "
" + ], + "text/plain": [ + " sample_id patient_id sample_type disease \\\n", + "35 TCGA-02-0047-01 TCGA-02-0047 Primary Tumor glioblastoma multiforme \n", + "40 TCGA-02-0055-01 TCGA-02-0055 Primary Tumor glioblastoma multiforme \n", + "\n", + " acronym organ_of_origin gender age_diagnosed dead days_survived \\\n", + "35 GBM Brain Male 78.0 1.0 448.0 \n", + "40 GBM Brain Female 62.0 1.0 76.0 \n", + "\n", + " recurred days_recurrence_free \n", + "35 NaN NaN \n", + "40 NaN NaN " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "path = os.path.join('data', 'complete', 'samples.tsv')\n", + "sample_df = (\n", + " pandas.read_table(path)\n", + " # Filter for samples with expression\n", + " .query(\"sample_id in @expr_df.index\")\n", + ")\n", + "patient_df = sample_df[['patient_id', 'acronym']].drop_duplicates()\n", + "sample_df.head(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sample_typepatient_idPrimary TumorSolid Tissue Normalacronym
0TCGA-22-4593TCGA-22-4593-01TCGA-22-4593-11LUSC
1TCGA-22-4609TCGA-22-4609-01TCGA-22-4609-11LUSC
\n", + "
" + ], + "text/plain": [ + "sample_type patient_id Primary Tumor Solid Tissue Normal acronym\n", + "0 TCGA-22-4593 TCGA-22-4593-01 TCGA-22-4593-11 LUSC\n", + "1 TCGA-22-4609 TCGA-22-4609-01 TCGA-22-4609-11 LUSC" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type_df = sample_df.pivot('patient_id', 'sample_type', values='sample_id')\n", + "type_df = type_df[['Primary Tumor', 'Solid Tissue Normal']]\n", + "# Filter for paired samples\n", + "type_df = type_df[type_df.isnull().sum(axis='columns') == 0]\n", + "type_df = type_df.reset_index().merge(patient_df)\n", + "type_df.head(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def get_diffex(subtype_df, expr_df):\n", + " \"\"\"\n", + " For each gene, compute differential expression between paired tumor and normal tissue.\n", + " \"\"\"\n", + " tumor_df = expr_df.loc[list(subtype_df['Primary Tumor']), :]\n", + " normal_df = expr_df.loc[list(subtype_df['Solid Tissue Normal']), :]\n", + " for df in tumor_df, normal_df:\n", + " df.index = subtype_df.index\n", + " \n", + " diffex_df = tumor_df - normal_df\n", + " ttest = ttest_1samp(diffex_df, popmean=0, axis=0)\n", + "\n", + " df = pandas.DataFrame.from_items([\n", + " ('entrez_gene_id', diffex_df.columns),\n", + " ('patients', len(diffex_df)),\n", + " ('tumor_mean', tumor_df.mean()),\n", + " ('normal_mean', normal_df.mean()),\n", + " ('mean_diff', diffex_df.mean()),\n", + " ('t_stat', ttest.statistic),\n", + " ('mlog10_p_value', -numpy.log10(ttest.pvalue)),\n", + " ])\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "diffex_df = (type_df\n", + " .groupby('acronym')\n", + " .apply(get_diffex, expr_df=expr_df)\n", + " .reset_index('acronym')\n", + " .query(\"patients >= 5\")\n", + ")\n", + "\n", + "diffex_df.entrez_gene_id = diffex_df.entrez_gene_id.astype(int)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "20468" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add gene symbols\n", + "path = os.path.join('data', 'expression-genes.tsv')\n", + "gene_df = pandas.read_table(path, low_memory=False)\n", + "gene_df = gene_df[['entrez_gene_id', 'symbol']]\n", + "len(gene_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
acronymentrez_gene_idpatientstumor_meannormal_meanmean_difft_statmlog10_p_valuesymbol
347951UCEC10050743678.1414299.184286-1.042857-2.9785661.607613MICA
347952UCEC100652748710.5871439.1985711.3885714.3625332.322631TIMM23B
347953UCEC10106032175.0157141.5692863.4464292.1929361.150042TBC1D3G
347954UCEC10272354770.8401430.2371430.6030002.2516171.185114CSAG2
347955UCEC10272463170.0000000.0000000.000000NaNNaNPOTEB3
\n", + "
" + ], + "text/plain": [ + " acronym entrez_gene_id patients tumor_mean normal_mean mean_diff \\\n", + "347951 UCEC 100507436 7 8.141429 9.184286 -1.042857 \n", + "347952 UCEC 100652748 7 10.587143 9.198571 1.388571 \n", + "347953 UCEC 101060321 7 5.015714 1.569286 3.446429 \n", + "347954 UCEC 102723547 7 0.840143 0.237143 0.603000 \n", + "347955 UCEC 102724631 7 0.000000 0.000000 0.000000 \n", + "\n", + " t_stat mlog10_p_value symbol \n", + "347951 -2.978566 1.607613 MICA \n", + "347952 4.362533 2.322631 TIMM23B \n", + "347953 2.192936 1.150042 TBC1D3G \n", + "347954 2.251617 1.185114 CSAG2 \n", + "347955 NaN NaN POTEB3 " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "diffex_df = diffex_df.merge(gene_df, how='left')\n", + "diffex_df.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "path = os.path.join('data', 'complete', 'differential-expression.tsv.bz2')\n", + "diffex_df.to_csv(path, sep='\\t', index=False, compression='bz2', float_format='%.4g')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
acronympatientsdisease
0BRCA114breast invasive carcinoma
1KIRC72kidney clear cell carcinoma
2THCA59thyroid carcinoma
3LUAD58lung adenocarcinoma
4PRAD52prostate adenocarcinoma
5LUSC51lung squamous cell carcinoma
6LIHC50liver hepatocellular carcinoma
7HNSC43head & neck squamous cell carcinoma
8KIRP32kidney papillary cell carcinoma
9STAD32stomach adenocarcinoma
10COAD26colon adenocarcinoma
11KICH25kidney chromophobe
12BLCA19bladder urothelial carcinoma
13ESCA11esophageal carcinoma
14CHOL9cholangiocarcinoma
15UCEC7uterine corpus endometrioid carcinoma
16READ6rectum adenocarcinoma
17PAAD4pancreatic adenocarcinoma
18CESC3cervical & endocervical cancer
19PCPG3pheochromocytoma & paraganglioma
20THYM2thymoma
21SARC2sarcoma
\n", + "
" + ], + "text/plain": [ + " acronym patients disease\n", + "0 BRCA 114 breast invasive carcinoma\n", + "1 KIRC 72 kidney clear cell carcinoma\n", + "2 THCA 59 thyroid carcinoma\n", + "3 LUAD 58 lung adenocarcinoma\n", + "4 PRAD 52 prostate adenocarcinoma\n", + "5 LUSC 51 lung squamous cell carcinoma\n", + "6 LIHC 50 liver hepatocellular carcinoma\n", + "7 HNSC 43 head & neck squamous cell carcinoma\n", + "8 KIRP 32 kidney papillary cell carcinoma\n", + "9 STAD 32 stomach adenocarcinoma\n", + "10 COAD 26 colon adenocarcinoma\n", + "11 KICH 25 kidney chromophobe\n", + "12 BLCA 19 bladder urothelial carcinoma\n", + "13 ESCA 11 esophageal carcinoma\n", + "14 CHOL 9 cholangiocarcinoma\n", + "15 UCEC 7 uterine corpus endometrioid carcinoma\n", + "16 READ 6 rectum adenocarcinoma\n", + "17 PAAD 4 pancreatic adenocarcinoma\n", + "18 CESC 3 cervical & endocervical cancer\n", + "19 PCPG 3 pheochromocytoma & paraganglioma\n", + "20 THYM 2 thymoma\n", + "21 SARC 2 sarcoma" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Patients with paired samples per disease\n", + "path = os.path.join('download', 'diseases.tsv')\n", + "acronym_df = pandas.read_table(path)\n", + "\n", + "(type_df.acronym\n", + " .value_counts().rename('patients')\n", + " .reset_index().rename(columns={'index': 'acronym'})\n", + " .merge(acronym_df)\n", + " .sort_values('patients', ascending=False)\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Reduce expression dimensionality with NMF" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.decomposition import NMF\n", + "import matplotlib.pyplot as plt\n", + "import seaborn\n", + "\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
01234
sample_id
TCGA-02-0047-011.9668270.9772090.0000000.0000000.015947
TCGA-02-0055-011.9909940.0063280.0181050.0042370.019024
TCGA-02-2483-011.8791991.5461180.0000000.0000000.000000
TCGA-02-2485-011.9854020.3808070.0000000.0000000.000000
TCGA-02-2486-012.0753010.0000000.0000000.0182770.021438
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4\n", + "sample_id \n", + "TCGA-02-0047-01 1.966827 0.977209 0.000000 0.000000 0.015947\n", + "TCGA-02-0055-01 1.990994 0.006328 0.018105 0.004237 0.019024\n", + "TCGA-02-2483-01 1.879199 1.546118 0.000000 0.000000 0.000000\n", + "TCGA-02-2485-01 1.985402 0.380807 0.000000 0.000000 0.000000\n", + "TCGA-02-2486-01 2.075301 0.000000 0.000000 0.018277 0.021438" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nmf = NMF(n_components=100, random_state=0)\n", + "expr_nmf_df = nmf.fit_transform(expr_df)\n", + "expr_nmf_df = pandas.DataFrame(expr_nmf_df, index=expr_df.index)\n", + "expr_nmf_df.iloc[:5, :5]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
acronymcomponentpatientstumor_meannormal_meanmean_difft_statmlog10_p_value
0BLCA0192.1247742.163064-0.038290-2.0879211.289979
1BLCA1190.0212200.0047350.0164850.8136640.370111
\n", + "
" + ], + "text/plain": [ + " acronym component patients tumor_mean normal_mean mean_diff t_stat \\\n", + "0 BLCA 0 19 2.124774 2.163064 -0.038290 -2.087921 \n", + "1 BLCA 1 19 0.021220 0.004735 0.016485 0.813664 \n", + "\n", + " mlog10_p_value \n", + "0 1.289979 \n", + "1 0.370111 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "diffex_nmf_df = (type_df\n", + " .groupby('acronym')\n", + " .apply(get_diffex, expr_df=expr_nmf_df)\n", + " .reset_index('acronym')\n", + " .rename(columns={'entrez_gene_id': 'component'})\n", + " .query(\"patients >= 5\")\n", + ")\n", + "diffex_nmf_df.head(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxQAAAH8CAYAAABIC+lXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAAPYQAAD2EBqD+naQAAIABJREFUeJzs3XmcpFdV+P9P9To9azLZE7aEkBOIEDYFxMguIHEUBUbg\nK0KiAoIsPwQhiCIoEZAlBCRsshli2BkQRFABQXZUlsBJAgnLkD2ZzFY9vVT9/qia2Onn1kx1TS/V\n3Z/365VXpk+deurWs1Wdus+9T63ZbCJJkiRJvRhY6gZIkiRJWr4sKCRJkiT1zIJCkiRJUs8sKCRJ\nkiT1zIJCkiRJUs8sKCRJkiT1zIJCkiRJUs8sKCRJkiT1zIJCkiRJUs8sKCRJkiT1bGipGzAfIuJ0\n4DXAvYE68HngWZl5bUQ8GDgXOBX4CXBuZr5vyRorSZIkrSC1ZrPZVeLTanfoLnGeXNC8stZNXkSM\n0CoU3gC8GtgIfBC4EXgGcBnwTOAi4AxgG3BGZn5rAZqtskXddyRJkuagq++c6qzrHoqxwb5d12uB\nc4B3ZWYDuCEiPkyriHgikJn57nbuv0XENuAPgD9ektZKkiRJK8gcCor+HG6RmTuAf9j/d0QE8GTg\nYuBewOyeiG8Bj1us9kmSJEkrWdcFxbo+LSj2i4jb0bq8aRB4K/BS4FPAT2el3ggcuaiNkyRJklao\nlXDJEwCZ+RNgNCLuSKugeG/7of5uuCRJkrSMdV1QrB/q7x6K/TLzhxHxYuC/gH8GjpiVcgRw7aI3\nTKvW1q1bqdfrS90MadGNjY1x8cUXL3UzJEkLbNn3UETEg4A3Z+apM8LN9n9fAx4z6ym/CHx1kZon\nUa/X2bZt21I3Q1p0W7ZsWeomSJIWwUroofgmsDEiXklr3MR64C+BLwBvBp4XEWcBFwIPAR4J3Gdp\nmipJkiStLF0XFCPDgwvZjp5l5s6IeBjwRuA6YDfw78DZmXl9RJwJnA+8CbgSeGJmfm+p2itJkiSt\nJF0XFENj/XtT7XaB8KAOj30RuMfitkiSJElaHbrvoVg3vJDtkCRJkrQMdd9DsaZ/eygkSZIkLY3u\neyjWjyxkOyRJkiQtQ/ZQSFKfWGn3LNm+ffuKmjrW+2pIUtkceigcQyFJC8l7lvS3lVQcSdJ8WhE9\nFBHxcODdwL9n5hNmxB8A/Acw3g7VaN3w7vcy80OL3lBJkiRphem6Shhet2Yh29GziHg+cBZwaYeU\nKzPzpEVskiRJkrRqdF1QDK4ZXch2HIo68EvAG4C+baQkaX4t9piTxR4T4pgNScvFsu+hyMw3AkRE\np5SNEfFh4Axalz69NjNft0jNkyQtkJU+5sQxG5KWizn0UCzLaWN3At8GXgs8jtbdtD8QETdl5ruW\nsmGSJEnSSrDseygOJDP/G3jwjNBnIuIC4CnAu5akUZKkvtVPU/du376dE044genp6SVtxwknnMAJ\nJ5ywpG0ALwGT+tkcZnlaMcMTrgR+Z6kbIUnqP/12GdWWLVv6qj1LyUvApP7VfUGxDHsoIuIxwJGZ\necGM8F2AHy1RkyRJkqQVpeuCYmBk+RUUwATwdxFxOfA5WmMongz83hK2SZIkSVoxui4oaqP9WVBE\nRJ3WzeqG238/Gmhm5trM3BYRzwHeCNwWuBp4VmZ+bMkarIPqp2uY58NiTzW50LyOWZIkzdR9QbFm\n3UK2o2eZOXaQx98OvH2RmqN50G/XMOvWVlJxJKmzfvtxp59+nPGHFenWui8oluclT5IkqQf+uNNZ\nvxQ2Ur/ofgzFWH/2UEiSJElaOvZQSJIkSepZ9wWFPRSSJEmSZum+oBheMTe2kyRJK8BSDRxfqgHi\nDgZXv+q6oGgOWVBIkqT+sdoGjjsYXP1qDgXFyEK245BExO2AvwfuC+wCLs7MFy5tqyRJkqSVbw4F\nRV8Pyv4w8HXgd4FjgE9GxNWZ+fqlbZYkSZK0snVfUAwOL2Q7ehYR9wbuBjw4M3cDuyPitcCzAQsK\nSZIkaQF1XVAw3Lc9FPcErszMnTNi3wIiItZl5p4lapekFW6+B4TO90BPB3B21mnbddoGrktJ6mzZ\n91AARwA3zYrd2P7/kYAFhVYkZzdZev0+INQBnJ3NddstxLrs5hg+2PHWj8fFarOY5+LFPv+6f6lb\ncygo+ndQNlBb6gZIi63fv8zOt5X85XihvpAsxJcPv2DMn/k4hlfycbFcrORzsfuXutV1QTHZXMhm\nVM3hAqvraPVSzHQE0Gw/Jkl9bTl9IfELhtT/5utHivn4UcIfIVaH7guK6UWuKLr3DeB2EbE5M/df\n6vRLwCWZuXcJ2yVJWqZmfyErfbHyi5L6VT/9SOGPEKtD1wXFRKM/C4rM/J+I+DrwtxHxPOAE4LnA\nq5e2ZZLUfw71l8vV8otlN1/I/KIkSS1dFxRT/dtDAfAY4G3A1cDNwJsz84KlbZIk9Z9++OXSL+KS\ntLIs+x4KgMz8OfCopW6HJEn9bC49VN32Ri2HHidJC6v7MRR9XFBIkqSDW4geKnucJHXfQ9Hflzxp\nmZiPedf381cxSVq55uvzws8KaeF1X1BMWVDo0M3nr2Mr4VexQxkgeyiDY/vlA3YhLr+A/nl/kno3\nX58XK+GzQup3XRcUeyenF7Id0qq0VANk++UDdr7e/+zC5PLLL3eKT0mSFknXBcW+6cZCtkOSeuYU\nn5IWysF6UlfyZVfzcYO81TLV9Gq3KnooIuLewEXAdZn5yzPitweuAMbboRqtO2z/eWa+dtEbKkkr\nSKcvI94kbvkqbdNOXxhXyjadj57U5fqDRj9MMw3Ld/2tJl0XFONTy7OHIiKeAJwLfBc4vJDSzMy1\ni9sqSVr55vJlxC8My8Ny2KYHu8v5Sil0pH7SdUFRX749FKPAfYCnAg9f4rboIBykK0k6FAcreixe\npfm34nsoMvOdABHRKaUWEe8GHgYMAu8AXpKZy7aCWs4WqnvVDxBJkqSFMYeCYkV+v94HfAn4EHAW\ncA/gw8AE8NKla5YkzU23vXv27Ekrj5d5aal1XVDsHp9ayHb0LCKeCLyX1mDq/fYPrn5KZr6n03Mz\n82rgjBmhb0TEK4AXYUEhaRnxDsjS6rWcL/PyBoYrQ/djKCb6s4ciMy8ELpzHRV4JHDuPy5NE97PD\nrIYPBX9NlKQWb2C4MnRdUOzq0x6KQxERDwbum5mvmBG+C62iQtI86vZDY74+FPr5S/ty/jVRUmdz\nmSp5P39A0EqwGmZ52q9WiO0A/iIirgTeD9wdeB7wqsVrlqSF4Jf27nm/CGl+9PJr+0Kei/Yf2zOP\nZY9hLYQ5jKGYXMh2LJiI+AFwO1rvdSAi6rTGV0RmfisittIaL/E24CbgvMw8b6naK82XA12X6q9l\nc7eSb+i1HO4tIGnuSse2x7AWQvd3yu7TMRQHk5mnHuTxjwEfW6TmaB4txD0rltsXwQPp9bpUP2zK\n/NK99Pr5MjZpuXOcmw7Fsp/lSauXs9pIq4uXsUkLZ7HHuWll6bqgmFr+YygkSVIfWsmXFEqrQdcF\nxeQ+CwpJ88/LWKS5mXnMrJTBtv12SWFpHS/n9SsttO57KJbpGApppoONuzjYWIuV9oHSD9fMehnL\n6rUSvxh3Mp+/wHc6ZjxW5o+DmftTL5ONrMTzST/quqCY2OcYCi1/hzruopcPlH6ebclrZjXf5lIk\nrKYvxv32C7y0HPXbtLz6P3MYQ9FYyHYsmIi4PfB64FeBBvA14DmZeVn78dOB82jdg+Ia4C2Z+dol\naq5WIGdb6i/Oy76wVlORoCovFVI3VlPv5GqxGgZlfxT4L+A2wADwduBi4J4RsQb4BPAW4JHAqcC/\nRsSPMvOjS9RerTLeVKxsob74eymDtHA8vtQNf3hYeeYwKHv5XfIUEcPAG4APZ2a9HXsf8IF2ypnA\nMPA3mdkE/jsi3g78Ea1CRFpwXgpRtty+mCz2L7OLOZi9n39N7Oe2af64naX+NodB2cvvTtmZOQm8\nc//fEXFb4I9p9VAA3BP4druY2O9bwB8sWiM1Z16yosUylyJhsQugxRzM3s+/JvZz2/rBSplFbaVs\n536YCGMullt7tXS6LyjquxeyHQsuIsZp9UZ8BHhaO3wEcNOs1BuBzYvYNM3RcvvlWsvXSt7X/MV3\ndXAWtf6y3CbCWG7t1dLpuqCYnug81eZSiognAu8FZvYy1Np/PyUz3wOQmWsi4njgNbTGSfzqjNzZ\nmoWYtCr4i9TqsFJ+8Z0Liyj1o27Oue6j6nfdj6EY788eisy8ELiwy9yfR8RzgZ8D9wCuA06elXYE\ncMO8NlJaRvxFaul4Od/Cmo8iylmMlq9+Pb66Oeeu9vPtXLbdSrnMb7npvodiX3/2UBxIRJwCfBY4\nPTP3X9q0v/dhEvgG8LSIGMjM/fPi/iLw1cVtqXRgvZxM++1DUwe3ki+xWilWyjZajeeJlbLtVqO5\nbDsv81sa3Y+hGN+zkO1YKJcDO4A3RMQzad2H4tx2/PtAAjuBP4+IVwN3A84GnrA0zVW/OdgvHbB0\nN6Cby8nUE6ikmTxP6FDYC6DZui8olmEPRWY2IuJRwPnAz4BxWr0PZ2bmFEBEnEnrPhQvAq4GXpiZ\n/7JETdY8O9STnl3RkhZDP4/v8DIvzWYvgGbruqCof/VNpcHLfS8zfwr81gEevwQ4Y/FapJLFvInZ\nTJ70JPWDfh4kb2+GpIPpuqCQFpIfWJK0uvRzr4xWFve1hWdBIUkrhB+aWk76uVdmLhbqkjCP5/mz\nUva1fmZBIakrDsLrf35oSotvoXrYl9vxbAG0ullQSOqK41EkSZ0stwJI88uCQurBoXZx+0uOJEla\nKSwopB4cahe3v+RIkqSVYmCpGyBJkiRp+bKgkCRJktQzL3nSquP4BUmLwTtMS1otLCi06jh+Yf5Y\nnEmdecNOSauFBYWknlmcSZIkx1BIkiRJ6pkFhSRJkqSeWVBIkiRJ6pkFhSRJkqSeWVBIkiRJ6pkF\nhSRJkqSeWVBIkiRJ6pkFhSRJkqSe1ZrN5lK3QZIkSdIyZQ+FJEmSpJ4NzSHXrgzNVQ1g4ubrK/tO\nc6C86w3svakSa6zbXMy9abq6jI0jg+XlNqcrsb3TtWLu+skdxTiDI9W2jawrptYaU9XcweFi7sR0\n9dCaapQPt/XN8UrspuZoMffwoUY12CzEDqBZeM8/31N9bwCb11TXfa1WXsdjU3sKr1VeP7WpfdXc\n4bFibsnA7uvL8cK+BjB15Eld505vOLoSK7UXoDlU3U4D+3aVcwvvrzY9WczdN1zdBycL+xTAOiaK\ncTpsp5Ldzep2WjdYfr3BPTdUYs1a+XesibVHVGLDjXJ7a5P1SqyxZlM5t3AsTtTK55+RqepyASaG\nqttjdLy8TzSH11ZjHfbtqcJvesPN8vF1hye/uxI75b6/UMz94B/+UiV2WH62mNs85ZfL8dI5usN+\nUtoedNjOpeXWB9YUcwcHqq/XaU8d2VvY19ZsKOZODlTPa1D+kjNUaAPAdOEc3Wl/La2LWodjv3Su\nmTjijsXc4W//SyVWv+RbxdyxM/+gGuxwTmmsP7IYL56DOnymlLbzQP3m8uuNVY/d8cHyOb603tfV\nyu+j3LDyuWp0w2HdnwRVZA+FJEmSpJ5ZUEiSJEnqmQWFJEmSpJ5ZUEiSJEnq2VwGZUuSJEmrXkSc\nAvwF8FBgPXAN8HHgrzLzpoi4Ajg3M98663lPBV6YmSfOiN0LOAc4A1gLXAV8GHhFZt7czrk9cAVw\namZeutDvb67soZAkSZK6FBF3B74O/AS4K7ABeDRwOvDFiChPXfZ/bpluKiIeBnwe+DJwSmauB84E\nTgO+FBHrSs/rN/ZQSJIkSd07H/hUZp4zI/btiPgN4Dzg+G4WEhE14M3AGzLz7/bHMzMj4tHApbR6\nLl7cfqhvp7e1h0KSJEnqQkQcBdwfeOPsxzJzd2aenZk/OsAiZhYF9wJOpFWgzF7WJK1i4zGH1uLF\nYQ+FJEmS1J2TaF161M04hvMj4vWzYkPAz2Ysa29mXtXh+Umr4Oh7FhTzbOvWrdTr5butrjbbtm1b\n6iZIkiTNp/3jGAa7yH1mZr5tZqA9KPvPZoQOtJwafTxuYiYLinlWr9f9Ii1JkrQyXU7ri/5ptGZj\nOpCDjXlIYDQiTszMKwqPB931hCw5x1BIkiRJXcjMG4HPAc+b/VhErI2Ib0TEL3e5rP8FLgOeVVjW\nEPCHwD/NCPdtb4U9FJIkSVL3ng18ISIuBF4A/JzWlLHnAbuBr85hWU8HPhERdeA1mXlDRJxKa0D2\nTcBrZuQ6y5MkSZK03GXmd4D70Poe/S1gF3AR8Fng4Zk5TZe9CZn5H7RuaHcakBGxB9gGfAl4YGaO\nz0hvAv8bEXvb/9UjYud8va9DYQ+FJEmSNAftu1U//gCPn9Qh/hbgLbNi3wJ+8yCv92O6Gwi+JOyh\nkCRJktQzCwpJkiRJPbOgkCRJktQzCwpJkiRJPbOgkCRJktSzeZnlaevWrdTr9flY1LK3ffv2pW6C\nJEmStGjmpaCo1+ts27ZtPha17G3ZsmWpm9B3GsNjldjg7uuKuc3B4UpscmCkmLt3fKoS2zRanlHt\npn3V2PqR8v1hmt/8j2K8do+HV2ID+3aVlzFYbfPgVKERwFizUX1+YZ0BTNSq8cuu3lvMvffx6yqx\nn+2cLObefnhPMV5ywli5Y/OafdX3ccxwdRsBMDleCdUKMYDGNz5ZiQ3d9Yxy7rojKrE9644p5q5v\nlNs2OThaiY2MVtclALXquqh1WG6T6nKHbriy3IZj71xd7nh5XxsZqi53cKh6HAEM7igfd9Prj6q+\n3lR5e9Q6LLuosG+XthHAUOlwLKzfTq6vTxfjG0arH3NrGhPlhQyUzx+lpjVHyvvEeK167E9Pl6ej\nn2pU18/a4fLH8n+9+fcrsXs+4e+KuRufdq9KrHHqrxZzG8NrivH6ZLVt6yifPxiotnl6dH0xdbpR\nXRfjhdcCGKtV1/xEh3U5sO7IaqzDbQD2TZXjh914WSU2dfhti7l7a9X1NjRY3nYDk9UfXBtrNhVz\nS+uyPlVePwN3fVgltvY2UcxtDBU+k/beVMzdsfa4Yvyw+vWVWKfz3fSGwnm30/E1XT0eh4fXFnPH\npqqfVc3COms9UFhvczinaG5cs5IkSZJ6ZkEhSZIkqWcWFJIkSZJ6ZkEhSZIkqWfzMihbkiRJWuki\n4grg3Mx8a+GxBvCIzPzXiHgA8B/AmsycmJX3ZeBTmfmyGbHHA88E7gpMAwlckJnvWrA3M4/soZAk\nSZLmX3lKsVki4uXAa4G/BTYDx7f/fl1E/OXCNW/+2EMhSZIkLYGIOAU4B3hUZv5LOzwFvD8i9gC/\nuGSNmwMLCkmSJGlhlG969X9+C7hiRjFxi8z8Z+CfF6RV88yCQpIkSZp/NeCmiJgdGwY+1f77RODS\nRW7XvLOgmGdjY2PeLbvNu6dLkqRVrAlsysxb3Wa+PSh7Zk75NuLLiAXFPLv44ouXugmSJEnqDwe7\n5Oky4MzFaMhCcpYnSZIkaWl8FDg2In539gMR8WsR8eWI6Pvv6/ZQSJIkSUsgM6+IiL8G3hYR64AL\nafVq/BbwJuBFmdlYyjZ2w4JCkiRJ6t75EfH69r9rtMZBPIQu7zsxOy8zXxYRlwPPAl4HTADfAZ5Q\nmv2pH1lQSJIkSV3IzBMP8PDgjLzP02GwdWb+ciH2PuB9h9zAJdL312RJkiRJ6l8WFJIkSZJ6ZkEh\nSZIkqWcWFJIkSZJ6ZkEhSZIkqWfO8qQFN1moWyfXH1PMvW7vVCV2+2uzmHuHRjV3auD4Yu6msc2V\n2HSzPLvb4Ml3L8ZrN/6kEmusqy4XoLF+XTXYLE8jPT2yvhKrT5VzRwrzRZywcaSYW3p7o0Mdbtg5\nUD4VNAvx68fL621sqLqdr5ssL7cxcFgltmaw3LYND3xSdbnj08XcK3aMV2LDA/uKuXfafEIxPtaY\nqMSaQ6PF3JLdg9XtCbBuqtq26Q3l46C08ZrDHdpQ2K/2TJb3n+EO76M2XX3PV7/qRcXc45/xp5VY\nY/1R5aYNVffNXVMdtvNQ99Os10c2VWKDHd7zaOFns2nK62GwsI0Apgu7fHOgfNytKew/jQ7bbnB8\nZ3W5U+VjZmSwuoyffPSFxdzcUW3DvqnycXvNnpuL8QfcfmMltmd6uJi7rlY9HidKKw0Ym6i+3sY1\n1fMBwECzutyBwnmmU+5Uh99MOx0fQ0eeUomtofo5A1ArLGJwzw3l1xs7shJrlE9hrCucc0c6nBub\nA9X31+lYnB6tnpcaa6rHEcCm8fI+0Rytfq51nCO1cF5qjqztlF3R6fOZwufl4HT5HH9zo3rMbPRb\n74Kxh0KSJElSzywoJEmSJPXMgkKSJElSzywoJEmSJPXMgkKSJElSzxzvLkmSJHUhIq4Azs3Mt86I\nPRd4AXAG8ETgEZl5vxmPHwf8JfAoYDNwA/AZ4KWZ+dN2zn8AX87Mc2a93sOBT2VmX3cC9HXjJEmS\npH4VEU8CXgz8WmZe3g43Zzx+AvANYAS4X2auAx4EbAC+FhFHd/EyHWfo7RcWFJIkSdIcRcSZwHnA\nmZn5nQ5prwR+mplnZebPADLzh8DvAh8FyjdFWma85EmSJEmag4g4A3gv8NjM/EqHnAFgC/DHsx/L\nzAbw9C5eqsMdafuLBYUkSZLUvbvT6nn4fGZ+9gB5RwHrgUu7XO7zI+I5s2KDPbRv0VlQAFu3bqVe\nry91M1acbdu2LXUTJEmS5tvjgXOAv4mIp2bmWzrk7R/70G1R8OoOg7I/2VszF48FBVCv1/3yK0mS\npG6ck5lvjoifAh+MiO9l5hdnJ2XmtRFxM3Aa8OVFb+UiclC2JEmS1L1pgMz8BK1Lnz4UEbftkPsR\n4DkRcauxEBExEBH/GhG/vbBNXRwWFJIkSVJvXkprWtiPRsRY4fEXA5uAT0fEnQAi4hTgA7RmePq3\nRWrngrKgkCRJkrpzq3tCZGaT1s3sNgDvLDx+FfBLwJXA5yJiD/Cp9t/3z8ybS8tdbhxDIUmSJHUh\nM08qxHYAp8wIvWzW41cBf3SQ5T64Q/zTLIOZnuyhkCRJktQzCwpJkiRJPbOgkCRJktQzCwpJkiRJ\nPbOgkCRJktQzZ3nSghuuVWMNCkHgNsP7qsHdNxRzJ6/dXokNnrqhmDs+fFgltn56dzF36pKvFOPb\n//kzldhtH1e+H83AaQ+sxCZGym0rVfUT093PHjdYK6/LofEdldjPd40Uc4/dMFFuW2OqEtsztbbc\njoFqOw5bU56YYmRvdZtOrz2ymDu08+pKbHTs6GLuffhpdbnry7m1vTcX4+P/8q7q6514arltdzit\nEts4WF7HU4fdphIbuO5Hxdzm8XeuxAb3lI+DvWsOr8QmJhvl5dbKvyE1h6tTpw88//xibmNwvBob\nWVfMrU3WK7GNtfK+RqO6/4zXyutyx/h0JTZU2P8Arq9Xc49cU869eqL8kTgxXT0OxobKyzh6cLIS\nG5wqnNeA5kD19SaGStPYw/RU9X2UWwDfvWZXJbZ9Z3W7AYyNlI/Rh5y4qRIbmS6/DwaHK6F9U+V9\ncGpoYyU22iyf70p7a+nzBGBnYbfaNFTdbgCbRsvbubgLdTgV31DYr9ZuOKqYO1Y4j04Utj3A8M++\nXw0e/wvF3Gbh+Bi64cpibm199fxa2v8Ado1uLsbXN6v7UG1ibzF3d2E7rxvqsDIL56WJqXLujfXq\nujx6Xfk8sba6W1Kbqp6T2q3rEFe37KGQJEmS1DMLCkmSJEk9s6CQJEmS1DMLCkmSJEk9W5RB2Vu3\nbqVe7zQQZult314d3CtJkiTNFBFXAOdm5ltnxJ4LvAA4A3gi8IjMvF/7sc8B9wdmzthwPfAZ4IWZ\ned2M5RwH/CXwKGAzcEM776WZWZ11pI8sSkFRr9fZtm3bYrxUT7Zs2bLUTZAkSdIyExFPAl4MPCgz\nL48IuPX8YE3g1Zl5zozn3B54J/Ae4JHt2AnA14BPA/fLzJ9FxB2Bc4GvRcTpmXntYrynXnjJkyRJ\nkjRHEXEmcB5wZmZ+p9vnZeaPgZcAD42I/XOxvxL4aWaelZk/a+f9EPhd4KPACfPa+HnmfSgkSZKk\nOYiIM4D3Ao/NzPINrA5slNbtZJoRMQBsAf54dlJmNoCnH0pbF4M9FJIkSVL37g5sAz6fmZ+d65Mj\n4mTg5cBHM7MOHAWsBy6d11YuIgsKSZIkqXuPB84BfjUintpF/vMjYm/7v33Ad2iNl3hS+/H9Yy7K\nt65fBrzkqc/0+4xYc9HPA/ElSZJ6dE5mvjkifgp8MCK+l5lfPED+LYOyI+IuwDeBD2bmXoDMvDYi\nbgZOA7680I1fCBYUfabfZ8SSJEla5aYBMvMTEfFK4EMRce9upnbNzEsi4nXAOyLibpk50X7oI8Bz\nIuIdmXnLLFHt8RX/AlyQmR+e/7cyP7zkSZIkSerNS4FvAB+NiLEun/MyWj/qv3RG7MXAJuDTEXEn\ngIg4BfgArRme/m2e2rsgLCgkSZKk7sy8xwTt3oQnAhto3VuieaD89nPGgWcAz4uI09uxq4BfAq4E\nPhcRe4BPtf++f2bePK/vYp55yZMkSZLUhcw8qRDbAZwyI/SyGY89uMNyPk1r6tiZsauAP5qfli4u\neygkSZIk9cyCQpIkSVLPLCgkSZIk9cyCQpIkSVLPLCgkSZIk9cxZnoCxsTG2bNmy1M0AYPv27Uvd\nBEmSJKlrFhTAxRdfvNRNuEW/FDbzaWBiTyXWHF1fzG0MV+8JUzv6jsXcoaGRSmx6zYZi7tqhWrUN\nA+X7z9Tu9zvF+B1OuVclNnHsqeW27by6EhseGi1kwuRA9X2MDFbbCzA2VO1UvL4+VcxtrN1UiR0x\nWc4d3PmTYnzqyBMrsU0Dg123bfdko5g7PLq5EhtpVKbqBmBg7eGV2PrxG4u5zdF1ldiu4cOKuRtq\nO4vxNY88qxKr7dtVzJ1ef1Ql1hiptgGgNrWvGhsr76+1qYlKbGrTCcXcemEdD3boe6512P7NxnQl\ntmG0vL/W9uyuxDp1dQ9e9f1KrLHrpmLurlMfWomNFY5bgE2j1Ve8Zm/5vR2/frgSmyxmwjFrOzzQ\nLOzHtQ76w8JLAAAgAElEQVTvurrpOu8TheWOjpfXz97J6jlzTYfzxFBhB3jcLxxbzL3sxnoxPjA5\nXonVJvcWcxmofpU4rMP6mRisrouJ6fKxP1Q41eydKuduGihs1eny+WdwqPzVZ3iqui4mhsqfE6ND\n1WNm+NpLi7nTh1WP3YlO59H1R1afP1g+Fofq1fNgc7C6vwNMbaxu/9I2BhgaKO9XtYnCzj1Q3s4b\npqvniamhjcXcsvJ2LhmbKN+eYWpN9dw/2Wl7dv1q6sRLniRJkiT1zIJCkiRJUs8sKCRJkiT1zIJC\nkiRJUs8clC1JkiR1ISKuAM7NzLfOiD0XeAFwBvBE4BGZeb/2Y58D7s+t54O4HvgM8MLMvK5D3iSQ\n7df6yAK+pXlhD4UkSZLUg4h4EvBi4Ncy8/J2eOY0VU3g1Zm5dv9/tAqPE4H3dsoDjgReC/xTRNx3\nwd/IIbKgkCRJkuYoIs4EzgPOzMzvdPu8zPwx8BLgIRFRnLA6Mycz85+AzwO/NR/tXUgWFJIkSdIc\nRMQZtHoYHpuZX+lhEaNAjYPfdGMQqN74pM84hkKSJEnq3t2BVwKfz8zPzvXJEXEy8HLgo5lZvLtk\nRIwCv0NrXMWfHkJbF4UFRZ8ZGxtbMXfL3rZt21I3QZIkab49HjgH+JuIeGpmvuUg+c+PiOe0/z0I\nNIALaI296JQ3AVwCbMnM/56ndi8YC4o+c/HFFy91EyRJktTZOZn55oj4KfDBiPheZn7xAPmvzsxz\nACLiLsA3gQ9m5t5OecuNYygkSZKk7k0DZOYnaF369KGIuG03T8zMS4DXAe+IiJGFa+LisqCQJEmS\nevNS4BvARyNirMvnvIzWVUIvXaA2LToLCkmSJKk7t5qVKTObtG5mtwF45+zHC3+TmePAM4DnRcTp\nnfKWE8dQSJIkSV3IzJMKsR3AKTNCL5vx2IM7LOfTtKaOPWDecmEPhSRJkqSeWVBIkiRJ6pkFhSRJ\nkqSeWVBIkiRJ6pkFhSRJkqSeWVBIkiRJ6pnTxmrhNaYqoTd+9WfF1EfF0ZXYSZuOKebWJvYUYvVi\n7g21TZXYkYOTxdyhn3+vGJ864a7V3B3bi7nNNRsqscbQaCET6hONSmzXxHQxd2K6Ok11KQawr7pY\nbj+0q5h71caTi/HGRDX29e03F3M3rRmuxE4/Zl0xd0Njb/W1hsq5JXvXbC7Gx8aq622ww8zeu4c2\nFuMTA9UnHD5W3X8Arp+snkKnx8sveGytujKbg+WbpE6vP6oSq03tK+aOF7Z/p1+KpjeUj6WBfdX9\nYopy237YrK77k5rj5Rdcd1gltOc29yqmjg1VWz3VKK/L0ULuxpHBYu7wF95biQ0ecWwxt3b8nYrx\nxrojqrGR8v46sOeGarBwPgBojB1eDQ6tKebeYax6fE112Le33Km63NL5AGCgVo4P7r6uEpveUD0/\nQ+dzW8nwZHVfGdm3u7zctYX108HA+M5KbLqw3QCGKK+MZuF97Oyw4v76s5dXYo+8S/n4etARayux\nyQ7n7ZvWV2+2PN3h8+CI6epna6f3PFBY74O7rinmjnVa74XXG6zfVEydOvx21dzJ6nkfYHq4un42\nTJf3iQ2j1WN/cEf5fTBQ+Io7XfhQA1jb7f3o1Ik9FJIkSZJ6ZkEhSZIkqWcWFJIkSZJ6Ni9jKMbG\nxtiyZUvHx7dvL19nLkmSJGl5m5eC4uKLLz7g4wcqNiRJkqR+FxGfBn4VaALDtK702QfU2rG/BZ6e\nmccVnnsV8GeZ+Z723zXgGcBZwJ3ay/k28LrM/Hjh+f8F3Au4bWZeO//v7tB4yZMkSZJ0EJn58Mwc\ny8y1wF8DX83MtTNiP6ZVWHTj3cCfAM8FNgInAu8H3h8Rvz8zMSLuDNwF+FfgyfPyZuaZ08ZKkiRJ\niyQiHgo8AbhbZl7SDu8CLoiIfcD6WU85G9gGfAr4C+BVi9XWbtlDIUmSJC2eRwOfn1FM3CIz35mZ\nb9r/d0QMA78HvBf4GHBCRPzyorW0S/ZQSJIkSfPj2IiYfRe/GtzqbqEnAdnl8n4TmMrMzwBExIdo\njbv4r0Nt6HxalgXF1q1bqdfLd0RW/9i2bdtSN0GSJGkxXZ2Zx88Otgdl79cEBrtc3tnARTP+vhD4\nSEQ8KzPLtx9fAsuyoKjX635ZlSRJ0nJ0Ga0Zmw4oIm4LPAx4QEQ8dcZDa4GtwDsXpnlz5xgKSZIk\nafF8CLhfRNx39gMR8UcR8YH2n2cBlwCnAafP+O8t7cf6xrLsoZAkSZKWo8z8QkS8G9jW7nn4OK1e\nhycBrwAe375PxZOB12fmFTOfHxFvBL4bEadk5qWL2/oyeygkSZKkhXWr+1Nk5lnAy4GXAjtoXQb1\nCOBhmfnPwEOB44B/nL2g9uxQX6WPeinsoZAkSZLmIDP/CvirWbF307phXSm/MlA7M88Hzu+Q/xlg\nzQFe/35zae9Cs4dCkiRJUs8sKCRJkiT1zIJCkiRJUs8sKCRJkiT1zIJCkiRJUs+c5UkLrjk4Uond\n+egNxdyT14xXn9+oFXOnNx5XidUaU8XcqelmNTjUoZ4e21gM1yard7hvjm0q5u4bXleJjUztK+au\nGx6txOpTjWLuEbV6dbnr1xZzhweq6217o7zeb9O8sRjfM3ZkJXb6seVl7J2stnljbaKY26xVTz0N\nytt5aGJPJVZ+x9BYU90eY41yGxrD5ckzmoX3QbOw/wAT09Xcw9cMFnN3Nav71cZ15bYNTFa384/3\nVfcTgMlGtQ2FTQ/AzonyfrVptLq/fuXKHcXcXzhmfSV2daO8RTZtPrkS+9ZVu4u5b/rCjyqx9z7+\n9GJurTFdjJcM3O+3K7Hy1oRmh/NH6f3t3VVuw8mFZdSmy8utlc4JA+X95/p69fWOHqiekwB2D1a3\n0cadPy7m3v+425Tbdu2uajC/VswducNpldj0pmOLudQK590Ox+Le6eqOPDxY3rmbg9VzSrPDupxu\nlPeAkfGbKrGjJ6rHIsDzH3jHSux2a8vHF83qcT7W4X0M7Kmeixvrq+dhgOZ09T3XOrS3uaZw3u6w\nv9Msv4+Bwrl46rL/Li/j3idUQjs7TFh0+I6fVpd7WHm/LH1O1Ear+ztAs7Cv1QrnS80PeygkSZIk\n9cyCQpIkSVLPLCgkSZIk9cyCQpIkSVLPLCgkSZIk9cxZniRJkqQ5iIhTgL8AHgqsB64BPg78VWbe\n1M65F3AOcAatCQqvAj4MvCIzby4s8xXAC4HHZuaHZj12JXA8sH96rmuAzwGvyszvz++7mzt7KCRJ\nkqQuRcTdga8DPwHuCmwAHg2cDnwxIkYj4mHA54EvA6dk5nrgTOA04EsRsW7WMgeAJwEXAWcXXrYJ\nPCMz17Zf7xHA9cA3IuKB8/4m58geCkmSJKl75wOfysxzZsS+HRG/AZwHnAC8GXhDZv7d/oTMzIh4\nNHAprZ6LF894/qNo9T78GfCjiDg+M38+63Vr7eVMAwk8PyKmgHdExMmZ2ek2OwvOHgpJkiSpCxFx\nFHB/4I2zH8vM3Zl5NnA4cCKtwmN2ziStYuMxsx46G7gwM38GfBF4cpdNel37te7VZf6CsKCQJEmS\nunMSrcuPLj1Azh2BvZl5VYfHk1YRAEBEHAP8OvDedug9wFO6aUxmXgvsmLm8peAlT8vE1q1bqdfr\nS92MOdm2bdtSN0GSJGk+7b+saPAgeQd6vDZjOdAqHr6dmT9o//0h4E0R8YDM/HwXbRoCprvIWzAW\nFMtEvV73C7okSdLSupxWQXAarVmbShIYjYgTM/OKwuPBrXs4ngLcISJ2zYiNAGfRGtjdUUScTGuW\nqR8cKG+hecmTJEmS1IXMvJHWdK3Pm/1YRKyNiG/QmiL2UuDZhZwh4A+Bf2r//QDgDsB9aM0Stf+/\nPwB+JyI2HKRJL6XVu3FJT29onthDIUmSJHXv2cAXIuJC4AXAz2kVAecBu4GvAX8MfCIi9gKvycwb\nIuJUWgOybwJe017WH9CaMep/Zr5ARPwYOBd4PPDW2Q2IiOOBPwW2AA+a93c4R/ZQSJIkSV3KzO/Q\n6lEYAL4F7KJ1/4jPAg/PzOnM/A9aN7Q7DciI2ANsA74EPDAzxyNiI637V7yj8BrTtAZnnzUjfH5E\n7I2IOvA/wHHAL2XmNxforXbNHgpJkiRpDjLzUlq9BwfK+Rbwmwd4fCet8Q+dHn/hjH8v6SxOB2MP\nhSRJkqSeWVBIkiRJ6pkFhSRJkqSeWVBIkiRJ6pkFhSRJkqSeLftZnrZu3Uq9Xl/qZiy47du3L3UT\nejdQvfv8aUcNF1Mbo4Vdstko5u5iTSW2qba3mHvU2sJyp8t3qZ9ed0QxzuBIJVSbKL/e9ODa8jJK\ni21MVmJjQ9V1BrBvaF0ltq5WXm6zEL9ix3gx94Qjq+sSoNGsxvZOlrfH0EDhBTu0bbxWXZejFF4M\naIwdXl3s5KEf87VGefsP1qqN3tOsthfgyLXV3NLzARrN6vtrjG0q5jYL+9pth8vrfWd192G6vCp5\n0SezGH/ZI06pxPZNlV9v40h139w0Wt5fB6eq+9ttN5b3tec/5E7V5xeODYCbpqq/hY0Oltf7bqrH\n4rpah+UyVoyvL+zbxXMKMD1xXDVYK/92V5ueqMSaA+Xlbhit7hPN6XLucGFdNNZWjyOAZoe2lfbN\noTucVswt6rDc5tBoNbXD8bxusLqdmh2+tjTWVNs7MLWvmLu3Wf78GR6pnl9L532AIwqfazsb5eNg\nY626nW/usO02rdtciTUGy+0dGC58znRY7xTOP3TY10rnHyjvQ7V7/Xoxd99Q9VjaQPmcUlruZIdz\nGIXPiaHRwnaD4ncPBpf9196+tezXbL1eZ9u2bUvdjAW3ZcuWpW6CJEmSVOElT5IkSZJ6ZkEhSZIk\nqWeLcsnT2NjYvF6ys6zHE0iSJEkryKIUFBdffPG8Ls/xBJIkSVpsEXElcDwwNSN8NfAR4CWZubdD\nTo3WqPKnZOYtX4wjYmP7+Zdn5t1mvdbvA+8E9s9wMQF8D7gQuCAzyyPdl8CyH5QtSZIkLZIm8IzM\nfNv+QETcGXg/sBZ4einnAJ4I/Cdwj4j4xcz8+qzHr87M49uvcwRwH+A1wKMi4szM7Dgn1oFExGnA\nXaA6vV1mvmeuy7OgkCRJkrp3q7mZM/P7EfG3tL7oP72UcwBnA38PXNn+9+yCYubr3AB8MiK+CXwf\neBLw7jm1HIiIc4E/6/BwE7CgkCRJkhZZ9SYrBxERd6fVS/AB4HJgW0Q8JzPLN41qy8xrIuIi4LH0\nUFAAf0irGPlQZs7LzdwsKCRJkqQeREQNOB14AfCPMx46PyJeP+PvGrArM4+eETsb+Hhm7gK+EBE3\nAo+ZtZxOEnhgj82eBi7KzPIdXntgQSFJkiR1b2axMATsAV4PvHxGzjMPNIYiIkZpjZ940ozwhbSK\njG4KiiFahUEv3gI8ldalVvPCgmKZmO+pdxfDariDuSRJWnVuKRYi4mG0Znj6x1mzLh1sDMVjgcOA\niyJif2wAGI2IEzPzioM8/x7AD+bc8pZ3AJ+PiD8FfgLcaraozHzwXBdoQbFMzPfUu5IkSerJLcVC\nZn4mIrYBbwceNIdlnEXri/25s+Lvbz/2kk5PbM8qtZVWUdKLf6JVA3wJ2NvjMm7FgkKSJEnq3XOA\nH0TEH3YzVWxEnAw8AHhuZv5o1mP/ALwoIv6i8Lwh4CHAG2kNqP5Yj+09HbhDZl7b4/MrLCgkSZKk\n7lTu+5CZ10bEi4BXRcQn2uHSoOwm8D7gGuB/M/N/C8t/H/Bq4OHtv4+JiP29CE3gMuANtIqKXn2f\n3sdfFFlQSJIkSV3IzJM6xN9Ca7AzwIldLOrFHZazA1g3I9TLtLAH86fA2yPiAuDHVMdQXDrXBVpQ\nSJIkSavHv7X//5vcusdlfy/K4FwXaEEhSZIkrR5zGTzeFQsKSZIkafV4KPD2zPzxfC1wYL4WJEmS\nJKnvPR74YUR8JiIeFxHDh7pACwpJkiRplcjMk4FfAS4BzgN+HhGvjYi79LpMCwpJkiRpFcnMr2Tm\ns4ETaPVYHAl8LSL+KyJ+NyLmVCM4hkIL7sap6m523Npy7sDEnmps703F3E3DY9Xg8Jpi7vX1qUrs\n6LGRYm5toHwMTQyvq8SGB8u9hLsnGpVYfaB8uF23t9q20aHKNNcArB+uTrwwNlQrZMJEo9qG6/dO\nFnMbI5uK8d3j1WVsGCmvn1KLJwfK62ffZHW5UwPl97Fhamc1WCu3oTZRXZfTazaWcxvlKbjHGuOV\n2O5aeb8aaVZfj8J6Bxgq7NuDN19dzG2sPbwarJXXz56BI6rL7bAu3/rI44tx2F2J/MrtDytmbh6s\n7kO1iXoxt1k4Po5bXz4OSvvx4M6rirkTb3hFJXbEs/+8mDt12AmV2O7J8n55xMT1xfjONUdWYrv2\nlfefwyeq63LfuqOKuVePV4/nTaPlyVU21Kr71fRw+UQ6MVXNHRmpnr8Arh0vn2uO2XB0NdjhfNcY\nq54/BneV75c1cdhtK7Gd0+V9YrhZ2I87zJw/OljNHRgcLeY2CucfgNpUdT9uDpWP/YlGdb1tnix/\nVjVH11diI4X2ttqwrxrr8Nmxh+pn2KYdPypkwq6jTq3E1nbYJ2pT1XMgwOCeGyqx6fXlfXuY6jre\nNVV+z2OFz9af7ix/VpXOE8ePld/HZK263iaGyvvw5mJ01RgCjgA2tf+9Bngl8IKI+O3MvLKbhdhD\nIUmSJK0iEfELEXEecBXwNuBa4Fcy857AycDXgHd1uzx7KCRJkqRVIiK+Ctwb+C7wEuAfM/OWywEy\nczIingvc2O0yLSgkSZKk1eMS4NmZ+ZVOCZlZj4izul2gBYUkSZK0SmTmUwAi4iigMiA1M3/S/v9F\n3S7TgkKSJEnqQkRcCRwP7J+VYx/wbeAlmfmFiHgX8P+AiRlPuxn4IvCCzLxi1vI2AlcDl2fm3WY9\n9vvAO4H9I+UngO8BFwIXZGZ5hoGDv4eHAe8BZs++UKM1x0p5dogDcFC2JEmS1J0m8IzMXJuZa4Hj\ngI8B/xwRd2g//v79j7dz7kZrjrJPRMTsqaqeCPwncGxE/GLh9a6esZw7An8D/Anw8cKyunVe+zUf\nB/z6jP8e2f7/nNlDIUmSJHXvli/ymTkOvDYingY8opScmddFxPOAnwIB/GDGw2cDfw9c2f731zu9\naGbeAHwyIr4JfB94EvDuHtp/O+DumTlx0Mwu2UMhSZIkHZpBOt4pBYBRZt2yKSLuDtwF+ACty5h+\nNyLKNz+ZITOvAS4CHttjWxMo32yoR/ZQSJIkST2IiHXA02ndafqTwC8Xck4AXgN8KzNn9058PDN3\nAV+IiBuBxwD/2MVLJ/DAHpv9J8AbIuLlwA/h1nci7KXnYsUUFFu3bqVeL9+tVUtj27ZtS90ESZKk\n+XZ+RLy+/e868N/AQzJze0QAPC4ifqv9+AAwQusmcU/dv4CIGKU1fuJJM5Z7Ia0io5uCYogD94gc\nyMeBDXTu4ZjzoOwVU1DU63W/wEqSJGmhPTMz33aAx9+fmU+AW6Zm/QHw2cy8dkbOY2lddnRRuwiB\nVvExGhEnzp4NquAe3Hosxlz8fz0+r6MVU1BIkiRJi6Dr2ZXaA7JfBJwXEZ9uD6wGOAt4B3DurKe8\nv/3YSzotMyLuDGylxzEUmdnLQO4DsqCQJEmSFkhmvjUingScDzwhIk4GHgA8NzN/NDM3Iv4BeFFE\n/MXs5UTEEPAQ4I3AhzLzY720pz3d7IuBJwN3aIcvo3Vvi/N6WaYFhSRJktSd5sFTip4GfCMifh24\nP/A/mfm/hbz3Aa8GHt7++5iI2DvjtS8D3kCrqOjVXwHPpDWu4xJal1rdFXhZRIxn5lvmukALCkmS\nJKkLmXnSQR5/Sof4d4H9U8J+klYPQSlvB7BuRmjeL0+iNRD8NzLzSzODEfFhWje9m3NB4X0oJEmS\npNXjaODLhfjn+b9LoObEgkKSJElaPX4M3KsQvydwTS8LXJaXPI2NjbFlyxYAtm/fvsStkSRJkpaN\nfwQ+FhFvAL7bjt0NeBbwzl4WuCwLiosvvviWf+8vLCRJkiQd1N/SqgGeBxzRjt1Ma+xEx+lqD2RZ\nFhSSJEmS5i4zp2nN9PRXEbGJ1mDxazOz1xmsLCgkSZKk1SIirsvMowAy82ZavROHxIJCS+Lc//xp\nMf6Yux1Xid3psNsUc6+vT1eDhRDAyQ95ViX2sYtm35yy5e7HbirGf3xdvRI7ZfOaQiYcM3VtJbZ3\n3THF3JMOG6nEhptTxdza5J5K7MM/mizm3uu4jZXYl354QyETHnny4cX4xpHqjxWXXF9dDwBrhwcr\nselGMZXNY9XcoYHyjUdrk+OVWHOgfOpqrtlQie2dLDdiw76bivG9azZXYpt2lvfX5tBoJdZYW16X\nDFa3c61ZbltjrLoPDu68qph7/Mbqdu60XJod5uGoVeObhqrbCKBZq26n2vREMXdg9/WV2PD6I8tN\nqFW3aaOwPQE2v+TvK7Fr95Xf85HT1eNjw77yZ+fNF5Xv5zT6B39djU3vLubW9u2qxEZG1hZzN41W\n44ftLW/nq0aq54+jyostumZf+fgaGyrvE4M3V/f5TtujNl59z83B4WLu0ER1vVWPuPZy69XcZod1\nWTz3N8rn0Y2j5fcxsKf6PqY3jBVzN1M9Dw7uKZ9f2VX9PFi74ehyG35cvS3BwFB5XR62/rBqsLC/\nA6yrV4/F2mT5XD69ofxZxXT1fQxc+T/F1Npxd6rENk/uLWRCY7i6Te9UOCe12lANDVxbPpcPFM7F\nIx32SzbM4WBaGS6LiAdm5ufma4EWFJIkSdLq8Wng3RHxLeCHwK1+FcrMc+a6QAsKSZIkafV4MtAA\n7t7+b6YmYEEhSZIkqSwzT5zvZXpjO0mSJGkViYjfiYjTZ/z98Ih4bK/Ls4dCkiRJ6kJEXAGcm5lv\nnRW/PXAFcGpmXjrrsXOB+2bmg2bF/wi4AHh+Zr5m1mOfA+4P7B9pfxPwReB1mfmVQ3wPTwVeCzx6\nRngt8PaIOCIzL5jrMu2hkCRJkg7dge7jUHrsbOAi4Ckd8l+dmWuBdcCvAP8N/HtEPPEQ2/kc4Ncz\n81/3BzLzI8Aj2o/NmQWFJEmSdOjK8zMXRMRdgdOAZwO3jYj7dMrNzGZmXpGZfws8F3hTRFTnDO/e\nbYD/LMS/Ady2lwVaUEiSJEmL62xgW2ZeD3yo/Xc33k6rcPm1Q3jtK4CHF+K/DfyslwU6hkKSJEla\nJBExAvy/9n8A7wE+GhHPzszyHQfbMnM6In4IHMpMTecCH46ITwM/otXBcGfgQcDWXhZoQaGKrVu3\nUq8fcH/uyrZt2+ahNZIkSSvKbwNTwGfaf38euBl4HPDuLp4/RPn+8F3JzIsi4nrg6cDD2su6lFav\nxR17WaYFhSrq9brFgCRJUvf23216beGxTcDMX2rPBjYDOyJif2wUOIuDFBQRsQ64E/CDQ2ksrfES\nrwfWzIjdEXgDrcuq5sSCQpIkSTo019Ca2vWewP/Meuw+tHsjIuJE4MHAo2j1Cux3IvCvEXFyZl5+\ngNd5EbAD+LdeGxoRDwM+TLn4uaiXZVpQSJIkSYcgMxsR8Srg5RFxJfAFWr0Q5wDHAK9qp54FfDsz\n/2XWIn4UEd9sP37O7OVHxGbgqbRmedqamfsOobmvoNUT8R7gf4G7APcDHgM8q5cFWlBIkiRJ3Ts/\nIl7f/neN1j0jHpyZr4yIn9EqHk4GdgFfbT92Y0TUgCcBf9dhuf8A/HlEvLj9959GxP77QowDXwIe\nlJlfO8T2nwLcLzOnIqKZmT+iVdBcD7wFmPMdsy0oJEmSpC5k5gFnV8rMC4ELOzzWBG5/gOdeQOvO\n2dCacWmhNIFhWgPD6+27Y98A/DvwT70s0PtQSJIkSavHF4B3R8Ra4Nu0ekWOBH6T/xtcPicWFJIk\nSdLq8Tzg1Pa/Xw48jdag8ouBN/WyQC95kiRJklaJzLwMuFv7z3+LiF8A7g1cnpnf7GWZFhSSJEnS\nKpWZPwR+eCjL8JInSZIkST2zh2KebN26lXq9fvDEZWD79u3zurzBWjX2pcuuL+Y+PI6qxManh4u5\njUJseKDwYsCG46p3kr/0hj3F3MPHyq+3d7J6l/ux4Q41+Z5qbmk9AAxPV6eS3tkcKeZuakxVYjfV\nJ4u5O8arud/bfnMx9+rd1VyADaPV93fN7vJ4rQ2j1dPJ4Zu7P8XcUC+3YWrs6Epsfa38nnc2qttu\nqtEs5jbWHl6Mj9Sq77k2OV7MndxcnaxjaOfVxdy5GNi3uxob31XMnd54XDXYLB0dMFAvb//Gmg2V\n2Nrd5ffRGNvU9evt3XB8NbVZ3h7NwjKaw2sKmTC657pq7uDmYu5ErbAPrj2imHvYY/6oGN9TaPL0\nmo3F3MGbflaN3fiTYu7m+s5KrLFrRzn3rtV1uXuivN7rU9X4jR2Or+PXl893pX17oMNxUDRVzm0O\nVLfH4O7q9gSYXl/9PKDW4UTaqJ5za4VjGaAxWH7PQ4VjbKBD7uSGY6vPny6fl6Y2367ahtHqMQcw\ndPgx1dc68qTycodGK7GBb368mDs4ur7ahtKxDIwPVJcLUF0CNKfKnwfNwjmldIwDMDBYjXXYdtPr\nCsduh+U2C9uu1mEb6dBZUMyTer3Otm3blroZ82LLli1L3QRJkiQtE17yJEmSJKlnFhSSJEmSemZB\nIUmSJKlnjqGQJEmSuhARVwDnZuZbZ8VvD1wBnJqZl8567Fzgvpn5oPbfG2jdUG4LcCywj9bdq1+c\nmd+d8bzjgL8EHgVsBm6A/7+9O4+TqywTPf6r3tJbEggEhAAOqDwqVxw3lFHHfR0nqNcxCsqwqLih\njnqVcRmXcXBEZ9RBHfdlgOHGdQzeccEN9xVxGeQBlQDGsAZCku6kt7p/VDW2fd5KKtWddAi/7+fT\nn+5+znPe856lTvXTp95zuBB4Y2Zes2vWsDNeoZAkSZLmrnwbu+q0/wTuATwyMweBuwDX0HjI3BBA\nRMSWiGsAACAASURBVKwAfgL0Acdm5hDwCGAx8KOIqN4CcQFZUEiSJElz1+K+xhWPBj6UmWsBMnMD\n8DLg5fzx00NvA67JzFMy8/fNvN8CzwD+C1gxj/2eMz/yJEmSJO0+CZweERdn5u8AMnMCOA8gIrpo\nfBzqhZUZM6eAF+zGvrbFgkKSJEnafU6kUTxcERFXABcBXwD+X7NgWE7jWYKXt25iz+JHniRJkqTd\nJDN/kZn3Au4PfJjGx5c+DfwgIgb543iLwmPE90xeoVDFwMDAvDwte295crgkSdIOjDW/DxamLQVG\nZwcz82fAz4B3RMTdgIuBEzPz/RGxETgK+P4u6u+8sqBQxerVqxe6C5IkSbcn1wE3A/cFLpk17YHA\nVwAi4ijguZn5spkJmXlF85a0Q83Q54CXRcRHMvO2O0Q1x1d8CXh/Zn52l6xJBywoJEmSpDnIzKmI\nOAv4x4hYS+O5EsuA1wAHAm9vpl4HnBARA8BbMvOa5nMpTgbuCnyxmfda4EfAlyPiRc2C40jgrTQ+\nIvW13bNm7XEMhSRJktS+syNipPk12vz+oMx8G/Aq4CzgRuCnwCE0njexASAzbwQeQuN5Et+PiBHg\nKuCJwKMz89Jm3nrgGGAt8M2I2EKj2FgLPDgzN+6+1d0xr1BIkiRJbcjMw3cw/Tyat3/dTk4Cx7ex\nrPXA83aqgwvkdn+FYnoA8bp16xa6K5IkSdIdzu3+CsX0AOL5uCuRJEmSpJ1zu79CIUmSJGnhWFBI\nkiRJ6pgFhSRJkqSOWVBIkiRJ6tjtflD2fFm1ahWjo5WnorfNu0y1trS2rRJ7zkPLd127337dlVht\n/NZi7mB3+4fvDz/xkkrs0IGpYm5tcrwY31gbqsS6t5b7NjW0XyXWQ3l5N070VmKbxyeKub2D+1Ri\n9zloazF3SX91W/770+9dzN2nkAswWa9XYvc8oLodALZNVHMHe8v/s6gVYsMtcoe6q+3Wxsv7aElX\nNZee0tKAyUIu0F2rbvuJfQ8t5o6MV/fp4kXDxdyNtcFKbN8Wx9pUoY2pA44s5tZ7FlVjVGMA1Mrb\nuN5VfS1t7llSzB0o7Kd1m6rHMMCKgeq27xorn2evm6j2Yb/B/mJubaJ6zO83UD4fdI2NVGKTvdV9\nATA5vLwY76+PVYPj5eNncvEBlVi9r7y82lThdV6KAb31aryX8vHT3z9QiQ3txGsRoFZ47VMrZ9fG\ntlRjk+X1KB2DmxevKKaOFs4prSwr7f7JFuf4qclivLTv6C0fg6Vz4/j+R5SXVy/0oxQDJgvvHbdS\n7sOSycJxedRfFnPH+5dWYn3X/rqY2z+4b7lvS6rbp6fUB2C8cE6pd5fPExT2x9RwuQ9bJqvH4NIW\nfSi9D9MiV3NnQdE0OjrKmjVrOp7fu0xJkiTpjsiPPEmSJEnqmAWFJEmSpI5ZUEiSJEnqmGMoJEmS\npDZExFrgYGACqAMbgW8Ar8jMayPiY8CizDx+O20cCfwD8GhgGLgOuAB4U2bePCv3scCXgPdm5unz\nvkLzxCsUkiRJUnvqwIsyczAzh4D7AgcCH2xn5oj4c+DHwNXAvYDFwFOAewPfiYjZt+k7FTgfeGZE\n9M3PKsw/CwpJkiSpfbfdvzYzrwU+C0Sb854NfDEzX5OZN2RmPTN/ATwJ+AGNqx8ARMR+wF/TuJpx\nE43CY4/kR54kSZKkDkTEEcCzgfPayF0OPBioPDAkM7fQuBox04nAJZn524g4D3gOsHrOnd4FvEIh\nSZIkte/siBiJiK3AFcAm4H1tzHcEjY9MXd7mck4B/qP58znAwyPisJ3t7O7gFYrdaK5P4769mcuD\nAiVJkvZQL87MDwFExBLgJcAlEXH0DuabfsR6944WEBEPAo4EPgmQmVdGxA+Ak4E3ddrxXcWCYjea\n69O4JUmStOBmjqG4FXhLRJwC/M0O5vtNc96jgPU7yH0OjcLjqojbhmf0AivYAwsKP/IkSZIkzd3A\n9iZm5gbgm8ArZk+LiMGI+ElEHBsRQ8DTgdNo3P1p+usY4KCIeNR8d3yuvEIhSZIkdaB5m9cXAfsB\nn6fxh//2vBT4VnOQ9auAPzTneTewGfgRcBIwCnwiMydmLe8CGlcvvjZ/azF3XqGQJEmS2jc9KHuE\nxkeXngg8LjOvbE7/m+npETHa/P4qgMz8JfBAGn+DX0xjQPf5wFebbUzSGIx97uxioumjwHERsc8u\nXcOd5BUKSZIkqQ2ZefgOpp9MY+D09nIuB565nekP3s60LwGDO+jmbucVCkmSJEkds6CQJEmS1DEL\nCkmSJEkds6CQJEmS1DELCkmSJEkd8y5P82RgYICVK1duN2fdunW7qTeSJEnS7mFBMU9Wr169w5wd\nFRx7qxsnF1Vid9+/fHFstNZXiQ30dZcbrk9VY1OTxdThvuryNkyU+7Cou7cY7+uqVRfXM1TMrRX6\ntmWyOj/A2GS1zzePlm49DQcOVl+yd15a3b6tjE/Vi/Gh3vK22Lit2reli8r7Y6Srus6bxsr7Y0Xx\nWaLlXCaq7da7yqeuek91W2waL69zi1VmvHBYLamV2+gu7NKrtpX3x2GD45VYq/WgVu1cbXKsmLp5\nsr8SG+hpsXJ9LY7XQtut2qjVq9tiWX/5mOjetrkS29DiQbIHD1eX17311mJuvbfaRtfYSNu53ZPb\nirl0ldejNlHN77lpbTF3Yv8j2m63XojXyi99Jruq56WN4+V9NFB4nfcUzl8AvS3itfHy9iz2bXBZ\nJdZqf5S2xcDU1mJqd1913/VNlV8HxddSi/eDlnqrr6V64bUI0FvYbF0tjtepgerjArZOlbf7wPD+\nldhQV4vX81R1W5b2BUBX4RieWHZYMXfjZPm8tE9hW0wuPqCYW3oP7NqyoZhbL+zn2mT1fAlQK7wO\npgaWFnOpFd6zFy0u52rO/MiTJEmSpI5ZUEiSJEnqmAWFJEmSpI5ZUEiSJEnqmIOyJUmSpDZExJXA\nWzPzg7PijwO+mJldzd8PAt4A/BWwDLgJuBB4Y2Ze08z5JvBgYOYo9BpQb+ad1cxbBPwf4HjgMGAL\n8ONmP767a9Z053iFQpIkSZq7OkBEHAL8BOgDjs3MIeARwGLgRxFxwIz8t2fm4Iyvgeb36WKiG/gi\n8CTghMwcBo4CfgR8PSIetTtXsBWvUEiSJEnz55+BazLzlOlAZv42Ip4BvBdYAVzfZlsnA/cHDs/M\nm5pt3Qi8OSJGgf3mtecdsqCQJEmS5kFEdAErgRfOnpaZU8ALdrLJpwCfmi4mZrX39o46uQtYUEiS\nJEnzYzkwDFzeZv7/iYiXzfh9egzFisy8GTgCuGh+uzj/LCh2o4GBgTvU07LXrFmz0F2QJEnanaYf\nE159lHnZ2zPzNduZXt+JthaMBcVutHr16oXugiRJkjo3BgwW4kuBrZl5Q0RspDFw+vvzsLwrmm3t\n0bzLkyRJktSey4D7FuJ/Afyy+fPngJdFRG1mQkR0RcRXIuKpO7G8zwD/OyIOmz0hIv4pIvaIcRRe\noZAkSZLa83bgwoj4NnBeM7YKeC7wmObvr6VxW9cvR8SLMvOKiDgSeCuNOzx9bSeWdw7wLOAbEXEq\n8C0az7U4ncbA70fPcX3mhVcoJEmSpDZk5neAhwNPA65qfv0t8NTM/F4zZz1wDLAW+GZEbKHxLIm1\nwIMzc+OMJl8ZESOFrwubbdVpPIPi48D7gVuBnwNB4xkXP921a9wer1BIkiRJbcrMHwKP20HOeuB5\nO8h5RJvLGwP+sfm1R/IKhSRJkqSOWVBIkiRJ6pgFhSRJkqSOWVBIkiRJ6pgFhSRJkqSO7TV3eRoY\nGGDlypUdz79u3bp57I0kSZJ0x1Cr1+vt5radeHu0cuVK1qxZs9Dd2NvUADaNjFaOnZu3ThZnOKC/\nVol1jY8Wc+vdvW13ZGutr9pudVEALNq2sRif6l9aiW2bKrfRP1nt82TvYDF3y3i1kd4W1w4H6mOV\n2Ghh3QC6Cyv4h83jxdz+7vICDxzsrsR+v3mimNvXXV3e/gPl/1n0jG2uxDZ3lbfPUH1rNdhV7RdA\nbbK6fmO9Q8XcvrFNxXi9q9DnFsujVthuU+Vjm3rhYCnND9R7FlVjtfIBO1o4fsamyqfrbRPl+HBf\ntR9bW+SW9nMhBMBgT2FCaTsAXduq+2Oif59ibun8MdRb7sTAVOH4abHdp3r7i/FN26rLW9pVfi3V\nxkeqwdIxBdR7B6rBwjEMsKVW7dsQ1fNBY3nV43XDeHmde1qcCJeObagGW2yf2lh1nbtuuqqYu+mQ\n+1Xnb3FsLyp0+eYWJ93lm9dWYpP7HFLMrU1sK8aZKpzbWhwr19aHK7HS+xdAvbA/ulr0oefmqyux\nyaH9yu32FPZHq/fF0nmpxXavd5ffU7q2lt8bSyYHqq/dscnyOWVn3i83j1XXY5+pFufyFutRsmjJ\nshZnMbXLjzxJkiRJ6pgFhSRJkqSOWVBIkiRJ6pgFhSRJkqSO7TV3eZIkSZJ2pYhYCxwMzBzFX6Nx\n86KTM3N1RDwLOB04ElgEXAH8W2Z+ZEY7NeBFwCnA3YBtwC+Ad2bmBYXlfg+4H3BoZl4//2s2NxYU\nkiRJUnvqwIsy80OliRHxNOA9wNOAi4Ap4InAeRGxOTNXN1M/ATwQeB7wLWAYOAH4ZEQ8PzM/MaPN\newD3BL4CnASctQvWa04sKCRJkqT2be82s48CvpOZX50RuyAingpcBxARjwaOB47OzEubOZuA90fE\nNhrFxUynAmuALwL/gAWFJEmStNdK4PiIOA5Yk5l1gFkFxlOAi2YUE3+cOfNjM3+PiF7g2cCzgO8C\nH4iIv8jM7+2qFeiEBYUkSZLUvrMj4l0zfq8BmzLzAOB9wL2ATwMbm2MfLgT+b2be0Mw/gkbh0Y7j\ngInMvBAgIj5DY9yFBYXm36pVqxgdLT9ReqH45HFJkrQXenGrMRSZOQacGhF/DzwW+Evg74EzI+K4\nzPw6jXEY1Ueol50KnD/j9/OAz0XESzKz+pj6BWJBsZcYHR31D3hJkqRdb3tjKABo3onpXODciOgG\nPg+cCTyIxl2f7rejNiLiUOAxwMMi4rQZkwaBVcDHijMuAJ9DIUmSJM2DiDgzIh4wM5aZk8DXgaFm\n6DPAsRHxoML8z4uITzV/PQW4FDgKuPeMrw80p+0xvEIhSZIkzY+DgU9ExHOBH9G4bewxwAtpfnQp\nM78VEZ8A1jSvPFxA46rDiTSuYjyz+ZyKk4B3ZeaVMxcQEe8BfhURR2bm5btntbbPgkKSJElqX2lQ\ndh34T+A5wGuADwKH0hgr8Vsag7XfOT1DZp4SEacDbwTOAbYAPwYek5k/jIjHAAfR+NjUn8jMSyPi\nhzSuUpwx72vXAQsKSZIkqQ2ZeXgbaW9ufu2orbOBs1tMuxDo3868x7bRj93GMRSSJEmSOmZBIUmS\nJKljFhSSJEmSOmZBIUmSJKljFhSSJEmSOuZdnuZo1apVjI6OLnQ3WLdu3UJ3oaW+yW2VWG9XbzG3\nNlHNZXKsmNu1bXM1dXh5MXfb+FQlNjZZL+YetOm6Ynyif59KrL9e6C8w3jNQiY2MTZZzq12jRdfo\n66ve8GHDlvFi7kBP9f8F12ws9/cu+5ZvJLFpvNqR0YlCh4HS/ye6p8p9Y2qimttTfvBobayw/+vl\nU9dY71Al1jtRfn3Wtm4q962vuu/qixaXc0vq5e1T71lUiXWNbSn3rcUxX7J5arDabovcqXr5wNo6\nUY0P9Zb3R+nYHOoqH9u1bYVtXyv37pau6jbeZ9utxdylhf1xw0j1mAIY7C3sj4mtxdzuVtu9Vj2u\naoVjGICp6vKm+qvzA9xSeHns2+L5uxNT1Q1f76seUwDbCqs83Fdut5XaaKFzk+XX89T/fLsamyof\nEz2H3b8SGymdBIGJrurGqLXYPlOFc/9kd3n7jNbL7z+LJzZUgy1eTKVw17YW55TJ6rFSH1haTK13\nF3ZUi9dMz8bq+/5Uf4t2e6rt1nvK5/1W56VSP3quv6K8vBVHV2ID4+3/rdRd+LsBYKC3uh5dt2ws\n5k71FV53Xf4ffVexoJij0dFR1qxZs9DdYOXKlQvdBUmSJN0BWapJkiRJ6pgFhSRJkqSOWVBIkiRJ\n6phjKCRJkqQ2RUQP8HpgFXAIMAX8GHgD8DDgdUAd6AZ6ga1ArRl7bmaeN6Ots4BXAk/JzM/PWs7v\ngQOA6ZH91wHfAM7KzMt21fp1wisUkiRJUvveCTwJeCqwGDgI+BrwZeDczBzIzEHgsTSKiKXTsVnF\nRA/wbOB84NTCcurAac22lgBPAG4BfhoRD91la9cBr1BIkiRJ7Xs08JHMvLT5+xbgzIi4Eijd87bF\nDY/5a2AEeA1weUQcmJmz711fA8jMCeAy4OURMQl8BDhybqsxf7xCIUmSJLUvgZMi4t5/Esw8PzOv\n3Yl2TqVxReMq4IfA37Y5378Cd42IP9+JZe1SFhSSJElS+06n8dGjiyPiyoj4j4h4RkS0/QjJiFhB\n4yNR5zRD/wGc3M68mbke2AwcvnPd3nUsKCRJkqQ2ZeY1mfkQ4CjgX4AB4MPAryLioDabORm4ODN/\n0/z908CdI+LBbc7fDZQfSb8AHEOxlxgYGNjjnpa9JzxBXJIkaVdo3mnpMuA9EXEAjTs9vRQ4o43Z\nTwYOiYhNM2J9wCnAd7c3Y0TcHehvLnuPYEGxl1i9evVCd0GSJGmv1vyo0muAV2fm5ul4Zl4fET8H\nhtpo41HACuABND66NO3hwLsi4iWZuWU7TbwR+FlmXr7za7BrWFBIkiRJ7bkeeAxwcES8GriCxtWC\nJwOPbH7fkecAX8jMX8wMRsTVwJk0nm/x0dkzNYuZV9G4fezD5rAO884xFJIkSVIbMnOcxh/z1wNf\nATYB1wLPB56RmV/d3vwRsS9wHI3bvs5uewI4l8bHnqb9e0SMRMQocDGwHHhAZl4yD6szb7xCIUmS\nJLWpeZel09rIu4jG4OmZsZuBwe3M88oZPx86h27uVl6hkCRJktQxCwpJkiRJHbOgkCRJktQxCwpJ\nkiRJHbOgkCRJktQxCwpJkiRJHfO2sU0DAwOsXLlyp+dbt27dLujN3qXes6gSW0S9mNu9+aZKrHZz\neRtvO/xB1XavKz+F/hfjKyqxhxwyXMydmty3GN88NlmJLa1VYwDrRsYrsd6uWjF3dLy6LdZv3lbM\nPf+nv6/EHnfPA4u5Rx9YXb8TX/fpYu6F7zqhGL9xpNqPf/5q+cGcd1leXd4Ljj2smLtk0ZJKbFF5\n83BTbXE1t8W27K9V47+4pZx7xL4HFeNjk9X9sd/EaLlz41srodpEed/R3VsJTXz3M8XUnmOrz0Wq\n91ZfRwCTU9X+LunvLmTC8MarivHrBqv7aXhT+XU3ObRfJfaH0eq6ARw4VN3P44X+AkyOT1VitcL2\nBejur7Z78EAxla5bb67ENi+ung8Abh2r9gGgtDmvnewv5h689bpyRwoGBqrbcvNUud2xiWrf1m+Z\nKObeabi6P3puvbaY++uJ8vkuliyrxGpj5Qf3dscDKrHJxeXzUu/UWCU23Fc+tvs2XFmJbd33z4q5\nE7XqMdE9WX4tDvX0FeNdm6rrN1U43gFqU9XzSvfG8jaeHN6/Ov/oxmJu/ZpfV/t16D2KuUxU32e6\ntmwot7uo+vDm2k3/U8wd/8PaYrz3sCMrsd+++93F3Dsf/7RKrPvQuxdz6a6+wCaW/VkxtXR+Htp8\nYzF3all1nbu2be/h05oLC4qm1atXdzRfJ0WIJEmStLfwI0+SJEmSOmZBIUmSJKljFhSSJEmSOuYY\nCkmSJKkNEbEWOBiYAOrARuAbwCsy89qI+DjwLGDmHQg2At8BXpWZV85oaynwOuCpwJ2AW5p5b87M\nPxk1HxFLgGuB32Tm0bti3ebCKxSSJElSe+rAizJzMDOHgPsCBwIfnDH9k83pg5k5CBwNTAJfiIga\nQEQMA98D7gk8vtnWMcANwPcj4qhZyz0B+DZwp4jCrdUWmAWFJEmS1L7b7hucmdcCnwWiVXJm3gC8\nArjHjLwzgGHguMy8opm3LjNfDLyPxhWLmU4FVgOfa/68R/EjT5IkSVIHIuII4NnAeTtInf3AlacA\nH87MygNlMvOMWcv4cxpXMj4F/AZYExEvy8zyw3oWgFcoJEmSpPadHREjEbEVuALYROOqQlFErAD+\nBfhpZk4/gfcIINtc3qnABZm5KTO/BWwAqk8PXEBeodjFVq1axehoi6fs7uXWrFmz0F2QJEmaby/O\nzA/BbYOlXwJcEhH3ak5/ekQ8uflzF9AHfBw4bUYbdaD6mPBZImIRjfETJ84In0ejyDh3Duswrywo\ndrHR0VH/sJYkSdp7zBxDcSvwlog4BXh6M/zJzDweICKWA5cBX83M62e0cQUwe+B1yd8A+wDnR9w2\nTKMLWBQRh8+8a9RC8iNPkiRJ0twNzA40B2T/PfDuiNhvxqTPAM9t3u3pT0TEORHxkuavpwAfAe49\n4+tewCXNaXsECwpJkiSpAxGxKCJeDuwHfL6Uk5kfpDFe4uwZ4XcA1wEXRcR9mm0dEhHvBx5BY+D1\nXYGHAe/JzN/N/AI+Cpw0fRvahWZBIUmSJLVvelD2CLAeeCLwuB18/Oj5wFMj4okAmTkCPITGQ/E+\nGxFbgO/SGFdxTGauBU4GLsnMnxfa+09gGfC4eVqnOXEMhSRJktSGzDx8B9NPbhH/FdA/K3Yr8Mrm\nV2me1wKvbTHtFmCojS7vFl6hkCRJktQxCwpJkiRJHbOgkCRJktQxCwpJkiRJHbOgkCRJktQx7/I0\nRwMDA6xcubLl9HXr1u3G3kiSJEm7V61er7eb23ai/mjlypWsWbNmobuxUGoAm0ZGK8fOuk3jxRkO\nGu6txAa3XFfMnRrYp7DE8vNd1o5U43ce7i7m9q3/n2J8Ytlh1WB9qphb7x2sxKZ6+wuZMDFVfWmt\n3ThW7lt3dT2GesoXGpf3TlRiZ37v2mLuKx9652J8dLy6fr+5eWsx907DfZXYzaOTxdy7LltUiW3c\nVs5dPlj9v0dpmwH0Uu1vbaq6HRoTytutNrGtGhsbKeZOLao84JTJwr4HmCycaxdtvbmYOzGwrBLr\nanEKniiEb9la3pbLBsr/Q+qqV/Nvqm4GAPbvq27jG8fK23Lpomq8b3xLMffqseoxcVhPOXds0dJK\n7IaR8n5e0VtdkW295Tstdrc4f4y3ON5KBi+9sBLrWl44d1A+Nqf6Fxdzrxs4pBIrbV+Asclqf4e3\nbSjmTg3tV4zXxkersYnya790vuu55Zpi7u8Hq3fcvHj9pmLuPZZX99Nwb3mdC6vMgYPlc/xNW8vn\n7YNu/nW13Rbb5w89yyuxFWPry30brubSVe5bz4a1ldjY8rsVc7vGq/tjvLv6OgLonSyc1ybL7zOt\nzo1dm2+opm66sZg7ctj9K7GWr9FF1fPPrfXq+wlA4S2Q4fFbirl0Fc53Ey3eW/c/ZI94ONztmR95\nkiRJktQxCwpJkiRJHbOgkCRJktQxCwpJkiRJHfMuT5IkSVIbIuJK4K2Z+cFZ8dOAMzLz8IhYC3QD\nR2bm6IychwEfz8zDm7/3AK8HVgGHAFPAj4E3ZOZ3Zsy3FHgd8FTgTsAtwHeAN2dm+U4yu5lXKCRJ\nkqS5q8/43gf8w3ZyAN4JPIlGobAYOAj4GvDliLgzQEQMA98D7gk8PjOHgGOAG4DvR8RRu2A9dppX\nKCRJkqT59QbgrIj4SGb+pkXOo4GPZOalzd+3AGc2r4JM3+v3DGAYOC4zJwAycx3w4ojYTOOKxYJf\npbCgkCRJkuZm9rMsLgU+CJwNPKHFPAmcFBEXZubPbwtmnj8j5ynAh6eLiT+ZOfOMuXV5/lhQSJIk\nSe07OyLeNSvWA/x+VuxNwGURcVxmfr7QzunA+cDFEXE18G3gv4HPZub0U/iOoFF47NEsKHaxgYEB\nVq5cudDdWBB34CeES5KkvdeLM/NDMwPNQdmvnhnLzE0R8WrgXRHxpdmNZOY1wEMi4u40Pv70MODD\nwD9GxF9m5noaYy7Kj1bfg1hQ7GKrV69e6C5IkiRp/sz+eFNLmXluRDwPeA3w9RY5lwGXAe+JiANo\n3OnppTTGT1wB7BEDr7fHuzxJkiRJu87pwMtpfHwJgIhYERHvbd7F6TaZeT3wc2CoGfoM8NzZec02\nzomIl+y6brfPgkKSJEnaRZoDrj8OvGVG+HrgMcA5EXFkRNQiYiAingk8Epgec/EO4Drgooi4D0BE\nHBIR7wceAewRny+3oJAkSZLaU29jWinn9TSGGtQBMnOcxpiJ64GvAJuAa4HnA8/IzK8280aAhwDf\nAD4bEVuA79IYV/HAzFw7x/WZF46hkCRJktqQmUe0iH8A+ECrnMy8BThwVmw9cFoby7wVeGXza4/k\nFQpJkiRJHbOgkCRJktQxCwpJkiRJHbOgkCRJktQxCwpJkiRJHavV69u7+5UkSZIkteYVCkmSJEkd\ns6CQJEmS1DELCkmSJEkds6CQJEmS1DELCkmSJEkds6CQJEmS1DELCkmSJEkds6CQJEmS1DELCkmS\nOhARD46IRy10PyRpoVlQSJLUmb8DLCgk3eHV6vX6QvdBkrQHi4jlwL8CTwDqwLeBl2Xm1RHxUOBM\n4CigBlwEvDwzf9ecdwp4DvAU4OHA9cALgMXAW4GDgK8BJ2Tmloj4W+BDwF8B7wYOB64GTsvMbzbb\nHAD+CVjZnP/3wHsy8+zm9Dc0p72puYw/A37dbOOnzZx9gHcAjwH2B34DnJmZq3fQxvMy8+KI+AFw\nDDAJjANLM3N8rttakm6PvEIhSdqRzwH7AHej8Yf1BHBBRNwV+CpwAXBwc3of8KWIqM2Y/xXAa4Fl\nwGXAx2gUJ0cD9wUeC5w0I78HeDHwSGA/4ELgCxEx3Jz+PuDxNIqOxcArgX+JiGfNaONwGgXBscCB\nwGhzvmmfB1YADwKWAG8BzomIR+6gjX8HyMwHAVcBb8/MQYsJSXdkPQvdAUnSnisijgb+ArhPWHe5\nwQAAAqFJREFUZt7cjL0UeDBwGnBlZp7VTN8aEWcAlzSnf6cZX5OZv2jO+wUaxcCbM3MrcEVE/BK4\n54zF1mlcLbi2Oc8bgBcCT4iILwHPBp6VmdnMv6DZ7knAuc3YEuDvMnNTs43/At7c/PnewEOBe2Xm\n+mb+pyLiROBE4Os7akOS9EcWFJKk7bkbjT/wr5wONP8I/3REnAD8alb+pc3vd+GPBcVVM6aPNNu4\nelZsoEU7ZOZNEXErcChwBI2PVpWWe8KM32+cLgSaNgP9zZ+j+f3HEdM/Umt+fa/NNiRJTRYUkqTt\nmWx+L31Eth/YMis2nTc1IzbFzpv9/lRrttPf/Hm2LhqFTzvLHG3mHpKZG7aT10m/JekOxzEUkqTt\nubz5/R7TgYg4MCJeAawH7jUrf/r3ZG6OnLG85TTGSlxFY/B0ncb4i5n+104sM2kUJfefGYyIwyLC\n90VJ2kleoZAktZSZl0bEt4AzI+J4YBPwNhp/jD8TOCEiXg28k8YA6rcBP8vMH81hsTXgjIh4AY2P\nGb0ZuBX4cmaORMSngNdHxE+A3wFPpjHI+2ltrtPlEfHfwDsi4uk0iqZHAZ+iMS5kdZv93ALcJSKW\nACOZOdH2GkrSXsT/xEiSduTJwDoat01dCywF/iozfwkc1/y6DvghjasIj50xb7v3Jq/P+vnDNO4g\ndT3wMODxmTnSnH4qjdvTfgW4ETgDWJWZn9+JdXo28BMat8AdAf4NeMX0bWPb9F4ahcxaGneMkqQ7\nJJ9DIUnaYzSfQ/FRYCAzxxa6P5KkHfMKhSRJkqSOWVBIkiRJ6pgfeZIkSZLUMa9QSJIkSeqYBYUk\nSZKkjllQSJIkSeqYBYUkSZKkjllQSJIkSeqYBYUkSZKkjllQSJIkSeqYBYUkSZKkjv1/T+3Hrhfy\nZfEAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Acronyms at https://github.com/cognoma/cancer-data/blob/master/download/diseases.tsv\n", + "plot_df = diffex_nmf_df.pivot(index='acronym', columns='component', values='t_stat').fillna(0)\n", + "grid = seaborn.clustermap(plot_df, metric='correlation', figsize=(9, 6))\n", + "grid.ax_heatmap.tick_params(labelbottom='off')\n", + "_ = plt.setp(grid.ax_heatmap.yaxis.get_majorticklabels(), rotation=0)" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python [default]", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.2" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/data/complete/differential-expression.tsv.bz2 b/data/complete/differential-expression.tsv.bz2 new file mode 100644 index 0000000..8be3dbb Binary files /dev/null and b/data/complete/differential-expression.tsv.bz2 differ diff --git a/data/genes.tsv b/data/genes.tsv new file mode 100644 index 0000000..9243f9a --- /dev/null +++ b/data/genes.tsv @@ -0,0 +1,22974 @@ +entrez_gene_id symbol description chromosome gene_type synonyms aliases n_mutations mutation_frequency mean_expression mutation expression +1 A1BG alpha-1-B glycoprotein 19 protein-coding A1B|ABG|GAB|HYST2477 alpha-1B-glycoprotein|HEL-S-163pA|epididymis secretory sperm binding protein Li 163pA 30 0.004106 6.71 1 1 +2 A2M alpha-2-macroglobulin 12 protein-coding A2MD|CPAMD5|FWP007|S863-7 alpha-2-macroglobulin|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 5|alpha-2-M 130 0.01779 13.34 1 1 +3 A2MP1 alpha-2-macroglobulin pseudogene 1 12 pseudo A2MP pregnancy-zone protein pseudogene 4 0.0005475 1 0 +9 NAT1 N-acetyltransferase 1 8 protein-coding AAC1|MNAT|NAT-1|NATI arylamine N-acetyltransferase 1|N-acetyltransferase 1 (arylamine N-acetyltransferase)|N-acetyltransferase type 1|arylamide acetylase 1|monomorphic arylamine N-acetyltransferase 17 0.002327 6.729 1 1 +10 NAT2 N-acetyltransferase 2 8 protein-coding AAC2|NAT-2|PNAT arylamine N-acetyltransferase 2|N-acetyltransferase 2 (arylamine N-acetyltransferase)|N-acetyltransferase type 2|arylamide acetylase 2 26 0.003559 2.086 1 1 +12 SERPINA3 serpin family A member 3 14 protein-coding AACT|ACT|GIG24|GIG25 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|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 56 0.007665 9.326 1 1 +13 AADAC arylacetamide deacetylase 3 protein-coding CES5A1|DAC arylacetamide deacetylase|arylacetamide deacetylase (esterase) 38 0.005201 2.795 1 1 +14 AAMP angio associated migratory cell protein 2 protein-coding - angio-associated migratory cell protein 21 0.002874 11.28 1 1 +15 AANAT aralkylamine N-acetyltransferase 17 protein-coding DSPS|SNAT serotonin N-acetyltransferase|arylalkylamine N-acetyltransferase|serotonin acetylase 17 0.002327 0.8709 1 1 +16 AARS alanyl-tRNA synthetase 16 protein-coding CMT2N|EIEE29 alanine--tRNA ligase, cytoplasmic|alaRS|alanine tRNA ligase 1, cytoplasmic|alanyl-tRNA synthetase, cytoplasmic|renal carcinoma antigen NY-REN-42 53 0.007254 11.74 1 1 +18 ABAT 4-aminobutyrate aminotransferase 16 protein-coding GABA-AT|GABAT|NPD009 4-aminobutyrate aminotransferase, mitochondrial|(S)-3-amino-2-methylpropionate transaminase|4-aminobutyrate transaminase|GABA aminotransferase|GABA transaminase|GABA transferase|gamma-amino-N-butyrate transaminase 50 0.006844 9.357 1 1 +19 ABCA1 ATP binding cassette subfamily A member 1 9 protein-coding ABC-1|ABC1|CERP|HDLDT1|TGD ATP-binding cassette sub-family A member 1|ATP-binding cassette transporter A1|ATP-binding cassette, sub-family A (ABC1), member 1|cholesterol efflux regulatory protein|membrane-bound 149 0.02039 9.879 1 1 +20 ABCA2 ATP binding cassette subfamily A member 2 9 protein-coding ABC2 ATP-binding cassette sub-family A member 2|ATP-binding cassette 2|ATP-binding cassette transporter 2|ATP-binding cassette, sub-family A (ABC1), member 2|ATP-binding cassette, sub-family A, member 2 133 0.0182 10.45 1 1 +21 ABCA3 ATP binding cassette subfamily A member 3 16 protein-coding ABC-C|ABC3|EST111653|LBM180|SMDP3 ATP-binding cassette sub-family A member 3|ABC transporter 3|ABC-C transporter|ATP-binding cassette transporter 3|ATP-binding cassette, sub-family A (ABC1), member 3 109 0.01492 9.554 1 1 +22 ABCB7 ATP binding cassette subfamily B member 7 X protein-coding ABC7|ASAT|Atm1p|EST140535 ATP-binding cassette sub-family B member 7, mitochondrial|ABC transporter 7 protein|ATP-binding cassette sub-family B member 7|ATP-binding cassette transporter 7|ATP-binding cassette, sub-family B (MDR/TAP), member 7 48 0.00657 8.689 1 1 +23 ABCF1 ATP binding cassette subfamily F member 1 6 protein-coding ABC27|ABC50 ATP-binding cassette sub-family F member 1|ATP-binding cassette 50 (TNF-alpha stimulated)|ATP-binding cassette, sub-family F (GCN20), member 1|TNF-alpha-stimulated ABC protein|TNFalpha-inducible ATP-binding protein 65 0.008897 10.89 1 1 +24 ABCA4 ATP binding cassette subfamily A member 4 1 protein-coding ABC10|ABCR|ARMD2|CORD3|FFM|RMP|RP19|STGD|STGD1 retinal-specific ATP-binding cassette transporter|ATP binding cassette transporter|ATP-binding cassette sub-family A member 4|ATP-binding cassette transporter, retinal-specific|ATP-binding cassette, sub-family A (ABC1), member 4|ATP-binding transporter, retina-specific|RIM ABC transporter|RIM protein|photoreceptor rim protein|retina-specific ABC transporter|stargardt disease protein 158 0.02163 3.866 1 1 +25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase 9 protein-coding ABL|JTK7|bcr/abl|c-ABL|c-ABL1|p150|v-abl tyrosine-protein kinase ABL1|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|v-abl Abelson murine leukemia viral oncogene homolog 1 80 0.01095 11.11 1 1 +26 AOC1 amine oxidase, copper containing 1 7 protein-coding ABP|ABP1|DAO|DAO1|KAO amiloride-sensitive amine oxidase [copper-containing]|amiloride binding protein 1 (amine oxidase (copper-containing))|amiloride-binding protein 1|amiloride-sensitive amine oxidase|amine oxidase copper domain-containing protein 1|diamine oxidase|histaminase|kidney amine oxidase 47 0.006433 5.444 1 1 +27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase 1 protein-coding ABLL|ARG Abelson tyrosine-protein kinase 2|abelson-related gene protein|c-abl oncogene 2, non-receptor tyrosine kinase|tyrosine-protein kinase ARG|v-abl Abelson murine leukemia viral oncogene homolog 2 86 0.01177 9.728 1 1 +28 ABO ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) 9 protein-coding A3GALNT|A3GALT1|GTB|NAGAT histo-blood group ABO system transferase|B(A) alpha-1,3-galactosyltransferase|histo-blood group A2 transferase 27 0.003696 4.262 1 1 +29 ABR active BCR-related 17 protein-coding MDB active breakpoint cluster region-related protein 77 0.01054 11.06 1 1 +30 ACAA1 acetyl-CoA acyltransferase 1 3 protein-coding ACAA|PTHIO|THIO 3-ketoacyl-CoA thiolase, peroxisomal|acetyl-Coenzyme A acyltransferase 1|beta-ketothiolase|peroxisomal 3-oxoacyl-CoA thiolase|peroxisomal 3-oxoacyl-Coenzyme A thiolase|testicular tissue protein Li 197 26 0.003559 10.33 1 1 +31 ACACA acetyl-CoA carboxylase alpha 17 protein-coding ACAC|ACACAD|ACC|ACC1|ACCA acetyl-CoA carboxylase 1|ACC-alpha|acetyl-Coenzyme A carboxylase alpha 162 0.02217 10.64 1 1 +32 ACACB acetyl-CoA carboxylase beta 12 protein-coding ACC2|ACCB|HACC275 acetyl-CoA carboxylase 2|ACC-beta|acetyl-Coenzyme A carboxylase beta 182 0.02491 8.477 1 1 +33 ACADL acyl-CoA dehydrogenase, long chain 2 protein-coding ACAD4|LCAD long-chain specific acyl-CoA dehydrogenase, mitochondrial|acyl-Coenzyme A dehydrogenase, long chain 31 0.004243 3.99 1 1 +34 ACADM acyl-CoA dehydrogenase, C-4 to C-12 straight chain 1 protein-coding ACAD1|MCAD|MCADH medium-chain specific acyl-CoA dehydrogenase, mitochondrial|acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain|testicular tissue protein Li 7 34 0.004654 9.814 1 1 +35 ACADS acyl-CoA dehydrogenase, C-2 to C-3 short chain 12 protein-coding ACAD3|SCAD short-chain specific acyl-CoA dehydrogenase, mitochondrial|acyl-Coenzyme A dehydrogenase, C-2 to C-3 short chain|butyryl-CoA dehydrogenase|mitochondrial short-chain specific acyl-CoA dehydrogenase|unsaturated acyl-CoA reductase 28 0.003832 8.889 1 1 +36 ACADSB acyl-CoA dehydrogenase, short/branched chain 10 protein-coding 2-MEBCAD|ACAD7|SBCAD short/branched chain specific acyl-CoA dehydrogenase, mitochondrial|2-methyl branched chain acyl-CoA dehydrogenase|2-methylbutyryl-coenzyme A dehydrogenase|acyl-Coenzyme A dehydrogenase, short/branched chain 30 0.004106 9.396 1 1 +37 ACADVL acyl-CoA dehydrogenase, very long chain 17 protein-coding ACAD6|LCACD|VLCAD very long-chain specific acyl-CoA dehydrogenase, mitochondrial|acyl-Coenzyme A dehydrogenase, very long chain 29 0.003969 12.2 1 1 +38 ACAT1 acetyl-CoA acetyltransferase 1 11 protein-coding ACAT|MAT|T2|THIL acetyl-CoA acetyltransferase, mitochondrial|acetoacetyl Coenzyme A thiolase|acetoacetyl-CoA thiolase|acetyl-Coenzyme A acetyltransferase 1|mitochondrial acetoacetyl-CoA thiolase|testicular tissue protein Li 198 33 0.004517 10.06 1 1 +39 ACAT2 acetyl-CoA acetyltransferase 2 6 protein-coding - acetyl-CoA acetyltransferase, cytosolic|acetoacetyl Coenzyme A thiolase|acetyl-CoA transferase-like protein|cytosolic acetoacetyl-CoA thiolase 19 0.002601 9.113 1 1 +40 ASIC2 acid sensing ion channel subunit 2 17 protein-coding ACCN|ACCN1|ASIC2a|BNC1|BNaC1|MDEG|hBNaC1 acid-sensing ion channel 2|acid sensing (proton gated) ion channel 2|amiloride-sensitive cation channel 1, neuronal|brain sodium channel 1|mammalian degenerin homolog|neuronal amiloride-sensitive cation channel 1 68 0.009307 2.209 1 1 +41 ASIC1 acid sensing ion channel subunit 1 12 protein-coding ACCN2|ASIC|BNaC2 acid-sensing ion channel 1|Cation channel, amiloride-sensitive, neuronal, 2|acid sensing (proton gated) ion channel 1|acid-sensing ion channel 1a protein|amiloride-sensitive cation channel 2, neuronal|brain sodium channel 2 48 0.00657 6.695 1 1 +43 ACHE acetylcholinesterase (Cartwright blood group) 7 protein-coding ACEE|ARACHE|N-ACHE|YT acetylcholinesterase|Yt blood group|acetylcholinesterase (Yt blood group)|apoptosis-related acetylcholinesterase 47 0.006433 6.048 1 1 +47 ACLY ATP citrate lyase 17 protein-coding ACL|ATPCL|CLATP ATP-citrate synthase|ATP-citrate (pro-S-)-lyase|citrate cleavage enzyme 68 0.009307 11.81 1 1 +48 ACO1 aconitase 1 9 protein-coding ACONS|HEL60|IREB1|IREBP|IREBP1|IRP1 cytoplasmic aconitate hydratase|IRE-BP 1|aconitase 1, soluble|aconitate hydratase, cytoplasmic|citrate hydro-lyase|cytosplasmic aconitase|epididymis luminal protein 60|ferritin repressor protein|iron regulatory protein 1|iron-responsive element-binding protein 1|soluble aconitase 56 0.007665 10.15 1 1 +49 ACR acrosin 22 protein-coding - acrosin|acrosin light and heavy chain prepropeptide|preproacrosin|proacrosin 30 0.004106 1.856 1 1 +50 ACO2 aconitase 2 22 protein-coding ACONM|HEL-S-284|ICRD|OCA8|OPA9 aconitate hydratase, mitochondrial|aconitase 2, mitochondrial|citrate hydro-lyase|epididymis secretory sperm binding protein Li 284|mitochondrial aconitase 47 0.006433 11.65 1 1 +51 ACOX1 acyl-CoA oxidase 1 17 protein-coding ACOX|PALMCOX|SCOX peroxisomal acyl-coenzyme A oxidase 1|AOX|acyl-CoA oxidase 1, palmitoyl|acyl-CoA oxidase, straight-chain|acyl-Coenzyme A oxidase 1, palmitoyl|palmitoyl-CoA oxidase|peroxisomal fatty acyl-CoA oxidase|straight-chain acyl-CoA oxidase 48 0.00657 10.74 1 1 +52 ACP1 acid phosphatase 1, soluble 2 protein-coding HAAP|LMW-PTP low molecular weight phosphotyrosine protein phosphatase|LMW-PTPase|acid phosphatase of erythrocyte|adipocyte acid phosphatase|cytoplasmic phosphotyrosyl protein phosphatase|low molecular weight cytosolic acid phosphatase|protein tyrosine phosphatase|red cell acid phosphatase 1|testicular secretory protein Li 37 26 0.003559 10.69 1 1 +53 ACP2 acid phosphatase 2, lysosomal 11 protein-coding LAP lysosomal acid phosphatase 27 0.003696 10.2 1 1 +54 ACP5 acid phosphatase 5, tartrate resistant 19 protein-coding HPAP|TRACP5a|TRACP5b|TRAP|TrATPase tartrate-resistant acid phosphatase type 5|human purple acid phosphatase|tartrate-resistant acid ATPase|tartrate-resistant acid phosphatase 5a|tartrate-resistant acid phosphatase 5b 25 0.003422 9.416 1 1 +55 ACPP acid phosphatase, prostate 3 protein-coding 5'-NT|ACP-3|ACP3 prostatic acid phosphatase|TMPase|ecto-5'-nucleotidase|prostatic acid phosphotase|thiamine monophosphatase 48 0.00657 5.68 1 1 +56 ACRV1 acrosomal vesicle protein 1 11 protein-coding D11S4365|SP-10|SPACA2 acrosomal protein SP-10|sperm protein 10 19 0.002601 1.565 1 1 +58 ACTA1 actin, alpha 1, skeletal muscle 1 protein-coding ACTA|ASMA|CFTD|CFTD1|CFTDM|MPFD|NEM1|NEM2|NEM3|SHPM actin, alpha skeletal muscle|nemaline myopathy type 3 45 0.006159 2.961 1 1 +59 ACTA2 actin, alpha 2, smooth muscle, aorta 10 protein-coding AAT6|ACTSA|MYMY5 actin, aortic smooth muscle|alpha-cardiac actin|cell growth-inhibiting gene 46 protein 31 0.004243 11.68 1 1 +60 ACTB actin beta 7 protein-coding BRWS1|PS1TP5BP1 actin, cytoplasmic 1|PS1TP5-binding protein 1|beta cytoskeletal actin 72 0.009855 16.56 1 1 +69 ACTBP9 actin, beta pseudogene 9 18 pseudo - - 1 0.0001369 1 0 +70 ACTC1 actin, alpha, cardiac muscle 1 15 protein-coding ACTC|ASD5|CMD1R|CMH11|LVNC4 actin, alpha cardiac muscle 1 54 0.007391 3.722 1 1 +71 ACTG1 actin gamma 1 17 protein-coding ACT|ACTG|BRWS2|DFNA20|DFNA26|HEL-176 actin, cytoplasmic 2|cytoskeletal gamma-actin|deafness, autosomal dominant 20|deafness, autosomal dominant 26|epididymis luminal protein 176 52 0.007117 16.07 1 1 +72 ACTG2 actin, gamma 2, smooth muscle, enteric 2 protein-coding ACT|ACTA3|ACTE|ACTL3|ACTSG|VSCM actin, gamma-enteric smooth muscle|actin-like protein|alpha-actin-3 42 0.005749 7.7 1 1 +81 ACTN4 actinin alpha 4 19 protein-coding ACTININ-4|FSGS|FSGS1 alpha-actinin-4|focal segmental glomerulosclerosis 1|non-muscle alpha-actinin 4 67 0.009171 13.4 1 1 +86 ACTL6A actin like 6A 3 protein-coding ACTL6|ARPN-BETA|Arp4|BAF53A|INO80K actin-like protein 6A|53 kDa BRG1-associated factor A|BAF complex 53 kDa subunit|BAF53|BRG1-associated factor 53A|INO80 complex subunit K|actin-related protein 4|actin-related protein Baf53a|arpNbeta|hArpN beta 42 0.005749 10 1 1 +87 ACTN1 actinin alpha 1 14 protein-coding BDPLT15 alpha-actinin-1|F-actin cross-linking protein|actinin 1 smooth muscle|alpha-actinin cytoskeletal isoform|non-muscle alpha-actinin-1 51 0.006981 12.05 1 1 +88 ACTN2 actinin alpha 2 1 protein-coding CMD1AA|CMH23 alpha-actinin-2|F-actin cross-linking protein|alpha-actinin skeletal muscle 125 0.01711 3.585 1 1 +89 ACTN3 actinin alpha 3 (gene/pseudogene) 11 protein-coding - alpha-actinin-3|F-actin cross-linking protein|actinin, alpha 3|alpha-actinin skeletal muscle 78 0.01068 1.113 1 1 +90 ACVR1 activin A receptor type 1 2 protein-coding ACTRI|ACVR1A|ACVRLK2|ALK2|FOP|SKR1|TSRI activin receptor type-1|TGF-B superfamily receptor type I|activin A receptor, type I|activin A receptor, type II-like kinase 2|activin receptor type I|activin receptor-like kinase 2|hydroxyalkyl-protein kinase|serine/threonine-protein kinase receptor R1 32 0.00438 9.723 1 1 +91 ACVR1B activin A receptor type 1B 12 protein-coding ACTRIB|ACVRLK4|ALK4|SKR2 activin receptor type-1B|activin A receptor, type IB|activin A receptor, type II-like kinase 4|activin receptor-like kinase 4|serine/threonine-protein kinase receptor R2 61 0.008349 10.19 1 1 +92 ACVR2A activin A receptor type 2A 2 protein-coding ACTRII|ACVR2 activin receptor type-2A|activin A receptor, type IIA 83 0.01136 8.271 1 1 +93 ACVR2B activin A receptor type 2B 3 protein-coding ACTRIIB|ActR-IIB|HTX4 activin receptor type-2B|activin A receptor, type IIB 30 0.004106 8.25 1 1 +94 ACVRL1 activin A receptor like type 1 12 protein-coding ACVRLK1|ALK-1|ALK1|HHT|HHT2|ORW2|SKR3|TSR-I serine/threonine-protein kinase receptor R3|TGF-B superfamily receptor type I|activin A receptor type II-like 1|activin A receptor type IL|activin A receptor, type II-like kinase 1 47 0.006433 8.724 1 1 +95 ACY1 aminoacylase 1 3 protein-coding ACY-1|ACY1D|HEL-S-5 aminoacylase-1|N-acyl-L-amino-acid amidohydrolase|acylase|epididymis secretory protein Li 5 29 0.003969 9.654 1 1 +97 ACYP1 acylphosphatase 1 14 protein-coding ACYPE acylphosphatase-1|acylphosphatase 1, erythrocyte (common) type|acylphosphatase, erythrocyte isozyme|acylphosphatase, organ-common type isozyme|acylphosphate phosphohydrolase 1 7 0.0009581 6.567 1 1 +98 ACYP2 acylphosphatase 2 2 protein-coding ACYM|ACYP acylphosphatase-2|acylphosphatase 2, muscle type|acylphosphatase, muscle type isozyme|acylphosphate phosphohydrolase 2|testicular tissue protein Li 11 6 0.0008212 7.116 1 1 +100 ADA adenosine deaminase 20 protein-coding - adenosine deaminase|adenosine aminohydrolase 25 0.003422 7.448 1 1 +101 ADAM8 ADAM metallopeptidase domain 8 10 protein-coding CD156|CD156a|MS2 disintegrin and metalloproteinase domain-containing protein 8|a disintegrin and metalloproteinase domain 8|cell surface antigen MS2|human leukocyte differentiation antigen 38 0.005201 8.041 1 1 +102 ADAM10 ADAM metallopeptidase domain 10 15 protein-coding AD10|AD18|CD156c|CDw156|HsT18717|MADM|RAK|kuz disintegrin and metalloproteinase domain-containing protein 10|a disintegrin and metalloprotease domain 10|kuzbanian protein homolog|mammalian disintegrin-metalloprotease 58 0.007939 10.42 1 1 +103 ADAR adenosine deaminase, RNA specific 1 protein-coding ADAR1|AGS6|DRADA|DSH|DSRAD|G1P1|IFI-4|IFI4|K88DSRBP|P136 double-stranded RNA-specific adenosine deaminase|136 kDa double-stranded RNA-binding protein|adenosine deaminase acting on RNA 1-A|dsRNA adenosine deaminase|dsRNA adeonosine deaminase|interferon-induced protein 4|interferon-inducible protein 4 78 0.01068 12.88 1 1 +104 ADARB1 adenosine deaminase, RNA specific B1 21 protein-coding ADAR2|DRABA2|DRADA2|RED1 double-stranded RNA-specific editase 1|RED1 homolog|RNA editase|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)|dsRNA adenosine deaminase DRADA2 47 0.006433 8.682 1 1 +105 ADARB2 adenosine deaminase, RNA specific B2 (inactive) 10 protein-coding ADAR3|RED2 double-stranded RNA-specific editase B2|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)|adenosine deaminase, RNA-specific, B2 (non-functional)|dsRNA adenosine deaminase B2|homolog of rat BLUE 79 0.01081 2.379 1 1 +107 ADCY1 adenylate cyclase 1 7 protein-coding AC1|DFNB44 adenylate cyclase type 1|3',5'-cyclic AMP synthetase|ATP pyrophosphate-lyase 1|Ca(2+)/calmodulin-activated adenylyl cyclase|adenyl cyclase|adenylate cyclase 1 (brain)|adenylate cyclase type I|adenylyl cyclase 1 122 0.0167 7.208 1 1 +108 ADCY2 adenylate cyclase 2 5 protein-coding AC2|HBAC2 adenylate cyclase type 2|3',5'-cyclic AMP synthetase|ATP pyrophosphate-lyase 2|adenylate cyclase 2 (brain)|adenylate cyclase II|adenylate cyclase type II|adenylyl cyclase 2|type II adenylate cyclase 182 0.02491 5.03 1 1 +109 ADCY3 adenylate cyclase 3 2 protein-coding AC-III|AC3 adenylate cyclase type 3|ATP pyrophosphate-lyase 3|adenylate cyclase type III|adenylate cyclase, olfactive type|adenylyl cyclase 3|adenylyl cyclase, type III 66 0.009034 9.706 1 1 +111 ADCY5 adenylate cyclase 5 3 protein-coding AC5|FDFM adenylate cyclase type 5|ATP pyrophosphate-lyase 5|adenylate cyclase type V|adenylyl cyclase 5 113 0.01547 5.601 1 1 +112 ADCY6 adenylate cyclase 6 12 protein-coding AC6|LCCS8 adenylate cyclase type 6|ATP pyrophosphate-lyase 6|adenylate cyclase type VI|ca(2+)-inhibitable adenylyl cyclase 72 0.009855 10 1 1 +113 ADCY7 adenylate cyclase 7 16 protein-coding AC7 adenylate cyclase type 7|ATP pyrophosphate-lyase 7|adenylate cyclase type VII|adenylyl cyclase 7 76 0.0104 8.983 1 1 +114 ADCY8 adenylate cyclase 8 8 protein-coding AC8|ADCY3|HBAC1 adenylate cyclase type 8|ATP pyrophosphate-lyase 8|HEL-S-172mP|adenylate cyclase 8 (brain)|adenylate cyclase type VIII|adenylyl cyclase 8|adenylyl cyclase-8, brain|ca(2+)/calmodulin-activated adenylyl cyclase|epididymis secretory sperm binding protein Li 172mP 196 0.02683 2.156 1 1 +115 ADCY9 adenylate cyclase 9 16 protein-coding AC9|ACIX adenylate cyclase type 9|ATP pyrophosphate-lyase 9|adenylate cyclase type IX|adenylyl cyclase 9|type IX ATP pyrophosphate-lyase 102 0.01396 9.465 1 1 +116 ADCYAP1 adenylate cyclase activating polypeptide 1 18 protein-coding PACAP pituitary adenylate cyclase-activating polypeptide|adenylate cyclase activating polypeptide 1 (pituitary)|prepro-PACAP 20 0.002737 3.249 1 1 +117 ADCYAP1R1 ADCYAP receptor type I 7 protein-coding PAC1|PAC1R|PACAPR|PACAPRI pituitary adenylate cyclase-activating polypeptide type I receptor|PACAP receptor 1|PACAP type I receptor|PACAP-R1|adenylate cyclase activating polypeptide 1 (pituitary) receptor type I|pituitary adenylate cyclase activating polypeptide 1 receptor type I Hiphop 66 0.009034 2.029 1 1 +118 ADD1 adducin 1 4 protein-coding ADDA alpha-adducin|adducin 1 (alpha)|erythrocyte adducin alpha subunit 58 0.007939 12.26 1 1 +119 ADD2 adducin 2 2 protein-coding ADDB beta-adducin|adducin 2 (beta)|erythrocyte adducin subunit beta 78 0.01068 5.054 1 1 +120 ADD3 adducin 3 10 protein-coding ADDL|CPSQ3 gamma-adducin|adducin 3 (gamma)|adducin-like protein 70 54 0.007391 10.65 1 1 +123 PLIN2 perilipin 2 9 protein-coding ADFP|ADRP perilipin-2|adipophilin|adipose differentiation-related protein 34 0.004654 9.88 1 1 +124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide 4 protein-coding ADH1 alcohol dehydrogenase 1A|ADH, alpha subunit|alcohol dehydrogenase 1 (class I), alpha polypeptide|alcohol dehydrogenase subunit alpha|aldehyde reductase 36 0.004927 1.804 1 1 +125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide 4 protein-coding ADH2|HEL-S-117 alcohol dehydrogenase 1B|ADH, beta subunit|alcohol dehydrogenase 2 (class I), beta polypeptide|alcohol dehydrogenase subunit beta|aldehyde reductase|epididymis secretory protein Li 117 43 0.005886 5.693 1 1 +126 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide 4 protein-coding ADH3 alcohol dehydrogenase 1C|ADH, gamma subunit|alcohol dehydrogenase 3 (class I), gamma polypeptide|aldehyde reductase 67 0.009171 3.995 1 1 +127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide 4 protein-coding ADH-2|HEL-S-4 alcohol dehydrogenase 4|alcohol dehydrogenase class II pi chain|aldehyde reductase|epididymis secretory protein Li 4 28 0.003832 1.503 1 1 +128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide 4 protein-coding ADH-3|ADHX|FALDH|FDH|GSH-FDH|GSNOR|HEL-S-60p alcohol dehydrogenase class-3|S-(hydroxymethyl)glutathione dehydrogenase|S-nitrosoglutathione reductase|alcohol dehydrogenase (class III), chi polypeptide|alcohol dehydrogenase class chi chain|alcohol dehydrogenase class-III|epididymis secretory sperm binding protein Li 60p|formaldehyde dehydrogenase|glutathione-dependent formaldehyde dehydrogenase 27 0.003696 11.27 1 1 +130 ADH6 alcohol dehydrogenase 6 (class V) 4 protein-coding ADH-5 alcohol dehydrogenase 6|aldehyde reductase 41 0.005612 2.593 1 1 +131 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide 4 protein-coding ADH4 alcohol dehydrogenase class 4 mu/sigma chain|alcohol dehydrogenase VII|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 38 0.005201 1.652 1 1 +132 ADK adenosine kinase 10 protein-coding AK adenosine kinase|adenosine 5'-phosphotransferase|testicular tissue protein Li 14 17 0.002327 8.753 1 1 +133 ADM adrenomedullin 11 protein-coding AM|PAMP ADM|preproadrenomedullin|proadrenomedullin N-20 terminal peptide 17 0.002327 8.616 1 1 +134 ADORA1 adenosine A1 receptor 1 protein-coding RDC7 adenosine receptor A1|adenosine A1 receptor variant 1|adenosine A1 receptor variant 2 41 0.005612 6.467 1 1 +135 ADORA2A adenosine A2a receptor 22 protein-coding A2aR|ADORA2|RDC8 adenosine receptor A2a|adenosine receptor subtype A2a 27 0.003696 6.915 1 1 +136 ADORA2B adenosine A2b receptor 17 protein-coding ADORA2 adenosine receptor A2b 10 0.001369 5.983 1 1 +140 ADORA3 adenosine A3 receptor 1 protein-coding A3AR adenosine receptor A3 46 0.006296 6.666 1 1 +141 ADPRH ADP-ribosylarginine hydrolase 3 protein-coding ARH1 ADP-ribosylarginine hydrolase|ADP-ribose-L-arginine cleaving enzyme|[Protein ADP-ribosylarginine] hydrolase 31 0.004243 7.749 1 1 +142 PARP1 poly(ADP-ribose) polymerase 1 1 protein-coding ADPRT|ADPRT 1|ADPRT1|ARTD1|PARP|PARP-1|PPOL|pADPRT-1 poly [ADP-ribose] polymerase 1|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|poly(ADP-ribose) synthetase|poly(ADP-ribosyl)transferase|poly[ADP-ribose] synthase 1 70 0.009581 11.9 1 1 +143 PARP4 poly(ADP-ribose) polymerase family member 4 13 protein-coding ADPRTL1|ARTD4|PARP-4|PARPL|PH5P|VAULT3|VPARP|VWA5C|p193 poly [ADP-ribose] polymerase 4|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) synthetase|poly(ADP-ribosyl)transferase-like 1|vault poly(ADP-ribose) polymerase|vault protein, 193-kDa|von Willebrand factor A domain containing 5C 102 0.01396 10.7 1 1 +146 ADRA1D adrenoceptor alpha 1D 20 protein-coding ADRA1|ADRA1A|ADRA1R|ALPHA1|DAR|dJ779E11.2 alpha-1D adrenergic receptor|adrenergic, alpha -1D-, receptor|adrenergic, alpha-1A-, receptor|alpha-1A adrenergic receptor|alpha-1D adrenoceptor|alpha-1D adrenoreceptor|alpha-adrenergic receptor 1a 39 0.005338 2.816 1 1 +147 ADRA1B adrenoceptor alpha 1B 5 protein-coding ADRA1|ALPHA1BAR alpha-1B adrenergic receptor|adrenergic, alpha-1B-, receptor|alpha-1B adrenoceptor|alpha-1B adrenoreceptor 27 0.003696 4.14 1 1 +148 ADRA1A adrenoceptor alpha 1A 8 protein-coding ADRA1C|ADRA1L1|ALPHA1AAR alpha-1A adrenergic receptor|G protein coupled receptor|adrenergic, alpha-1A-, receptor|alpha-1A adrenoceptor|alpha-1A adrenoreceptor|alpha-1C adrenergic receptor 64 0.00876 1.826 1 1 +150 ADRA2A adrenoceptor alpha 2A 10 protein-coding ADRA2|ADRA2R|ADRAR|ALPHA2AAR|ZNF32 alpha-2A adrenergic receptor|adrenergic, alpha-2A-, receptor|alpha-2 adrenergic receptor subtype C10|alpha-2-adrenergic receptor, platelet type|alpha-2A adrenoceptor|alpha-2A adrenoreceptor|alpha-2AAR subtype C10 24 0.003285 6.605 1 1 +151 ADRA2B adrenoceptor alpha 2B 2 protein-coding ADRA2L1|ADRA2RL1|ADRARL1|ALPHA2BAR|FAME2|alpha-2BAR alpha-2B adrenergic receptor|ADRA2B adrenergic, alpha-2B-, receptor|G-protein coupled receptor|alpha-2 adrenergic receptor subtype C2|alpha-2-adrenergic receptor-like 1|alpha-2B adrenoreceptor 35 0.004791 4.225 1 1 +152 ADRA2C adrenoceptor alpha 2C 4 protein-coding ADRA2L2|ADRA2RL2|ADRARL2|ALPHA2CAR alpha-2C adrenergic receptor|adrenergic, alpha-2C-, receptor|alpha-2 adrenergic receptor subtype C4|alpha-2C adrenoceptor|alpha-2C adrenoreceptor|alpha-2CAR|alpha2-AR-C4 27 0.003696 5.541 1 1 +153 ADRB1 adrenoceptor beta 1 10 protein-coding ADRB1R|B1AR|BETA1AR|RHR beta-1 adrenergic receptor|adrenergic, beta-1-, receptor|beta-1 adrenoceptor|beta-1 adrenoreceptor 19 0.002601 3.911 1 1 +154 ADRB2 adrenoceptor beta 2 5 protein-coding ADRB2R|ADRBR|B2AR|BAR|BETA2AR beta-2 adrenergic receptor|adrenergic, beta-2-, receptor, surface|adrenoceptor beta 2 surface|beta-2 adrenoceptor|beta-2 adrenoreceptor|catecholamine receptor 32 0.00438 5.828 1 1 +155 ADRB3 adrenoceptor beta 3 8 protein-coding BETA3AR beta-3 adrenergic receptor|adrenergic, beta-3-, receptor|beta-3 adrenoceptor|beta-3 adrenoreceptor 23 0.003148 1.168 1 1 +156 GRK2 G protein-coupled receptor kinase 2 11 protein-coding ADRBK1|BARK1|BETA-ARK1 beta-adrenergic receptor kinase 1|adrenergic beta receptor kinase 1|beta-ARK-1 55 0.007528 11.25 1 1 +157 GRK3 G protein-coupled receptor kinase 3 22 protein-coding ADRBK2|BARK2 beta-adrenergic receptor kinase 2|adrenergic, beta, receptor kinase 2|beta-ARK-2 43 0.005886 8.818 1 1 +158 ADSL adenylosuccinate lyase 22 protein-coding AMPS|ASASE|ASL adenylosuccinate lyase|adenylosuccinase 35 0.004791 9.891 1 1 +159 ADSS adenylosuccinate synthase 1 protein-coding ADEH|ADSS 2 adenylosuccinate synthetase isozyme 2|AMPSase 2|IMP--aspartate ligase 2|L-type adenylosuccinate synthetase|adSS 2|adenylosuccinate synthetase (Ade(-)H-complementing)|adenylosuccinate synthetase, acidic isozyme|adenylosuccinate synthetase, liver isozyme 33 0.004517 10.29 1 1 +160 AP2A1 adaptor related protein complex 2 alpha 1 subunit 19 protein-coding ADTAA|AP2-ALPHA|CLAPA1 AP-2 complex subunit alpha-1|100 kDa coated vesicle protein A|adapter-related protein complex 2 alpha-1 subunit|adapter-related protein complex 2 subunit alpha-1|adaptin, alpha A|adaptor protein complex AP-2 subunit alpha-1|adaptor-related protein complex 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 43 0.005886 11.23 1 1 +161 AP2A2 adaptor related protein complex 2 alpha 2 subunit 11 protein-coding ADTAB|CLAPA2|HIP-9|HIP9|HYPJ AP-2 complex subunit alpha-2|100 kDa coated vesicle protein C|adapter-related protein complex 2 subunit alpha-2|adaptin, alpha B|adaptor-related protein complex 2 subunit alpha-2|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 56 0.007665 10.77 1 1 +162 AP1B1 adaptor related protein complex 1 beta 1 subunit 22 protein-coding ADTB1|AP105A|BAM22|CLAPB2 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|adaptor-related protein complex 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 51 0.006981 11.66 1 1 +163 AP2B1 adaptor related protein complex 2 beta 1 subunit 17 protein-coding ADTB2|AP105B|AP2-BETA|CLAPB1 AP-2 complex subunit beta|adapter-related protein complex 2 beta subunit|adapter-related protein complex 2 subunit beta|adaptin, beta 2 (beta)|adaptor protein complex AP-2 subunit beta|adaptor-related protein complex 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|testicular tissue protein Li 22 65 0.008897 12.45 1 1 +164 AP1G1 adaptor related protein complex 1 gamma 1 subunit 16 protein-coding ADTG|CLAPG1 AP-1 complex subunit gamma-1|adapter-related protein complex 1 subunit gamma-1|adaptor protein complex AP-1 subunit gamma-1|adaptor-related protein complex 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|testicular tissue protein Li 21 57 0.007802 11 1 1 +165 AEBP1 AE binding protein 1 7 protein-coding ACLP adipocyte enhancer-binding protein 1|aortic carboxypeptidase-like protein 97 0.01328 12.04 1 1 +166 AES amino-terminal enhancer of split 19 protein-coding AES-1|AES-2|ESP1|GRG|GRG5|Grg-5|TLE5 amino-terminal enhancer of split|gp130-associated protein GAM|groucho-related protein 5 9 0.001232 12.91 1 1 +167 CRISP1 cysteine rich secretory protein 1 6 protein-coding AEGL1|ARP|CRISP-1|HEL-S-57|HSCRISP1D|HSCRISP1G|HUMARP cysteine-rich secretory protein 1|AEG-like protein|AEG-related protein|acidic epididymal glycoprotein homolog|acidic epididymal glycoprotein-like 1|cysteine-rich secretory protein-1 delta|epididymis secretory protein Li 57 40 0.005475 0.1428 1 1 +172 AFG3L1P AFG3 like matrix AAA peptidase subunit 1, pseudogene 16 pseudo AFG3|AFG3L1 AFG3 (ATPase family gene 3, yeast)-like 1|AFG3 ATPase family gene 3-like 1, pseudogene|AFG3 ATPase family member 3-like 1, pseudogene|AFG3 like AAA ATPase 1, pseudogene 22 0.003011 7.832 1 1 +173 AFM afamin 4 protein-coding ALB2|ALBA|ALF afamin|alpha-Alb|alpha-albumin 51 0.006981 0.7673 1 1 +174 AFP alpha fetoprotein 4 protein-coding AFPD|FETA|HPAFP alpha-fetoprotein|alpha-1-fetoprotein|alpha-fetoglobulin 45 0.006159 1.513 1 1 +175 AGA aspartylglucosaminidase 4 protein-coding AGU|ASRG|GA N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase|N4-(N-acetyl-beta-glucosaminyl)-L-asparagine amidase|aspartylglucosylamine deaspartylase|glycosylasparaginase 33 0.004517 8.793 1 1 +176 ACAN aggrecan 15 protein-coding AGC1|AGCAN|CSPG1|CSPGCP|MSK16|SEDK aggrecan core protein|cartilage-specific proteoglycan core protein|chondroitin sulfate proteoglycan core protein 1|large aggregating proteoglycan 206 0.0282 5.83 1 1 +177 AGER advanced glycosylation end-product specific receptor 6 protein-coding RAGE|SCARJ1 advanced glycosylation end product-specific receptor|RAGE isoform NtRAGE-delta|RAGE isoform sRAGE-delta|receptor for advanced glycation end-products variant 20 19 0.002601 6.092 1 1 +178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase 1 protein-coding GDE glycogen debranching enzyme|amylo-1, 6-glucosidase, 4-alpha-glucanotransferase|amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferaseprovided|glycogen debrancher|glycogen debranching protein 100 0.01369 9.434 1 1 +181 AGRP agouti related neuropeptide 16 protein-coding AGRT|ART|ASIP2 agouti-related protein|agouti related protein homolog 7 0.0009581 0.8721 1 1 +182 JAG1 jagged 1 20 protein-coding AGS|AGS1|AHD|AWS|CD339|HJ1|JAGL1 protein jagged-1 99 0.01355 10.73 1 1 +183 AGT angiotensinogen 1 protein-coding ANHU|SERPINA8 angiotensinogen|alpha-1 antiproteinase, antitrypsin|angiotensin I|angiotensin II|angiotensinogen (serpin peptidase inhibitor, clade A, member 8)|pre-angiotensinogen|serine (or cysteine) proteinase inhibitor|serpin A8|serpin peptidase inhibitor, clade A, member 8 37 0.005064 8.046 1 1 +185 AGTR1 angiotensin II receptor type 1 3 protein-coding AG2S|AGTR1B|AT1|AT1AR|AT1B|AT1BR|AT1R|AT2R1|HAT1R type-1 angiotensin II receptor|type-1B angiotensin II receptor 52 0.007117 4.607 1 1 +186 AGTR2 angiotensin II receptor type 2 X protein-coding AT2|ATGR2|MRX88 type-2 angiotensin II receptor|angiotensin II type-2 receptor 40 0.005475 0.7572 1 1 +187 APLNR apelin receptor 11 protein-coding AGTRL1|APJ|APJR|HG11 apelin receptor|APJ (apelin) receptor|APJ receptor|G protein-coupled receptor APJ|G-protein coupled receptor HG11|HG11 orphan receptor|angiotensin II receptor-like 1|angiotensin receptor-like 1 46 0.006296 8.565 1 1 +189 AGXT alanine-glyoxylate aminotransferase 2 protein-coding AGT|AGT1|AGXT1|PH1|SPAT|SPT|TLH6 serine--pyruvate aminotransferase|L-alanine: glyoxylate aminotransferase 1|hepatic peroxisomal alanine:glyoxylate aminotransferase 32 0.00438 1.644 1 1 +190 NR0B1 nuclear receptor subfamily 0 group B member 1 X protein-coding AHC|AHCH|AHX|DAX-1|DAX1|DSS|GTD|HHG|NROB1|SRXY2 nuclear receptor subfamily 0 group B member 1|DSS-AHC critical region on the X chromosome protein 1|nuclear hormone receptor|nuclear receptor DAX-1 54 0.007391 1.583 1 1 +191 AHCY adenosylhomocysteinase 20 protein-coding SAHH|adoHcyase adenosylhomocysteinase|S-adenosyl-L-homocysteine hydrolase|S-adenosylhomocysteine hydrolase 24 0.003285 12.02 1 1 +196 AHR aryl hydrocarbon receptor 7 protein-coding bHLHe76 aryl hydrocarbon receptor|AH-receptor|ah receptor|aromatic hydrocarbon receptor|class E basic helix-loop-helix protein 76 64 0.00876 10.56 1 1 +197 AHSG alpha 2-HS glycoprotein 3 protein-coding A2HS|AHS|FETUA|HSGA alpha-2-HS-glycoprotein|alpha-2-Z-globulin|ba-alpha-2-glycoprotein|fetuin-A 35 0.004791 1.73 1 1 +199 AIF1 allograft inflammatory factor 1 6 protein-coding AIF-1|IBA1|IRT-1|IRT1 allograft inflammatory factor 1|interferon gamma responsive transcript|ionized calcium-binding adapter molecule 1|protein G1 11 0.001506 8.385 1 1 +202 AIM1 absent in melanoma 1 6 protein-coding CRYBG1|ST4 absent in melanoma 1 protein|beta-gamma crystallin domain containing 1|beta/gamma crystallin domain-containing protein 1|suppression of tumorigenicity 4 (malignant melanoma) 124 0.01697 9.465 1 1 +203 AK1 adenylate kinase 1 9 protein-coding HTL-S-58j adenylate kinase isoenzyme 1|ATP-AMP transphosphorylase 1|ATP:AMP phosphotransferase|adenylate monophosphate kinase|myokinase|testis secretory sperm binding protein Li 58j 11 0.001506 9.688 1 1 +204 AK2 adenylate kinase 2 1 protein-coding ADK2 adenylate kinase 2, mitochondrial|AK 2|ATP-AMP transphosphorylase 2|ATP:AMP phosphotransferase|adenylate kinase isoenzyme 2, mitochondrial|adenylate monophosphate kinase|testis secretory sperm-binding protein Li 220n 18 0.002464 11.1 1 1 +205 AK4 adenylate kinase 4 1 protein-coding AK 4|AK3|AK3L1|AK3L2 adenylate kinase 4, mitochondrial|AK 4|ATP-AMP transphosphorylase|GTP:AMP phosphotransferase AK4, mitochondrial|adenylate kinase 3-like 1|adenylate kinase isoenzyme 4, mitochondrial|mitochondrial adenylate kinase-3|nucleoside-triphosphate-adenylate kinase 12 0.001642 7.916 1 1 +207 AKT1 AKT serine/threonine kinase 1 14 protein-coding AKT|CWS6|PKB|PKB-ALPHA|PRKBA|RAC|RAC-ALPHA RAC-alpha serine/threonine-protein kinase|AKT1m|PKB alpha|RAC-PK-alpha|protein kinase B alpha|proto-oncogene c-Akt|rac protein kinase alpha|serine-threonine protein kinase|v-akt murine thymoma viral oncogene homolog 1|v-akt murine thymoma viral oncogene-like protein 1 38 0.005201 11.89 1 1 +208 AKT2 AKT serine/threonine kinase 2 19 protein-coding HIHGHH|PKBB|PKBBETA|PRKBB|RAC-BETA RAC-beta serine/threonine-protein kinase|PKB beta|RAC-PK-beta|murine thymoma viral (v-akt) homolog-2|protein kinase Akt-2|protein kinase B beta|putative v-akt murine thymoma viral oncoprotein 2|rac protein kinase beta|v-akt murine thymoma viral oncogene homolog 2 41 0.005612 11.34 1 1 +210 ALAD aminolevulinate dehydratase 9 protein-coding ALADH|PBGS delta-aminolevulinic acid dehydratase|aminolevulinate, delta-, dehydratase|porphobilinogen synthase|testicular tissue protein Li 95 23 0.003148 10.23 1 1 +211 ALAS1 5'-aminolevulinate synthase 1 3 protein-coding ALAS|ALAS-H|ALAS3|ALASH|MIG4 5-aminolevulinate synthase, nonspecific, mitochondrial|5-aminolevulinic acid synthase 1|aminolevulinate, delta-, synthase 1|delta-ALA synthase 1|delta-aminolevulinate synthase 1|migration-inducing protein 4 30 0.004106 10.3 1 1 +212 ALAS2 5'-aminolevulinate synthase 2 X protein-coding ALAS-E|ALASE|ANH1|ASB|SIDBA1|XLDPP|XLEPP|XLSA 5-aminolevulinate synthase, erythroid-specific, mitochondrial|5-aminolevulinic acid synthase 2|aminolevulinate, delta-, synthase 2|delta-ALA synthase 2|delta-ALA synthetase|delta-aminolevulinate synthase 2 58 0.007939 1.068 1 1 +213 ALB albumin 4 protein-coding HSA|PRO0883|PRO0903|PRO1341 serum albumin 99 0.01355 3.708 1 1 +214 ALCAM activated leukocyte cell adhesion molecule 3 protein-coding CD166|MEMD CD166 antigen 56 0.007665 10.95 1 1 +215 ABCD1 ATP binding cassette subfamily D member 1 X protein-coding ABC42|ALD|ALDP|AMN ATP-binding cassette sub-family D member 1|ATP-binding cassette, sub-family D (ALD), member 1|adrenoleukodystrophy protein 56 0.007665 8.92 1 1 +216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 9 protein-coding ALDC|ALDH-E1|ALDH1|ALDH11|HEL-9|HEL-S-53e|HEL12|PUMB1|RALDH1 retinal dehydrogenase 1|ALDH class 1|ALHDII|RALDH 1|acetaldehyde dehydrogenase 1|aldehyde dehydrogenase 1, soluble|aldehyde dehydrogenase, liver cytosolic|epididymis luminal protein 12|epididymis luminal protein 9|epididymis secretory sperm binding protein Li 53e|retinaldehyde dehydrogenase 1 37 0.005064 9.832 1 1 +217 ALDH2 aldehyde dehydrogenase 2 family (mitochondrial) 12 protein-coding ALDH-E2|ALDHI|ALDM aldehyde dehydrogenase, mitochondrial|ALDH class 2|acetaldehyde dehydrogenase 2|liver mitochondrial ALDH|nucleus-encoded mitochondrial aldehyde dehydrogenase 2 38 0.005201 11.49 1 1 +218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 17 protein-coding ALDH3|ALDHIII aldehyde dehydrogenase, dimeric NADP-preferring|aldehyde dehydrogenase isozyme 3|aldehyde dehydrogenase type III|stomach aldehyde dehydrogenase 42 0.005749 5.316 1 1 +219 ALDH1B1 aldehyde dehydrogenase 1 family member B1 9 protein-coding ALDH5|ALDHX aldehyde dehydrogenase X, mitochondrial|ALDH class 2|acetaldehyde dehydrogenase 5|aldehyde dehydrogenase 5 45 0.006159 9.718 1 1 +220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 15 protein-coding ALDH1A6|ALDH6|MCOP8|RALDH3 aldehyde dehydrogenase family 1 member A3|acetaldehyde dehydrogenase 6|aldehyde dehydrogenase 6|retinaldehyde dehydrogenase 3 42 0.005749 8.374 1 1 +221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 11 protein-coding ALDH4|ALDH7 aldehyde dehydrogenase family 3 member B1|aldehyde dehydrogenase 3B1|aldehyde dehydrogenase 7 26 0.003559 8.488 1 1 +222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 11 protein-coding ALDH8 aldehyde dehydrogenase family 3 member B2|acetaldehyde dehydrogenase 8|aldehyde dehydrogenase 8 36 0.004927 5.759 1 1 +223 ALDH9A1 aldehyde dehydrogenase 9 family member A1 1 protein-coding ALDH4|ALDH7|ALDH9|E3|TMABADH 4-trimethylaminobutyraldehyde dehydrogenase|R-aminobutyraldehyde dehydrogenase|aldehyde dehydrogenase (NAD+)|aldehyde dehydrogenase E3 isozyme|aldehyde dehydrogenase family 9 member A1|gamma-aminobutyraldehyde dehydrogenase 36 0.004927 11.11 1 1 +224 ALDH3A2 aldehyde dehydrogenase 3 family member A2 17 protein-coding ALDH10|FALDH|SLS fatty aldehyde dehydrogenase|aldehyde dehydrogenase 10|aldehyde dehydrogenase family 3 member A2|microsomal aldehyde dehydrogenase 39 0.005338 11.05 1 1 +225 ABCD2 ATP binding cassette subfamily D member 2 12 protein-coding ABC39|ALDL1|ALDR|ALDRP|hALDR ATP-binding cassette sub-family D member 2|ATP-binding cassette, sub-family D (ALD), member 2|adrenoleukodystrophy-like 1|adrenoleukodystrophy-related protein 73 0.009992 3.716 1 1 +226 ALDOA aldolase, fructose-bisphosphate A 16 protein-coding ALDA|GSD12|HEL-S-87p fructose-bisphosphate aldolase A|aldolase A, fructose-bisphosphate|epididymis secretory sperm binding protein Li 87p|fructose-1,6-bisphosphate triosephosphate-lyase|lung cancer antigen NY-LU-1|muscle-type aldolase 30 0.004106 14.62 1 1 +229 ALDOB aldolase, fructose-bisphosphate B 9 protein-coding ALDB|ALDO2 fructose-bisphosphate aldolase B|aldolase 2|aldolase B, fructose-bisphosphatase|aldolase B, fructose-bisphosphate|liver-type aldolase 49 0.006707 3.63 1 1 +230 ALDOC aldolase, fructose-bisphosphate C 17 protein-coding ALDC fructose-bisphosphate aldolase C|aldolase 3|aldolase C, fructose-bisphosphate|brain-type aldolase|fructoaldolase C|fructose-1,6-biphosphate triosephosphate lyase 22 0.003011 9.064 1 1 +231 AKR1B1 aldo-keto reductase family 1 member B 7 protein-coding ADR|ALDR1|ALR2|AR aldose reductase|Lii5-2 CTCL tumor antigen|aldehyde reductase 1|aldo-keto reductase family 1 member B1|aldo-keto reductase family 1, member B1 (aldose reductase)|low Km aldose reductase 26 0.003559 10.37 1 1 +238 ALK anaplastic lymphoma receptor tyrosine kinase 2 protein-coding CD246|NBLST3 ALK tyrosine kinase receptor|CD246 antigen|mutant anaplastic lymphoma kinase 138 0.01889 2.82 1 1 +239 ALOX12 arachidonate 12-lipoxygenase, 12S type 17 protein-coding 12-LOX|12S-LOX|LOG12 arachidonate 12-lipoxygenase, 12S-type|12(S)-lipoxygenase|12S-lipoxygenase|arachidonate 12-lipoxygenase|lipoxin synthase 12-LO|platelet 12-LOX|platelet-type 12-lipoxygenase|platelet-type lipoxygenase 12 41 0.005612 3.17 1 1 +240 ALOX5 arachidonate 5-lipoxygenase 10 protein-coding 5-LO|5-LOX|5LPG|LOG5 arachidonate 5-lipoxygenase|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 67 0.009171 8.323 1 1 +241 ALOX5AP arachidonate 5-lipoxygenase activating protein 13 protein-coding FLAP arachidonate 5-lipoxygenase-activating protein|MK-886-binding protein 10 0.001369 7.824 1 1 +242 ALOX12B arachidonate 12-lipoxygenase, 12R type 17 protein-coding 12R-LOX|ARCI2 arachidonate 12-lipoxygenase, 12R-type|12R-lipoxygenase|epidermis-type lipoxygenase 12 49 0.006707 2.431 1 1 +244 4.64 0 1 +245 ALOX12P2 arachidonate 12-lipoxygenase pseudogene 2 17 pseudo ALOX12E 12-lipoxygenase-related protein|hair and skin epidermal-type 12-lipoxygenase-related pseudogene 8 0.001095 3.633 1 1 +246 ALOX15 arachidonate 15-lipoxygenase 17 protein-coding 12-LOX|15-LOX-1|15LOX-1 arachidonate 15-lipoxygenase|12/15-lipoxygenase|15-LOX|15-lipooxygenase-1|arachidonate 12-lipoxygenase, leukocyte-type|arachidonate omega-6 lipoxygenase 38 0.005201 2.834 1 1 +247 ALOX15B arachidonate 15-lipoxygenase, type B 17 protein-coding 15-LOX-2 arachidonate 15-lipoxygenase B|15-LOX-B|15S-lipoxygenase|arachidonate 15-lipoxygenase 2|arachidonate 15-lipoxygenase type II|arachidonate 15-lipoxygenase, second type|arachidonate omega(6) lipoxygenase|linoleate 13-lipoxygenase 15-LOb 49 0.006707 6.044 1 1 +248 ALPI alkaline phosphatase, intestinal 2 protein-coding IAP intestinal-type alkaline phosphatase|Kasahara isozyme|alkaline phosphomonoesterase|glycerophosphatase|intestinal alkaline phosphatase 40 0.005475 0.9202 1 1 +249 ALPL alkaline phosphatase, liver/bone/kidney 1 protein-coding AP-TNAP|APTNAP|HOPS|TNAP|TNSALP alkaline phosphatase, tissue-nonspecific isozyme|alkaline phosphatase liver/bone/kidney isozyme|liver/bone/kidney-type alkaline phosphatase|tissue-nonspecific ALP 43 0.005886 8.256 1 1 +250 ALPP alkaline phosphatase, placental 2 protein-coding ALP|PALP|PLAP|PLAP-1 alkaline phosphatase, placental type|alkaline phosphatase Regan isozyme|alkaline phosphomonoesterase|glycerophosphatase|placental alkaline phosphatase 1 83 0.01136 1.628 1 1 +251 ALPPL2 alkaline phosphatase, placental like 2 2 protein-coding ALPG|ALPPL|GCAP alkaline phosphatase, placental-like|ALP-1|Nagao isozyme|alkaline phosphatase Nagao isozyme|germ cell alkaline phosphatase|placental-like alkaline phosphatase|testicular and thymus alkaline phosphatase 36 0.004927 1.335 1 1 +257 ALX3 ALX homeobox 3 1 protein-coding FND|FND1 homeobox protein aristaless-like 3|aristaless-like homeobox 3|frontonasal dysplasia|proline-rich transcription factor ALX3 17 0.002327 4.574 1 1 +258 AMBN ameloblastin 4 protein-coding AI1F ameloblastin|ameloblastin (enamel matrix protein)|enamel matrix protein 44 0.006022 0.2088 1 1 +259 AMBP alpha-1-microglobulin/bikunin precursor 9 protein-coding A1M|EDC1|HCP|HI30|IATIL|ITI|ITIL|ITILC|UTI protein AMBP|bikunin|complex-forming glycoprotein heterogeneous in charge|growth-inhibiting protein 19|inter-alpha-trypsin inhibitor light chain|protein HC|trypstatin|uristatin|uronic-acid-rich protein 24 0.003285 3.116 1 1 +262 AMD1 adenosylmethionine decarboxylase 1 6 protein-coding ADOMETDC|AMD|SAMDC S-adenosylmethionine decarboxylase proenzyme|S-adenosylmethionine decarboxylase 1 29 0.003969 10.81 1 1 +265 AMELX amelogenin, X-linked X protein-coding AI1E|AIH1|ALGN|AMG|AMGL|AMGX amelogenin, X isoform|amelogenesis imperfecta 1|amelogenin (X chromosome, amelogenesis imperfecta 1)|amelogenin (amelogenesis imperfecta 1, X-linked) 21 0.002874 0.2032 1 1 +266 AMELY amelogenin, Y-linked Y protein-coding AMGL|AMGY amelogenin, Y isoform|amelogenin (Y chromosome) 7 0.0009581 0.1524 1 1 +267 AMFR autocrine motility factor receptor 16 protein-coding GP78|RNF45 E3 ubiquitin-protein ligase AMFR|RING finger protein 45 37 0.005064 11.33 1 1 +268 AMH anti-Mullerian hormone 19 protein-coding MIF|MIS muellerian-inhibiting factor|Mullerian inhibiting factor|Mullerian inhibiting substance|anti-Muellerian hormone|muellerian-inhibiting substance 20 0.002737 3.589 1 1 +269 AMHR2 anti-Mullerian hormone receptor type 2 12 protein-coding AMHR|MISR2|MISRII|MRII anti-Muellerian hormone type-2 receptor|AMH type II receptor|MIS type II receptor|Muellerian inhibiting substance type II receptor|Mullerian inhibiting substance type II receptor|anti-Muellerian hormone type II receptor|anti-Mullerian hormone receptor, type II 45 0.006159 1.162 1 1 +270 AMPD1 adenosine monophosphate deaminase 1 1 protein-coding MAD|MADA|MMDD AMP deaminase 1|AMPD|adenosine monophosphate deaminase 1 (isoform M)|adenosine monophosphate deaminase-1 (muscle)|myoadenylate deaminase|skeletal muscle AMPD 98 0.01341 1.562 1 1 +271 AMPD2 adenosine monophosphate deaminase 2 1 protein-coding PCH9|SPG63 AMP deaminase 2|AMPD|adenosine monophosphate deaminase 2 (isoform L) 55 0.007528 9.99 1 1 +272 AMPD3 adenosine monophosphate deaminase 3 11 protein-coding - AMP deaminase 3|AMP aminohydrolase|adenosine monophosphate deaminase (isoform E)|erythrocyte AMP deaminase|erythrocyte type AMP deaminase|erythrocyte-specific AMP deaminase|myoadenylate deaminase 62 0.008486 8.179 1 1 +273 AMPH amphiphysin 7 protein-coding AMPH1 amphiphysin|amphiphysin (Stiff-Mann syndrome with breast cancer 128kD autoantigen)|amphiphysin I 114 0.0156 4.906 1 1 +274 BIN1 bridging integrator 1 2 protein-coding AMPH2|AMPHL|SH3P9 myc box-dependent-interacting protein 1|amphiphysin II|amphiphysin-like protein|box dependant MYC interacting protein 1|box-dependent myc-interacting protein 1 35 0.004791 9.857 1 1 +275 AMT aminomethyltransferase 3 protein-coding GCE|GCST|GCVT|NKH aminomethyltransferase, mitochondrial|glycine cleavage system T protein 21 0.002874 7.063 1 1 +276 AMY1A amylase, alpha 1A (salivary) 1 protein-coding AMY1 alpha-amylase 1|1,4-alpha-D-glucan glucanohydrolase 1|amylase, salivary, alpha-1A|glycogenase|salivary alpha-amylase|salivary amylase alpha 1A 7 0.0009581 2.923 1 1 +277 AMY1B amylase, alpha 1B (salivary) 1 protein-coding AMY1 alpha-amylase 1|1,4-alpha-D-glucan glucanohydrolase 1|amylase, salivary, alpha-1B|glycogenase|salivary alpha-amylase|salivary amylase alpha 1B 2 0.0002737 1 0 +278 AMY1C amylase, alpha 1C (salivary) 1 protein-coding AMY1 alpha-amylase 1|1,4-alpha-D-glucan glucanohydrolase 1|amylase, salivary, alpha-1C|glycogenase|salivary alpha-amylase|salivary amylase alpha 1C 5 0.0006844 1 0 +279 AMY2A amylase, alpha 2A (pancreatic) 1 protein-coding AMY2|PA pancreatic alpha-amylase|1,4-alpha-D-glucan glucanohydrolase|glycogenase|pancreatic amylase alpha 2A 35 0.004791 1.548 1 1 +280 AMY2B amylase, alpha 2B (pancreatic) 1 protein-coding AMY2|AMY3|HXA alpha-amylase 2B|1,4-alpha-D-glucan glucanohydrolase 2B|carcinoid alpha-amylase|glycogenase 73 0.009992 6.654 1 1 +283 ANG angiogenin 14 protein-coding ALS9|HEL168|RAA1|RNASE4|RNASE5 angiogenin|RNase 5|angiogenin, ribonuclease, RNase A family, 5|epididymis luminal protein 168|ribonuclease 5|ribonuclease A A1|ribonuclease A family member 5 6 0.0008212 7.438 1 1 +284 ANGPT1 angiopoietin 1 8 protein-coding AGP1|AGPT|ANG1 angiopoietin-1|ANG-1 55 0.007528 6.147 1 1 +285 ANGPT2 angiopoietin 2 8 protein-coding AGPT2|ANG2 angiopoietin-2|ANG-2|Tie2-ligand|angiopoietin-2B|angiopoietin-2a 35 0.004791 7.805 1 1 +286 ANK1 ankyrin 1 8 protein-coding ANK|SPH1|SPH2 ankyrin-1|ANK-1|ankyrin 1, erythrocytic|ankyrin-R|erythrocyte ankyrin 188 0.02573 5.27 1 1 +287 ANK2 ankyrin 2 4 protein-coding ANK-2|LQT4|brank-2 ankyrin-2|ankyrin 2, neuronal|ankyrin B|ankyrin, brain|ankyrin-2, nonerythrocytic|non-erythroid ankyrin 377 0.0516 7.618 1 1 +288 ANK3 ankyrin 3 10 protein-coding ANKYRIN-G|MRT37 ankyrin-3|ankyrin 3, node of Ranvier (ankyrin G) 305 0.04175 8.972 1 1 +290 ANPEP alanyl aminopeptidase, membrane 15 protein-coding APN|CD13|GP150|LAP1|P150|PEPN aminopeptidase N|AP-M|AP-N|alanyl (membrane) aminopeptidase|alanyl aminopeptidase|aminopeptidase M|hAPN|membrane alanyl aminopeptidase|microsomal aminopeptidase|myeloid plasma membrane glycoprotein CD13 64 0.00876 9.084 1 1 +291 SLC25A4 solute carrier family 25 member 4 4 protein-coding AAC1|ANT|ANT 1|ANT1|MTDPS12|PEO2|PEO3|PEOA2|T1 ADP/ATP translocase 1|ADP,ATP carrier protein 1|ADP,ATP carrier protein, heart/skeletal muscle|adenine nucleotide translocator 1 (skeletal muscle)|heart/skeletal muscle ATP/ADP translocator|solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 4 17 0.002327 9.583 1 1 +292 SLC25A5 solute carrier family 25 member 5 X protein-coding 2F1|AAC2|ANT2|T2|T3 ADP/ATP translocase 2|ADP,ATP carrier protein, fibroblast isoform|adenine nucleotide translocator 2 (fibroblast)|solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 23 0.003148 12.53 1 1 +293 SLC25A6 solute carrier family 25 member 6 X|Y protein-coding AAC3|ANT|ANT 2|ANT 3|ANT3|ANT3Y ADP/ATP translocase 3|ADP,ATP carrier protein|ADP,ATP carrier protein 3|ADP,ATP carrier protein, liver|ADP/ATP translocator of liver|adenine nucleotide translocator 3|solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 13.37 0 1 +301 ANXA1 annexin A1 9 protein-coding ANX1|LPC1 annexin A1|annexin I (lipocortin I)|annexin-1|calpactin II|calpactin-2|chromobindin-9|phospholipase A2 inhibitory protein 35 0.004791 11.65 1 1 +302 ANXA2 annexin A2 15 protein-coding ANX2|ANX2L4|CAL1H|HEL-S-270|LIP2|LPC2|LPC2D|P36|PAP-IV annexin A2|annexin II|annexin-2|calpactin I heavy chain|calpactin I heavy polypeptide|calpactin-1 heavy chain|chromobindin 8|epididymis secretory protein Li 270|lipocortin II|placental anticoagulant protein IV|protein I 17 0.002327 13.19 1 1 +303 ANXA2P1 annexin A2 pseudogene 1 4 pseudo ANX2L1|ANX2P1|LPC2A annexin II (lipocortin II) pseudogene 1 6.024 0 1 +304 ANXA2P2 annexin A2 pseudogene 2 9 pseudo ANX2L2|ANX2P2|LPC2B annexin II (lipocortin II) pseudogene 2 2 0.0002737 11.77 1 1 +305 ANXA2P3 annexin A2 pseudogene 3 10 pseudo ANX2L3|ANX2P3|LIP2|LPC2C annexin II (lipocortin II) pseudogene 3 1 0.0001369 2.73 1 1 +306 ANXA3 annexin A3 4 protein-coding ANX3 annexin A3|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 31 0.004243 8.106 1 1 +307 ANXA4 annexin A4 2 protein-coding ANX4|HEL-S-274|P32.5|PAP-II|PIG28|PP4-X|ZAP36 annexin A4|35-beta calcimedin|annexin IV (placental anticoagulant protein II)|annexin-4|carbohydrate-binding protein p33/p41|chromobindin-4|endonexin I|epididymis secretory protein Li 274|lipocortin IV|placental anticoagulant protein II|proliferation-inducing gene 28|proliferation-inducing protein 28|protein II 29 0.003969 10.99 1 1 +308 ANXA5 annexin A5 4 protein-coding ANX5|ENX2|HEL-S-7|PP4|RPRGL3 annexin A5|CBP-I|PAP-I|VAC-alpha|anchorin CII|annexin V|annexin-5|calphobindin I|endonexin II|epididymis secretory protein Li 7|lipocortin V|placental anticoagulant protein 4|placental anticoagulant protein I|thromboplastin inhibitor|vascular anticoagulant-alpha 25 0.003422 12.56 1 1 +309 ANXA6 annexin A6 5 protein-coding ANX6|CBP68 annexin A6|67 kDa calelectrin|CPB-II|annexin VI (p68)|annexin-6|calcium-binding protein p68|calelectrin|calphobindin II|chromobindin-20|lipocortin VI|p68|p70|testis secretory sperm-binding protein Li 198a 44 0.006022 11.45 1 1 +310 ANXA7 annexin A7 10 protein-coding ANX7|SNX|SYNEXIN annexin A7|annexin VII|annexin-7 32 0.00438 11.37 1 1 +311 ANXA11 annexin A11 10 protein-coding ANX11|CAP50 annexin A11|56 kDa autoantigen|CAP-50|annexin XI|annexin-11|autoantigen, 56-kD|calcyclin-associated annexin 50 38 0.005201 11.78 1 1 +312 ANXA13 annexin A13 8 protein-coding ANX13|ISA annexin A13|annexin XIII|annexin, intestine-specific|annexin-13|intestine-specific annexin 44 0.006022 3.056 1 1 +313 AOAH acyloxyacyl hydrolase 7 protein-coding - acyloxyacyl hydrolase|acyloxyacyl hydrolase (neutrophil) 53 0.007254 6.494 1 1 +314 AOC2 amine oxidase, copper containing 2 17 protein-coding DAO2|RAO retina-specific copper amine oxidase|SSAO|amine oxidase, copper containing 2 (retina-specific)|semicarbazide-sensitive amine oxidase 53 0.007254 4.063 1 1 +316 AOX1 aldehyde oxidase 1 2 protein-coding AO|AOH1 aldehyde oxidase|azaheterocycle hydroxylase 108 0.01478 6.399 1 1 +317 APAF1 apoptotic peptidase activating factor 1 12 protein-coding APAF-1|CED4 apoptotic protease-activating factor 1 81 0.01109 8.836 1 1 +318 NUDT2 nudix hydrolase 2 9 protein-coding APAH1 bis(5'-nucleosyl)-tetraphosphatase [asymmetrical]|Ap4A hydrolase 1|Ap4Aase|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 (nucleoside diphosphate linked moiety X)-type motif 2|nudix motif 2 11 0.001506 8.215 1 1 +319 APOF apolipoprotein F 12 protein-coding Apo-F|LTIP apolipoprotein F|lipid transfer inhibitor protein 13 0.001779 1.427 1 1 +320 APBA1 amyloid beta precursor protein binding family A member 1 9 protein-coding D9S411E|LIN10|MINT1|X11|X11A|X11ALPHA amyloid beta A4 precursor protein-binding family A member 1|adapter protein X11alpha|adaptor protein X11alpha|amyloid beta (A4) precursor protein-binding, family A, member 1 (X11)|mint-1|neuron-specific X11 protein|neuronal munc18-1-interacting protein 1|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 68 0.009307 7.202 1 1 +321 APBA2 amyloid beta precursor protein binding family A member 2 15 protein-coding D15S1518E|HsT16821|LIN-10|MGC:14091|MINT2|X11-BETA|X11L amyloid beta A4 precursor protein-binding family A member 2|X11-like protein|adapter protein X11beta|amyloid beta (A4) precursor protein-binding, family A, member 2 (X11-like)|mint-2|neuron-specific X11L protein|neuronal munc18-1-interacting protein 2|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 107 0.01465 7.2 1 1 +322 APBB1 amyloid beta precursor protein binding family B member 1 11 protein-coding FE65|MGC:9072|RIR amyloid beta A4 precursor protein-binding family B member 1|adaptor protein FE65a2|amyloid beta (A4) precursor protein-binding, family B, member 1 (Fe65)|stat-like protein 61 0.008349 8.928 1 1 +323 APBB2 amyloid beta precursor protein binding family B member 2 4 protein-coding FE65L|FE65L1 amyloid beta A4 precursor protein-binding family B member 2|Fe65-like 1|protein Fe65-like 1 45 0.006159 9.963 1 1 +324 APC APC, WNT signaling pathway regulator 5 protein-coding BTPS2|DP2|DP2.5|DP3|GS|PPP1R46 adenomatous polyposis coli protein|WNT signaling pathway regulator|adenomatosis polyposis coli tumor suppressor|deleted in polyposis 2.5|protein phosphatase 1, regulatory subunit 46|truncated adenomatosis polyposis coli 423 0.0579 9.498 1 1 +325 APCS amyloid P component, serum 1 protein-coding HEL-S-92n|PTX2|SAP serum amyloid P-component|9.5S alpha-1-glycoprotein|epididymis secretory sperm binding protein Li 92n|pentaxin-related|pentraxin-2|pentraxin-related 34 0.004654 1.084 1 1 +326 AIRE autoimmune regulator 21 protein-coding AIRE1|APECED|APS1|APSI|PGA1 autoimmune regulator|autoimmune polyendocrinopathy candidiasis ectodermal dystrophy protein 37 0.005064 0.8808 1 1 +327 APEH acylaminoacyl-peptide hydrolase 3 protein-coding AARE|ACPH|APH|D3F15S2|D3S48E|DNF15S2|OPH acylamino-acid-releasing enzyme|N-acylaminoacyl-peptide hydrolase|acyl-peptide hydrolase|acylaminoacyl-peptidase|oxidized protein hydrolase 36 0.004927 11.03 1 1 +328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 14 protein-coding APE|APE1|APEN|APEX|APX|HAP1|REF1 DNA-(apurinic or apyrimidinic site) lyase|AP endonuclease class I|AP lyase|APEX nuclease (multifunctional DNA repair enzyme) 1|apurinic-apyrimidinic endonuclease 1|apurinic/apyrimidinic (abasic) endonuclease|deoxyribonuclease (apurinic or apyrimidinic)|protein REF-1|redox factor-1 32 0.00438 11.6 1 1 +329 BIRC2 baculoviral IAP repeat containing 2 11 protein-coding API1|HIAP2|Hiap-2|MIHB|RNF48|c-IAP1|cIAP1 baculoviral IAP repeat-containing protein 2|IAP homolog B|IAP-2|NFR2-TRAF signalling complex protein|RING finger protein 48|TNFR2-TRAF-signaling complex protein 2|apoptosis inhibitor 1|cellular inhibitor of apoptosis 1|inhibitor of apoptosis protein 2 39 0.005338 10.13 1 1 +330 BIRC3 baculoviral IAP repeat containing 3 11 protein-coding AIP1|API2|CIAP2|HAIP1|HIAP1|MALT2|MIHC|RNF49|c-IAP2 baculoviral IAP repeat-containing protein 3|IAP homolog C|IAP-1|RING finger protein 49|TNFR2-TRAF signaling complex protein|TNFR2-TRAF-signaling complex protein 1|apoptosis inhibitor 2|cellular inhibitor of apoptosis 2|inhibitor of apoptosis protein 1|mammalian IAP homolog C 31 0.004243 8.296 1 1 +331 XIAP X-linked inhibitor of apoptosis X protein-coding API3|BIRC4|IAP-3|ILP1|MIHA|XLP2|hIAP-3|hIAP3 E3 ubiquitin-protein ligase XIAP|IAP-like protein|X-linked IAP|X-linked inhibitor of apoptosis, E3 ubiquitin protein ligase|baculoviral IAP repeat-containing protein 4|inhibitor of apoptosis protein 3 37 0.005064 10.46 1 1 +332 BIRC5 baculoviral IAP repeat containing 5 17 protein-coding API4|EPR-1 baculoviral IAP repeat-containing protein 5|apoptosis inhibitor 4|apoptosis inhibitor survivin|survivin variant 3 alpha 14 0.001916 7.745 1 1 +333 APLP1 amyloid beta precursor like protein 1 19 protein-coding APLP amyloid-like protein 1|amyloid beta (A4) precursor-like protein 1|amyloid precursor-like protein 1 61 0.008349 6.916 1 1 +334 APLP2 amyloid beta precursor like protein 2 11 protein-coding APLP-2|APPH|APPL2|CDEBP amyloid-like protein 2|CDEI box-binding protein|amyloid beta (A4) precursor-like protein 2|amyloid precursor protein homolog HSD-2|testicular tissue protein Li 23 53 0.007254 13.79 1 1 +335 APOA1 apolipoprotein A1 11 protein-coding apo(a) apolipoprotein A-I|apo-AI 25 0.003422 3.303 1 1 +336 APOA2 apolipoprotein A2 1 protein-coding Apo-AII|ApoA-II|apoAII apolipoprotein A-II 8 0.001095 1.519 1 1 +337 APOA4 apolipoprotein A4 11 protein-coding - apolipoprotein A-IV|apo-AIV|apoA-IV 46 0.006296 0.8272 1 1 +338 APOB apolipoprotein B 2 protein-coding FLDB|LDLCQ4|apoB-100|apoB-48 apolipoprotein B-100|apolipoprotein B (including Ag(x) antigen)|apolipoprotein B48 463 0.06337 3.185 1 1 +339 APOBEC1 apolipoprotein B mRNA editing enzyme catalytic subunit 1 12 protein-coding APOBEC-1|BEDP|CDAR1|HEPR C->U-editing enzyme APOBEC-1|apolipoprotein B mRNA editing enzyme complex-1|apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1|apolipoprotein B mRNA-editing enzyme 1|mRNA(cytosine(6666)) deaminase 1 33 0.004517 0.8048 1 1 +341 APOC1 apolipoprotein C1 19 protein-coding Apo-CI|ApoC-I|apo-CIB|apoC-IB apolipoprotein C-I 5 0.0006844 9.851 1 1 +342 APOC1P1 apolipoprotein C1 pseudogene 1 19 pseudo - apolipoprotein C-I pseudogene 1 10 0.001369 1.036 1 1 +343 AQP8 aquaporin 8 16 protein-coding AQP-8 aquaporin-8 29 0.003969 1.281 1 1 +344 APOC2 apolipoprotein C2 19 protein-coding APO-CII|APOC-II apolipoprotein C-II 5 0.0006844 6.742 1 1 +345 APOC3 apolipoprotein C3 11 protein-coding APOCIII|HALP2 apolipoprotein C-III|apo-CIII|apoC-III 11 0.001506 1.211 1 1 +346 APOC4 apolipoprotein C4 19 protein-coding APO-CIV|APOC-IV apolipoprotein C-IV 9 0.001232 1.428 1 1 +347 APOD apolipoprotein D 3 protein-coding - apolipoprotein D|apo-D 17 0.002327 8.68 1 1 +348 APOE apolipoprotein E 19 protein-coding AD2|APO-E|ApoE4|LDLCQ5|LPG apolipoprotein E|apolipoprotein E3 13 0.001779 12.48 1 1 +350 APOH apolipoprotein H 17 protein-coding B2G1|B2GP1|BG beta-2-glycoprotein 1|APC inhibitor|B2GPI|activated protein C-binding protein|anticardiolipin cofactor|apo-H|apolipoprotein H (beta-2-glycoprotein I)|beta(2)GPI 31 0.004243 2.041 1 1 +351 APP amyloid beta precursor protein 21 protein-coding AAA|ABETA|ABPP|AD1|APPI|CTFgamma|CVAP|PN-II|PN2 amyloid beta A4 protein|alzheimer disease amyloid protein|amyloid beta (A4) precursor protein|amyloid precursor protein|beta-amyloid peptide|beta-amyloid peptide(1-40)|beta-amyloid peptide(1-42)|beta-amyloid precursor protein|cerebral vascular amyloid peptide|peptidase nexin-II|preA4|protease nexin-II|testicular tissue protein Li 2 66 0.009034 14.17 1 1 +353 APRT adenine phosphoribosyltransferase 16 protein-coding AMP|APRTD adenine phosphoribosyltransferase|AMP diphosphorylase|AMP pyrophosphorylase|transphosphoribosidase 9 0.001232 10.75 1 1 +354 KLK3 kallikrein related peptidase 3 19 protein-coding APS|KLK2A1|PSA|hK3 prostate-specific antigen|P-30 antigen|gamma-seminoprotein|kallikrein-3|semenogelase|seminin 33 0.004517 1.84 1 1 +355 FAS Fas cell surface death receptor 10 protein-coding ALPS1A|APO-1|APT1|CD95|FAS1|FASTM|TNFRSF6 tumor necrosis factor receptor superfamily member 6|APO-1 cell surface antigen|CD95 antigen|FASLG receptor|Fas (TNF receptor superfamily, member 6)|Fas AMA|TNF receptor superfamily member 6|apoptosis antigen 1|apoptosis signaling receptor FAS|apoptosis-mediating surface antigen FAS|mutant tumor necrosis receptor superfamily member 6|tumor necrosis factor receptor superfamily, member 6 34 0.004654 8.237 1 1 +356 FASLG Fas ligand 1 protein-coding ALPS1B|APT1LG1|APTL|CD178|CD95-L|CD95L|FASL|TNFSF6|TNLG1A tumor necrosis factor ligand superfamily member 6|CD95 ligand|Fas ligand (TNF superfamily, member 6)|apoptosis (APO-1) antigen ligand 1|apoptosis antigen ligand|fas antigen ligand|mutant tumor necrosis factor family member 6|tumor necrosis factor ligand 1A 29 0.003969 3.341 1 1 +357 SHROOM2 shroom family member 2 X protein-coding APXL|HSAPXL protein Shroom2|APX homolog of Xenopus|apical-like protein 108 0.01478 8.369 1 1 +358 AQP1 aquaporin 1 (Colton blood group) 7 protein-coding AQP-CHIP|CHIP28|CO aquaporin-1|aquaporin 1 (channel-forming integral protein, 28kDa, CO blood group)|aquaporin 1, Colton blood group antigen|aquaporin-CHIP|channel-like integral membrane protein, 28-kDa|urine water channel|water channel protein for red blood cells and kidney proximal tubule 15 0.002053 11.33 1 1 +359 AQP2 aquaporin 2 12 protein-coding AQP-CD|WCH-CD aquaporin-2|ADH water channel|AQP-2|aquaporin 2 (collecting duct)|aquaporin-CD|collecting duct water channel protein|water channel protein for renal collecting duct|water-channel aquaporin 2 20 0.002737 1.214 1 1 +360 AQP3 aquaporin 3 (Gill blood group) 9 protein-coding AQP-3|GIL aquaporin-3|aquaglyceroporin-3|aquaporin 3 (GIL blood group) 15 0.002053 9.123 1 1 +361 AQP4 aquaporin 4 18 protein-coding MIWC|WCH4 aquaporin-4|aquaporin type4|mercurial-insensitive water channel 24 0.003285 4.417 1 1 +362 AQP5 aquaporin 5 12 protein-coding AQP-5|PPKB aquaporin-5 18 0.002464 4.398 1 1 +363 AQP6 aquaporin 6 12 protein-coding AQP2L|KID aquaporin-6|AQP-6|aquaporin 2-like, kidney specific|aquaporin-6, kidney specific|hKID|kidney-specific aquaporin 20 0.002737 2.866 1 1 +364 AQP7 aquaporin 7 9 protein-coding AQP7L|AQPap|GLYCQTL aquaporin-7|aquaglyceroporin-7|aquaporin adipose 60 0.008212 3.36 1 1 +366 AQP9 aquaporin 9 15 protein-coding AQP-9|HsT17287|SSC1|T17287 aquaporin-9|aquaglyceroporin-9|small solute channel 1 28 0.003832 5.519 1 1 +367 AR androgen receptor X protein-coding AIS|AR8|DHTR|HUMARA|HYSP1|KD|NR3C4|SBMA|SMAX1|TFM androgen receptor|androgen nuclear receptor variant 2|androgen receptor splice variant 4b|dihydrotestosterone receptor|nuclear receptor subfamily 3 group C member 4 138 0.01889 4.818 1 1 +368 ABCC6 ATP binding cassette subfamily C member 6 16 protein-coding ABC34|ARA|EST349056|GACI2|MLP1|MOAT-E|MOATE|MRP6|PXE|PXE1|URG7 multidrug resistance-associated protein 6|URG7 protein|ATP-binding cassette sub-family C member 6|ATP-binding cassette, sub-family C (CFTR/MRP), member 6|anthracycline resistance-associated protein|multi-specific organic anion transporter E 82 0.01122 5.777 1 1 +369 ARAF A-Raf proto-oncogene, serine/threonine kinase X protein-coding A-RAF|ARAF1|PKS2|RAFA1 serine/threonine-protein kinase A-Raf|A-Raf proto-oncogene serine/threonine-protein kinase|Oncogene ARAF1|Ras-binding protein DA-Raf|proto-oncogene A-Raf-1|proto-oncogene Pks|v-raf murine sarcoma 3611 viral oncogene homolog 1|v-raf murine sarcoma 3611 viral oncogene-like protein 55 0.007528 10.37 1 1 +372 ARCN1 archain 1 11 protein-coding COPD coatomer subunit delta|archain vesicle transport protein 1|coatomer delta subunit|coatomer protein complex, subunit delta|coatomer protein delta-COP|delta-COP|delta-coat protein 35 0.004791 11.88 1 1 +373 TRIM23 tripartite motif containing 23 5 protein-coding ARD1|ARFD1|RNF46 E3 ubiquitin-protein ligase TRIM23|ADP-ribosylation factor domain protein 1, 64kDa|ADP-ribosylation factor domain-containing protein 1|ARF domain protein 1|GTP-binding protein ARD-1|RING finger protein 46|tripartite motif protein TRIM23|tripartite motif-containing protein 23 41 0.005612 8.157 1 1 +374 AREG amphiregulin 4 protein-coding AR|AREGB|CRDGF|SDGF amphiregulin|amphiregulin B|colorectum cell-derived growth factor|schwannoma-derived growth factor 10 0.001369 5.768 1 1 +375 ARF1 ADP ribosylation factor 1 1 protein-coding - ADP-ribosylation factor 1 15 0.002053 13.45 1 1 +377 ARF3 ADP ribosylation factor 3 12 protein-coding - ADP-ribosylation factor 3|small GTP binding protein 8 0.001095 12.41 1 1 +378 ARF4 ADP ribosylation factor 4 3 protein-coding ARF2 ADP-ribosylation factor 4|ADP-ribosylation factor 2 16 0.00219 12.02 1 1 +379 ARL4D ADP ribosylation factor like GTPase 4D 17 protein-coding ARF4L|ARL6 ADP-ribosylation factor-like protein 4D|ADP-ribosylation factor-like 4D|ADP-ribosylation factor-like 6|ADP-ribosylation factor-like protein 4L 13 0.001779 7.895 1 1 +381 ARF5 ADP ribosylation factor 5 7 protein-coding - ADP-ribosylation factor 5 17 0.002327 11.51 1 1 +382 ARF6 ADP ribosylation factor 6 14 protein-coding - ADP-ribosylation factor 6 7 0.0009581 11.53 1 1 +383 ARG1 arginase 1 6 protein-coding - arginase-1|arginase, liver|liver-type arginase|type I arginase 21 0.002874 1.552 1 1 +384 ARG2 arginase 2 14 protein-coding - arginase-2, mitochondrial|L-arginine amidinohydrolase|L-arginine ureahydrolase|arginase, type II|kidney arginase|kidney-type arginase|non-hepatic arginase|nonhepatic arginase|type II arginase 18 0.002464 8.206 1 1 +387 RHOA ras homolog family member A 3 protein-coding ARH12|ARHA|RHO12|RHOH12 transforming protein RhoA|Aplysia ras-related homolog 12|oncogene RHO H12|small GTP binding protein RhoA 70 0.009581 13.33 1 1 +388 RHOB ras homolog family member B 2 protein-coding ARH6|ARHB|MST081|MSTP081|RHOH6 rho-related GTP-binding protein RhoB|Aplysia RAS-related homolog 6|h6|oncogene RHO H6|ras homolog gene family, member B|rho cDNA clone 6 38 0.005201 12.4 1 1 +389 RHOC ras homolog family member C 1 protein-coding ARH9|ARHC|H9|RHOH9 rho-related GTP-binding protein RhoC|RAS-related homolog 9|oncogene RHO H9|ras homolog gene family, member C|rho cDNA clone 9|rhoC GTPase|small GTP binding protein RhoC 7 0.0009581 12.22 1 1 +390 RND3 Rho family GTPase 3 2 protein-coding ARHE|Rho8|RhoE|memB rho-related GTP-binding protein RhoE|protein MemB|ras homolog gene family, member E|rho-related GTP-binding protein Rho8|small GTP binding protein Rho8 25 0.003422 9.467 1 1 +391 RHOG ras homolog family member G 11 protein-coding ARHG rho-related GTP-binding protein RhoG|ras homolog gene family, member G (rho G) 9 0.001232 10.22 1 1 +392 ARHGAP1 Rho GTPase activating protein 1 11 protein-coding CDC42GAP|RHOGAP|RHOGAP1|p50rhoGAP rho GTPase-activating protein 1|CDC42 GTPase-activating protein|GTPase-activating protein rhoGAP|GTPase-activating protein rhoOGAP|GTPase-activating protein, Rho, 1|rho-related small GTPase protein activator|rho-type GTPase-activating protein 1 30 0.004106 11.62 1 1 +393 ARHGAP4 Rho GTPase activating protein 4 X protein-coding C1|RGC1|RhoGAP4|SrGAP4|p115 rho GTPase-activating protein 4|Rho-GAP hematopoietic protein C1|rho-type GTPase-activating protein 4 62 0.008486 9.06 1 1 +394 ARHGAP5 Rho GTPase activating protein 5 14 protein-coding GFI2|RhoGAP5|p190-B|p190BRhoGAP rho GTPase-activating protein 5|growth factor independent 2|p100 RasGAP-associated p105 protein|p105 RhoGAP|rho-type GTPase-activating protein 5 145 0.01985 10.79 1 1 +395 ARHGAP6 Rho GTPase activating protein 6 X protein-coding RHOGAP6|RHOGAPX-1 rho GTPase-activating protein 6|Rho-type GTPase-activating protein RhoGAPX-1|rho-type GTPase-activating protein 6 91 0.01246 6.457 1 1 +396 ARHGDIA Rho GDP dissociation inhibitor alpha 17 protein-coding GDIA1|HEL-S-47e|NPHS8|RHOGDI|RHOGDI-1 rho GDP-dissociation inhibitor 1|GDP-dissociation inhibitor, aplysia RAS-related 1|Rho GDP dissociation inhibitor (GDI) alpha|epididymis secretory sperm binding protein Li 47e 15 0.002053 12.78 1 1 +397 ARHGDIB Rho GDP dissociation inhibitor beta 12 protein-coding D4|GDIA2|GDID4|LYGDI|Ly-GDI|RAP1GN1|RhoGDI2 rho GDP-dissociation inhibitor 2|Rho GDI 2|Rho GDP dissociation inhibitor (GDI) beta|rho-GDI beta 13 0.001779 11.26 1 1 +398 ARHGDIG Rho GDP dissociation inhibitor gamma 16 protein-coding RHOGDI-3 rho GDP-dissociation inhibitor 3|Rho GDP dissociation inhibitor (GDI) gamma|RhoGDI gamma|rho GDI 3|rho-GDI gamma 5 0.0006844 2.517 1 1 +399 RHOH ras homolog family member H 4 protein-coding ARHH|TTF rho-related GTP-binding protein RhoH|GTP-binding protein TTF|TTF, translocation three four|ras homolog gene family, member H 22 0.003011 6.122 1 1 +400 ARL1 ADP ribosylation factor like GTPase 1 12 protein-coding ARFL1 ADP-ribosylation factor-like protein 1|ADP-ribosylation factor-like 1 13 0.001779 10.95 1 1 +401 PHOX2A paired like homeobox 2a 11 protein-coding ARIX|CFEOM2|FEOM2|NCAM2|PMX2A paired mesoderm homeobox protein 2A|ARIX1 homeodomain protein|aristaless homeobox homolog|aristaless homeobox protein homolog|arix homeodomain protein|paired-like homeobox 2A 15 0.002053 0.9442 1 1 +402 ARL2 ADP ribosylation factor like GTPase 2 11 protein-coding ARFL2 ADP-ribosylation factor-like protein 2|ADP-ribosylation factor-like 2 8 0.001095 10.24 1 1 +403 ARL3 ADP ribosylation factor like GTPase 3 10 protein-coding ARFL3 ADP-ribosylation factor-like protein 3|ADP-ribosylation factor-like 3|ARF-like 3 9 0.001232 9.276 1 1 +405 ARNT aryl hydrocarbon receptor nuclear translocator 1 protein-coding HIF-1-beta|HIF-1beta|HIF1-beta|HIF1B|HIF1BETA|TANGO|bHLHe2 aryl hydrocarbon receptor nuclear translocator|class E basic helix-loop-helix protein 2|dioxin receptor, nuclear translocator|hypoxia-inducible factor 1, beta subunit 46 0.006296 10.17 1 1 +406 ARNTL aryl hydrocarbon receptor nuclear translocator like 11 protein-coding BMAL1|BMAL1c|JAP3|MOP3|PASD3|TIC|bHLHe5 aryl hydrocarbon receptor nuclear translocator-like protein 1|ARNT-like protein 1, brain and muscle|PAS domain-containing protein 3|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|testis tissue sperm-binding protein Li 50e 33 0.004517 7.879 1 1 +407 ARR3 arrestin 3 X protein-coding ARRX|cArr arrestin-C|C-arrestin|arrestin 3 retinal (X-arrestin)|arrestin 4|retinal cone arrestin-3 26 0.003559 0.1872 1 1 +408 ARRB1 arrestin beta 1 11 protein-coding ARB1|ARR1 beta-arrestin-1|arrestin 2 29 0.003969 8.351 1 1 +409 ARRB2 arrestin beta 2 17 protein-coding ARB2|ARR2|BARR2 beta-arrestin-2|arrestin 3 22 0.003011 9.622 1 1 +410 ARSA arylsulfatase A 22 protein-coding MLD arylsulfatase A|ASA|cerebroside-sulfatase 24 0.003285 9.68 1 1 +411 ARSB arylsulfatase B 5 protein-coding ASB|G4S|MPS6 arylsulfatase B|N-acetylgalactosamine-4-sulfatase 38 0.005201 8.492 1 1 +412 STS steroid sulfatase (microsomal), isozyme S X protein-coding ARSC|ARSC1|ASC|ES|SSDD|XLI steryl-sulfatase|arylsulfatase C|estrone sulfatase|steryl-sulfate sulfohydrolase 49 0.006707 8.78 1 1 +414 ARSD arylsulfatase D X protein-coding ASD arylsulfatase D|testis tissue sperm-binding protein Li 39a 44 0.006022 10.36 1 1 +415 ARSE arylsulfatase E (chondrodysplasia punctata 1) X protein-coding ASE|CDPX|CDPX1|CDPXR arylsulfatase E 38 0.005201 5.742 1 1 +416 ARSF arylsulfatase F X protein-coding ASF arylsulfatase F 61 0.008349 1.621 1 1 +417 ART1 ADP-ribosyltransferase 1 11 protein-coding ART2|ARTC1|CD296|RT6 GPI-linked NAD(P)(+)--arginine ADP-ribosyltransferase 1|ADP-ribosyltransferase 2|ADP-ribosyltransferase C2 and C3 toxin-like 1|mono(ADP-ribosyl)transferase 1 36 0.004927 0.4625 1 1 +419 ART3 ADP-ribosyltransferase 3 4 protein-coding ARTC3 ecto-ADP-ribosyltransferase 3|ADP-ribosyltransferase C2 and C3 toxin-like 3|NAD(P)(+)--arginine ADP-ribosyltransferase 3|mono(ADP-ribosyl)transferase 3|mono-ADP-ribosyltransferase 18 0.002464 2.041 1 1 +420 ART4 ADP-ribosyltransferase 4 (Dombrock blood group) 12 protein-coding ARTC4|CD297|DO|DOK1 ecto-ADP-ribosyltransferase 4|ADP-ribosyltransferase 4 (DO blood group)|ADP-ribosyltransferase C2 and C3 toxin-like 4|Dombrock blood group carrier molecule|NAD(+)--protein-arginine ADP-ribosyltransferase 4|NAD(P)(+)--arginine ADP-ribosyltransferase 4|mono-ADP-ribosyltransferase 4 24 0.003285 2.076 1 1 +421 ARVCF armadillo repeat gene deleted in velocardiofacial syndrome 22 protein-coding - armadillo repeat protein deleted in velo-cardio-facial syndrome 74 0.01013 8.609 1 1 +427 ASAH1 N-acylsphingosine amidohydrolase 1 8 protein-coding AC|ACDase|ASAH|PHP|PHP32|SMAPME acid ceramidase|N-acylsphingosine amidohydrolase (acid ceramidase) 1|acid CDase|acylsphingosine deacylase|putative 32 kDa heart protein 24 0.003285 11.82 1 1 +429 ASCL1 achaete-scute family bHLH transcription factor 1 12 protein-coding ASH1|HASH1|MASH1|bHLHa46 achaete-scute homolog 1|ASH-1|achaete scute protein|achaete-scute complex homolog 1|achaete-scute complex-like 1|class A basic helix-loop-helix protein 46 30 0.004106 2.791 1 1 +430 ASCL2 achaete-scute family bHLH transcription factor 2 11 protein-coding ASH2|HASH2|MASH2|bHLHa45 achaete-scute homolog 2|ASH-2|achaete-scute complex homolog 2|achaete-scute complex-like 2|class A basic helix-loop-helix protein 45|mammalian achaete/scute homologue 2 5.171 0 1 +432 ASGR1 asialoglycoprotein receptor 1 17 protein-coding ASGPR|ASGPR1|CLEC4H1|HL-1 asialoglycoprotein receptor 1|C-type lectin domain family 4 member H1|hepatic lectin H1 17 0.002327 4.89 1 1 +433 ASGR2 asialoglycoprotein receptor 2 17 protein-coding ASGP-R2|ASGPR2|CLEC4H2|HBXBP|HL-2 asialoglycoprotein receptor 2|C-type lectin domain family 4 member H2|HBxAg-binding protein|hepatic lectin H2 22 0.003011 3.339 1 1 +434 ASIP agouti signaling protein 20 protein-coding AGSW|AGTI|AGTIL|ASP|SHEP9 agouti-signaling protein|agouti signaling protein, nonagouti homolog|agouti switch protein|nonagouti homolog 8 0.001095 1.286 1 1 +435 ASL argininosuccinate lyase 7 protein-coding ASAL argininosuccinate lyase|argininosuccinase|arginosuccinase 39 0.005338 9.523 1 1 +436 ASLP1 argininosuccinate lyase pseudogene 1 22 pseudo ASLL - 1 0.0001369 1 0 +438 ASMT acetylserotonin O-methyltransferase X|Y protein-coding ASMTY|HIOMT|HIOMTY acetylserotonin O-methyltransferase|acetylserotonin N-methyltransferase|acetylserotonin methyltransferase (Y chromosome)|hydroxyindole O-methyltransferase 0.876 0 1 +439 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) 19 protein-coding ARSA-I|ARSA1|ASNA-I|GET3|TRC40 ATPase ASNA1|golgi to ER traffic 3 homolog|transmembrane domain recognition complex 40 kDa ATPase subunit 22 0.003011 10.58 1 1 +440 ASNS asparagine synthetase (glutamine-hydrolyzing) 7 protein-coding ASNSD|TS11 asparagine synthetase [glutamine-hydrolyzing]|TS11 cell cycle control protein|glutamine-dependent asparagine synthetase 45 0.006159 9.213 1 1 +443 ASPA aspartoacylase 17 protein-coding ACY2|ASP aspartoacylase|ACY-2|aminoacylase 2 27 0.003696 3.369 1 1 +444 ASPH aspartate beta-hydroxylase 8 protein-coding AAH|BAH|CASQ2BP1|FDLAB|HAAH|JCTN|junctin aspartyl/asparaginyl beta-hydroxylase|A beta H-J-J|ASP beta-hydroxylase|cardiac junctin|humbug|junctate|peptide-aspartate beta-dioxygenase 70 0.009581 11.66 1 1 +445 ASS1 argininosuccinate synthase 1 9 protein-coding ASS|CTLN1 argininosuccinate synthase|argininosuccinate synthetase 1|citrulline-aspartate ligase 36 0.004927 10.71 1 1 +460 ASTN1 astrotactin 1 1 protein-coding ASTN astrotactin-1 231 0.03162 3.773 1 1 +462 SERPINC1 serpin family C member 1 1 protein-coding AT3|AT3D|ATIII|THPH7 antithrombin-III|serine (or cysteine) proteinase inhibitor, clade C (antithrombin), member 1|serpin peptidase inhibitor clade C member 1|serpin peptidase inhibitor, clade C (antithrombin), member 1 43 0.005886 2.028 1 1 +463 ZFHX3 zinc finger homeobox 3 16 protein-coding ATBF1|ATBT|ZNF927 zinc finger homeobox protein 3|AT motif-binding factor 1|AT-binding transcription factor 1|ZFH-3|alpha-fetoprotein enhancer binding protein|zinc finger homeodomain protein 3 242 0.03312 9.717 1 1 +466 ATF1 activating transcription factor 1 12 protein-coding EWS-ATF1|FUS/ATF-1|TREB36 cyclic AMP-dependent transcription factor ATF-1|cAMP-dependent transcription factor ATF-1 16 0.00219 8.687 1 1 +467 ATF3 activating transcription factor 3 1 protein-coding - cyclic AMP-dependent transcription factor ATF-3|cAMP-dependent transcription factor ATF-3 12 0.001642 9.364 1 1 +468 ATF4 activating transcription factor 4 22 protein-coding CREB-2|CREB2|TAXREB67|TXREB cyclic AMP-dependent transcription factor ATF-4|DNA-binding protein TAXREB67|cAMP response element-binding protein 2|cAMP-dependent transcription factor ATF-4|cAMP-responsive element-binding protein 2|cyclic AMP-responsive element-binding protein 2|tax-responsive enhancer element B67|tax-responsive enhancer element-binding protein 67 37 0.005064 12.46 1 1 +471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase 2 protein-coding AICAR|AICARFT|HEL-S-70p|IMPCHASE|PURH bifunctional purine biosynthesis protein PURH|5-aminoimidazole-4-carboxamide-1-beta-D-ribonucleotide transformylase/inosinicase|AICAR formyltransferase/IMP cyclohydrolase bifunctional enzyme|AICARFT/IMPCHASE|epididymis secretory sperm binding protein Li 70p|phosphoribosylaminoimidazolecarboxamide formyltransferase/IMP cyclohydrolase 45 0.006159 10.81 1 1 +472 ATM ATM serine/threonine kinase 11 protein-coding AT1|ATA|ATC|ATD|ATDC|ATE|TEL1|TELO1 serine-protein kinase ATM|A-T mutated|AT mutated|TEL1, telomere maintenance 1, homolog|ataxia telangiectasia mutated 306 0.04188 9.751 1 1 +473 RERE arginine-glutamic acid dipeptide repeats 1 protein-coding ARG|ARP|ATN1L|DNB1|NEDBEH arginine-glutamic acid dipeptide repeats protein|arginine-glutamic acid dipeptide (RE) repeats|atrophin 2|atrophin-1 like protein|atrophin-1 related protein 112 0.01533 11.38 1 1 +474 ATOH1 atonal bHLH transcription factor 1 4 protein-coding ATH1|HATH1|MATH-1|bHLHa14 protein atonal homolog 1|atonal homolog 1|atonal homolog bHLH transcription factor 1|class A basic helix-loop-helix protein 14|helix-loop-helix protein hATH-1 36 0.004927 0.5914 1 1 +475 ATOX1 antioxidant 1 copper chaperone 5 protein-coding ATX1|HAH1 copper transport protein ATOX1|ATX1 antioxidant protein 1 homolog|metal transport protein ATX1 1 0.0001369 9.794 1 1 +476 ATP1A1 ATPase Na+/K+ transporting subunit alpha 1 1 protein-coding - sodium/potassium-transporting ATPase subunit alpha-1|ATPase, Na+/K+ transporting, alpha 1 polypeptide|Na(+)/K(+) ATPase alpha-1 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 subunit alpha-1|sodium-potassium ATPase catalytic subunit alpha-1|sodium-potassium-ATPase, alpha 1 polypeptide 65 0.008897 13.97 1 1 +477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 1 protein-coding FHM2|MHP2 sodium/potassium-transporting ATPase subunit alpha-2|ATPase Na+/K+ transporting alpha 2 polypeptide|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 115 0.01574 5.563 1 1 +478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 19 protein-coding AHC2|ATP1A1|CAPOS|DYT12|RDP sodium/potassium-transporting ATPase subunit alpha-3|ATPase, Na+/K+ transporting, alpha 3 polypeptide|Na(+)/K(+) ATPase alpha(III) subunit|Na(+)/K(+) ATPase alpha-3 subunit|Na+, K+ activated adenosine triphosphatase alpha 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 89 0.01218 5.263 1 1 +479 ATP12A ATPase H+/K+ transporting non-gastric alpha2 subunit 13 protein-coding #945|ATP1AL1|HK potassium-transporting ATPase alpha chain 2|ATPase, H+/K+ transporting, nongastric, alpha polypeptide|ATPase, Na+/K+ transporting, alpha polypeptide-like 1|non-gastric H(+)/K(+) ATPase alpha subunit|non-gastric H(+)/K(+) ATPase subunit alpha|proton pump 107 0.01465 1.867 1 1 +480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 1 protein-coding ATP1A1|ATP1AL2 sodium/potassium-transporting ATPase subunit alpha-4|ATPase, Na+/K+ transporting, alpha 4 polypeptide|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 103 0.0141 1.467 1 1 +481 ATP1B1 ATPase Na+/K+ transporting subunit beta 1 1 protein-coding ATP1B sodium/potassium-transporting ATPase subunit beta-1|ATPase, Na+/K+ transporting, beta 1 polypeptide|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 30 0.004106 12.08 1 1 +482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 17 protein-coding AMOG sodium/potassium-transporting ATPase subunit beta-2|ATPase, Na+/K+ transporting, beta 2 polypeptide|Na, K-ATPase beta-2 polypeptide|adhesion molecule in glia|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 22 0.003011 6.331 1 1 +483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 3 protein-coding ATPB-3|CD298 sodium/potassium-transporting ATPase subunit beta-3|ATPase, Na+/K+ transporting, beta 3 polypeptide|Na, K-ATPase beta-3 polypeptide|sodium pump subunit beta-3|sodium-potassium ATPase subunit beta 3 (non-catalytic)|sodium/potassium-dependent ATPase subunit beta-3|sodium/potassium-transporting ATPase beta-3 chain 26 0.003559 11.14 1 1 +486 FXYD2 FXYD domain containing ion transport regulator 2 11 protein-coding ATP1G1|HOMG2 sodium/potassium-transporting ATPase subunit gamma|ATPase, Na+/K+ transporting, gamma 1 polypeptide|Na(+)/K(+) ATPase subunit gamma|sodium pump gamma chain 1 0.0001369 3.567 1 1 +487 ATP2A1 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 1 16 protein-coding ATP2A|SERCA1 sarcoplasmic/endoplasmic reticulum calcium ATPase 1|ATPase, Ca++ transporting, cardiac muscle, fast twitch 1|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 89 0.01218 3.749 1 1 +488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 12 protein-coding ATP2B|DAR|DD|SERCA2 sarcoplasmic/endoplasmic reticulum calcium ATPase 2|ATPase Ca++ transporting cardiac muscle slow twitch 2|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 75 0.01027 12.74 1 1 +489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 17 protein-coding SERCA3 sarcoplasmic/endoplasmic reticulum calcium ATPase 3|ATPase, Ca(2+)-transporting, ubiquitous|ATPase, Ca++ transporting, ubiquitous|SR Ca(2+)-ATPase 3|adenosine triphosphatase, calcium|calcium pump 3|calcium-translocating P-type ATPase|sarco/endoplasmic reticulum Ca2+ -ATPase 63 0.008623 9.273 1 1 +490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 12 protein-coding PMCA1|PMCA1kb plasma membrane calcium-transporting ATPase 1|ATPase, Ca++ transporting, plasma membrane 1|plasma membrane calcium pump 81 0.01109 10.12 1 1 +491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 3 protein-coding PMCA2|PMCA2a|PMCA2i plasma membrane calcium-transporting ATPase 2|ATPase, Ca++ transporting, plasma membrane 2|plasma membrane Ca(2+)-ATPase|plasma membrane Ca2+ pump 2|plasma membrane calcium ATPase|plasma membrane calcium pump 136 0.01861 3.915 1 1 +492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 X protein-coding CFAP39|CLA2|OPCA|PMCA3|PMCA3a|SCAX1 plasma membrane calcium-transporting ATPase 3|ATPase, Ca++ transporting, plasma membrane 3|cilia and flagella associated protein 39|plasma membrane calcium ATPase|plasma membrane calcium pump 116 0.01588 1.789 1 1 +493 ATP2B4 ATPase plasma membrane Ca2+ transporting 4 1 protein-coding ATP2B2|MXRA1|PMCA4|PMCA4b|PMCA4x plasma membrane calcium-transporting ATPase 4|ATPase, Ca++ transporting, plasma membrane 4|matrix-remodeling-associated protein 1|sarcolemmal calcium pump 95 0.013 11.52 1 1 +495 ATP4A ATPase H+/K+ transporting alpha subunit 19 protein-coding ATP6A potassium-transporting ATPase alpha chain 1|ATPase, H+/K+ exchanging, alpha polypeptide|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|proton pump 90 0.01232 0.9026 1 1 +496 ATP4B ATPase H+/K+ transporting beta subunit 13 protein-coding ATP6B potassium-transporting ATPase subunit beta|ATPase, H+/K+ exchanging, beta polypeptide|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|proton pump beta chain 16 0.00219 0.6948 1 1 +498 ATP5A1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle 18 protein-coding ATP5A|ATP5AL2|ATPM|COXPD22|HEL-S-123m|MC5DN4|MOM2|OMR|ORM|hATP1 ATP synthase subunit alpha, mitochondrial|ATP synthase alpha chain, 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|epididymis secretory sperm binding protein Li 123m|mitochondrial ATP synthetase, oligomycin-resistant 35 0.004791 13.14 1 1 +501 ALDH7A1 aldehyde dehydrogenase 7 family member A1 5 protein-coding ATQ1|EPD|PDE alpha-aminoadipic semialdehyde dehydrogenase|26g turgor protein homolog|P6c dehydrogenase|alpha-AASA dehydrogenase|antiquitin-1|betaine aldehyde dehydrogenase|delta1-piperideine-6-carboxylate dehydrogenase 13 0.001779 10.17 1 1 +506 ATP5B ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide 12 protein-coding ATPMB|ATPSB|HEL-S-271 ATP synthase subunit beta, mitochondrial|epididymis secretory protein Li 271|mitochondrial ATP synthase beta subunit|mitochondrial ATP synthetase, beta subunit 36 0.004927 13.64 1 1 +509 ATP5C1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 10 protein-coding ATP5C|ATP5CL1 ATP synthase subunit gamma, mitochondrial|ATP synthase gamma chain, mitochondrial|F-ATPase gamma subunit|mitochondrial ATP synthase, gamma subunit 1 26 0.003559 11.69 1 1 +513 ATP5D ATP synthase, H+ transporting, mitochondrial F1 complex, delta subunit 19 protein-coding - ATP synthase subunit delta, mitochondrial|F-ATPase delta subunit|mitochondrial ATP synthase complex delta-subunit precusor|mitochondrial ATP synthase, delta subunit 3 0.0004106 10.43 1 1 +514 ATP5E ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit 20 protein-coding ATPE|MC5DN3 ATP synthase subunit epsilon, mitochondrial|F(0)F(1)-ATPase|H(+)-transporting two-sector ATPase|mitochondrial ATP synthase epsilon chain|mitochondrial ATPase 3 0.0004106 12.03 1 1 +515 ATP5F1 ATP synthase, H+ transporting, mitochondrial Fo complex subunit B1 1 protein-coding PIG47 ATP synthase F(0) complex subunit B1, mitochondrial|ATP synthase B chain, mitochondrial|ATP synthase proton-transporting mitochondrial F(0) complex subunit B1|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 24 0.003285 11.44 1 1 +516 ATP5G1 ATP synthase, H+ transporting, mitochondrial Fo complex subunit C1 (subunit 9) 17 protein-coding ATP5A|ATP5G ATP synthase F(0) complex subunit C1, mitochondrial|ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P1|ATP synthase proton-transporting mitochondrial F(0) complex subunit C1|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 3 0.0004106 10.12 1 1 +517 ATP5G2 ATP synthase, H+ transporting, mitochondrial Fo complex subunit C2 (subunit 9) 12 protein-coding ATP5A ATP synthase F(0) complex subunit C2, mitochondrial|ATP synthase c subunit|ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P2|ATP synthase proton-transporting mitochondrial F(0) complex subunit C2|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) 18 0.002464 12.28 1 1 +518 ATP5G3 ATP synthase, H+ transporting, mitochondrial Fo complex subunit C3 (subunit 9) 2 protein-coding P3 ATP synthase F(0) complex subunit C3, mitochondrial|ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P3|ATP synthase proton-transporting mitochondrial F(0) complex subunit C3|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 8 0.001095 11.74 1 1 +521 ATP5I ATP synthase, H+ transporting, mitochondrial Fo complex subunit E 4 protein-coding ATP5K ATP synthase subunit e, mitochondrial|ATP synthase e chain, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit E|ATPase subunit e|F1F0-ATP synthase, murine e subunit 3 0.0004106 10.56 1 1 +522 ATP5J ATP synthase, H+ transporting, mitochondrial Fo complex subunit F6 21 protein-coding ATP5|ATP5A|ATPM|CF6|F6 ATP synthase-coupling factor 6, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F6|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 8 0.001095 10.74 1 1 +523 ATP6V1A ATPase H+ transporting V1 subunit A 3 protein-coding ATP6A1|ATP6V1A1|HO68|VA68|VPP2|Vma1 V-type proton ATPase catalytic subunit A|ATPase, H+ transporting, lysosomal 70kDa, V1 subunit A|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|vacuolar ATP synthase catalytic subunit A, ubiquitous isoform|vacuolar ATPase isoform VA68|vacuolar proton pump alpha subunit 1|vacuolar proton pump subunit alpha 41 0.005612 11.01 1 1 +525 ATP6V1B1 ATPase H+ transporting V1 subunit B1 2 protein-coding ATP6B1|RTA1B|VATB|VMA2|VPP3 V-type proton ATPase subunit B, kidney isoform|ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B1|H(+)-transporting two-sector ATPase, 58kD subunit|H+-ATPase beta 1 subunit|V-ATPase B1 subunit|V-ATPase subunit B 1|endomembrane proton pump 58 kDa subunit|vacuolar proton pump 3|vacuolar proton pump subunit B 1|vacuolar proton pump, subunit 3 66 0.009034 4.992 1 1 +526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 8 protein-coding ATP6B1B2|ATP6B2|DOOD|HO57|VATB|VPP3|Vma2|ZLS2 V-type proton ATPase subunit B, brain isoform|ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2|H+ transporting two-sector ATPase|V-ATPase B2 subunit|V-ATPase subunit B 2|endomembrane proton pump 58 kDa subunit|testicular secretory protein Li 65|vacuolar H+-ATPase 56,000 subunit|vacuolar proton pump subunit B 2 40 0.005475 11.17 1 1 +527 ATP6V0C ATPase H+ transporting V0 subunit c 16 protein-coding ATP6C|ATP6L|ATPL|VATL|VPPC|Vma3 V-type proton ATPase 16 kDa proteolipid subunit|ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c|H(+)-transporting two-sector ATPase, 16 kDa subunit|V-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 9 0.001232 11.89 1 1 +528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 8 protein-coding ATP6C|ATP6D|VATC|Vma5 V-type proton ATPase subunit C 1|ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C1|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|subunit C of vacuolar proton-ATPase V1 domain|testicular tissue protein Li 223|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 25 0.003422 10.69 1 1 +529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 22 protein-coding ATP6E|ATP6E2|ATP6V1E|P31|Vma4 V-type proton ATPase subunit E 1|ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1|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|vacuolar proton pump subunit E 1 11 0.001506 11.25 1 1 +533 ATP6V0B ATPase H+ transporting V0 subunit b 1 protein-coding ATP6F|HATPL|VMA16 V-type proton ATPase 21 kDa proteolipid subunit|ATPase, H+ transporting, lysosomal 21kDa, V0 subunit b|ATPase, H+ transporting, lysosomal, 21-KD, V0 subunit C-prime, prime|ATPase, H+ transporting, lysosomal, subunit F|H(+)-transporting two-sector ATPase, subunit F|V-ATPase 21 kDa proteolipid subunit|V-ATPase subunit c''|vacuolar ATP synthase 21 kDa proteolipid subunit|vacuolar proton pump 21 kDa proteolipid subunit 18 0.002464 11.37 1 1 +534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 6 protein-coding ATP6G|ATP6G2|NG38|VMA10 V-type proton ATPase subunit G 2|ATPase, H+ transporting, lysosomal (vacuolar proton pump)|ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2|H(+)-transporting two-sector ATPase, subunit G2|V-ATPase 13 kDa subunit 2|vacuolar ATP synthase subunit G 2|vacuolar proton pump G subunit 2 6 0.0008212 4.672 1 1 +535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 17 protein-coding ATP6N1|ATP6N1A|Stv1|VPP1|Vph1|a1 V-type proton ATPase 116 kDa subunit a isoform 1|ATPase, H+ transporting, lysosomal V0 subunit a1|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|clathrin-coated vesicle/synaptic vesicle proton pump 116 kDa subunit|vacuolar adenosine triphosphatase subunit Ac116|vacuolar proton pump subunit 1|vacuolar proton translocating ATPase 116 kDa subunit A|vacuolar-type H(+)-ATPase 115 kDa subunit 68 0.009307 10.7 1 1 +537 ATP6AP1 ATPase H+ transporting accessory protein 1 X protein-coding 16A|ATP6IP1|ATP6S1|Ac45|CF2|VATPS1|XAP-3|XAP3 V-type proton ATPase subunit S1|ATPase, H+ transporting, lysosomal (vacuolar proton pump), subunit 1|ATPase, H+ transporting, lysosomal accessory protein 1|ATPase, H+ transporting, lysosomal interacting protein 1|H-ATPase subunit|V-ATPase Ac45 subunit|V-ATPase S1 accessory protein|V-ATPase subunit S1|protein XAP-3|vacuolar proton pump subunit S1 32 0.00438 12.14 1 1 +538 ATP7A ATPase copper transporting alpha X protein-coding DSMAX|MK|MNK|SMAX3 copper-transporting ATPase 1|ATPase, Cu++ transporting, alpha polypeptide|Cu++-transporting P-type ATPase|Menkes disease-associated protein|copper pump 1 106 0.01451 8.549 1 1 +539 ATP5O ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit 21 protein-coding ATPO|HMC08D05|OSCP ATP synthase subunit O, mitochondrial|human ATP synthase OSCP subunit|oligomycin sensitivity conferral protein oscp-like protein|oligomycin sensitivity conferring protein 8 0.001095 11.46 1 1 +540 ATP7B ATPase copper transporting beta 13 protein-coding PWD|WC1|WD|WND copper-transporting ATPase 2|ATPase, Cu(2+)- transporting, beta polypeptide|ATPase, Cu++ transporting, beta polypeptide|Wilson disease-associated protein|copper pump 2 92 0.01259 7.522 1 1 +545 ATR ATR serine/threonine kinase 3 protein-coding FCTCS|FRP1|MEC1|SCKL|SCKL1 serine/threonine-protein kinase ATR|FRAP-related protein-1|MEC1, mitosis entry checkpoint 1, homolog|ataxia telangiectasia and Rad3-related protein 183 0.02505 9.261 1 1 +546 ATRX ATRX, chromatin remodeler X protein-coding ATR2|JMS|MRX52|MRXHF1|RAD54|RAD54L|SFM1|SHS|XH2|XNP|ZNF-HX transcriptional regulator ATRX|ATP-dependent helicase ATRX|DNA dependent ATPase and helicase|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|mental retardation, X-linked 52 323 0.04421 10.45 1 1 +547 KIF1A kinesin family member 1A 2 protein-coding ATSV|C2orf20|HSN2C|MRD9|SPG30|UNC104 kinesin-like protein KIF1A|axonal transporter of synaptic vesicles|kinesin, heavy chain, member 1A, homolog of mouse|microtubule-based motor KIF1A|unc-104- and KIF1A-related protein 162 0.02217 5.656 1 1 +549 AUH AU RNA binding methylglutaconyl-CoA hydratase 9 protein-coding - methylglutaconyl-CoA hydratase, mitochondrial|3-methylglutaconyl-CoA hydratase|AU RNA binding protein/enoyl-CoA hydratase|AU RNA-binding protein/enoyl-Coenzyme A hydratase|AU-binding protein/Enoyl-CoA hydratase|AU-specific RNA-binding enoyl-CoA hydratase 18 0.002464 7.922 1 1 +550 AUP1 ancient ubiquitous protein 1 2 protein-coding - ancient ubiquitous protein 1 30 0.004106 11.48 1 1 +551 AVP arginine vasopressin 20 protein-coding ADH|ARVP|AVP-NPII|AVRP|VP vasopressin-neurophysin 2-copeptin|antidiuretic hormone|copeptin|neurohypophyseal|prepro-AVP-NP II|prepro-arginine-vasopressin-neurophysin II|vasopressin-neurophysin II-copeptin 5 0.0006844 0.1579 1 1 +552 AVPR1A arginine vasopressin receptor 1A 12 protein-coding AVPR V1a|AVPR1|V1aR vasopressin V1a receptor|SCCL vasopressin subtype 1a receptor|V1-vascular vasopressin receptor AVPR1A|V1a vasopressin receptor|antidiuretic hormone receptor 1A|vascular/hepatic-type arginine vasopressin receptor 67 0.009171 3.794 1 1 +553 AVPR1B arginine vasopressin receptor 1B 1 protein-coding AVPR3 vasopressin V1b receptor|AVPR V1b|AVPR V3|V1bR|antidiuretic hormone receptor 1B|arginine vasopressin receptor 3|pituitary vasopressin receptor 3|vasopressin V3 receptor 43 0.005886 0.7129 1 1 +554 AVPR2 arginine vasopressin receptor 2 X protein-coding ADHR|DI1|DIR|DIR3|NDI|V2R vasopressin V2 receptor|AVPR V2|antidiuretic hormone receptor|renal-type arginine vasopressin receptor 39 0.005338 3.163 1 1 +558 AXL AXL receptor tyrosine kinase 19 protein-coding ARK|JTK11|Tyro7|UFO tyrosine-protein kinase receptor UFO|AXL oncogene|AXL transforming sequence/gene 77 0.01054 9.692 1 1 +563 AZGP1 alpha-2-glycoprotein 1, zinc-binding 7 protein-coding ZA2G|ZAG zinc-alpha-2-glycoprotein|Alpha-2-glycoprotein, zinc|Zn-alpha2-glycoprotein|testicular tissue protein Li 227|zn-alpha-2-GP|zn-alpha-2-glycoprotein 27 0.003696 7.691 1 1 +566 AZU1 azurocidin 1 19 protein-coding AZAMP|AZU|CAP37|HBP|HUMAZUR|NAZC|hHBP azurocidin|cationic antimicrobial protein 37|cationic antimicrobial protein CAP37|heparin-binding protein|neutrophil azurocidin 24 0.003285 1.188 1 1 +567 B2M beta-2-microglobulin 15 protein-coding IMD43 beta-2-microglobulin|beta chain of MHC class I molecules|beta-2-microglobin 77 0.01054 15.4 1 1 +570 BAAT bile acid-CoA:amino acid N-acyltransferase 9 protein-coding BACAT|BAT bile acid-CoA:amino acid N-acyltransferase|bile acid CoA: amino acid N-acyltransferase (glycine N-choloyltransferase)|bile acid Coenzyme A: amino acid N-acyltransferase (glycine N-choloyltransferase)|long-chain fatty-acyl-CoA hydrolase 43 0.005886 2.734 1 1 +571 BACH1 BTB domain and CNC homolog 1 21 protein-coding BACH-1|BTBD24 transcription regulator protein BACH1|BTB and CNC homology 1, basic leucine zipper transcription factor 1|basic region leucine zipper transcriptional regulator BACH1 55 0.007528 9.725 1 1 +572 BAD BCL2 associated agonist of cell death 11 protein-coding BBC2|BCL2L8 bcl2-associated agonist of cell death|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 19 0.002601 9.916 1 1 +573 BAG1 BCL2 associated athanogene 1 9 protein-coding BAG-1|HAP|RAP46 BAG family molecular chaperone regulator 1|BCL2-associated athanogene|Bcl-2 associating athanogene-1 protein|Bcl-2-binding protein|glucocortoid receptor-associated protein RAP46|receptor-associated protein, 46-KD 15 0.002053 10.55 1 1 +574 BAGE B melanoma antigen 21 protein-coding BAGE1|CT2.1 B melanoma antigen 1|antigen MZ2-BA|cancer/testis antigen 2.1|cancer/testis antigen family 2, member 1 7 0.0009581 0.3727 1 1 +575 ADGRB1 adhesion G protein-coupled receptor B1 8 protein-coding BAI1|GDAIF brain-specific angiogenesis inhibitor 1 117 0.01601 4.825 1 1 +576 ADGRB2 adhesion G protein-coupled receptor B2 1 protein-coding BAI2 adhesion G protein-coupled receptor B2|brain-specific angiogenesis inhibitor 2 110 0.01506 7.477 1 1 +577 ADGRB3 adhesion G protein-coupled receptor B3 6 protein-coding BAI3 adhesion G protein-coupled receptor B3|brain-specific angiogenesis inhibitor 3|dJ91B17.1 (brain-specific angiogenesis inhibitor 3) 252 0.03449 3.171 1 1 +578 BAK1 BCL2 antagonist/killer 1 6 protein-coding BAK|BAK-LIKE|BCL2L7|CDN1 bcl-2 homologous antagonist/killer|BCL2-like 7 protein|apoptosis regulator BAK|bcl-2-like protein 7|bcl2-L-7|pro-apoptotic protein BAK 18 0.002464 9.043 1 1 +579 NKX3-2 NK3 homeobox 2 4 protein-coding BAPX1|NKX3.2|NKX3B|SMMD homeobox protein Nkx-3.2|bagpipe homeobox protein homolog 1|homeobox protein NK-3 homolog B 18 0.002464 2.994 1 1 +580 BARD1 BRCA1 associated RING domain 1 2 protein-coding - BRCA1-associated RING domain protein 1|BRCA1-associated RING domain gene 1 65 0.008897 5.894 1 1 +581 BAX BCL2 associated X, apoptosis regulator 19 protein-coding BCL2L4 apoptosis regulator BAX|BCL2 associated X protein|BCL2-associated X protein omega|Baxdelta2G9|Baxdelta2G9omega|Baxdelta2omega|bcl-2-like protein 4|bcl2-L-4 34 0.004654 9.83 1 1 +582 BBS1 Bardet-Biedl syndrome 1 11 protein-coding BBS2L2 Bardet-Biedl syndrome 1 protein|BBS2-like protein 2 16 0.00219 9.43 1 1 +583 BBS2 Bardet-Biedl syndrome 2 16 protein-coding BBS|RP74 Bardet-Biedl syndrome 2 protein 43 0.005886 9.522 1 1 +585 BBS4 Bardet-Biedl syndrome 4 15 protein-coding - Bardet-Biedl syndrome 4 protein 35 0.004791 8.493 1 1 +586 BCAT1 branched chain amino acid transaminase 1 12 protein-coding BCATC|BCT1|ECA39|MECA39|PNAS121|PP18 branched-chain-amino-acid aminotransferase, cytosolic|branched chain amino-acid transaminase 1, cytosolic|branched chain aminotransferase 1, cytosolic|placental protein 18 35 0.004791 8.612 1 1 +587 BCAT2 branched chain amino acid transaminase 2 19 protein-coding BCAM|BCATM|BCT2|PP18 branched-chain-amino-acid aminotransferase, mitochondrial|branched chain amino-acid transaminase 2, mitochondrial|branched chain aminotransferase 2, mitochondrial|placental protein 18 34 0.004654 9.474 1 1 +590 BCHE butyrylcholinesterase 3 protein-coding CHE1|CHE2|E1 cholinesterase|acylcholine acylhydrolase|butyrylcholine esterase|choline esterase II|cholinesterase (serum) 2|cholinesterase 1|pseudocholinesterase 121 0.01656 5.328 1 1 +593 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide 19 protein-coding BCKDE1A|MSU|MSUD1|OVD1A 2-oxoisovalerate dehydrogenase subunit alpha, mitochondrial|2-oxoisovalerate dehydrogenase (lipoamide)|BCKDH E1-alpha|branched chain keto acid dehydrogenase E1 alpha protein|branched-chain alpha-keto acid dehydrogenase E1 component alpha chain 43 0.005886 10.15 1 1 +594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta 6 protein-coding BCKDE1B|BCKDH E1-beta|E1B 2-oxoisovalerate dehydrogenase subunit beta, mitochondrial|E1b-beta subunit of the branched-chain complex|branched chain alpha-ketoacid dehydrogenase E1-beta subunit|branched chain keto acid dehydrogenase E1, beta polypeptide|branched-chain alpha-keto acid dehydrogenase E1 component beta chain|testis secretory sperm-binding protein Li 240mP 38 0.005201 8.458 1 1 +595 CCND1 cyclin D1 11 protein-coding BCL1|D11S287E|PRAD1|U21B31 G1/S-specific cyclin-D1|B-cell CLL/lymphoma 1|B-cell lymphoma 1 protein|BCL-1 oncogene|PRAD1 oncogene 21 0.002874 12.01 1 1 +596 BCL2 BCL2, apoptosis regulator 18 protein-coding Bcl-2|PPP1R50 apoptosis regulator Bcl-2|B-cell CLL/lymphoma 2|protein phosphatase 1, regulatory subunit 50 15 0.002053 8.634 1 1 +597 BCL2A1 BCL2 related protein A1 15 protein-coding ACC-1|ACC-2|ACC1|ACC2|BCL2L5|BFL1|GRS|HBPA1 bcl-2-related protein A1|bcl-2-like protein 5|bcl2-L-5|hematopoietic BCL2-related protein A1|hemopoietic-specific early response protein|protein BFL-1 12 0.001642 5.791 1 1 +598 BCL2L1 BCL2 like 1 20 protein-coding BCL-XL/S|BCL2L|BCLX|Bcl-X|PPP1R52 bcl-2-like protein 1|apoptosis regulator Bcl-X|protein phosphatase 1, regulatory subunit 52 11 0.001506 11.59 1 1 +599 BCL2L2 BCL2 like 2 14 protein-coding BCL-W|BCL2-L-2|BCLW|PPP1R51 bcl-2-like protein 2|apoptosis regulator BCL-W|protein phosphatase 1, regulatory subunit 51 9 0.001232 9.959 1 1 +602 BCL3 B-cell CLL/lymphoma 3 19 protein-coding BCL4|D19S37 B-cell lymphoma 3 protein|B-cell leukemia/lymphoma 3|B-cell lymphoma 3-encoded protein|BCL-3|chronic lymphatic leukemia protein|proto-oncogene BCL3 32 0.00438 9.756 1 1 +604 BCL6 B-cell CLL/lymphoma 6 3 protein-coding BCL5|BCL6A|LAZ3|ZBTB27|ZNF51 B-cell lymphoma 6 protein|B-cell lymphoma 5 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 61 0.008349 10.03 1 1 +605 BCL7A BCL tumor suppressor 7A 12 protein-coding BCL7 B-cell CLL/lymphoma 7 protein family member A|B-cell CLL/lymphoma 7A|B-cell CLL/lymphoma-7 17 0.002327 9.097 1 1 +606 NBEAP1 neurobeachin pseudogene 1 15 pseudo BCL8|BCL8A B-cell CLL/lymphoma 8 31 0.004243 1.887 1 1 +607 BCL9 B-cell CLL/lymphoma 9 1 protein-coding LGS B-cell CLL/lymphoma 9 protein|B-cell lymphoma 9 protein|bcl-9|protein legless homolog 119 0.01629 9.706 1 1 +608 TNFRSF17 TNF receptor superfamily member 17 16 protein-coding BCM|BCMA|CD269|TNFRSF13A tumor necrosis factor receptor superfamily member 17|B cell maturation antigen|B-cell maturation factor|B-cell maturation protein 8 0.001095 2.905 1 1 +610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium channel 2 19 protein-coding BCNG-2|BCNG2|HAC-1 potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2|brain cyclic nucleotide-gated channel 2 26 0.003559 4.772 1 1 +611 OPN1SW opsin 1 (cone pigments), short-wave-sensitive 7 protein-coding BCP|BOP|CBT short-wave-sensitive opsin 1|blue cone photoreceptor pigment|blue-sensitive opsin 28 0.003832 1.409 1 1 +613 BCR BCR, RhoGEF and GTPase activating protein 22 protein-coding ALL|BCR1|CML|D22S11|D22S662|PHL breakpoint cluster region protein|BCR/FGFR1 chimera protein|FGFR1/BCR chimera protein|breakpoint cluster region|renal carcinoma antigen NY-REN-26 72 0.009855 10.94 1 1 +617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone 2 protein-coding BCS|BCS1|BJS|FLNMS|GRACILE|Hs.6719|MC3DN1|PTD|h-BCS|h-BCS1 mitochondrial chaperone BCS1|BC1 (ubiquinol-cytochrome c reductase) synthesis-like|BCS1-like protein|mitochondrial complex III assembly 20 0.002737 8.617 1 1 +618 BCYRN1 brain cytoplasmic RNA 1 2 ncRNA BC200|BC200a|LINC00004|NCRNA00004 BC200-alpha|brain cytoplasmic RNA 1 (analog of mouse Bc1)|brain cytoplasmic RNA 1 (non-protein coding)|brain cytoplasmic RNA 1, Bc1 analog|brain cytoplasmic RNA 200-alpha|long intergenic non-protein coding RNA 4|non-protein coding RNA 4 0.01684 0 1 +622 BDH1 3-hydroxybutyrate dehydrogenase, type 1 3 protein-coding BDH|SDR9C1 D-beta-hydroxybutyrate dehydrogenase, mitochondrial|(R)-3-hydroxybutyrate dehydrogenase|3-hydroxybutyrate dehydrogenase (heart, mitochondrial)|short chain dehydrogenase/reductase family 9C member 1 29 0.003969 8.939 1 1 +623 BDKRB1 bradykinin receptor B1 14 protein-coding B1BKR|B1R|BDKRB2|BKB1R|BKR1|BRADYB1 B1 bradykinin receptor|BK-1 receptor|bradykinin B1 receptor|bradykinin receptor 1|bradykinin receptor B2 26 0.003559 3.982 1 1 +624 BDKRB2 bradykinin receptor B2 14 protein-coding B2R|BK-2|BK2|BKR2|BRB2 B2 bradykinin receptor|BK-2 receptor 34 0.004654 7.507 1 1 +627 BDNF brain derived neurotrophic factor 11 protein-coding ANON2|BULN2 brain-derived neurotrophic factor|abrineurin|neurotrophin 39 0.005338 4.383 1 1 +629 CFB complement factor B 6 protein-coding AHUS4|ARMD14|BF|BFD|CFAB|CFBD|FB|FBI12|GBG|H2-Bf|PBF2 complement factor B|B-factor, properdin|C3 proaccelerator|C3 proactivator|C3/C5 convertase|glycine-rich beta-glycoprotein|properdin factor B 58 0.007939 10.72 1 1 +631 BFSP1 beaded filament structural protein 1 20 protein-coding CP115|CP94|CTRCT33|LIFL-H filensin|beaded filament structural protein 1, filensin|cytoskeletal protein, 115 KD|lens fiber cell beaded-filament structural protein CP 115|lens intermediate filament-like heavy 41 0.005612 5.343 1 1 +632 BGLAP bone gamma-carboxyglutamate protein 1 protein-coding BGP|OC|OCN osteocalcin|bone gamma-carboxyglutamate (gla) protein (osteocalcin)|gamma-carboxyglutamic acid-containing protein 7 0.0009581 5.289 1 1 +633 BGN biglycan X protein-coding DSPG1|PG-S1|PGI|SEMDX|SLRR1A biglycan|bone/cartilage proteoglycan-I|dermatan sulphate proteoglycan I|small leucine-rich protein 1A 24 0.003285 12.64 1 1 +634 CEACAM1 carcinoembryonic antigen related cell adhesion molecule 1 19 protein-coding BGP|BGP1|BGPI carcinoembryonic antigen-related cell adhesion molecule 1|CD66a antigen|antigen CD66|carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) 30 0.004106 7.994 1 1 +635 BHMT betaine--homocysteine S-methyltransferase 5 protein-coding BHMT1|HEL-S-61p betaine--homocysteine S-methyltransferase 1|epididymis secretory sperm binding protein Li 61p 29 0.003969 2.888 1 1 +636 BICD1 BICD cargo adaptor 1 12 protein-coding BICD protein bicaudal D homolog 1|bic-D 1|bicaudal D homolog 1|cytoskeleton-like bicaudal D protein homolog 1 75 0.01027 7.193 1 1 +637 BID BH3 interacting domain death agonist 22 protein-coding FP497 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 21 0.002874 9.306 1 1 +638 BIK BCL2 interacting killer 22 protein-coding BIP1|BP4|NBK bcl-2-interacting killer|BCL2-interacting killer (apoptosis-inducing)|apoptosis inducer NBK|apoptosis-inducing NBK|natural born killer 11 0.001506 5.876 1 1 +639 PRDM1 PR/SET domain 1 6 protein-coding BLIMP1|PRDI-BF1 PR domain zinc finger protein 1|B-lymphocyte-induced maturation protein 1|BLIMP-1|PR domain 1|PR domain containing 1, with ZNF domain|PRDI-binding factor-1|beta-interferon gene positive-regulatory domain I binding factor 64 0.00876 8.49 1 1 +640 BLK BLK proto-oncogene, Src family tyrosine kinase 8 protein-coding MODY11 tyrosine-protein kinase Blk|B lymphoid tyrosine kinase|BLK nonreceptor tyrosine kinase|b lymphocyte kinase|p55-Blk 53 0.007254 2.876 1 1 +641 BLM Bloom syndrome RecQ like helicase 15 protein-coding BS|RECQ2|RECQL2|RECQL3 Bloom syndrome protein|Bloom syndrome, RecQ helicase-like|DNA helicase, RecQ-like type 2|recQ protein-like 3 89 0.01218 7.064 1 1 +642 BLMH bleomycin hydrolase 17 protein-coding BH|BMH bleomycin hydrolase|BLM hydrolase 33 0.004517 9.581 1 1 +643 CXCR5 C-X-C motif chemokine receptor 5 11 protein-coding BLR1|CD185|MDR15 C-X-C chemokine receptor type 5|Burkitt lymphoma receptor 1, GTP binding protein (chemokine (C-X-C motif) receptor 5)|Burkitt lymphoma receptor 1, GTP-binding protein|CXC-R5|CXCR-5|MDR-15|chemokine (C-X-C motif) receptor 5|monocyte-derived receptor 15 22 0.003011 3.37 1 1 +644 BLVRA biliverdin reductase A 7 protein-coding BLVR|BVR|BVRA biliverdin reductase A|BVR A|biliverdin-IX alpha-reductase|testis tissue sperm-binding protein Li 61n 31 0.004243 9.626 1 1 +645 BLVRB biliverdin reductase B 19 protein-coding BVRB|FLR|HEL-S-10|SDR43U1 flavin reductase (NADPH)|BVR-B|FR|GHBP|NADPH-dependent diaphorase|NADPH-flavin reductase|biliverdin reductase B (flavin reductase (NADPH))|biliverdin-IX beta-reductase|epididymis secretory protein Li 10|green heme-binding protein|short chain dehydrogenase/reductase family 43U, member 1 8 0.001095 10.16 1 1 +646 BNC1 basonuclin 1 15 protein-coding BNC|BSN1|HsT19447 zinc finger protein basonuclin-1 91 0.01246 3.874 1 1 +648 BMI1 BMI1 proto-oncogene, polycomb ring finger 10 protein-coding FLVI2/BMI1|PCGF4|RNF51|flvi-2/bmi-1 polycomb complex protein BMI-1|B lymphoma Mo-MLV insertion region 1 homolog|BMI1 polycomb ring finger oncogene|BMI1 polycomb ring finger proto-oncogene|murine leukemia viral (bmi-1) oncogene homolog|polycomb group RING finger protein 4|polycomb group protein Bmi1|ring finger protein 51 26 0.003559 10.35 1 1 +649 BMP1 bone morphogenetic protein 1 8 protein-coding OI13|PCOLC|PCP|PCP2|TLD bone morphogenetic protein 1|mammalian tolloid protein|procollagen C-endopeptidase|procollagen C-proteinase 3 78 0.01068 9.877 1 1 +650 BMP2 bone morphogenetic protein 2 20 protein-coding BDA2|BMP2A bone morphogenetic protein 2|bone morphogenetic protein 2A 36 0.004927 7.373 1 1 +651 BMP3 bone morphogenetic protein 3 4 protein-coding BMP-3A bone morphogenetic protein 3|bone morphogenetic protein 3 (osteogenic)|bone morphogenetic protein 3A|osteogenin 61 0.008349 2.985 1 1 +652 BMP4 bone morphogenetic protein 4 14 protein-coding BMP2B|BMP2B1|MCOPS6|OFC11|ZYME bone morphogenetic protein 4|bone morphogenetic protein 2B|bone morphogenetic protein 4 preproprotein 31 0.004243 7.333 1 1 +653 BMP5 bone morphogenetic protein 5 6 protein-coding - bone morphogenetic protein 5 60 0.008212 2.079 1 1 +654 BMP6 bone morphogenetic protein 6 6 protein-coding VGR|VGR1 bone morphogenetic protein 6|VG-1-R|VG-1-related protein|vegetal related growth factor (TGFB-related) 58 0.007939 6.183 1 1 +655 BMP7 bone morphogenetic protein 7 20 protein-coding OP-1 bone morphogenetic protein 7|osteogenic protein 1 45 0.006159 7.513 1 1 +656 BMP8B bone morphogenetic protein 8b 1 protein-coding BMP8|OP2 bone morphogenetic protein 8B|bone morphogenetic protein 8 (osteogenic protein 2)|osteogenic protein 2 18 0.002464 6.077 1 1 +657 BMPR1A bone morphogenetic protein receptor type 1A 10 protein-coding 10q23del|ACVRLK3|ALK3|CD292|SKR5 bone morphogenetic protein receptor type-1A|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 IA|serine/threonine-protein kinase receptor R5 32 0.00438 8.92 1 1 +658 BMPR1B bone morphogenetic protein receptor type 1B 4 protein-coding ALK-6|ALK6|AMDD|BDA1D|BDA2|CDw293 bone morphogenetic protein receptor type-1B|BMP type-1B receptor|BMPR-1B|activin receptor-like kinase 6|bone morphogenetic protein receptor, type IB|serine/threonine receptor kinase 45 0.006159 6.27 1 1 +659 BMPR2 bone morphogenetic protein receptor type 2 2 protein-coding BMPR-II|BMPR3|BMR2|BRK-3|POVD1|PPH1|T-ALK bone morphogenetic protein receptor type-2|BMP type II receptor|BMP type-2 receptor|BMPR-2|bone morphogenetic protein receptor type II|bone morphogenetic protein receptor, type II (serine/threonine kinase)|type II activin receptor-like kinase|type II receptor for bone morphogenetic protein-4 85 0.01163 10.95 1 1 +660 BMX BMX non-receptor tyrosine kinase X protein-coding ETK|PSCTK2|PSCTK3 cytoplasmic tyrosine-protein kinase BMX|BTK-like on X chromosome|Etk/Bmx cytosolic tyrosine kinase|NTK38 tyrosine kinase|bone marrow tyrosine kinase gene in chromosome X protein|epithelial and endothelial tyrosine kinase 44 0.006022 3.151 1 1 +661 POLR3D RNA polymerase III subunit D 8 protein-coding BN51T|RPC4|RPC53|TSBN51 DNA-directed RNA polymerase III subunit RPC4|BN51 (BHK21) temperature sensitivity complementing|DNA-directed RNA polymerase III 47 kDa polypeptide|DNA-directed RNA polymerase III subunit D|RNA polymerase III 47 kDa subunit|RNA polymerase III subunit C4|RPC53 homolog|polymerase (RNA) III (DNA directed) polypeptide D, 44kDa|polymerase (RNA) III subunit D|temperature sensitive complementation, cell cycle specific, tsBN51 23 0.003148 8.556 1 1 +662 BNIP1 BCL2 interacting protein 1 5 protein-coding NIP1|SEC20|TRG-8 vesicle transport protein SEC20|BCL2/adenovirus E1B 19 kDa protein-interacting protein 1|BCL2/adenovirus E1B 19kDa interacting protein 1|transformation-related gene 8 protein 22 0.003011 7.676 1 1 +663 BNIP2 BCL2 interacting protein 2 15 protein-coding BNIP-2|NIP2 BCL2/adenovirus E1B 19 kDa protein-interacting protein 2|BCL2/adenovirus E1B 19kDa interacting protein 2 18 0.002464 9.428 1 1 +664 BNIP3 BCL2 interacting protein 3 10 protein-coding NIP3 BCL2/adenovirus E1B 19 kDa protein-interacting protein 3|BCL2/adenovirus E1B 19kDa interacting protein 3 14 0.001916 9.918 1 1 +665 BNIP3L BCL2 interacting protein 3 like 8 protein-coding BNIP3a|NIX 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|BCL2/adenovirus E1B 19kDa interacting protein 3 like|NIP3-like protein X|NIP3L|adenovirus E1B19k-binding protein B5 6 0.0008212 11.02 1 1 +666 BOK BOK, BCL2 family apoptosis regulator 2 protein-coding BCL2L9|BOKL bcl-2-related ovarian killer protein|BCL2 related ovarian killer|bcl-2-like protein 9|bcl2-L-9|hBOK 7 0.0009581 9.531 1 1 +667 DST dystonin 6 protein-coding BP240|BPA|BPAG1|CATX-15|CATX15|D6S1101|DMH|DT|EBSB2|HSAN6|MACF2 dystonin|bullous pemphigoid antigen 1|dystonia musculorum protein|hemidesmosomal plaque protein|trabeculin-beta 473 0.06474 11.66 1 1 +668 FOXL2 forkhead box L2 3 protein-coding BPES|BPES1|PFRK|PINTO|POF3 forkhead box protein L2|forkhead transcription factor FOXL2 21 0.002874 2.469 1 1 +669 BPGM bisphosphoglycerate mutase 7 protein-coding DPGM bisphosphoglycerate mutase|2,3-bisphosphoglycerate mutase|2,3-bisphosphoglycerate mutase, erythrocyte|2,3-bisphosphoglycerate synthase|2,3-diphosphoglycerate mutase|BPG-dependent PGAM|erythrocyte 2,3-bisphosphoglycerate mutase|testis secretory sperm-binding protein Li 202a 18 0.002464 9.083 1 1 +670 BPHL biphenyl hydrolase like 6 protein-coding BPH-RP|MCNAA|VACVASE valacyclovir hydrolase|biphenyl hydrolase-like (serine hydrolase)|biphenyl hydrolase-related protein|breast epithelial mucin-associated antigen|valacyclovirase 22 0.003011 8.551 1 1 +671 BPI bactericidal/permeability-increasing protein 20 protein-coding BPIFD1|rBPI bactericidal permeability-increasing protein|BPI fold containing family D, member 1|CAP 57|recombinant BPI holoprotein, rBPI 50 0.006844 1.357 1 1 +672 BRCA1 BRCA1, DNA repair associated 17 protein-coding BRCAI|BRCC1|BROVCA1|FANCS|IRIS|PNCA4|PPP1R53|PSCP|RNF53 breast cancer type 1 susceptibility protein|BRCA1/BRCA2-containing complex, subunit 1|Fanconi anemia, complementation group S|RING finger protein 53|breast and ovarian cancer susceptibility protein 1|breast cancer 1, early onset|early onset breast cancer 1|protein phosphatase 1, regulatory subunit 53|truncated breast cancer 1 136 0.01861 8.134 1 1 +673 BRAF B-Raf proto-oncogene, serine/threonine kinase 7 protein-coding B-RAF1|B-raf|BRAF1|NS7|RAFB1 serine/threonine-protein kinase B-raf|94 kDa B-raf protein|B-Raf proto-oncogene serine/threonine-protein kinase (p94)|murine sarcoma viral (v-raf) oncogene homolog B1|proto-oncogene B-Raf|v-raf murine sarcoma viral oncogene homolog B|v-raf murine sarcoma viral oncogene homolog B1 500 0.06844 7.192 1 1 +675 BRCA2 BRCA2, DNA repair associated 13 protein-coding BRCC2|BROVCA2|FACD|FAD|FAD1|FANCD|FANCD1|GLM3|PNCA2|XRCC11 breast cancer type 2 susceptibility protein|BRCA1/BRCA2-containing complex, subunit 2|Fanconi anemia group D1 protein|breast and ovarian cancer susceptibility gene, early onset|breast and ovarian cancer susceptibility protein 2|breast cancer 2 tumor suppressor|breast cancer 2, early onset|mutant BRCA2 237 0.03244 6.42 1 1 +676 BRDT bromodomain testis associated 1 protein-coding BRD6|CT9 bromodomain testis-specific protein|RING3-like protein|bromodomain, testis-specific|cancer/testis antigen 9 76 0.0104 0.9102 1 1 +677 ZFP36L1 ZFP36 ring finger protein like 1 14 protein-coding BRF1|Berg36|ERF-1|ERF1|RNF162B|TIS11B|cMG1 zinc finger protein 36, C3H1 type-like 1|EGF-response factor 1|butyrate response factor 1|early response factor Berg36|zinc finger protein 36, C3H type-like 1|zinc finger protein, C3H type, 36-like 1 82 0.01122 12.62 1 1 +678 ZFP36L2 ZFP36 ring finger protein like 2 2 protein-coding BRF2|ERF-2|ERF2|RNF162C|TIS11D zinc finger protein 36, C3H1 type-like 2|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, C3H type, 36-like 2 80 0.01095 11.92 1 1 +680 BRS3 bombesin receptor subtype 3 X protein-coding BB3|BB3R bombesin receptor subtype-3|BRS-3|G-protein coupled receptor|bombesin like receptor 3 36 0.004927 0.3019 1 1 +682 BSG basigin (Ok blood group) 19 protein-coding 5F7|CD147|EMMPRIN|OK|TCSF basigin|OK blood group antigen|collagenase stimulatory factor|extracellular matrix metalloproteinase inducer|leukocyte activation antigen M6|tumor cell-derived collagenase stimulatory factor 26 0.003559 13.69 1 1 +683 BST1 bone marrow stromal cell antigen 1 4 protein-coding CD157 ADP-ribosyl cyclase/cyclic ADP-ribose hydrolase 2|ADP-ribosyl cyclase 2|BST-1|NAD(+) nucleosidase|bone marrow stromal antigen 1|cADPr hydrolase 2|cyclic ADP-ribose hydrolase 2 31 0.004243 5.904 1 1 +684 BST2 bone marrow stromal cell antigen 2 19 protein-coding CD317|TETHERIN bone marrow stromal antigen 2|BST-2|HM1.24 antigen|NPC-A-7 10 0.001369 10.71 1 1 +685 BTC betacellulin 4 protein-coding - probetacellulin 17 0.002327 3.66 1 1 +686 BTD biotinidase 3 protein-coding - biotinidase|biotinase 30 0.004106 8.568 1 1 +687 KLF9 Kruppel like factor 9 9 protein-coding BTEB|BTEB1 Krueppel-like factor 9|BTE-binding protein 1|GC-box-binding protein 1|basic transcription element-binding protein 1|transcription factor BTEB1 13 0.001779 9.978 1 1 +688 KLF5 Kruppel like factor 5 13 protein-coding BTEB2|CKLF|IKLF Krueppel-like factor 5|(intestinal Kruppel-like factor|BTE-binding protein 2|GC box binding protein 2|Klf5C isoform|Kruppel-like factor 5 (intestinal)|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 54 0.007391 9.505 1 1 +689 BTF3 basic transcription factor 3 5 protein-coding BETA-NAC|BTF3a|BTF3b|NACB transcription factor BTF3|NAC-beta|RNA polymerase B transcription factor 3|nascent polypeptide-associated complex subunit beta|nascent-polypeptide-associated complex beta polypeptide 11 0.001506 12.92 1 1 +690 BTF3P11 basic transcription factor 3 pseudogene 11 13 pseudo BTF3L1|HUMBTFB|OCIF|OPG|TNFRSF11B BTF3 homologue|basic transcription factor 3, like 1|basic transcription factor 3-like 1, pseudogene|lambda h27A 0.1387 0 1 +694 BTG1 BTG anti-proliferation factor 1 12 protein-coding APRO2 protein BTG1|B-cell translocation gene 1 protein|B-cell translocation gene 1, anti-proliferative 23 0.003148 11.59 1 1 +695 BTK Bruton tyrosine kinase X protein-coding AGMX1|AT|ATK|BPK|IMD1|PSCTK1|XLA tyrosine-protein kinase BTK|B-cell progenitor kinase|Bruton agammaglobulinemia tyrosine kinase|Bruton's tyrosine kinase|agammaglobulinaemia tyrosine kinase|dominant-negative kinase-deficient Brutons tyrosine kinase|truncated Bruton agammaglobulinemia tyrosine kinase|tyrosine-protein kinase BTK isoform (lacking exon 13 to 17)|tyrosine-protein kinase BTK isoform (lacking exon 14) 67 0.009171 6.556 1 1 +696 BTN1A1 butyrophilin subfamily 1 member A1 6 protein-coding BT|BTN|BTN1 butyrophilin subfamily 1 member A1|bK14H9.2 (butyrophilin, subfamily 1, member A1) 52 0.007117 1.193 1 1 +699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase 2 protein-coding BUB1A|BUB1L|hBUB1 mitotic checkpoint serine/threonine-protein kinase BUB1|BUB1 budding uninhibited by benzimidazoles 1 homolog|budding uninhibited by benzimidazoles 1 homolog|mitotic spindle checkpoint kinase|putative serine/threonine-protein kinase 78 0.01068 8.019 1 1 +701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B 15 protein-coding BUB1beta|BUBR1|Bub1A|MAD3L|MVA1|SSK1|hBUBR1 mitotic checkpoint serine/threonine-protein kinase BUB1 beta|BUB1B, mitotic checkpoint serine/threonine kinase|MAD3/BUB1-related protein kinase|budding uninhibited by benzimidazoles 1 homolog beta|mitotic checkpoint kinase MAD3L 57 0.007802 7.781 1 1 +705 BYSL bystin like 6 protein-coding BYSTIN bystin|by the ribosomal protein s6 gene, drosophila, homolog-like 19 0.002601 8.94 1 1 +706 TSPO translocator protein 22 protein-coding BPBS|BZRP|DBI|IBP|MBR|PBR|PBS|PKBS|PTBR|mDRC|pk18 translocator protein|benzodiazepine peripheral binding site|mitochondrial benzodiazepine receptor|peripheral-type benzodiazepine receptor|translocator protein (18kDa) 5 0.0006844 10.8 1 1 +708 C1QBP complement C1q binding protein 17 protein-coding GC1QBP|HABP1|SF2p32|gC1Q-R|gC1qR|p32 complement component 1 Q subcomponent-binding protein, mitochondrial|ASF/SF2-associated protein p32|C1q globular domain-binding protein|complement component 1, q subcomponent binding protein|glycoprotein gC1qBP|hyaluronan-binding protein 1|mitochondrial matrix protein p32|p33|splicing factor SF2-associated protein 12 0.001642 10.72 1 1 +710 SERPING1 serpin family G member 1 11 protein-coding C1IN|C1INH|C1NH|HAE1|HAE2 plasma protease C1 inhibitor|C1 esterase inhibitor|C1-inhibiting factor|complement component 1 inhibitor|serine/cysteine proteinase inhibitor clade G member 1|serpin G1|serpin peptidase inhibitor clade G member 1|serpin peptidase inhibitor, clade G (C1 inhibitor), member 1 49 0.006707 12.04 1 1 +711 ERC2-IT1 ERC2 intronic transcript 1 3 ncRNA C1orf1|C3orf51|Po42 ERC2 intronic transcript 1 (non-protein coding) 0.1409 0 1 +712 C1QA complement C1q A chain 1 protein-coding - complement C1q subcomponent subunit A|complement C1q chain A|complement component 1, q subcomponent, A chain|complement component 1, q subcomponent, alpha polypeptide|complement component C1q, A chain 28 0.003832 10.8 1 1 +713 C1QB complement C1q B chain 1 protein-coding - complement C1q subcomponent subunit B|complement C1q chain B|complement component 1, q subcomponent, B chain|complement component 1, q subcomponent, beta polypeptide|complement component C1q, B chain|complement subcomponent C1q chain B 24 0.003285 10.95 1 1 +714 C1QC complement C1q C chain 1 protein-coding C1Q-C|C1QG complement C1q subcomponent subunit C|complement component 1, q subcomponent, C chain|complement component 1, q subcomponent, gamma polypeptide 19 0.002601 10.79 1 1 +715 C1R complement C1r 12 protein-coding - complement C1r subcomponent|complement component 1, r subcomponent 36 0.004927 11.69 1 1 +716 C1S complement C1s 12 protein-coding - complement C1s subcomponent|C1 esterase|basic proline-rich peptide IB-1|complement component 1 subcomponent s|complement component 1, s subcomponent 72 0.009855 11.85 1 1 +717 C2 complement C2 6 protein-coding ARMD14|CO2 complement C2|C3/C5 convertase|complement component 2|complement component C2 33 0.004517 9.579 1 1 +718 C3 complement C3 19 protein-coding AHUS5|ARMD9|ASP|C3a|C3b|CPAMD1|HEL-S-62p complement C3|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 1|C3a anaphylatoxin|acylation-stimulating protein cleavage product|complement component 3|complement component C3a|complement component C3b|epididymis secretory sperm binding protein Li 62p|prepro-C3 157 0.02149 12.59 1 1 +719 C3AR1 complement C3a receptor 1 12 protein-coding AZ3B|C3AR|HNFAG09 C3a anaphylatoxin chemotactic receptor|complement component 3 receptor 1|complement component 3a receptor 1 49 0.006707 7.75 1 1 +720 C4A complement C4A (Rodgers blood group) 6 protein-coding C4|C4A2|C4A3|C4A4|C4A6|C4AD|C4S|CO4|CPAMD2|RG complement C4-A|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 2|C4A anaphylatoxin|MHC class III region complement|Rodgers form of C4|acidic C4|acidic complement C4|complement component 4A (Rodgers blood group) 18 0.002464 12.21 1 1 +721 C4B complement C4B (Chido blood group) 6 protein-coding C4B1|C4B12|C4B2|C4B3|C4B5|C4BD|C4B_2|C4F|CH|CO4|CPAMD3 complement C4-B|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 3|Chido form of C4|basic complement C4|complement C4B1a|complement component 4B (Chido blood group) 19 0.002601 1 0 +722 C4BPA complement component 4 binding protein alpha 1 protein-coding C4BP|PRP C4b-binding protein alpha chain|proline-rich protein 53 0.007254 3.283 1 1 +725 C4BPB complement component 4 binding protein beta 1 protein-coding C4BP C4b-binding protein beta chain 19 0.002601 2.799 1 1 +726 CAPN5 calpain 5 11 protein-coding ADNIV|HTRA3|VRNI|nCL-3 calpain-5|calpain htra-3|new calpain 3|testis tissue sperm-binding protein Li 91mP 51 0.006981 9.336 1 1 +727 C5 complement C5 9 protein-coding C5D|C5a|C5b|CPAMD4|ECLZB complement C5|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 4|C5a anaphylatoxin|anaphylatoxin C5a analog|complement component 5|prepro-C5 75 0.01027 7.041 1 1 +728 C5AR1 complement C5a receptor 1 19 protein-coding C5A|C5AR|C5R1|CD88 C5a anaphylatoxin chemotactic receptor 1|C5a anaphylatoxin receptor|C5a ligand|C5a-R|complement component 5 receptor 1|complement component 5a receptor 1 27 0.003696 7.563 1 1 +729 C6 complement C6 5 protein-coding - complement component C6|complement component 6 167 0.02286 3.163 1 1 +730 C7 complement C7 5 protein-coding - complement component C7|complement component 7 122 0.0167 7.243 1 1 +731 C8A complement C8 alpha chain 1 protein-coding - complement component C8 alpha chain|complement component 8 alpha subunit|complement component 8 subunit alpha|complement component 8, alpha polypeptide 73 0.009992 1.028 1 1 +732 C8B complement C8 beta chain 1 protein-coding C82 complement component C8 beta chain|complement component 8 subunit beta|complement component 8, beta polypeptide 87 0.01191 1.248 1 1 +733 C8G complement C8 gamma chain 9 protein-coding C8C complement component C8 gamma chain|complement component 8, gamma polypeptide 10 0.001369 2.788 1 1 +734 OSGIN2 oxidative stress induced growth inhibitor family member 2 8 protein-coding C8orf1|hT41 oxidative stress-induced growth inhibitor 2 33 0.004517 9.357 1 1 +735 C9 complement C9 5 protein-coding ARMD15|C9D complement component C9|complement component 9 82 0.01122 1.219 1 1 +738 VPS51 VPS51, GARP complex subunit 11 protein-coding ANG2|ANG3|C11orf2|C11orf3|FFR vacuolar protein sorting-associated protein 51 homolog|another new gene 2 protein|protein fat-free homolog|vacuolar protein sorting 51 homolog 19 0.002601 11.05 1 1 +740 MRPL49 mitochondrial ribosomal protein L49 11 protein-coding C11orf4|L49mt|MRP-L49|NOF|NOF1 39S ribosomal protein L49, mitochondrial|neighbor of FAU|next to FAU 11 0.001506 10.51 1 1 +741 ZNHIT2 zinc finger HIT-type containing 2 11 protein-coding C11orf5|FON zinc finger HIT domain-containing protein 2|zinc finger, HIT domain containing 2|zinc finger, HIT type 2 13 0.001779 7.12 1 1 +744 MPPED2 metallophosphoesterase domain containing 2 11 protein-coding 239FB|C11orf8 metallophosphoesterase MPPED2|fetal brain protein 239|metallophosphoesterase domain-containing protein 2 44 0.006022 5.455 1 1 +745 MYRF myelin regulatory factor 11 protein-coding C11orf9|MRF|Ndt80|pqn-47 myelin regulatory factor|myelin gene regulatory factor 82 0.01122 7.479 1 1 +746 TMEM258 transmembrane protein 258 11 protein-coding C11orf10 transmembrane protein 258|UPF0197 transmembrane protein C11orf10 8 0.001095 10.39 1 1 +747 DAGLA diacylglycerol lipase alpha 11 protein-coding C11orf11|DAGL(ALPHA)|DAGLALPHA|NSDDR sn1-specific diacylglycerol lipase alpha|DGL-alpha|neural stem cell-derived dendrite regulator 78 0.01068 7.547 1 1 +750 GAS8-AS1 GAS8 antisense RNA 1 16 ncRNA C16orf3 uncharacterized protein C16orf3 24 0.003285 1.709 1 1 +752 FMNL1 formin like 1 17 protein-coding C17orf1|C17orf1B|FHOD4|FMNL|KW-13 formin-like protein 1|CLL-associated antigen KW-13|leukocyte formin 64 0.00876 8.876 1 1 +753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 18 protein-coding C18orf1 low-density lipoprotein receptor class A domain-containing protein 4|clone 22 42 0.005749 8.829 1 1 +754 PTTG1IP pituitary tumor-transforming 1 interacting protein 21 protein-coding C21orf1|C21orf3|PBF pituitary tumor-transforming gene 1 protein-interacting protein|PTTG-binding factor|pituitary tumor-transforming gene protein-binding factor 19 0.002601 12.74 1 1 +755 C21orf2 chromosome 21 open reading frame 2 21 protein-coding LRRC76|YF5/A2 protein C21orf2|nuclear encoded mitochondrial protein C21orf2|leucine rich repeat containing 76|leucine-rich repeat-containing protein 76 17 0.002327 8.842 1 1 +757 TMEM50B transmembrane protein 50B 21 protein-coding C21orf4|HCVP7TP3 transmembrane protein 50B|HCV p7-trans-regulated protein 3|HCV p7-transregulated protein 3 11 0.001506 9.877 1 1 +758 MPPED1 metallophosphoesterase domain containing 1 22 protein-coding 239AB|C22orf1|FAM1A metallophosphoesterase domain-containing protein 1|adult brain protein 239 37 0.005064 1.851 1 1 +759 CA1 carbonic anhydrase 1 8 protein-coding CA-I|CAB|Car1|HEL-S-11 carbonic anhydrase 1|carbonate dehydratase I|carbonic anhydrase B|carbonic anhydrase I|epididymis secretory protein Li 11 24 0.003285 0.6994 1 1 +760 CA2 carbonic anhydrase 2 8 protein-coding CA-II|CAC|CAII|Car2|HEL-76|HEL-S-282 carbonic anhydrase 2|carbonate dehydratase II|carbonic anhydrase B|carbonic anhydrase C|carbonic anhydrase II|carbonic dehydratase|epididymis luminal protein 76|epididymis secretory protein Li 282 27 0.003696 8.664 1 1 +761 CA3 carbonic anhydrase 3 8 protein-coding CAIII|Car3 carbonic anhydrase 3|CA-III|HEL-S-167mP|carbonate dehydratase III|carbonic anhydrase III|carbonic anhydrase III, muscle specific|epididymis secretory sperm binding protein Li 167mP 33 0.004517 4.086 1 1 +762 CA4 carbonic anhydrase 4 17 protein-coding CAIV|Car4|RP17 carbonic anhydrase 4|CA-IV|carbonate dehydratase IV|carbonic anhydrase IV|carbonic dehydratase IV 29 0.003969 3.428 1 1 +763 CA5A carbonic anhydrase 5A 16 protein-coding CA5|CA5AD|CAV|CAVA|GS1-21A4.1 carbonic anhydrase 5A, mitochondrial|CA-VA|carbonate dehydratase VA|carbonic anhydrase V, mitochondrial|carbonic anhydrase VA, mitochondrial|carbonic dehydratase 19 0.002601 0.7703 1 1 +765 CA6 carbonic anhydrase 6 1 protein-coding CA-VI|GUSTIN carbonic anhydrase 6|carbonate dehydratase VI|carbonic anhydrase VI nirs variant 2|salivary carbonic anhydrase|secreted carbonic anhydrase 31 0.004243 0.5886 1 1 +766 CA7 carbonic anhydrase 7 16 protein-coding CAVII carbonic anhydrase 7|CA-VII|carbonate dehydratase VII|carbonic anhydrase VII|carbonic dehydratase VII 14 0.001916 1.24 1 1 +767 CA8 carbonic anhydrase 8 8 protein-coding CA-RP|CA-VIII|CALS|CAMRQ3|CARP carbonic anhydrase-related protein|CA-related protein|carbonate dehydratase|carbonic anhydrase VIII|carbonic anhydrase-like sequence 33 0.004517 4.881 1 1 +768 CA9 carbonic anhydrase 9 9 protein-coding CAIX|MN carbonic anhydrase 9|CA-IX|P54/58N|RCC-associated antigen G250|RCC-associated protein G250|carbonate dehydratase IX|carbonic anhydrase IX|carbonic dehydratase|membrane antigen MN|pMW1|renal cell carcinoma-associated antigen G250 49 0.006707 5.351 1 1 +770 CA11 carbonic anhydrase 11 19 protein-coding CARPX1 carbonic anhydrase-related protein 11|CA-RP II|CA-XI|CARP XI|CARP-2|carbonic anhydrase XI|carbonic anhydrase-related protein 2|carbonic anhydrase-related protein XI 24 0.003285 7.545 1 1 +771 CA12 carbonic anhydrase 12 15 protein-coding CA-XII|CAXII|HsT18816|T18816 carbonic anhydrase 12|carbonate dehydratase XII|carbonic anhydrase XII|carbonic dehydratase|tumor antigen HOM-RCC-3.1.3 16 0.00219 9.555 1 1 +773 CACNA1A calcium voltage-gated channel subunit alpha1 A 19 protein-coding APCA|BI|CACNL1A4|CAV2.1|EA2|EIEE42|FHM|HPCA|MHP|MHP1|SCA6 voltage-dependent P/Q-type calcium channel subunit alpha-1A|brain calcium channel 1|brain calcium channel I|calcium channel, L type, alpha-1 polypeptide|calcium channel, voltage-dependent, P/Q type, alpha 1A subunit|fetal brain Ca2+ voltage-gated channel alpha1A pore-forming subunit|voltage-gated calcium channel subunit alpha Cav2.1 195 0.02669 4.596 1 1 +774 CACNA1B calcium voltage-gated channel subunit alpha1 B 9 protein-coding BIII|CACNL1A5|CACNN|Cav2.2|DYT23 voltage-dependent N-type calcium channel subunit alpha-1B|Cav2.2 voltage-gated Ca2+ channel|brain calcium channel III|calcium channel alpha12.2 subunit|calcium channel, L type, alpha-1 polypeptide|calcium channel, voltage-dependent, L type, alpha 1B subunit|calcium channel, voltage-dependent, N type, alpha 1B subunit|voltage-gated calcium channel alpha subunit Cav2.2|voltage-gated calcium channel subunit alpha Cav2.2 233 0.03189 3.337 1 1 +775 CACNA1C calcium voltage-gated channel subunit alpha1 C 12 protein-coding CACH2|CACN2|CACNL1A1|CCHL1A1|CaV1.2|LQT8|TS voltage-dependent L-type calcium channel subunit alpha-1C|DHPR, alpha-1 subunit|calcium channel, L type, alpha-1 polypeptide, isoform 1, cardiac muscle|calcium channel, cardic dihydropyridine-sensitive, alpha-1 subunit|calcium channel, voltage-dependent, L type, alpha 1C subunit|voltage-dependent L-type Ca2+ channel alpha 1 subunit|voltage-gated L-type calcium channel Cav1.2 alpha 1 subunit, splice variant 10* 231 0.03162 7.338 1 1 +776 CACNA1D calcium voltage-gated channel subunit alpha1 D 3 protein-coding CACH3|CACN4|CACNL1A2|CCHL1A2|Cav1.3|PASNA|SANDD voltage-dependent L-type calcium channel subunit alpha-1D|calcium channel, L type, alpha-1 polypeptide|calcium channel, neuroendocrine/brain-type, alpha 1 subunit|calcium channel, voltage-dependent, L type, alpha 1D subunit|voltage-gated calcium channel alpha 1 subunit|voltage-gated calcium channel alpha subunit Cav1.3 171 0.02341 6.486 1 1 +777 CACNA1E calcium voltage-gated channel subunit alpha1 E 1 protein-coding BII|CACH6|CACNL1A6|Cav2.3|gm139 voltage-dependent R-type calcium channel subunit alpha-1E|brain calcium channel II|calcium channel, L type, alpha-1 polypeptide|calcium channel, R type, alpha-1 polypeptide|voltage-dependent calcium channel alpha 1E subunit|voltage-gated calcium channel alpha subunit Cav2.3 325 0.04448 3.097 1 1 +778 CACNA1F calcium voltage-gated channel subunit alpha1 F X protein-coding AIED|COD3|COD4|CORDX|CORDX3|CSNB2|CSNB2A|CSNBX2|Cav1.4|Cav1.4alpha1|JM8|JMC8|OA2 voltage-dependent L-type calcium channel subunit alpha-1F|calcium channel, voltage-dependent, L type, alpha 1F subunit|voltage-gated calcium channel subunit alpha Cav1.4 147 0.02012 2.554 1 1 +779 CACNA1S calcium voltage-gated channel subunit alpha1 S 1 protein-coding CACNL1A3|CCHL1A3|Cav1.1|HOKPP|HOKPP1|MHS5|TTPP1|hypoPP voltage-dependent L-type calcium channel subunit alpha-1S|calcium channel, L type, alpha 1 polypeptide, isoform 3 (skeletal muscle, hypokalemic periodic paralysis)|calcium channel, voltage-dependent, L type, alpha 1S subunit|dihydropyridine receptor|dihydropyridine receptor alpha 1 subunit|dihydropyridine-sensitive L-type calcium channel alpha-1 subunit|voltage-gated calcium channel subunit alpha Cav1.1 142 0.01944 0.8657 1 1 +780 DDR1 discoidin domain receptor tyrosine kinase 1 6 protein-coding CAK|CD167|DDR|EDDR1|HGK2|MCK10|NEP|NTRK4|PTK3|PTK3A|RTK6|TRKE epithelial discoidin domain-containing receptor 1|CD167 antigen-like family member A|PTK3A protein tyrosine kinase 3A|cell adhesion kinase|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 62 0.008486 12.46 1 1 +781 CACNA2D1 calcium voltage-gated channel auxiliary subunit alpha2delta 1 7 protein-coding CACNA2|CACNL2A|CCHL2A|LINC01112|lncRNA-N3 voltage-dependent calcium channel subunit alpha-2/delta-1|calcium channel, L type, alpha 2 polypeptide|calcium channel, voltage-dependent, alpha 2/delta subunit 1|dihydropyridine-sensitive L-type, calcium channel alpha-2/delta subunit|voltage-gated calcium channel subunit alpha-2/delta-1 180 0.02464 4.986 1 1 +782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 17 protein-coding CAB1|CACNLB1|CCHLB1 voltage-dependent L-type calcium channel subunit beta-1|calcium channel voltage-dependent subunit beta 1|calcium channel, L type, beta 1 polypeptide|calcium channel, voltage-dependent, beta 1 subunit|dihydropyridine-sensitive L-type, calcium channel beta-1 subunit 45 0.006159 7.281 1 1 +783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 10 protein-coding CACNLB2|CAVB2|MYSB voltage-dependent L-type calcium channel subunit beta-2|CAB2|calcium channel voltage-dependent subunit beta 2|calcium channel, voltage-dependent, beta 2 subunit|lambert-Eaton myasthenic syndrome antigen B|myasthenic (Lambert-Eaton) syndrome antigen B 77 0.01054 5.327 1 1 +784 CACNB3 calcium voltage-gated channel auxiliary subunit beta 3 12 protein-coding CAB3|CACNLB3 voltage-dependent L-type calcium channel subunit beta-3|calcium channel, voltage-dependent, beta 3 subunit 25 0.003422 8.796 1 1 +785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 2 protein-coding CAB4|CACNLB4|EA5|EIG9|EJM|EJM4|EJM6 voltage-dependent L-type calcium channel subunit beta-4|calcium channel voltage-dependent subunit beta 4|dihydropyridine-sensitive L-type, calcium channel beta-4 subunit 42 0.005749 5.056 1 1 +786 CACNG1 calcium voltage-gated channel auxiliary subunit gamma 1 17 protein-coding CACNLG voltage-dependent calcium channel gamma-1 subunit|L-type calcium channel gamma polypeptide|calcium channel, voltage-dependent, gamma subunit 1|dihydropyridine-sensitive L-type, skeletal muscle calcium channel subunit gamma|neuronal dihydropyridine-sensitive calcium channel gamma subunit 18 0.002464 1.701 1 1 +788 SLC25A20 solute carrier family 25 member 20 3 protein-coding CAC|CACT mitochondrial carnitine/acylcarnitine carrier protein|solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 20 0.002737 8.29 1 1 +790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase 2 protein-coding CDG1Z CAD protein|CAD trifunctional protein|multifunctional protein CAD 146 0.01998 10.36 1 1 +793 CALB1 calbindin 1 8 protein-coding CALB|D-28K calbindin|RTVL-H protein|calbindin 1, (28kD)|calbindin 1, 28kDa|calbindin 27|calbindin D28|vitamin D-dependent calcium-binding protein, avian-type 28 0.003832 2.514 1 1 +794 CALB2 calbindin 2 16 protein-coding CAB29|CAL2|CR calretinin|29 kDa calbindin|calbindin 2, (29kD, calretinin)|calbindin D29K|testicular secretory protein Li 8 29 0.003969 4.461 1 1 +795 S100G S100 calcium binding protein G X protein-coding CABP|CABP1|CABP9K|CALB3 protein S100-G|calbindin 3, (vitamin D-dependent calcium-binding protein)|calbindin D9K|calbindin-D9k|vitamin D-dependent calcium-binding protein, intestinal 3 0.0004106 0.1807 1 1 +796 CALCA calcitonin related polypeptide alpha 11 protein-coding CALC1|CGRP|CGRP-I|CGRP1|CT|KC|PCT calcitonin|calcitonin gene-related peptide 1|alpha-type CGRP|calcitonin 1|calcitonin gene-related peptide I|calcitonin/calcitonin-related polypeptide, alpha|katacalcin 22 0.003011 1.45 1 1 +797 CALCB calcitonin related polypeptide beta 11 protein-coding CALC2|CGRP-II|CGRP2 calcitonin gene-related peptide 2|beta-CGRP|beta-type CGRP|calcitonin 2|calcitonin gene-related peptide II 18 0.002464 1.223 1 1 +799 CALCR calcitonin receptor 7 protein-coding CRT|CT-R|CTR|CTR1 calcitonin receptor 80 0.01095 1.89 1 1 +800 CALD1 caldesmon 1 7 protein-coding CDM|H-CAD|HCAD|L-CAD|LCAD|NAG22 caldesmon|testis secretory sperm-binding protein Li 227n 79 0.01081 12.11 1 1 +801 CALM1 calmodulin 1 14 protein-coding CALML2|CAMI|CPVT4|DD132|LQT14|PHKD|caM calmodulin|calmodulin 1 (phosphorylase kinase, delta)|phosphorylase kinase subunit delta|phosphorylase kinase, delta subunit|prepro-calmodulin 1 11 0.001506 12.96 1 1 +805 CALM2 calmodulin 2 2 protein-coding CAMII|LQT15|PHKD|PHKD2|caM calmodulin|LP7057 protein|calmodulin 2 (phosphorylase kinase, delta)|phosphorylase kinase delta|phosphorylase kinase subunit delta|prepro-calmodulin 2 14 0.001916 13.24 1 1 +808 CALM3 calmodulin 3 19 protein-coding CaM|CaMIII|HEL-S-72|PHKD|PHKD3 calmodulin|epididymis secretory protein Li 72|phosphorylase kinase subunit delta|prepro-calmodulin 3 7 0.0009581 12.59 1 1 +810 CALML3 calmodulin like 3 10 protein-coding CLP calmodulin-like protein 3|caM-like protein|calmodulin-related protein NB-1 9 0.001232 4.178 1 1 +811 CALR calreticulin 19 protein-coding CRT|HEL-S-99n|RO|SSA|cC1qR calreticulin|CRP55|ERp60|HACBP|Sicca syndrome antigen A (autoantigen Ro; calreticulin)|calregulin|endoplasmic reticulum resident protein 60|epididymis secretory sperm binding protein Li 99n|grp60 25 0.003422 14.37 1 1 +813 CALU calumenin 7 protein-coding - calumenin|IEF SSP 9302|crocalbin-like protein|multiple EF-hand protein 22 0.003011 11.88 1 1 +814 CAMK4 calcium/calmodulin dependent protein kinase IV 5 protein-coding CaMK IV|CaMK-GR|caMK calcium/calmodulin-dependent protein kinase type IV|CAM kinase IV|CAM kinase- GR|brain Ca(2+)-calmodulin-dependent protein kinase type IV|brain Ca++-calmodulin-dependent protein kinase type IV|calcium/calmodulin-dependent protein kinase type IV catalytic chain 45 0.006159 3.997 1 1 +815 CAMK2A calcium/calmodulin dependent protein kinase II alpha 5 protein-coding CAMKA calcium/calmodulin-dependent protein kinase type II subunit alpha|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 35 0.004791 3.504 1 1 +816 CAMK2B calcium/calmodulin dependent protein kinase II beta 7 protein-coding CAM2|CAMK2|CAMKB calcium/calmodulin-dependent protein kinase type II subunit beta|CaM kinase II beta subunit|CaM-kinase II beta chain|caMK-II subunit beta|proline rich calmodulin-dependent protein kinase 55 0.007528 5.527 1 1 +817 CAMK2D calcium/calmodulin dependent protein kinase II delta 4 protein-coding CAMKD calcium/calmodulin-dependent protein kinase type II subunit delta|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 37 0.005064 9.882 1 1 +818 CAMK2G calcium/calmodulin dependent protein kinase II gamma 10 protein-coding CAMK|CAMK-II|CAMKG calcium/calmodulin-dependent protein kinase type II subunit gamma|caMK-II subunit gamma|calcium/calmodulin-dependent protein kinase (CaM kinase) II gamma 34 0.004654 9.696 1 1 +819 CAMLG calcium modulating ligand 5 protein-coding CAML|GET2 calcium signal-modulating cyclophilin ligand|calcium-modulating cyclophilin ligand|cyclophilin B-binding protein 19 0.002601 9.704 1 1 +820 CAMP cathelicidin antimicrobial peptide 3 protein-coding CAP-18|CAP18|CRAMP|FALL-39|FALL39|HSD26|LL37 cathelicidin antimicrobial peptide|18 kDa cationic antimicrobial protein 11 0.001506 1.756 1 1 +821 CANX calnexin 5 protein-coding CNX|IP90|P90 calnexin|major histocompatibility complex class I antigen-binding protein p88 38 0.005201 13.94 1 1 +822 CAPG capping actin protein, gelsolin like 2 protein-coding AFCP|HEL-S-66|MCP macrophage-capping protein|actin-regulatory protein CAP-G|capping protein (actin filament), gelsolin-like|epididymis secretory protein Li 66|gelsolin-like capping protein 27 0.003696 11.11 1 1 +823 CAPN1 calpain 1 11 protein-coding CANP|CANP1|CANPL1|SPG76|muCANP|muCL calpain-1 catalytic subunit|CANP 1|calcium-activated neutral proteinase 1|calpain 1, (mu/I) large subunit|calpain mu-type|calpain, large polypeptide L1|calpain-1 large subunit|cell proliferation-inducing gene 30 protein|cell proliferation-inducing protein 30|micromolar-calpain 38 0.005201 12.22 1 1 +824 CAPN2 calpain 2 1 protein-coding CANP2|CANPL2|CANPml|mCANP calpain-2 catalytic subunit|CANP 2|M-calpain|calcium-activated neutral proteinase 2|calpain 2, (m/II) large subunit|calpain 2, large [catalytic] subunit|calpain 2, large subunit|calpain M-type|calpain, large polypeptide L2|millimolar-calpain 47 0.006433 12.16 1 1 +825 CAPN3 calpain 3 15 protein-coding CANP3|CANPL3|LGMD2|LGMD2A|nCL-1|p94 calpain-3|calpain 3, (p94)|calpain p94, large [catalytic] subunit|calpain, large polypeptide L3|muscle-specific calcium-activated neutral protease 3 large subunit|new calpain 1 67 0.009171 6.861 1 1 +826 CAPNS1 calpain small subunit 1 19 protein-coding CALPAIN4|CANP|CANPS|CAPN4|CDPS|CSS1 calpain small subunit 1|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 polypeptide 20 0.002737 12.87 1 1 +827 CAPN6 calpain 6 X protein-coding CANPX|CAPNX|CalpM|DJ914P14.1 calpain-6|calpain-like protease X-linked|calpamodulin 81 0.01109 4.51 1 1 +828 CAPS calcyphosine 19 protein-coding CAPS1 calcyphosin|calcyphosine 1|thyroid protein p24 15 0.002053 8.427 1 1 +829 CAPZA1 capping actin protein of muscle Z-line alpha subunit 1 1 protein-coding CAPPA1|CAPZ|CAZ1 F-actin-capping protein subunit alpha-1|Cap Z|capZ alpha-1|capping protein (actin filament) muscle Z-line, alpha 1 27 0.003696 11.46 1 1 +830 CAPZA2 capping actin protein of muscle Z-line alpha subunit 2 7 protein-coding CAPPA2|CAPZ F-actin-capping protein subunit alpha-2|F-actin capping protein alpha-2 subunit|capZ alpha-2|capping protein (actin filament) muscle Z-line, alpha 2 15 0.002053 11.15 1 1 +831 CAST calpastatin 5 protein-coding BS-17|PLACK calpastatin|calpain inhibitor|sperm BS-17 component 45 0.006159 11.91 1 1 +832 CAPZB capping actin protein of muscle Z-line beta subunit 1 protein-coding CAPB|CAPPB|CAPZ F-actin-capping protein subunit beta|capZ beta|capping protein (actin filament) muscle Z-line, beta 20 0.002737 12.22 1 1 +833 CARS cysteinyl-tRNA synthetase 11 protein-coding CARS1|CYSRS|MGC:11246 cysteine--tRNA ligase, cytoplasmic|cysteine tRNA ligase 1, cytoplasmic|cysteine translase 50 0.006844 10.05 1 1 +834 CASP1 caspase 1 11 protein-coding ICE|IL1BC|P45 caspase-1|CASP1 nirs variant 1|IL-1 beta-converting enzyme|IL1B-convertase|caspase 1, apoptosis-related cysteine peptidase (interleukin 1, beta, convertase)|interleukin 1, beta, convertase|interleukin 1-B converting enzyme 39 0.005338 8.104 1 1 +835 CASP2 caspase 2 7 protein-coding CASP-2|ICH1|NEDD-2|NEDD2|PPP1R57 caspase-2|caspase 2 apoptosis-related cysteine peptidase|neural precursor cell expressed developmentally down-regulated protein 2|protease ICH-1|protein phosphatase 1, regulatory subunit 57 34 0.004654 9.846 1 1 +836 CASP3 caspase 3 4 protein-coding CPP32|CPP32B|SCA-1 caspase-3|CASP-3|CPP-32|PARP cleavage protease|SREBP cleavage activity 1|apopain|caspase 3, apoptosis-related cysteine peptidase|caspase 3, apoptosis-related cysteine protease|cysteine protease CPP32|procaspase3|protein Yama 22 0.003011 9.508 1 1 +837 CASP4 caspase 4 11 protein-coding ICE(rel)II|ICEREL-II|ICH-2|Mih1|Mih1/TX|TX caspase-4|CASP-4|ICE and Ced-3 homolog 2|ICE(rel)-II|apoptotic cysteine protease Mih1/TX|caspase 4, apoptosis-related cysteine peptidase|caspase 4, apoptosis-related cysteine protease|protease ICH-2|protease TX 36 0.004927 9.303 1 1 +838 CASP5 caspase 5 11 protein-coding ICE(rel)III|ICEREL-III|ICH-3 caspase-5|CASP-5|ICE(rel)-III|TY protease|caspase 5, apoptosis-related cysteine peptidase|caspase 5, apoptosis-related cysteine protease|protease ICH-3|protease TY 68 0.009307 1.806 1 1 +839 CASP6 caspase 6 4 protein-coding MCH2 caspase-6|apoptotic protease MCH-2|caspase 6, apoptosis-related cysteine peptidase|caspase 6, apoptosis-related cysteine protease 23 0.003148 8.239 1 1 +840 CASP7 caspase 7 10 protein-coding CASP-7|CMH-1|ICE-LAP3|LICE2|MCH3 caspase-7|ICE-like apoptotic protease 3|apoptotic protease MCH-3|caspase 7, apoptosis-related cysteine peptidase|caspase 7, apoptosis-related cysteine protease 26 0.003559 9.241 1 1 +841 CASP8 caspase 8 2 protein-coding ALPS2B|CAP4|Casp-8|FLICE|MACH|MCH5 caspase-8|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 peptidase|caspase 8, apoptosis-related cysteine protease 138 0.01889 8.836 1 1 +842 CASP9 caspase 9 1 protein-coding APAF-3|APAF3|ICE-LAP6|MCH6|PPP1R56 caspase-9|ICE-like apoptotic protease 6|apoptotic protease MCH-6|apoptotic protease activating factor 3|caspase 9, apoptosis-related cysteine peptidase|protein phosphatase 1, regulatory subunit 56 34 0.004654 8.476 1 1 +843 CASP10 caspase 10 2 protein-coding ALPS2|FLICE2|MCH4 caspase-10|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 peptidase|caspase 10, apoptosis-related cysteine protease|interleukin-1B-converting enzyme 2 35 0.004791 8.192 1 1 +844 CASQ1 calsequestrin 1 1 protein-coding CASQ|PDIB1|VMCQA calsequestrin-1|calmitin|calmitine|calsequestrin 1 (fast-twitch, skeletal muscle)|calsequestrin, skeletal muscle isoform 32 0.00438 3.147 1 1 +845 CASQ2 calsequestrin 2 1 protein-coding PDIB2 calsequestrin-2|calsequestrin 2 (cardiac muscle)|calsequestrin 2, fast-twitch, cardiac muscle|calsequestrin, cardiac muscle isoform 36 0.004927 4.168 1 1 +846 CASR calcium sensing receptor 3 protein-coding CAR|EIG8|FHH|FIH|GPRC2A|HHC|HHC1|HYPOC1|NSHPT|PCAR1 extracellular calcium-sensing receptor|parathyroid Ca(2+)-sensing receptor 1|parathyroid cell calcium-sensing receptor 1 118 0.01615 1.314 1 1 +847 CAT catalase 11 protein-coding - catalase 39 0.005338 10.69 1 1 +857 CAV1 caveolin 1 7 protein-coding BSCL3|CGL3|LCCNS|MSTP085|PPH3|VIP21 caveolin-1|caveolin 1, caveolae protein, 22kDa|cell growth-inhibiting protein 32 15 0.002053 10.62 1 1 +858 CAV2 caveolin 2 7 protein-coding CAV caveolin-2|caveolae protein, 20-kD|caveolin 2 isoform a and b 15 0.002053 9.704 1 1 +859 CAV3 caveolin 3 3 protein-coding LGMD1C|LQT9|VIP-21|VIP21 caveolin-3|M-caveolin 14 0.001916 0.6134 1 1 +860 RUNX2 runt related transcription factor 2 6 protein-coding AML3|CBF-alpha-1|CBFA1|CCD|CCD1|CLCD|OSF-2|OSF2|PEA2aA|PEBP2aA runt-related transcription factor 2|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 56 0.007665 7.401 1 1 +861 RUNX1 runt related transcription factor 1 21 protein-coding AML1|AML1-EVI-1|AMLCR1|CBF2alpha|CBFA2|EVI-1|PEBP2aB|PEBP2alpha runt-related transcription factor 1|AML1-EVI-1 fusion protein|CBF-alpha-2|PEA2-alpha B|PEBP2-alpha B|RUNX1/ZNF687 fusion|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|transcription factor 65 0.008897 10.25 1 1 +862 RUNX1T1 RUNX1 translocation partner 1 8 protein-coding AML1-MTG8|AML1T1|CBFA2T1|CDR|ETO|MTG8|ZMYND2 protein CBFA2T1|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|runt related transcription factor 1; translocated to, 1 (cyclin D related)|zinc finger MYND domain-containing protein 2 139 0.01903 4.28 1 1 +863 CBFA2T3 CBFA2/RUNX1 translocation partner 3 16 protein-coding ETO2|MTG16|MTGR2|RUNX1T3|ZMYND4 protein CBFA2T3|MTG8-related gene 2|MTG8-related protein 2|core-binding factor, runt domain, alpha subunit 2; translocated to, 3|myeloid translocation gene 8 and 16b|myeloid translocation gene on chromosome 16 protein|zinc finger MYND domain-containing protein 4 54 0.007391 6.537 1 1 +864 RUNX3 runt related transcription factor 3 1 protein-coding AML2|CBFA3|PEBP2aC runt-related transcription factor 3|CBF-alpha-3|PEA2 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 30 0.004106 7.78 1 1 +865 CBFB core-binding factor beta subunit 16 protein-coding PEBP2B core-binding factor subunit beta|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|polyomavirus enhancer binding protein 2, beta subunit 35 0.004791 10.05 1 1 +866 SERPINA6 serpin family A member 6 14 protein-coding CBG corticosteroid-binding globulin|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6|serpin A6|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6|transcortin 47 0.006433 2.547 1 1 +867 CBL Cbl proto-oncogene 11 protein-coding C-CBL|CBL2|FRA11B|NSLL|RNF55 E3 ubiquitin-protein ligase CBL|Cas-Br-M (murine) ecotropic retroviral transforming sequence|Cbl proto-oncogene, E3 ubiquitin protein ligase|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 58 0.007939 9.588 1 1 +868 CBLB Cbl proto-oncogene B 3 protein-coding Cbl-b|Nbla00127|RNF56 E3 ubiquitin-protein ligase CBL-B|Cas-Br-M (murine) ecotropic retroviral transforming sequence b|Cbl proto-oncogene B, E3 ubiquitin protein ligase|Cbl proto-oncogene, E3 ubiquitin protein ligase B|RING finger protein 56|SH3-binding protein CBL-B|casitas B-lineage lymphoma proto-oncogene b|signal transduction protein CBL-B 75 0.01027 8.751 1 1 +869 CBLN1 cerebellin 1 precursor 16 protein-coding - cerebellin-1|precerebellin 19 0.002601 3.434 1 1 +871 SERPINH1 serpin family H member 1 11 protein-coding AsTP3|CBP1|CBP2|HSP47|OI10|PIG14|PPROM|RA-A47|SERPINH2|gp46 serpin H1|47 kDa heat shock protein|arsenic-transactivated protein 3|cell proliferation-inducing gene 14 protein|collagen binding protein 1|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 peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) 26 0.003559 11.97 1 1 +873 CBR1 carbonyl reductase 1 21 protein-coding CBR|SDR21C1|hCBR1 carbonyl reductase [NADPH] 1|15-hydroxyprostaglandin dehydrogenase|NADPH-dependent carbonyl reductase 1|carbonyl reductase (NADPH) 1|prostaglandin 9-ketoreductase|prostaglandin-E(2) 9-reductase|short chain dehydrogenase/reductase family 21C member 1 14 0.001916 10.52 1 1 +874 CBR3 carbonyl reductase 3 21 protein-coding HEL-S-25|SDR21C2|hCBR3 carbonyl reductase [NADPH] 3|NADPH-dependent carbonyl reductase 3|carbonyl reductase (NADPH) 3|epididymis secretory protein Li 25|short chain dehydrogenase/reductase family 21C member 2 14 0.001916 7.258 1 1 +875 CBS cystathionine-beta-synthase 21 protein-coding HIP4 cystathionine beta-synthase|beta-thionase|methylcysteine synthase|serine sulfhydrase 25 0.003422 8.737 1 1 +881 CCIN calicin 9 protein-coding BTBD20|KBTBD14 calicin|testis tissue sperm-binding protein Li 65n 52 0.007117 2.195 1 1 +883 KYAT1 kynurenine aminotransferase 1 9 protein-coding CCBL1|GTK|KAT1|KATI kynurenine--oxoglutarate transaminase 1|beta-lysase, kidney|cysteine conjugate beta lyase 1|cysteine conjugate-beta lyase, cytoplasmic|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 I 28 0.003832 7.153 1 1 +885 CCK cholecystokinin 3 protein-coding - cholecystokinin|cholecystokinin triacontatriapeptide|prepro-cholecystokinin 11 0.001506 1.929 1 1 +886 CCKAR cholecystokinin A receptor 4 protein-coding CCK-A|CCK1-R|CCK1R|CCKRA cholecystokinin receptor type A|CCK-A receptor|CCK-AR|cholecystokinin type-A receptor|cholecystokinin-1 receptor 54 0.007391 0.6175 1 1 +887 CCKBR cholecystokinin B receptor 11 protein-coding CCK-B|CCK2R|GASR gastrin/cholecystokinin type B receptor|CCK-B receptor|CCK-BR|CCK2 receptor|CCK2-R|cholecystokinin-2 receptor|gastrin receptor 76 0.0104 1.803 1 1 +889 KRIT1 KRIT1, ankyrin repeat containing 7 protein-coding CAM|CCM1 krev interaction trapped protein 1|ankyrin repeat-containing protein Krit1|cerebral cavernous malformations 1 protein|krev interaction trapped 1 51 0.006981 9.369 1 1 +890 CCNA2 cyclin A2 4 protein-coding CCN1|CCNA cyclin-A2|cyclin-A 29 0.003969 8.261 1 1 +891 CCNB1 cyclin B1 5 protein-coding CCNB G2/mitotic-specific cyclin-B1 24 0.003285 9.358 1 1 +892 CCNC cyclin C 6 protein-coding CycC cyclin-C|SRB11 homolog|hSRB11 18 0.002464 9.977 1 1 +894 CCND2 cyclin D2 12 protein-coding KIAK0002|MPPH3 G1/S-specific cyclin-D2 24 0.003285 10.25 1 1 +896 CCND3 cyclin D3 6 protein-coding - G1/S-specific cyclin-D3|D3-type cyclin 22 0.003011 10.59 1 1 +898 CCNE1 cyclin E1 19 protein-coding CCNE|pCCNE1 G1/S-specific cyclin-E1 30 0.004106 6.896 1 1 +899 CCNF cyclin F 16 protein-coding FBX1|FBXO1 cyclin-F|F-box only protein 1|G2/mitotic-specific cyclin-F 54 0.007391 8.325 1 1 +900 CCNG1 cyclin G1 5 protein-coding CCNG cyclin-G1|cyclin-G 11 0.001506 10.76 1 1 +901 CCNG2 cyclin G2 4 protein-coding - cyclin-G2 16 0.00219 10.02 1 1 +902 CCNH cyclin H 5 protein-coding CAK|CycH|p34|p37 cyclin-H|CAK complex subunit|CDK-activating kinase complex subunit|MO15-associated protein|cyclin-dependent kinase-activating kinase complex subunit 17 0.002327 9.005 1 1 +904 CCNT1 cyclin T1 12 protein-coding CCNT|CYCT1|HIVE1 cyclin-T1|CDK9-associated C-type protein|cyclin C-related protein|human immunodeficiency virus type 1 (HIV-1) expression (elevated) 1 54 0.007391 6.502 1 1 +905 CCNT2 cyclin T2 2 protein-coding CYCT2 cyclin-T2|SDS-stable vimentin-bound DNA fragment HEF42VIM22|cyclin T2a|cyclin T2b|subunit of positive elongation transcription factor b 33 0.004517 9.333 1 1 +908 CCT6A chaperonin containing TCP1 subunit 6A 7 protein-coding CCT-zeta|CCT-zeta-1|CCT6|Cctz|HTR3|MoDP-2|TCP-1-zeta|TCP20|TCPZ|TTCP20 T-complex protein 1 subunit zeta|T-complex protein 1, zeta subunit|acute morphine dependence related protein 2|amino acid transport defect-complementing|chaperonin containing T-complex subunit 6|chaperonin containing TCP1, subunit 6A (zeta 1)|histidine transport regulator 3 37 0.005064 12.04 1 1 +909 CD1A CD1a molecule 1 protein-coding CD1|FCB6|HTA1|R4|T6 T-cell surface glycoprotein CD1a|CD1A antigen, a polypeptide|T-cell surface antigen T6/Leu-6|cluster of differentiation 1 A|cortical thymocyte antigen CD1A|differentiation antigen CD1-alpha-3|epidermal dendritic cell marker CD1a|hTa1 thymocyte antigen 58 0.007939 3.289 1 1 +910 CD1B CD1b molecule 1 protein-coding CD1|CD1A|R1 T-cell surface glycoprotein CD1b|CD1B antigen, b polypeptide|cortical thymocyte antigen CD1B|differentiation antigen CD1-alpha-3 59 0.008076 1.865 1 1 +911 CD1C CD1c molecule 1 protein-coding BDCA1|CD1|CD1A|R7 T-cell surface glycoprotein CD1c|CD1C antigen, c polypeptide|cortical thymocyte antigen CD1C|differentiation antigen CD1-alpha-3 51 0.006981 4.094 1 1 +912 CD1D CD1d molecule 1 protein-coding CD1A|R3|R3G1 antigen-presenting glycoprotein CD1d|CD1D antigen, d polypeptide|HMC class I antigen-like glycoprotein CD1D|T-cell surface glycoprotein CD1d|differentiation antigen CD1-alpha-3|thymocyte antigen CD1D 52 0.007117 5.301 1 1 +913 CD1E CD1e molecule 1 protein-coding CD1A|R2 T-cell surface glycoprotein CD1e, membrane-associated|CD1E antigen, e polypeptide|R2G1|differentiation antigen CD1-alpha-3|hCD1e|leukocyte differentiation antigen|thymocyte antigen CD1E 109 0.01492 3.596 1 1 +914 CD2 CD2 molecule 1 protein-coding LFA-2|SRBC|T11 T-cell surface antigen CD2|CD2 antigen (p50), sheep red blood cell receptor|LFA-3 receptor|T-cell surface antigen T11/Leu-5|erythrocyte receptor|lymphocyte-function antigen-2|rosette receptor 27 0.003696 6.863 1 1 +915 CD3D CD3d molecule 11 protein-coding CD3-DELTA|IMD19|T3D T-cell surface glycoprotein CD3 delta chain|CD3 antigen, delta subunit|CD3 delta|CD3d antigen, delta polypeptide (TiT3 complex)|CD3d molecule, delta (CD3-TCR complex)|OKT3, delta chain|T-cell receptor T3 delta chain 9 0.001232 5.693 1 1 +916 CD3E CD3e molecule 11 protein-coding IMD18|T3E|TCRE T-cell surface glycoprotein CD3 epsilon chain|CD3-epsilon|CD3e antigen, epsilon polypeptide (TiT3 complex)|CD3e molecule, epsilon (CD3-TCR complex)|T-cell antigen receptor complex, epsilon subunit of T3|T-cell surface antigen T3/Leu-4 epsilon chain 14 0.001916 7.118 1 1 +917 CD3G CD3g molecule 11 protein-coding CD3-GAMMA|IMD17|T3G T-cell surface glycoprotein CD3 gamma chain|CD3g antigen, gamma polypeptide (TiT3 complex)|CD3g molecule, epsilon (CD3-TCR complex)|CD3g molecule, gamma (CD3-TCR complex)|T-cell antigen receptor complex, gamma subunit of T3|T-cell receptor T3 gamma chain 11 0.001506 3.881 1 1 +919 CD247 CD247 molecule 1 protein-coding CD3-ZETA|CD3H|CD3Q|CD3Z|IMD25|T3Z|TCRZ T-cell surface glycoprotein CD3 zeta chain|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|TCR zeta chain 14 0.001916 5.794 1 1 +920 CD4 CD4 molecule 12 protein-coding CD4mut T-cell surface glycoprotein CD4|CD4 antigen (p55)|CD4 receptor|T-cell surface antigen T4/Leu-3 53 0.007254 9.836 1 1 +921 CD5 CD5 molecule 11 protein-coding LEU1|T1 T-cell surface glycoprotein CD5|CD5 antigen (p56-62)|lymphocyte antigen T1/Leu-1 33 0.004517 5.863 1 1 +922 CD5L CD5 molecule like 1 protein-coding AIM|API6|CT-2|PRO229|SP-ALPHA|Spalpha|hAIM CD5 antigen-like|CD5 antigen-like (scavenger receptor cysteine rich family)|apoptosis inhibitor 6|apoptosis inhibitor expressed by macrophages|apoptosis inhibitor of macrophage|igM-associated peptide 81 0.01109 1.396 1 1 +923 CD6 CD6 molecule 11 protein-coding TP120 T-cell differentiation antigen CD6|CD6 antigen|T12 47 0.006433 6.472 1 1 +924 CD7 CD7 molecule 17 protein-coding GP40|LEU-9|TP41|Tp40 T-cell antigen CD7|CD7 antigen (p41)|T-cell leukemia antigen|T-cell surface antigen Leu-9|p41 protein 25 0.003422 6.368 1 1 +925 CD8A CD8a molecule 2 protein-coding CD8|Leu2|MAL|p32 T-cell surface glycoprotein CD8 alpha chain|CD8 antigen, alpha polypeptide (p32)|Leu2 T-lymphocyte antigen|OKT8 T-cell antigen|T cell co-receptor|T-cell antigen Leu2|T-lymphocyte differentiation antigen T8/Leu-2|T8 T-cell antigen 22 0.003011 6.861 1 1 +926 CD8B CD8b molecule 2 protein-coding CD8B1|LEU2|LY3|LYT3|P37 T-cell surface glycoprotein CD8 beta chain|CD8 antigen, beta polypeptide 1 (p37)|T lymphocyte surface glycoprotein beta chain 23 0.003148 5.118 1 1 +927 CD8BP CD8b molecule pseudogene 2 pseudo CD8B2 CD8 antigen, beta polypeptide pseudogene 0 0 1 0 +928 CD9 CD9 molecule 12 protein-coding BTCC-1|DRAP-27|MIC3|MRP-1|TSPAN-29|TSPAN29 CD9 antigen|5H9 antigen|BA-2/p24 antigen|CD9 antigen (p24)|antigen CD9|cell growth-inhibiting gene 2 protein|leukocyte antigen MIC3|motility related protein-1|tetraspanin-29 21 0.002874 12.49 1 1 +929 CD14 CD14 molecule 5 protein-coding - monocyte differentiation antigen CD14|myeloid cell-specific leucine-rich glycoprotein 21 0.002874 10.32 1 1 +930 CD19 CD19 molecule 16 protein-coding B4|CVID3 B-lymphocyte antigen CD19|B-lymphocyte surface antigen B4|T-cell surface antigen Leu-12|differentiation antigen CD19 38 0.005201 2.946 1 1 +931 MS4A1 membrane spanning 4-domains A1 11 protein-coding B1|Bp35|CD20|CVID5|LEU-16|MS4A2|S7 B-lymphocyte antigen CD20|B-lymphocyte cell-surface antigen B1|CD20 antigen|CD20 receptor|leukocyte surface antigen Leu-16|membrane-spanning 4-domains, subfamily A, member 1 38 0.005201 4.125 1 1 +932 MS4A3 membrane spanning 4-domains A3 11 protein-coding CD20L|HTM4 membrane-spanning 4-domains subfamily A member 3|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 (hematopoietic cell-specific) 31 0.004243 0.2805 1 1 +933 CD22 CD22 molecule 19 protein-coding SIGLEC-2|SIGLEC2 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 73 0.009992 5.97 1 1 +939 CD27 CD27 molecule 12 protein-coding S152|S152. LPFS2|T14|TNFRSF7|Tp55 CD27 antigen|CD27L receptor|T cell activation antigen S152|T-cell activation antigen CD27|tumor necrosis factor receptor superfamily, member 7 17 0.002327 6.194 1 1 +940 CD28 CD28 molecule 2 protein-coding Tp44 T-cell-specific surface glycoprotein CD28|CD28 antigen 23 0.003148 5.085 1 1 +941 CD80 CD80 molecule 3 protein-coding B7|B7-1|B7.1|BB1|CD28LG|CD28LG1|LAB7 T-lymphocyte activation antigen CD80|B-lymphocyte activation antigen B7|CD80 antigen (CD28 antigen ligand 1, B7-1 antigen)|CTLA-4 counter-receptor B7.1|activation B7-1 antigen|costimulatory factor CD80|costimulatory molecule variant IgV-CD80 30 0.004106 3.799 1 1 +942 CD86 CD86 molecule 3 protein-coding B7-2|B7.2|B70|CD28LG2|LAB72 T-lymphocyte activation antigen CD86|B-lymphocyte activation antigen B7-2|BU63|CD86 antigen (CD28 antigen ligand 2, B7-2 antigen)|CTLA-4 counter-receptor B7.2|FUN-1 49 0.006707 7.369 1 1 +943 TNFRSF8 TNF receptor superfamily member 8 1 protein-coding CD30|D1S166E|Ki-1 tumor necrosis factor receptor superfamily member 8|CD30L receptor|Ki-1 antigen|cytokine receptor CD30|lymphocyte activation antigen CD30 58 0.007939 4.254 1 1 +944 TNFSF8 tumor necrosis factor superfamily member 8 9 protein-coding CD153|CD30L|CD30LG|TNLG3A tumor necrosis factor ligand superfamily member 8|CD153 antigen|CD30 antigen ligand|CD30 ligand|CD30-L|tumor necrosis factor (ligand) superfamily, member 8|tumor necrosis factor ligand 3A 19 0.002601 4.335 1 1 +945 CD33 CD33 molecule 19 protein-coding SIGLEC-3|SIGLEC3|p67 myeloid cell surface antigen CD33|CD33 antigen (gp67)|CD33 molecule transcript|gp67|sialic acid-binding Ig-like lectin 3 56 0.007665 5.531 1 1 +946 SIGLEC6 sialic acid binding Ig like lectin 6 19 protein-coding CD327|CD33L|CD33L1|CD33L2|CDW327|OBBP1 sialic acid-binding Ig-like lectin 6|CD33 antigen-like 1|obesity-binding protein 1 64 0.00876 2.123 1 1 +947 CD34 CD34 molecule 1 protein-coding - hematopoietic progenitor cell antigen CD34|CD34 antigen 36 0.004927 9.709 1 1 +948 CD36 CD36 molecule 7 protein-coding BDPLT10|CHDS7|FAT|GP3B|GP4|GPIV|PASIV|SCARB3 platelet glycoprotein 4|CD36 antigen (collagen type I receptor, thrombospondin receptor)|CD36 molecule (thrombospondin receptor)|GPIIIB|PAS IV|PAS-4 protein|cluster determinant 36|fatty acid translocase|glycoprotein IIIb|leukocyte differentiation antigen CD36|platelet glycoprotein IV|scavenger receptor class B, member 3 33 0.004517 7.857 1 1 +949 SCARB1 scavenger receptor class B member 1 12 protein-coding CD36L1|CLA-1|CLA1|HDLQTL6|SR-BI|SRB1 scavenger receptor class B member 1|CD36 and LIMPII analogous 1|CD36 antigen (collagen type I receptor, thrombospondin receptor)-like 1|scavenger receptor class B type III 38 0.005201 10.41 1 1 +950 SCARB2 scavenger receptor class B member 2 4 protein-coding AMRF|CD36L2|EPM4|HLGP85|LGP85|LIMP-2|LIMPII|SR-BII lysosome membrane protein 2|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 II 33 0.004517 12.48 1 1 +951 CD37 CD37 molecule 19 protein-coding GP52-40|TSPAN26 leukocyte antigen CD37|cell differentiation antigen 37|leukocyte surface antigen CD37|tetraspanin-26|tspan-26 19 0.002601 8.08 1 1 +952 CD38 CD38 molecule 4 protein-coding ADPRC 1|ADPRC1 ADP-ribosyl cyclase/cyclic ADP-ribose hydrolase 1|2'-phospho-ADP-ribosyl cyclase|2'-phospho-cyclic-ADP-ribose transferase|ADP-ribosyl cyclase 1|CD38 antigen (p45)|NAD(+) nucleosidase|cluster of differentiation 38|cyclic ADP-ribose hydrolase 1|ecto-nicotinamide adenine dinucleotide glycohydrolase 32 0.00438 5.5 1 1 +953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 10 protein-coding ATPDase|CD39|NTPDase-1|SPG64 ectonucleoside triphosphate diphosphohydrolase 1|CD39 antigen|ecto-ATP diphosphohydrolase 1|ecto-ATPDase 1|ecto-ATPase 1|ecto-apyrase|lymphoid cell activation antigen 30 0.004106 10.13 1 1 +954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 9 protein-coding CD39L1|NTPDase-2 ectonucleoside triphosphate diphosphohydrolase 2|CD39 antigen-like 1|NTPDase 2|ecto-ATP diphosphohydrolase 2|ecto-ATPDase 2|ecto-ATPase 2 24 0.003285 6.589 1 1 +955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) 20 protein-coding CD39L2|IL-6SAG|IL6ST2|NTPDase-6|dJ738P15.3 ectonucleoside triphosphate diphosphohydrolase 6|CD39 antigen-like 2|NTPDase 6|interleukin 6 signal transducer-2 37 0.005064 10.89 1 1 +956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 3 protein-coding CD39L3|HB6|NTPDase-3 ectonucleoside triphosphate diphosphohydrolase 3|CD39 antigen-like 3|NTPDase 3|ecto-ATP diphosphohydrolase 3|ecto-ATPDase 3|ecto-ATPase 3|ecto-apyrase 3 24 0.003285 5.424 1 1 +957 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 14 protein-coding CD39L4|NTPDase-5|PCPH ectonucleoside triphosphate diphosphohydrolase 5|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 27 0.003696 7.568 1 1 +958 CD40 CD40 molecule 20 protein-coding Bp50|CDW40|TNFRSF5|p50 tumor necrosis factor receptor superfamily member 5|B cell surface antigen CD40|B cell-associated molecule|CD40 molecule, TNF receptor superfamily member 5|CD40L receptor 36 0.004927 8.358 1 1 +959 CD40LG CD40 ligand X protein-coding CD154|CD40L|HIGM1|IGM|IMD3|T-BAM|TNFSF5|TRAP|gp39|hCD40L CD40 ligand|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 29 0.003969 3.29 1 1 +960 CD44 CD44 molecule (Indian blood group) 11 protein-coding CDW44|CSPG8|ECMR-III|HCELL|HUTCH-I|IN|LHR|MC56|MDU2|MDU3|MIC4|Pgp1 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|soluble CD44 50 0.006844 12.47 1 1 +961 CD47 CD47 molecule 3 protein-coding IAP|MER6|OA3 leukocyte surface antigen CD47|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 signal transducer 23 0.003148 11.22 1 1 +962 CD48 CD48 molecule 1 protein-coding BCM1|BLAST|BLAST1|MEM-102|SLAMF2|hCD48|mCD48 CD48 antigen|B-lymphocyte activation marker BLAST-1|BCM1 surface antigen|CD48 antigen (B-cell membrane protein)|SLAM family member 2|TCT.1|leukocyte antigen MEM-102|signaling lymphocytic activation molecule 2 24 0.003285 7.094 1 1 +963 CD53 CD53 molecule 1 protein-coding MOX44|TSPAN25 leukocyte surface antigen CD53|CD53 antigen|CD53 glycoprotein|CD53 tetraspan antigen|antigen MOX44 identified by monoclonal antibody MRC-OX44|cell surface antigen|cell surface glycoprotein CD53|tetraspanin-25|transmembrane glycoprotein|tspan-25 18 0.002464 9.017 1 1 +965 CD58 CD58 molecule 1 protein-coding LFA-3|LFA3|ag3 lymphocyte function-associated antigen 3|CD58 antigen, (lymphocyte function-associated antigen 3)|surface glycoprotein LFA-3 37 0.005064 7.796 1 1 +966 CD59 CD59 molecule 11 protein-coding 16.3A5|1F5|EJ16|EJ30|EL32|G344|HRF-20|HRF20|MAC-IP|MACIF|MEM43|MIC11|MIN1|MIN2|MIN3|MIRL|MSK21|p18-20 CD59 glycoprotein|1F5 antigen|20 kDa homologous restriction factor|CD59 antigen p18-20 (antigen identified by monoclonal antibodies 16.3A5, EJ16, EJ30, EL32 and G344)|CD59 molecule, complement regulatory protein|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 6 0.0008212 13.1 1 1 +967 CD63 CD63 molecule 12 protein-coding LAMP-3|ME491|MLA1|OMA81H|TSPAN30 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 16 0.00219 13.63 1 1 +968 CD68 CD68 molecule 17 protein-coding GP110|LAMP4|SCARD1 macrosialin|CD68 antigen|macrophage antigen CD68|scavenger receptor class D, member 1 14 0.001916 11.13 1 1 +969 CD69 CD69 molecule 12 protein-coding AIM|BL-AC/P26|CLEC2C|EA1|GP32/28|MLR-3 early activation antigen CD69|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 lymphocyte activation antigen|leukocyte surface antigen Leu-23 14 0.001916 5.938 1 1 +970 CD70 CD70 molecule 19 protein-coding CD27-L|CD27L|CD27LG|TNFSF7|TNLG8A CD70 antigen|CD27 ligand|Ki-24 antigen|surface antigen CD70|tumor necrosis factor ligand 8A|tumor necrosis factor ligand superfamily member 7 9 0.001232 3.571 1 1 +971 CD72 CD72 molecule 9 protein-coding CD72b|LYB2 B-cell differentiation antigen CD72|CD72 antigen|lyb-2 21 0.002874 5.766 1 1 +972 CD74 CD74 molecule 5 protein-coding DHLAG|HLADG|II|Ia-GAMMA HLA class II histocompatibility antigen gamma chain|CD74 antigen (invariant polypeptide of major histocompatibility complex, class II antigen-associated)|CD74 molecule, major histocompatibility complex, class II invariant 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 18 0.002464 14.8 1 1 +973 CD79A CD79a molecule 19 protein-coding IGA|MB-1 B-cell antigen receptor complex-associated protein alpha chain|CD79a antigen (immunoglobulin-associated alpha)|CD79a molecule, immunoglobulin-associated alpha|MB-1 membrane glycoprotein|ig-alpha|membrane-bound immunoglobulin-associated protein|surface IgM-associated protein 20 0.002737 5.687 1 1 +974 CD79B CD79b molecule 17 protein-coding AGM6|B29|IGB B-cell antigen receptor complex-associated protein beta chain|B-cell-specific glycoprotein B29|CD79b antigen (immunoglobulin-associated beta)|CD79b molecule, immunoglobulin-associated beta|Ig-beta|immunoglobulin-associated B29 protein 17 0.002327 5.649 1 1 +975 CD81 CD81 molecule 11 protein-coding CVID6|S5.7|TAPA1|TSPAN28 CD81 antigen|26 kDa cell surface protein TAPA-1|CD81 antigen (target of antiproliferative antibody 1)|tetraspanin-28|tspan-28 19 0.002601 13.41 1 1 +976 ADGRE5 adhesion G protein-coupled receptor E5 19 protein-coding CD97|TM7LN1 CD97 antigen|CD97 molecule|leukocyte antigen CD97|seven transmembrane helix receptor|seven-span transmembrane protein|seven-transmembrane, heterodimeric receptor associated with inflammation 58 0.007939 10.12 1 1 +977 CD151 CD151 molecule (Raph blood group) 11 protein-coding GP27|MER2|PETA-3|RAPH|SFA1|TSPAN24 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 12 0.001642 12.32 1 1 +978 CDA cytidine deaminase 1 protein-coding CDD cytidine deaminase|cytidine aminohydrolase|cytosine nucleoside deaminase|small cytidine deaminase 11 0.001506 6.175 1 1 +983 CDK1 cyclin dependent kinase 1 10 protein-coding CDC2|CDC28A|P34CDC2 cyclin-dependent kinase 1|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 16 0.00219 8.836 1 1 +984 CDK11B cyclin dependent kinase 11B 1 protein-coding CDC2L1|CDK11|CDK11-p110|CDK11-p46|CDK11-p58|CLK-1|PITSLREA|PK58|p58|p58CDC2L1|p58CLK-1 cyclin-dependent kinase 11B|CDC-related protein kinase p58|PITSLRE serine/threonine-protein kinase CDC2L1|cell division cycle 2-like 1 (PITSLRE proteins)|cell division protein kinase 11B|galactosyltransferase-associated protein kinase p58/GTA|p58 CLK-1 39 0.005338 9.74 1 1 +987 LRBA LPS responsive beige-like anchor protein 4 protein-coding BGL|CDC4L|CVID8|LAB300|LBA lipopolysaccharide-responsive and beige-like anchor protein|CDC4-like protein|LPS-responsive vesicle trafficking, beach and anchor containing|vesicle trafficking, beach and anchor containing 175 0.02395 10.48 1 1 +988 CDC5L cell division cycle 5 like 6 protein-coding CDC5|CDC5-LIKE|CEF1|PCDC5RP|dJ319D22.1 cell division cycle 5-like protein|CDC5 cell division cycle 5-like|Cdc5-related protein|dJ319D22.1 (CDC5-like protein)|pombe cdc5-related protein 66 0.009034 10.04 1 1 +989 SEPT7 septin 7 7 protein-coding CDC10|CDC3|NBLA02942|SEPT7A septin-7|CDC10 (cell division cycle 10, S. cerevisiae, homolog)|CDC10 protein homolog|septin 7 variant 4 20 0.002737 11.61 1 1 +990 CDC6 cell division cycle 6 17 protein-coding CDC18L|HsCDC18|HsCDC6|MGORS5 cell division control protein 6 homolog|CDC6 cell division cycle 6 homolog|CDC6-related protein|cdc18-related protein|cell division cycle 6 homolog|p62(cdc6) 38 0.005201 8.061 1 1 +991 CDC20 cell division cycle 20 1 protein-coding CDC20A|bA276H19.3|p55CDC cell division cycle protein 20 homolog|CDC20 cell division cycle 20 homolog|cell division cycle 20 homolog 30 0.004106 8.647 1 1 +993 CDC25A cell division cycle 25A 3 protein-coding CDC25A2 M-phase inducer phosphatase 1|CDC25 isoform A1-CAG|CDC25A2-CAG isoform|dual specificity phosphatase CDC25A 26 0.003559 6.999 1 1 +994 CDC25B cell division cycle 25B 20 protein-coding - M-phase inducer phosphatase 2|dual specificity phosphatase Cdc25B 34 0.004654 10.55 1 1 +995 CDC25C cell division cycle 25C 5 protein-coding CDC25|PPP1R60 M-phase inducer phosphatase 3|dual specificity phosphatase CDC25C|mitosis inducer CDC25|phosphotyrosine phosphatase|protein phosphatase 1, regulatory subunit 60 48 0.00657 5.748 1 1 +996 CDC27 cell division cycle 27 17 protein-coding ANAPC3|APC3|CDC27Hs|D0S1430E|D17S978E|H-NUC|HNUC|NUC2 cell division cycle protein 27 homolog|anaphase promoting complex subunit 3|anaphase-promoting complex, protein 3|cell division cycle 27 homolog|nuc2 homolog 145 0.01985 10.34 1 1 +997 CDC34 cell division cycle 34 19 protein-coding E2-CDC34|UBC3|UBCH3|UBE2R1 ubiquitin-conjugating enzyme E2 R1|(E3-independent) E2 ubiquitin-conjugating enzyme R1|E2 ubiquitin-conjugating enzyme R1|cell division cycle 34 homolog|ubiquitin carrier protein|ubiquitin-conjugating enzyme E2-32 KDA complementing|ubiquitin-conjugating enzyme E2-CDC34|ubiquitin-protein ligase R1 14 0.001916 10.01 1 1 +998 CDC42 cell division cycle 42 1 protein-coding CDC42Hs|G25K|TKS cell division control protein 42 homolog|G25K GTP-binding protein|GTP binding protein, 25kDa|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 22 0.003011 12.27 1 1 +999 CDH1 cadherin 1 16 protein-coding Arc-1|CD324|CDHE|ECAD|LCAM|UVO cadherin-1|CAM 120/80|E-Cadherin|E-cadherin 1|cadherin 1, E-cadherin (epithelial)|cadherin 1, type 1|cadherin 1, type 1, E-cadherin (epithelial)|calcium-dependent adhesion protein, epithelial|cell-CAM 120/80|epithelial cadherin|uvomorulin 200 0.02737 11.41 1 1 +1000 CDH2 cadherin 2 18 protein-coding CD325|CDHN|CDw325|NCAD cadherin-2|N-cadherin 1|cadherin 2, type 1, N-cadherin (neuronal)|calcium-dependent adhesion protein, neuronal|neural cadherin 118 0.01615 7.466 1 1 +1001 CDH3 cadherin 3 16 protein-coding CDHP|HJMD|PCAD cadherin-3|cadherin 3, type 1, P-cadherin (placental)|calcium-dependent adhesion protein, placental 44 0.006022 9.08 1 1 +1002 CDH4 cadherin 4 20 protein-coding CAD4|R-CAD|RCAD cadherin-4|R-cadherin|cadherin 4, type 1, R-cadherin (retinal)|cadherin 4, type 1, preproprotein|retinal cadherin 125 0.01711 2.941 1 1 +1003 CDH5 cadherin 5 16 protein-coding 7B4|CD144 cadherin-5|7B4 antigen|VE-cadherin|cadherin 5, type 2 (vascular endothelium)|cadherin 5, type 2, VE-cadherin (vascular epithelium)|cd144 antigen|endothelial-specific cadherin|vascular endothelial cadherin 62 0.008486 9.306 1 1 +1004 CDH6 cadherin 6 5 protein-coding CAD6|KCAD cadherin-6|cadherin 6, type 2, K-cadherin (fetal kidney) 120 0.01642 6.568 1 1 +1005 CDH7 cadherin 7 18 protein-coding CDH7L1 cadherin-7|cadherin 7, type 2 148 0.02026 1.27 1 1 +1006 CDH8 cadherin 8 16 protein-coding Nbla04261 cadherin-8|cadherin 8, type 2 184 0.02518 2.722 1 1 +1007 CDH9 cadherin 9 5 protein-coding - cadherin-9|T1-cadherin|cadherin 9, type 2 (T1-cadherin) 206 0.0282 0.7261 1 1 +1008 CDH10 cadherin 10 5 protein-coding - cadherin-10|T2-cadherin|cadherin 10 type 2|cadherin 10, type 2 (T2-cadherin) 252 0.03449 1.968 1 1 +1009 CDH11 cadherin 11 16 protein-coding CAD11|CDHOB|OB|OSF-4 cadherin-11|cadherin 11, type 2, OB-cadherin (osteoblast) 149 0.02039 9.384 1 1 +1010 CDH12 cadherin 12 5 protein-coding CDHB cadherin-12|Br-cadherin|N-cadherin 2|brain-cadherin|cadherin 12, type 2 (N-cadherin 2)|cadherin, neural type, 2|neural type cadherin 2|neuronal cadherin 2 192 0.02628 2.439 1 1 +1012 CDH13 cadherin 13 16 protein-coding CDHH|P105 cadherin-13|H-cadherin (heart)|T-cad|T-cadherin|cadherin 13, H-cadherin (heart)|heart cadherin 74 0.01013 8.065 1 1 +1013 CDH15 cadherin 15 16 protein-coding CDH14|CDH3|CDHM|MCAD|MRD3 cadherin-15|cadherin 15, type 1, M-cadherin (myotubule)|cadherin-14|cadherin-3|muscle-cadherin 60 0.008212 2.804 1 1 +1014 CDH16 cadherin 16 16 protein-coding - cadherin-16|KSP-cadherin|cadherin 16, KSP-cadherin|kidney-specific cadherin 73 0.009992 2.605 1 1 +1015 CDH17 cadherin 17 8 protein-coding CDH16|HPT-1|HPT1 cadherin-17|HPT-1 cadherin|LI cadherin|cadherin 17, LI cadherin (liver-intestine)|cadherin-16|human intestinal peptide-associated transporter HPT-1|human peptide transporter 1|intestinal peptide-associated transporter HPT-1|liver-intestine cadherin 93 0.01273 3.159 1 1 +1016 CDH18 cadherin 18 5 protein-coding CDH14|CDH14L|CDH24 cadherin-18|cadherin 18, type 2|cadherin-14|cadherin-like 24|ey-cadherin 187 0.0256 1.59 1 1 +1017 CDK2 cyclin dependent kinase 2 12 protein-coding CDKN2|p33(CDK2) cyclin-dependent kinase 2|cdc2-related protein kinase|cell division protein kinase 2|p33 protein kinase 17 0.002327 9.427 1 1 +1018 CDK3 cyclin dependent kinase 3 17 protein-coding - cyclin-dependent kinase 3|cell division protein kinase 3 20 0.002737 7.115 1 1 +1019 CDK4 cyclin dependent kinase 4 12 protein-coding CMM3|PSK-J3 cyclin-dependent kinase 4|cell division protein kinase 4 21 0.002874 11.41 1 1 +1020 CDK5 cyclin dependent kinase 5 7 protein-coding LIS7|PSSALRE cyclin-dependent-like kinase 5|TPKII catalytic subunit|cell division protein kinase 5|protein kinase CDK5 splicing|serine/threonine-protein kinase PSSALRE|tau protein kinase II catalytic subunit 18 0.002464 8.562 1 1 +1021 CDK6 cyclin dependent kinase 6 7 protein-coding MCPH12|PLSTIRE cyclin-dependent kinase 6|cell division protein kinase 6|serine/threonine-protein kinase PLSTIRE 18 0.002464 9.567 1 1 +1022 CDK7 cyclin dependent kinase 7 5 protein-coding CAK|CAK1|CDKN7|HCAK|MO15|STK1|p39MO15 cyclin-dependent kinase 7|39 KDa protein kinase|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|serine/threonine kinase stk1|serine/threonine protein kinase 1|serine/threonine protein kinase MO15 20 0.002737 8.74 1 1 +1024 CDK8 cyclin dependent kinase 8 13 protein-coding K35 cyclin-dependent kinase 8|CDK8 protein kinase|cell division protein kinase 8|mediator complex subunit CDK8|mediator of RNA polymerase II transcription subunit CDK8|protein kinase K35 44 0.006022 7.324 1 1 +1025 CDK9 cyclin dependent kinase 9 9 protein-coding C-2k|CDC2L4|CTK1|PITALRE|TAK cyclin-dependent kinase 9|CDC2-related kinase|cell division cycle 2-like protein kinase 4|cell division protein kinase 9|serine/threonine protein kinase PITALRE|tat-associated kinase complex catalytic subunit 28 0.003832 10.31 1 1 +1026 CDKN1A cyclin dependent kinase inhibitor 1A 6 protein-coding CAP20|CDKN1|CIP1|MDA-6|P21|SDI1|WAF1|p21CIP1 cyclin-dependent kinase inhibitor 1|CDK-interacting protein 1|CDK-interaction protein 1|DNA synthesis inhibitor|cyclin-dependent kinase inhibitor 1A (p21, Cip1)|melanoma differentiation associated protein 6|wild-type p53-activated fragment 1 65 0.008897 11.39 1 1 +1027 CDKN1B cyclin dependent kinase inhibitor 1B 12 protein-coding CDKN4|KIP1|MEN1B|MEN4|P27KIP1 cyclin-dependent kinase inhibitor 1B|cyclin-dependent kinase inhibitor 1B (p27, Kip1) 37 0.005064 10.46 1 1 +1028 CDKN1C cyclin dependent kinase inhibitor 1C 11 protein-coding BWCR|BWS|KIP2|WBS|p57|p57Kip2 cyclin-dependent kinase inhibitor 1C|cyclin-dependent kinase inhibitor 1C (p57, Kip2)|cyclin-dependent kinase inhibitor p57 3 0.0004106 7.931 1 1 +1029 CDKN2A cyclin dependent kinase inhibitor 2A 9 protein-coding ARF|CDK4I|CDKN2|CMM2|INK4|INK4A|MLM|MTS-1|MTS1|P14|P14ARF|P16|P16-INK4A|P16INK4|P16INK4A|P19|P19ARF|TP16 cyclin-dependent kinase inhibitor 2A|CDK4 inhibitor p16-INK4|alternative reading frame|cell cycle negative regulator beta|cyclin-dependent kinase 4 inhibitor A|cyclin-dependent kinase inhibitor 2A (melanoma, p16, inhibits CDK4)|multiple tumor suppressor 1 274 0.0375 7.206 1 1 +1030 CDKN2B cyclin dependent kinase inhibitor 2B 9 protein-coding CDK4I|INK4B|MTS2|P15|TP15|p15INK4b cyclin-dependent kinase 4 inhibitor B|CDK inhibitory protein|CDK4B inhibitor|MTS-2|cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)|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 8 0.001095 8.173 1 1 +1031 CDKN2C cyclin dependent kinase inhibitor 2C 1 protein-coding INK4C|p18|p18-INK4C cyclin-dependent kinase 4 inhibitor C|CDK6 inhibitor p18|cyclin-dependent inhibitor|cyclin-dependent kinase 6 inhibitor p18|cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4)|p18-INK6 16 0.00219 8.469 1 1 +1032 CDKN2D cyclin dependent kinase inhibitor 2D 19 protein-coding INK4D|p19|p19-INK4D cyclin-dependent kinase 4 inhibitor D|CDK inhibitor p19INK4d|cell cycle inhibitor, Nur77 associating protein|cyclin-dependent kinase 4 inhibitor D p19|cyclin-dependent kinase inhibitor 2D (p19, inhibits CDK4)|inhibitor of cyclin-dependent kinase 4d 8 0.001095 7.701 1 1 +1033 CDKN3 cyclin dependent kinase inhibitor 3 14 protein-coding CDI1|CIP2|KAP|KAP1 cyclin-dependent kinase inhibitor 3|CDK2-associated dual specificity phosphatase|Cdk-associated protein phosphatase|cyclin-dependent kinase inhibitor|cyclin-dependent kinase interacting protein 2|cyclin-dependent kinase interactor 1|kinase-associated phosphatase 10 0.001369 6.86 1 1 +1036 CDO1 cysteine dioxygenase type 1 5 protein-coding CDO-I cysteine dioxygenase type 1|cysteine dioxygenase, type I 17 0.002327 5.56 1 1 +1038 CDR1 cerebellar degeneration related protein 1 X protein-coding CDR|CDR34|CDR62A cerebellar degeneration-related antigen 1|cerebellar degeneration-related protein 1, 34kDa 51 0.006981 2.475 1 1 +1039 CDR2 cerebellar degeneration related protein 2 16 protein-coding CDR62|Yo cerebellar degeneration-related protein 2|Yo paraneoplastic antigen|cerebellar degeneration-related protein 2, 62kDa|major Yo paraneoplastic antigen|paraneoplastic cerebellar degeneration-associated antigen 30 0.004106 9.257 1 1 +1040 CDS1 CDP-diacylglycerol synthase 1 4 protein-coding CDS phosphatidate cytidylyltransferase 1|CDP-DAG synthase 1|CDP-DG synthase 1|CDP-DG synthetase 1|CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 1|CDP-diglyceride pyrophosphorylase 1|CDP-diglyceride synthase 1|CDP-diglyceride synthetase 1|CDS 1|CTP:phosphatidate cytidylyltransferase 1 39 0.005338 8.851 1 1 +1041 CDSN corneodesmosin 6 protein-coding HTSS|HTSS1|HYPT2|PSS|PSS1|S corneodesmosin|differentiated keratinocyte S protein 25 0.003422 4.841 1 1 +1043 CD52 CD52 molecule 1 protein-coding CDW52 CAMPATH-1 antigen|CD52 antigen (CAMPATH-1 antigen)|CDW52 antigen (CAMPATH-1 antigen)|HEL-S-171mP|cambridge pathology 1 antigen|epididymal secretory protein E5|epididymis secretory sperm binding protein Li 171mP|he5|human epididymis-specific protein 5 7 0.0009581 7.541 1 1 +1044 CDX1 caudal type homeobox 1 5 protein-coding - homeobox protein CDX-1|caudal type homeo box transcription factor 1|caudal type homeobox transcription factor 1|caudal-type homeobox protein 1|caudal-type homeobox protein CDX1 10 0.001369 2.913 1 1 +1045 CDX2 caudal type homeobox 2 13 protein-coding CDX-3|CDX2/AS|CDX3 homeobox protein CDX-2|caudal type homeo box transcription factor 2|caudal type homeobox transcription factor 2|caudal-type homeobox protein 2|homeobox protein miniCDX2 24 0.003285 2.051 1 1 +1046 CDX4 caudal type homeobox 4 X protein-coding - homeobox protein CDX-4|caudal type homeobox transcription factor 4|caudal-type homeobox protein 4 43 0.005886 0.04239 1 1 +1047 CLGN calmegin 4 protein-coding - calmegin|testis tissue sperm-binding protein Li 79P 39 0.005338 5.498 1 1 +1048 CEACAM5 carcinoembryonic antigen related cell adhesion molecule 5 19 protein-coding CD66e|CEA carcinoembryonic antigen-related cell adhesion molecule 5|meconium antigen 100 65 0.008897 5.54 1 1 +1050 CEBPA CCAAT/enhancer binding protein alpha 19 protein-coding C/EBP-alpha|CEBP CCAAT/enhancer-binding protein alpha|CCAAT/enhancer binding protein (C/EBP), alpha 13 0.001779 9.301 1 1 +1051 CEBPB CCAAT/enhancer binding protein beta 20 protein-coding C/EBP-beta|IL6DBP|NF-IL6|TCF5 CCAAT/enhancer-binding protein beta|CCAAT/enhancer binding protein (C/EBP), beta|interleukin 6-dependent DNA-binding protein|nuclear factor NF-IL6|nuclear factor of interleukin 6|transcription factor 5|transcription factor C/EBP beta 5 0.0006844 10.17 1 1 +1052 CEBPD CCAAT/enhancer binding protein delta 8 protein-coding C/EBP-delta|CELF|CRP3|NF-IL6-beta CCAAT/enhancer-binding protein delta|CCAAT/enhancer binding protein (C/EBP), delta|c/EBP delta|nuclear factor NF-IL6-beta 3 0.0004106 9.997 1 1 +1053 CEBPE CCAAT/enhancer binding protein epsilon 14 protein-coding C/EBP-epsilon|CRP1 CCAAT/enhancer-binding protein epsilon|CCAAT/enhancer binding protein (C/EBP), epsilon|c/EBP epsilon 18 0.002464 1.412 1 1 +1054 CEBPG CCAAT/enhancer binding protein gamma 19 protein-coding GPE1BP|IG/EBP-1 CCAAT/enhancer-binding protein gamma|CCAAT/enhancer binding protein (C/EBP), gamma|c/EBP gamma 9 0.001232 10.2 1 1 +1056 CEL carboxyl ester lipase 9 protein-coding BAL|BSDL|BSSL|CELL|CEase|FAP|FAPP|LIPA|MODY8 bile salt-activated lipase|bile salt-dependent lipase, oncofetal isoform|bucelipase|carboxyl ester hydrolase|carboxyl ester lipase (bile salt-stimulated lipase)|cholesterol esterase|fetoacinar pancreatic protein|lysophospholipase, pancreatic|sterol esterase 71 0.009718 5.085 1 1 +1057 CELP carboxyl ester lipase pseudogene 9 pseudo CELL|cell1|cell2|cell3 carboxyl ester lipase-like (bile salt-stimulated lipase-like) 41 0.005612 0.7985 1 1 +1058 CENPA centromere protein A 2 protein-coding CENP-A|CenH3 histone H3-like centromeric protein A|centromere autoantigen A|centromere protein A, 17kDa|centromere-specific histone 11 0.001506 6.219 1 1 +1059 CENPB centromere protein B 20 protein-coding - major centromere autoantigen B|CENP-B|centromere autoantigen B|centromere protein B, 80kDa 33 0.004517 11.24 1 1 +1060 CENPC centromere protein C 4 protein-coding CENP-C|CENPC1|MIF2|hcp-4 centromere protein C|CENP-C 1|centromere autoantigen C|centromere autoantigen C1|centromere protein C 1|interphase centromere complex protein 7 43 0.005886 8.046 1 1 +1062 CENPE centromere protein E 4 protein-coding CENP-E|KIF10|MCPH13|PPP1R61 centromere-associated protein E|Centromere autoantigen E (312kD)|centromere protein E, 312kDa|kinesin family member 10|kinesin-related protein CENPE|protein phosphatase 1, regulatory subunit 61 159 0.02176 7.363 1 1 +1063 CENPF centromere protein F 1 protein-coding CENF|CILD31|PRO1779|STROMS|hcp-1 centromere protein F|AH antigen|CENP-F kinetochore protein|cell-cycle-dependent 350K nuclear protein|centromere protein F, 350/400kDa (mitosin)|centromere protein F, 350/400ka (mitosin)|kinetochore protein CENPF|mitosin 182 0.02491 9.581 1 1 +1066 CES1 carboxylesterase 1 16 protein-coding ACAT|CE-1|CEH|CES2|HMSE|HMSE1|PCE-1|REH|SES1|TGH|hCE-1 liver carboxylesterase 1|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|methylumbelliferyl-acetate deacetylase 1|monocyte/macrophage serine esterase|retinyl ester hydrolase|serine esterase 1|triacylglycerol hydrolase 64 0.00876 6.916 1 1 +1068 CETN1 centrin 1 18 protein-coding CEN1|CETN centrin-1|EF-hand protein|calcium binding protein|caltractin|centrin, EF-hand protein, 1|testicular tissue protein Li 37 28 0.003832 0.08582 1 1 +1069 CETN2 centrin 2 X protein-coding CALT|CEN2 centrin-2|caltractin (20kD calcium-binding protein)|centrin, EF-hand protein, 2 17 0.002327 10.25 1 1 +1070 CETN3 centrin 3 5 protein-coding CDC31|CEN3 centrin-3|CDC31 yeast homolog|EF-hand superfamily member|centrin, EF-hand protein, 3 (CDC31 homolog, yeast) 23 0.003148 8.086 1 1 +1071 CETP cholesteryl ester transfer protein 16 protein-coding BPIFF|HDLCQ10 cholesteryl ester transfer protein|BPI fold containing family F|cholesteryl ester transfer protein plasma|lipid transfer protein I 37 0.005064 4.493 1 1 +1072 CFL1 cofilin 1 11 protein-coding CFL|HEL-S-15|cofilin cofilin-1|18 kDa phosphoprotein|cofilin 1 (non-muscle)|cofilin, non-muscle isoform|epididymis secretory protein Li 15|p18 12 0.001642 14.13 1 1 +1073 CFL2 cofilin 2 14 protein-coding NEM7 cofilin-2|cofilin 2 (muscle)|cofilin, muscle isoform|nemaline myopathy type 7 15 0.002053 9.171 1 1 +1075 CTSC cathepsin C 11 protein-coding CPPI|DPP-I|DPP1|DPPI|HMS|JP|JPD|PALS|PDON1|PLS dipeptidyl peptidase 1|cathepsin J|dipeptidyl transferase|dipeptidyl-peptidase I 43 0.005886 11.32 1 1 +1080 CFTR cystic fibrosis transmembrane conductance regulator 7 protein-coding ABC35|ABCC7|CF|CFTR/MRP|MRP7|TNR-CFTR|dJ760C5.1 cystic fibrosis transmembrane conductance regulator|cAMP-dependent chloride channel|channel conductance-controlling ATPase|cystic fibrosis transmembrane conductance regulator (ATP-binding cassette sub-family C, member 7) 131 0.01793 3.791 1 1 +1081 CGA glycoprotein hormones, alpha polypeptide 6 protein-coding CG-ALPHA|FSHA|GPHA1|GPHa|HCG|LHA|TSHA glycoprotein hormones alpha chain|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|luteinizing hormone alpha chain|lutropin alpha chain|thyroid-stimulating hormone alpha chain|thyrotropin alpha chain 18 0.002464 1.112 1 1 +1082 CGB3 chorionic gonadotropin beta subunit 3 19 protein-coding CGB|CGB5|CGB7|CGB8|hCGB choriogonadotropin subunit beta 3|CG-beta|choriogonadotropin subunit beta|chorionic gonadotrophin chain beta|chorionic gonadotropin beta 3 subunit|chorionic gonadotropin beta chain|chorionic gonadotropin beta subunit|chorionic gonadotropin chain beta|chorionic gonadotropin, beta polypeptide 1.111 0 1 +1084 CEACAM3 carcinoembryonic antigen related cell adhesion molecule 3 19 protein-coding CD66D|CEA|CGM1|W264|W282 carcinoembryonic antigen-related cell adhesion molecule 3|CD66d antigen|carcinoembryonic antigen CGM1|carcinoembryonic antigen gene family member 1|nonspecific cross-reacting antigen 26 0.003559 1.426 1 1 +1087 CEACAM7 carcinoembryonic antigen related cell adhesion molecule 7 19 protein-coding CGM2 carcinoembryonic antigen-related cell adhesion molecule 7|carcinoembryonic antigen CGM2|carcinoembryonic antigen gene family member 2 32 0.00438 2.678 1 1 +1088 CEACAM8 carcinoembryonic antigen related cell adhesion molecule 8 19 protein-coding CD66b|CD67|CGM6|NCA-95 carcinoembryonic antigen-related cell adhesion molecule 8|CD67 antigen|carcinoembryonic antigen CGM6|carcinoembryonic antigen gene family member 6|non-specific cross-reacting antigen NCA-95 39 0.005338 0.4829 1 1 +1089 CEACAM4 carcinoembryonic antigen related cell adhesion molecule 4 19 protein-coding CGM7|CGM7_HUMAN|NCA carcinoembryonic antigen-related cell adhesion molecule 4|Nonspecific cross-reacting antigen (NCA)|carcinoembryonic antigen CGM7|carcinoembryonic antigen gene family member 7|carcinoembryonic antigen-related cell adhesion molecule 4-sv1|carcinoembryonic antigen-related cell adhesion molecule 4-sv2|non-specific cross-reacting antigen W236|nonspecific cross-reacting antigen W236 37 0.005064 2.2 1 1 +1090 CEACAMP1 carcinoembryonic antigen related cell adhesion molecule pseudogene 1 19 pseudo CEACAM22P|CGM8 carcinoembryonic antigen gene family member 8 (pseudogene)|carcinoembryonic antigen-related cell adhesion molecule 22, pseudogene|pregnancy specific beta-1-glycoprotein 9 pseudogene 1 0.0001369 1 0 +1092 CEACAMP3 carcinoembryonic antigen related cell adhesion molecule pseudogene 3 19 pseudo CEACAM24P|CGM10 carcinoembryonic antigen gene family member 10 (pseudogene)|carcinoembryonic antigen-related cell adhesion molecule 24, pseudogene 1 0.0001369 1 0 +1098 CEACAMP10 carcinoembryonic antigen related cell adhesion molecule pseudogene 10 19 pseudo CEACAM31P|CGM17 carcinoembryonic antigen gene family member 17|carcinoembryonic antigen-related cell adhesion molecule 31, pseudogene|pregnancy specific beta-1-glycoprotein pseudogene 4 0.0005475 1 0 +1101 CHAD chondroadherin 17 protein-coding SLRR4A chondroadherin|cartilage leucine-rich protein|chondroadherin proteoglycan 22 0.003011 4.139 1 1 +1102 RCBTB2 RCC1 and BTB domain containing protein 2 13 protein-coding CHC1L|RLG RCC1 and BTB domain-containing protein 2|RCC1-like G exchanging factor RLG|regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 49 0.006707 8.393 1 1 +1103 CHAT choline O-acetyltransferase 10 protein-coding CHOACTASE|CMS1A|CMS1A2|CMS6 choline O-acetyltransferase|acetyl CoA:choline O-acetyltransferase|choline acetylase 95 0.013 0.3861 1 1 +1104 RCC1 regulator of chromosome condensation 1 1 protein-coding CHC1|RCC1-I|SNHG3-RCC1 regulator of chromosome condensation|SNHG3-RCC1 readthrough|cell cycle regulatory protein|guanine nucleotide-releasing protein 32 0.00438 9.209 1 1 +1105 CHD1 chromodomain helicase DNA binding protein 1 5 protein-coding - chromodomain-helicase-DNA-binding protein 1|ATP-dependent helicase CHD1|CHD-1 97 0.01328 9.505 1 1 +1106 CHD2 chromodomain helicase DNA binding protein 2 15 protein-coding EEOC chromodomain-helicase-DNA-binding protein 2|ATP-dependent helicase CHD2|CHD-2 128 0.01752 10.95 1 1 +1107 CHD3 chromodomain helicase DNA binding protein 3 17 protein-coding Mi-2a|Mi2-ALPHA|ZFH chromodomain-helicase-DNA-binding protein 3|ATP-dependent helicase CHD3|CHD-3|hZFH|mi-2 autoantigen 240 kDa protein|zinc finger helicase|zinc-finger helicase (Snf2-like) 168 0.02299 11.6 1 1 +1108 CHD4 chromodomain helicase DNA binding protein 4 12 protein-coding CHD-4|Mi-2b|Mi2-BETA chromodomain-helicase-DNA-binding protein 4|ATP-dependent helicase CHD4|Mi-2 autoantigen 218 kDa protein 183 0.02505 12.54 1 1 +1109 AKR1C4 aldo-keto reductase family 1 member C4 10 protein-coding 3-alpha-HSD|C11|CDR|CHDR|DD-4|DD4|HAKRA aldo-keto reductase family 1 member C4|3-alpha-HSD1|chlordecone reductase; 3-alpha hydroxysteroid dehydrogenase, type I; dihydrodiol dehydrogenase 4|dihydrodiol dehydrogenase isozyme DD4|type I 3-alpha-hydroxysteroid dehydrogenase 40 0.005475 1.385 1 1 +1111 CHEK1 checkpoint kinase 1 11 protein-coding CHK1 serine/threonine-protein kinase Chk1|CHK1 checkpoint homolog|Checkpoint, S. pombe, homolog of, 1|Chk1-S|cell cycle checkpoint kinase 39 0.005338 7.707 1 1 +1112 FOXN3 forkhead box N3 14 protein-coding C14orf116|CHES1|PRO1635 forkhead box protein N3|checkpoint suppressor 1 43 0.005886 10.42 1 1 +1113 CHGA chromogranin A 14 protein-coding CGA chromogranin-A|SP-I|betagranin (N-terminal fragment of chromogranin A)|catestatin|chromofungin|parathyroid secretory protein 1|pituitary secretory protein I 31 0.004243 3.655 1 1 +1114 CHGB chromogranin B 20 protein-coding SCG1 secretogranin-1|cgB|secretogranin B|secretogranin I|sgI 94 0.01287 5.21 1 1 +1116 CHI3L1 chitinase 3 like 1 1 protein-coding ASRT7|CGP-39|GP-39|GP39|HC-gp39|HCGP-3P|YKL-40|YKL40|YYL-40|hCGP-39 chitinase-3-like protein 1|39 kDa synovial protein|cartilage glycoprotein 39|chitinase 3-like 1 (cartilage glycoprotein-39) 36 0.004927 8.971 1 1 +1117 CHI3L2 chitinase 3 like 2 1 protein-coding CHIL2|YKL-39|YKL39 chitinase-3-like protein 2|chondrocyte protein 39 31 0.004243 6.111 1 1 +1118 CHIT1 chitinase 1 1 protein-coding CHI3|CHIT|CHITD chitotriosidase-1|chitinase 1 (chitotriosidase)|plasma methylumbelliferyl tetra-N-acetylchitotetraoside hydrolase 51 0.006981 5.456 1 1 +1119 CHKA choline kinase alpha 11 protein-coding CHK|CK|CKI|EK choline kinase alpha|CHETK-alpha|ethanolamine kinase 25 0.003422 9.222 1 1 +1120 CHKB choline kinase beta 22 protein-coding CHETK|CHKL|CK|CKB|CKEKB|EK|EKB|MDCMC choline/ethanolamine kinase|choline kinase-like protein|ethanolamine kinase beta 23 0.003148 7.947 1 1 +1121 CHM CHM, Rab escort protein 1 X protein-coding DXS540|GGTA|HSD-32|REP-1|TCD rab proteins geranylgeranyltransferase component A 1|choroideremia (Rab escort protein 1) 54 0.007391 8.865 1 1 +1122 CHML CHM like, Rab escort protein 2 1 protein-coding REP2 rab proteins geranylgeranyltransferase component A 2|choroideraemia-like protein|choroideremia-like (Rab escort protein 2)|choroideremia-like protein 48 0.00657 8.576 1 1 +1123 CHN1 chimerin 1 2 protein-coding ARHGAP2|CHN|DURS2|NC|RHOGAP2 N-chimaerin|A-chimaerin|Rho GTPase-activating protein 2|a2-chimaerin|alpha-chimerin|chimaerin 1|chimerin (chimaerin) 1|n-chimerin 43 0.005886 7.853 1 1 +1124 CHN2 chimerin 2 7 protein-coding ARHGAP3|BCH|CHN2-3|RHOGAP3 beta-chimaerin|beta-chimerin|beta3-chimaerin|chimerin (chimaerin) 2|chimerin, beta-2|chimerin, testis-specific|rho-GTPase-activating protein 3 55 0.007528 7.09 1 1 +1128 CHRM1 cholinergic receptor muscarinic 1 11 protein-coding HM1|M1|M1R muscarinic acetylcholine receptor M1|acetylcholine receptor, muscarinic 1 27 0.003696 3.048 1 1 +1129 CHRM2 cholinergic receptor muscarinic 2 7 protein-coding HM2 muscarinic acetylcholine receptor M2|7TM receptor|acetylcholine receptor, muscarinic 2|cholinergic receptor, muscarinic 2|muscarinic M2 receptor 113 0.01547 0.7896 1 1 +1130 LYST lysosomal trafficking regulator 1 protein-coding CHS|CHS1 lysosomal-trafficking regulator|Chediak-Higashi syndrome 1|beige homolog 241 0.03299 9.221 1 1 +1131 CHRM3 cholinergic receptor muscarinic 3 1 protein-coding EGBRS|HM3|PBS muscarinic acetylcholine receptor M3|acetylcholine receptor, muscarinic 3|m3 muscarinic receptor 102 0.01396 4.176 1 1 +1132 CHRM4 cholinergic receptor muscarinic 4 11 protein-coding HM4|M4R muscarinic acetylcholine receptor M4|acetylcholine receptor, muscarinic 4 23 0.003148 2.25 1 1 +1133 CHRM5 cholinergic receptor muscarinic 5 15 protein-coding HM5 muscarinic acetylcholine receptor M5|acetylcholine receptor, muscarinic 5 28 0.003832 1.686 1 1 +1134 CHRNA1 cholinergic receptor nicotinic alpha 1 subunit 2 protein-coding ACHRA|ACHRD|CHRNA|CMS1A|CMS1B|CMS2A|FCCMS|SCCMS acetylcholine receptor subunit alpha|acetylcholine receptor, nicotinic, alpha 1 (muscle)|cholinergic receptor, nicotinic alpha 1|cholinergic 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 56 0.007665 3.34 1 1 +1135 CHRNA2 cholinergic receptor nicotinic alpha 2 subunit 8 protein-coding - neuronal acetylcholine receptor subunit alpha-2|acetylcholine receptor, nicotinic, alpha 2 (neuronal)|cholinergic receptor, nicotinic alpha 2|cholinergic receptor, nicotinic, alpha 2 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 2 (neuronal) 37 0.005064 1.434 1 1 +1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit 15 protein-coding LNCR2|NACHRA3|PAOD2 neuronal acetylcholine receptor subunit alpha-3|cholinergic receptor, nicotinic alpha 3|cholinergic receptor, nicotinic, alpha 3 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 3|neuronal nicotinic acetylcholine receptor, alpha3 subunit 42 0.005749 3.368 1 1 +1137 CHRNA4 cholinergic receptor nicotinic alpha 4 subunit 20 protein-coding BFNC|EBN|EBN1|NACHR|NACHRA4|NACRA4 neuronal acetylcholine receptor subunit alpha-4|cholinergic receptor, nicotinic alpha 4|cholinergic receptor, nicotinic, alpha 4 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 4|neuronal nicotinic acetylcholine receptor alpha-4 subunit 74 0.01013 2.073 1 1 +1138 CHRNA5 cholinergic receptor nicotinic alpha 5 subunit 15 protein-coding LNCR2 neuronal acetylcholine receptor subunit alpha-5|Cholinergic receptor, neuronal nicotinic, alpha polypeptide-5|acetylcholine receptor, nicotinic, alpha 5 (neuronal)|cholinergic receptor, nicotinic alpha 5|cholinergic receptor, nicotinic, alpha 5 (neuronal)|neuronal nicotinic acetylcholine receptor, alpha5 subunit 29 0.003969 5.628 1 1 +1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit 15 protein-coding CHRNA7-2|NACHRA7 neuronal acetylcholine receptor subunit alpha-7|a7 nicotinic acetylcholine receptor|alpha 7 neuronal nicotinic acetylcholine receptor|alpha-7 nicotinic cholinergic receptor subunit|cholinergic receptor, nicotinic alpha 7|cholinergic receptor, nicotinic, alpha 7 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 7|neuronal acetylcholine receptor protein, alpha-7 chain 25 0.003422 2.485 1 1 +1140 CHRNB1 cholinergic receptor nicotinic beta 1 subunit 17 protein-coding ACHRB|CHRNB|CMS1D|CMS2A|CMS2C|SCCMS acetylcholine receptor subunit beta|acetylcholine receptor, nicotinic, beta 1 (muscle)|cholinergic receptor, nicotinic beta 1|cholinergic receptor, nicotinic, beta 1 (muscle)|cholinergic receptor, nicotinic, beta polypeptide 1 (muscle) 40 0.005475 7.636 1 1 +1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit 1 protein-coding EFNL3|nAChRB2 neuronal acetylcholine receptor subunit beta-2|acetylcholine receptor, nicotinic, beta 2 (neuronal)|beta2 human neuronal nicotinic acetylcholine receptor|cholinergic receptor, nicotinic beta 2|cholinergic receptor, nicotinic, beta 2 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 2 (neuronal)|neuronal nicotinic acetylcholine receptor beta 2 45 0.006159 3.578 1 1 +1142 CHRNB3 cholinergic receptor nicotinic beta 3 subunit 8 protein-coding - neuronal acetylcholine receptor subunit beta-3|acetylcholine receptor, neuronal nicotinic, beta-3 subunit|acetylcholine receptor, nicotinic, beta 3 (neuronal)|cholinergic receptor, nicotinic beta 3|cholinergic receptor, nicotinic, beta 3 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 3 60 0.008212 0.223 1 1 +1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit 15 protein-coding - neuronal acetylcholine receptor subunit beta-4|acetylcholine receptor, nicotinic, beta 4 (neuronal)|cholinergic receptor, nicotinic beta 4|cholinergic receptor, nicotinic, beta 4 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 4|neuronal nicotinic receptor beta 4 subunit 65 0.008897 2.574 1 1 +1144 CHRND cholinergic receptor nicotinic delta subunit 2 protein-coding ACHRD|CMS2A|CMS3A|CMS3B|CMS3C|FCCMS|SCCMS acetylcholine receptor subunit delta|acetylcholine receptor, nicotinic, delta (muscle)|cholinergic receptor, nicotinic delta|cholinergic receptor, nicotinic, delta (muscle)|cholinergic receptor, nicotinic, delta polypeptide 67 0.009171 0.4836 1 1 +1145 CHRNE cholinergic receptor nicotinic epsilon subunit 17 protein-coding ACHRE|CMS1D|CMS1E|CMS2A|CMS4A|CMS4B|CMS4C|FCCMS|SCCMS acetylcholine receptor subunit epsilon|AchR epsilon subunit|acetylcholine receptor, nicotinic, epsilon (muscle)|cholinergic receptor, nicotinic epsilon|cholinergic receptor, nicotinic, epsilon (muscle)|cholinergic receptor, nicotinic, epsilon polypeptide 22 0.003011 4.184 1 1 +1146 CHRNG cholinergic receptor nicotinic gamma subunit 2 protein-coding ACHRG acetylcholine receptor subunit gamma|acetylcholine receptor, muscle, gamma subunit|acetylcholine receptor, nicotinic, gamma (muscle)|cholinergic receptor, nicotinic gamma|cholinergic receptor, nicotinic, gamma (muscle)|cholinergic receptor, nicotinic, gamma polypeptide 38 0.005201 0.7838 1 1 +1147 CHUK conserved helix-loop-helix ubiquitous kinase 10 protein-coding IKBKA|IKK-alpha|IKK1|IKKA|NFKBIKA|TCF16 inhibitor of nuclear factor kappa-B kinase subunit alpha|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|transcription factor 16 54 0.007391 9.011 1 1 +1149 CIDEA cell death-inducing DFFA-like effector a 18 protein-coding CIDE-A cell death activator CIDE-A 21 0.002874 1.373 1 1 +1152 CKB creatine kinase B 14 protein-coding B-CK|BCK|CKBB|HEL-211|HEL-S-29 creatine kinase B-type|creatine kinase B chain|creatine kinase brain|creatine kinase brain-type|epididymis luminal protein 211|epididymis secretory protein Li 29 21 0.002874 10.78 1 1 +1153 CIRBP cold inducible RNA binding protein 19 protein-coding CIRP cold-inducible RNA-binding protein|A18 hnRNP|glycine-rich RNA binding protein|testicular tissue protein Li 39 23 0.003148 12.18 1 1 +1154 CISH cytokine inducible SH2 containing protein 3 protein-coding BACTS2|CIS|CIS-1|G18|SOCS cytokine-inducible SH2-containing protein|cytokine-inducible inhibitor of signaling type 1B|suppressor of cytokine signaling 21 0.002874 8.422 1 1 +1155 TBCB tubulin folding cofactor B 19 protein-coding CG22|CKAP1|CKAPI tubulin-folding cofactor B|cytoskeleton associated protein 1|cytoskeleton-associated protein CKAPI|tubulin-specific chaperone B 16 0.00219 10.43 1 1 +1158 CKM creatine kinase, M-type 19 protein-coding CKMM|M-CK creatine kinase M-type|creatine kinase M chain|creatine kinase, muscle 29 0.003969 2.373 1 1 +1159 CKMT1B creatine kinase, mitochondrial 1B 15 protein-coding CKMT|CKMT1|UMTCK creatine kinase U-type, mitochondrial|U-MtCK|acidic-type mitochondrial creatine kinase|creatine kinase, mitochondrial 1 (ubiquitous)|mia-CK|ubiquitous mitochondrial creatine kinase 11 0.001506 7.774 1 1 +1160 CKMT2 creatine kinase, mitochondrial 2 5 protein-coding SMTCK creatine kinase S-type, mitochondrial|S-MtCK|basic-type mitochondrial creatine kinase|creatine kinase, mitochondrial 2 (sarcomeric)|mib-CK|sarcomeric mitochondrial creatine kinase 40 0.005475 4.07 1 1 +1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit 5 protein-coding CKN1|CSA|UVSS2 DNA excision repair protein ERCC-8|Cockayne syndrome WD-repeat protein CSA|cockayne syndrome WD repeat protein CSA|excision repair cross-complementation group 8|excision repair cross-complementing rodent repair deficiency, complementation group 8 30 0.004106 7.186 1 1 +1163 CKS1B CDC28 protein kinase regulatory subunit 1B 1 protein-coding CKS1|PNAS-16|PNAS-18|ckshs1 cyclin-dependent kinases regulatory subunit 1|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 11 0.001506 9.327 1 1 +1164 CKS2 CDC28 protein kinase regulatory subunit 2 9 protein-coding CKSHS2 cyclin-dependent kinases regulatory subunit 2|CDC28 protein kinase 2|CKS-2|CKS1(S. cerevisiae Cdc28/Cdc2 kinase subunit) homolog-2 6 0.0008212 8.955 1 1 +1173 AP2M1 adaptor related protein complex 2 mu 1 subunit 3 protein-coding AP50|CLAPM1|mu2 AP-2 complex subunit mu|AP-2 mu 2 chain|HA2 50 kDA subunit|adaptin-mu2|adaptor protein complex AP-2 subunit mu|adaptor-related protein complex 2 subunit mu|clathrin adaptor complex AP2, mu subunit|clathrin assembly protein complex 2 medium chain|clathrin assembly protein complex 2 mu 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 31 0.004243 12.92 1 1 +1174 AP1S1 adaptor related protein complex 1 sigma 1 subunit 7 protein-coding AP19|CLAPS1|EKV3|MEDNIK|SIGMA1A AP-1 complex subunit sigma-1A|HA1 19 kDa subunit|adapter-related protein complex 1 sigma-1A subunit|adaptor protein complex AP-1 subunit sigma-1A|adaptor-related protein complex 1 subunit sigma-1A|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|sigma1A subunit of AP-1 clathrin adaptor complex|sigma1A-adaptin 37 0.005064 10.11 1 1 +1175 AP2S1 adaptor related protein complex 2 sigma 1 subunit 19 protein-coding AP17|CLAPS2|FBH3|FBHOk|HHC3 AP-2 complex subunit sigma|HA2 17 kDa subunit|adaptor protein complex AP-2 subunit sigma|clathrin assembly protein 2 sigma 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 2 0.0002737 10.59 1 1 +1176 AP3S1 adaptor related protein complex 3 sigma 1 subunit 5 protein-coding CLAPS3|Sigma3A AP-3 complex subunit sigma-1|adapter-related protein complex 3 subunit sigma-1|adaptor-related protein complex 3 subunit sigma-1|clathrin adaptor complex AP3, sigma-3A subunit|clathrin-associated/assembly/adapter protein, small 3|clathrin-associated/assembly/adaptor protein, small 3 (22kD)|sigma-adaptin 3a 19 0.002601 9.904 1 1 +1178 CLC Charcot-Leyden crystal galectin 19 protein-coding GAL10|Gal-10|LGALS10|LGALS10A|LPPL_HUMAN galectin-10|Charcot-Leyden crystal protein|eosinophil lysophospholipase|lectin, galactoside-binding, soluble, 10|lysolecithin acylhydrolase 13 0.001779 0.7239 1 1 +1179 CLCA1 chloride channel accessory 1 1 protein-coding CACC|CACC1|CLCRG1|CaCC-1|GOB5|hCLCA1|hCaCC-1 calcium-activated chloride channel regulator 1|CLCA family member 1, chloride channel regulator|calcium-activated chloride channel family member 1|calcium-activated chloride channel protein 1|calcium-dependent chloride channel-1|chloride channel regulator 1|chloride channel, calcium activated, family member 1 78 0.01068 0.6975 1 1 +1180 CLCN1 chloride voltage-gated channel 1 7 protein-coding CLC1 chloride channel protein 1|chloride channel 1, skeletal muscle|chloride channel protein, skeletal muscle|chloride channel, voltage-sensitive 1|clC-1 97 0.01328 1.691 1 1 +1181 CLCN2 chloride voltage-gated channel 2 3 protein-coding CIC-2|CLC2|ECA2|ECA3|EGI11|EGI3|EGMA|EJM6|EJM8|LKPAT|clC-2 chloride channel protein 2|chloride channel 2|chloride channel, voltage-sensitive 2 69 0.009444 7.199 1 1 +1182 CLCN3 chloride voltage-gated channel 3 4 protein-coding CLC3|ClC-3 H(+)/Cl(-) exchange transporter 3|chloride channel 3|chloride channel protein 3|chloride channel, voltage-sensitive 3|chloride transporter ClC-3 59 0.008076 10.11 1 1 +1183 CLCN4 chloride voltage-gated channel 4 X protein-coding CLC4|ClC-4|ClC-4A|MRX15|MRX49 H(+)/Cl(-) exchange transporter 4|chloride channel 4|chloride channel protein 4|chloride channel, voltage-sensitive 4|chloride transporter ClC-4 58 0.007939 7.404 1 1 +1184 CLCN5 chloride voltage-gated channel 5 X protein-coding CLC5|CLCK2|ClC-5|DENTS|NPHL1|NPHL2|XLRH|XRN|hCIC-K2 H(+)/Cl(-) exchange transporter 5|chloride channel, voltage-sensitive 5|chloride transporter ClC-5|voltage-gated chloride ion channel CLCN5 51 0.006981 8.36 1 1 +1185 CLCN6 chloride voltage-gated channel 6 1 protein-coding CLC-6 chloride transport protein 6|chloride channel, voltage-sensitive 6 67 0.009171 8.75 1 1 +1186 CLCN7 chloride voltage-gated channel 7 16 protein-coding CLC-7|CLC7|OPTA2|OPTB4|PPP1R63 H(+)/Cl(-) exchange transporter 7|chloride channel 7 alpha subunit|chloride channel protein 7|chloride channel, voltage-sensitive 7|protein phosphatase 1, regulatory subunit 63 48 0.00657 11.03 1 1 +1187 CLCNKA chloride voltage-gated channel Ka 1 protein-coding CLCK1|ClC-K1|hClC-Ka chloride channel protein ClC-Ka|chloride channel Ka|chloride channel, kidney, A|chloride channel, voltage-sensitive Ka 71 0.009718 2.629 1 1 +1188 CLCNKB chloride voltage-gated channel Kb 1 protein-coding CLCKB|ClC-K2|ClC-Kb chloride channel protein ClC-Kb|chloride channel, kidney, B|chloride channel, voltage-sensitive Kb 60 0.008212 2.545 1 1 +1191 CLU clusterin 8 protein-coding AAG4|APO-J|APOJ|CLI|CLU1|CLU2|KUB1|NA1/NA2|SGP-2|SGP2|SP-40|TRPM-2|TRPM2 clusterin|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 29 0.003969 13.4 1 1 +1192 CLIC1 chloride intracellular channel 1 6 protein-coding G6|NCC27 chloride intracellular channel protein 1|RNCC protein|chloride channel ABP|hRNCC|nuclear chloride ion channel 27|nuclear chloride ion channel protein|p64CLCP|regulatory nuclear chloride ion channel protein 19 0.002601 12.57 1 1 +1193 CLIC2 chloride intracellular channel 2 X protein-coding CLIC2b|MRXS32|XAP121 chloride intracellular channel protein 2 16 0.00219 7.638 1 1 +1195 CLK1 CDC like kinase 1 2 protein-coding CLK|CLK/STY|STY dual specificity protein kinase CLK1|CDC28/CDC2-like kinase|protein tyrosine kinase STY 44 0.006022 10.36 1 1 +1196 CLK2 CDC like kinase 2 1 protein-coding - dual specificity protein kinase CLK2|CLK kinase 66 0.009034 9.533 1 1 +1197 CLK2P1 CDC like kinase 2, pseudogene 1 7 pseudo CLK2P CDC-like kinase 2, pseudogene 2 0.0002737 4.192 1 1 +1198 CLK3 CDC like kinase 3 15 protein-coding PHCLK3|PHCLK3/152 dual specificity protein kinase CLK3 45 0.006159 9.722 1 1 +1200 TPP1 tripeptidyl peptidase 1 11 protein-coding CLN2|GIG1|LPIC|SCAR7|TPP-1 tripeptidyl-peptidase 1|cell growth-inhibiting gene 1 protein|growth-inhibiting protein 1|lysosomal pepstatin insensitive protease|tripeptidyl aminopeptidase|tripeptidyl peptidase I 39 0.005338 12.11 1 1 +1201 CLN3 CLN3, battenin 16 protein-coding BTN1|BTS|JNCL battenin|batten disease protein|ceroid-lipofuscinosis, neuronal 3 42 0.005749 10.13 1 1 +1203 CLN5 ceroid-lipofuscinosis, neuronal 5 13 protein-coding NCL ceroid-lipofuscinosis neuronal protein 5 21 0.002874 9.392 1 1 +1207 CLNS1A chloride nucleotide-sensitive channel 1A 11 protein-coding CLCI|CLNS1B|ICln methylosome subunit pICln|chloride channel regulatory protein|chloride channel, nucleotide sensitive 1A|chloride conductance regulatory protein ICln|chloride ion current inducer protein|i(Cln)|reticulocyte pICln|reticulocyte protein ICln 11 0.001506 10.71 1 1 +1208 CLPS colipase 6 protein-coding - colipase|colipase, pancreatic|pancreatic colipase preproprotein 10 0.001369 0.4412 1 1 +1209 CLPTM1 CLPTM1, transmembrane protein 19 protein-coding - cleft lip and palate transmembrane protein 1|cleft lip and palate associated transmembrane protein 1 46 0.006296 11.7 1 1 +1211 CLTA clathrin light chain A 9 protein-coding LCA clathrin light chain A|clathrin, light polypeptide (Lca) 10 0.001369 11.49 1 1 +1212 CLTB clathrin light chain B 5 protein-coding LCB clathrin light chain B|clathrin, light chain (Lcb)|clathrin, light polypeptide (Lcb) 14 0.001916 10.72 1 1 +1213 CLTC clathrin heavy chain 17 protein-coding CHC|CHC17|CLH-17|CLTCL2|Hc clathrin heavy chain 1|clathrin heavy chain on chromosome 17|clathrin, heavy chain (Hc)|clathrin, heavy polypeptide (Hc)|clathrin, heavy polypeptide-like 2 105 0.01437 13.28 1 1 +1215 CMA1 chymase 1 14 protein-coding CYH|MCT1|chymase chymase|alpha-chymase|chymase 1 preproprotein transcript E|chymase 1 preproprotein transcript I|chymase 1, mast cell|chymase, heart|chymase, mast cell|mast cell protease I 25 0.003422 1.142 1 1 +1230 CCR1 C-C motif chemokine receptor 1 3 protein-coding CD191|CKR-1|CKR1|CMKBR1|HM145|MIP1aR|SCYAR1 C-C chemokine receptor type 1|C-C CKR-1|CC-CKR-1|CCR-1|LD78 receptor|MIP-1alpha-R|RANTES receptor|RANTES-R|chemokine (C-C motif) receptor 1|macrophage inflammatory protein 1-alpha receptor 28 0.003832 7.207 1 1 +1232 CCR3 C-C motif chemokine receptor 3 3 protein-coding CC-CKR-3|CD193|CKR3|CMKBR3 C-C chemokine receptor type 3|C-C CKR-3|CC chemokine receptor 3|CCR-3|b-chemokine receptor|chemokine (C-C motif) receptor 3|eosinophil CC chemokine receptor 3|eosinophil eotaxin receptor 40 0.005475 1.651 1 1 +1233 CCR4 C-C motif chemokine receptor 4 3 protein-coding CC-CKR-4|CD194|CKR4|CMKBR4|ChemR13|HGCN:14099|K5-5 C-C chemokine receptor type 4|C-C CKR-4|CCR-4|chemokine (C-C motif) receptor 4|chemokine (C-C) receptor 4 30 0.004106 3.325 1 1 +1234 CCR5 C-C motif chemokine receptor 5 (gene/pseudogene) 3 protein-coding CC-CKR-5|CCCKR5|CCR-5|CD195|CKR-5|CKR5|CMKBR5|IDDM22 C-C chemokine receptor type 5|C-C motif chemokine receptor 5 A159A|HIV-1 fusion coreceptor|chemokine (C-C motif) receptor 5|chemokine receptor CCR5|chemr13 31 0.004243 6.568 1 1 +1235 CCR6 C-C motif chemokine receptor 6 6 protein-coding BN-1|C-C CKR-6|CC-CKR-6|CCR-6|CD196|CKR-L3|CKRL3|CMKBR6|DCR2|DRY6|GPR29|GPRCY4|STRL22 C-C chemokine receptor type 6|G protein-coupled receptor 29|LARC receptor|chemokine (C-C motif) receptor 6|chemokine (C-C) receptor 6|chemokine receptor-like 3|seven-transmembrane receptor, lymphocyte, 22 31 0.004243 5.323 1 1 +1236 CCR7 C-C motif chemokine receptor 7 17 protein-coding BLR2|CC-CKR-7|CCR-7|CD197|CDw197|CMKBR7|EBI1 C-C chemokine receptor type 7|Bukitt's lymphoma receptor 2|CC chemokine receptor 7|EBV-induced G protein-coupled receptor 1|Epstein-Barr virus induced gene 1|Epstein-Barr virus-induced G-protein coupled receptor 1|MIP-3 beta receptor|chemokine (C-C motif) receptor 7|lymphocyte-specific G protein-coupled peptide receptor 24 0.003285 5.502 1 1 +1237 CCR8 C-C motif chemokine receptor 8 3 protein-coding CC-CKR-8|CCR-8|CDw198|CKRL1|CMKBR8|CMKBRL2|CY6|GPRCY6|TER1 C-C chemokine receptor type 8|CC chemokine receptor 8|CC chemokine receptor CHEMR1|CC-chemokine receptor chemr1|chemokine (C-C motif) receptor 8|chemokine (C-C) receptor 8|chemokine (C-C) receptor-like 2|chemokine receptor-like 1 24 0.003285 2.316 1 1 +1238 ACKR2 atypical chemokine receptor 2 3 protein-coding CCBP2|CCR10|CCR9|CMKBR9|D6|hD6 atypical chemokine receptor 2|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 14 0.001916 5.108 1 1 +1240 CMKLR1 chemerin chemokine-like receptor 1 12 protein-coding CHEMERINR|ChemR23|DEZ|RVER1 chemokine-like receptor 1|G-protein coupled receptor ChemR23|G-protein coupled receptor DEZ|chemerin receptor|chemokine receptor-like 1|orphan G-protein coupled receptor, Dez|resolvin E1 receptor 55 0.007528 7.805 1 1 +1241 LTB4R leukotriene B4 receptor 14 protein-coding BLT1|BLTR|CMKRL1|GPR16|LTB4R1|LTBR1|P2RY7|P2Y7 leukotriene B4 receptor 1|G protein-coupled receptor 16|LTB4-R 1|LTB4-R1|P2Y purinoceptor 7|chemoattractant receptor-like 1|chemokine receptor-like 1|purinergic receptor P2Y, G-protein coupled, 7 18 0.002464 7.56 1 1 +1244 ABCC2 ATP binding cassette subfamily C member 2 10 protein-coding ABC30|CMOAT|DJS|MRP2|cMRP canalicular multispecific organic anion transporter 1|ATP-binding cassette, sub-family C (CFTR/MRP), member 2|canalicular multidrug resistance protein|multidrug resistance-associated protein 2 88 0.01204 4.185 1 1 +1258 CNGB1 cyclic nucleotide gated channel beta 1 16 protein-coding CNCG2|CNCG3L|CNCG4|CNG4|CNGB1B|GAR1|GARP|GARP2|RCNC2|RCNCb|RCNCbeta|RP45 cyclic nucleotide-gated cation channel beta-1|CNG channel beta-1|CNG-4|cyclic nucleotide-gated cation channel 4|cyclic nucleotide-gated cation channel gamma|cyclic nucleotide-gated cation channel modulatory subunit|glutamic-acid-rich protein 90 0.01232 2.408 1 1 +1259 CNGA1 cyclic nucleotide gated channel alpha 1 4 protein-coding CNCG|CNCG1|CNG-1|CNG1|RCNC1|RCNCa|RCNCalpha|RP49 cGMP-gated cation channel alpha-1|CNG channel alpha-1|cyclic nucleotide-gated cation channel 1|cyclic nucleotide-gated channel, photoreceptor|interleukin-1 homologue|rod photoreceptor cGMP-gated channel subunit alpha 53 0.007254 4.049 1 1 +1260 CNGA2 cyclic nucleotide gated channel alpha 2 X protein-coding CNCA|CNCA1|CNG2|OCNC1|OCNCALPHA|OCNCa cyclic nucleotide-gated olfactory channel|CNG channel alpha-2|cyclic-nucleotide-gated cation channel 2 73 0.009992 0.2237 1 1 +1261 CNGA3 cyclic nucleotide gated channel alpha 3 2 protein-coding ACHM2|CCNC1|CCNCa|CCNCalpha|CNCG3|CNG3 cyclic nucleotide-gated cation channel alpha-3|CNG channel alpha-3|CNG-3|cone photoreceptor cGMP-gated channel alpha subunit|cone photoreceptor cGMP-gated channel subunit alpha 87 0.01191 2.208 1 1 +1262 CNGA4 cyclic nucleotide gated channel alpha 4 11 protein-coding CNCA2|CNG-4|CNG4|CNG5|CNGB2|OCNC2|OCNCBETA|OCNCb cyclic nucleotide-gated cation channel alpha-4|CNG channel alpha-4|cyclic nucleotide gated channel beta 2 68 0.009307 2.037 1 1 +1263 PLK3 polo like kinase 3 1 protein-coding CNK|FNK|PLK-3|PRK serine/threonine-protein kinase PLK3|FGF-inducible kinase|cytokine-inducible serine/threonine-protein kinase|proliferation-related kinase 46 0.006296 8.299 1 1 +1264 CNN1 calponin 1 19 protein-coding HEL-S-14|SMCC|Sm-Calp calponin-1|basic calponin|calponin 1, basic, smooth muscle|calponin H1, smooth muscle|calponins, basic|epididymis secretory protein Li 14 22 0.003011 7.567 1 1 +1265 CNN2 calponin 2 19 protein-coding - calponin-2|calponin H2, smooth muscle|neutral calponin 21 0.002874 11.26 1 1 +1266 CNN3 calponin 3 1 protein-coding - calponin-3|calponin 3, acidic|calponin, acidic isoform|dJ639P13.2.2 (acidic calponin 3) 17 0.002327 11.65 1 1 +1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase 17 protein-coding CNP1 2',3'-cyclic-nucleotide 3'-phosphodiesterase|2', 3' cyclic nucleotide 3' phosphohydrolase|CNPase 19 0.002601 11.43 1 1 +1268 CNR1 cannabinoid receptor 1 6 protein-coding CANN6|CB-R|CB1|CB1A|CB1K5|CB1R|CNR cannabinoid receptor 1|cannabinoid receptor 1 (brain)|central cannabinoid receptor 61 0.008349 4.808 1 1 +1269 CNR2 cannabinoid receptor 2 1 protein-coding CB-2|CB2|CX5 cannabinoid receptor 2|cannabinoid receptor 2 (macrophage)|testis-dominant CNR2 isoform CB2 26 0.003559 1.556 1 1 +1270 CNTF ciliary neurotrophic factor 11 protein-coding HCNTF ciliary neurotrophic factor 19 0.002601 3.293 1 1 +1271 CNTFR ciliary neurotrophic factor receptor 9 protein-coding - ciliary neurotrophic factor receptor subunit alpha|CNTF receptor subunit alpha|CNTFR-alpha 23 0.003148 4.636 1 1 +1272 CNTN1 contactin 1 12 protein-coding F3|GP135|MYPCN contactin-1|glycoprotein gP135|neural cell surface protein F3 133 0.0182 5.375 1 1 +1277 COL1A1 collagen type I alpha 1 chain 17 protein-coding EDSC|OI1|OI2|OI3|OI4 collagen alpha-1(I) chain|alpha-1 type I collagen|alpha1(I) procollagen|collagen alpha 1 chain type I|collagen alpha-1(I) chain preproprotein|collagen of skin, tendon and bone, alpha-1 chain|collagen, type I, alpha 1|pro-alpha-1 collagen type 1|type I proalpha 1|type I procollagen alpha 1 chain 108 0.01478 14.14 1 1 +1278 COL1A2 collagen type I alpha 2 chain 7 protein-coding OI4 collagen alpha-2(I) chain|alpha 2 type I procollagen|alpha 2(I) procollagen|alpha 2(I)-collagen|alpha-2 type I collagen|collagen I, alpha-2 polypeptide|collagen of skin, tendon and bone, alpha-2 chain|collagen, type I, alpha 2|type I procollagen 166 0.02272 13.87 1 1 +1280 COL2A1 collagen type II alpha 1 chain 12 protein-coding ANFH|AOM|COL11A3|SEDC|STL1 collagen alpha-1(II) chain|alpha-1 type II collagen|arthroophthalmopathy, progressive (Stickler syndrome)|cartilage collagen|chondrocalcin|collagen II, alpha-1 polypeptide|collagen, type II, alpha 1 119 0.01629 3.192 1 1 +1281 COL3A1 collagen type III alpha 1 chain 2 protein-coding EDS4A collagen alpha-1(III) chain|Ehlers-Danlos syndrome type IV, autosomal dominant|alpha-1 type III collagen|alpha1 (III) collagen|collagen, fetal|collagen, type III, alpha 1 185 0.02532 13.65 1 1 +1282 COL4A1 collagen type IV alpha 1 chain 13 protein-coding BSVD|RATOR collagen alpha-1(IV) chain|COL4A1 NC1 domain|arresten|collagen IV, alpha-1 polypeptide|collagen of basement membrane, alpha-1 chain|collagen, type IV, alpha 1 142 0.01944 12.51 1 1 +1284 COL4A2 collagen type IV alpha 2 chain 13 protein-coding ICH|POREN2 collagen alpha-2(IV) chain|canstatin 138 0.01889 12.73 1 1 +1285 COL4A3 collagen type IV alpha 3 chain 2 protein-coding - collagen alpha-3(IV) chain|collagen IV, alpha-3 polypeptide|collagen, type IV, alpha 3 (Goodpasture antigen)|tumstatin 107 0.01465 4.485 1 1 +1286 COL4A4 collagen type IV alpha 4 chain 2 protein-coding CA44 collagen alpha-4(IV) chain|Collagen IV, alpha-4 polypeptide|collagen of basement membrane, alpha-4 chain|collagen, type IV, alpha 4 148 0.02026 6.135 1 1 +1287 COL4A5 collagen type IV alpha 5 chain X protein-coding ASLN|ATS|CA54 collagen alpha-5(IV) chain|collagen IV, alpha-5 polypeptide|collagen of basement membrane, alpha-5 chain|collagen, type IV, alpha 5|dA149D17.3|dA24A23.1 150 0.02053 8.405 1 1 +1288 COL4A6 collagen type IV alpha 6 chain X protein-coding CXDELq22.3|DELXq22.3|DFNX6 collagen alpha-6(IV) chain|collagen IV, alpha-6 polypeptide|collagen of basement membrane, alpha-6|collagen, type IV, alpha 6|dJ889N15.4 (Collagen Alpha 6(IV)) 119 0.01629 5.223 1 1 +1289 COL5A1 collagen type V alpha 1 chain 9 protein-coding EDSC collagen alpha-1(V) chain|collagen, type V, alpha 1 194 0.02655 11.13 1 1 +1290 COL5A2 collagen type V alpha 2 chain 2 protein-coding EDSC collagen alpha-2(V) chain|AB collagen|collagen, fetal membrane, A polypeptide|collagen, type V, alpha 2|type V preprocollagen alpha 2 chain 177 0.02423 10.93 1 1 +1291 COL6A1 collagen type VI alpha 1 chain 21 protein-coding BTHLM1|OPLL|UCHMD1 collagen alpha-1(VI) chain|alpha 1 (VI) chain (61 AA)|collagen VI, alpha-1 polypeptide|collagen, type VI, alpha 1 84 0.0115 12.5 1 1 +1292 COL6A2 collagen type VI alpha 2 chain 21 protein-coding BTHLM1|PP3610|UCMD1 collagen alpha-2(VI) chain|collagen VI, alpha-2 polypeptide|collagen, type VI, alpha 2|human mRNA for collagen VI alpha-2 C-terminal globular domain 118 0.01615 12.54 1 1 +1293 COL6A3 collagen type VI alpha 3 chain 2 protein-coding BTHLM1|DYT27|UCMD1 collagen alpha-3(VI) chain|collagen VI, alpha-3 polypeptide|collagen, type VI, alpha 3 302 0.04134 11.9 1 1 +1294 COL7A1 collagen type VII alpha 1 chain 3 protein-coding EBD1|EBDCT|EBR1|NDNC8 collagen alpha-1(VII) chain|LC collagen|collagen VII, alpha-1 polypeptide|collagen, type VII, alpha 1|long-chain collagen 213 0.02915 8.13 1 1 +1295 COL8A1 collagen type VIII alpha 1 chain 3 protein-coding C3orf7 collagen alpha-1(VIII) chain|cell proliferation-inducing protein 41|collagen VIII, alpha-1 polypeptide|collagen, type VIII, alpha 1|endothelial collagen|smag-64|smooth muscle cell-expressed and macrophage conditioned medium-induced protein smag-64 70 0.009581 7.574 1 1 +1296 COL8A2 collagen type VIII alpha 2 chain 1 protein-coding FECD|FECD1|PPCD|PPCD2 collagen alpha-2(VIII) chain|collagen VIII, alpha-2 polypeptide|collagen, type VIII, alpha 2|endothelial collagen 43 0.005886 8.32 1 1 +1297 COL9A1 collagen type IX alpha 1 chain 6 protein-coding DJ149L1.1.2|EDM6|MED|STL4 collagen alpha-1(IX) chain|alpha-1(IX) collagen chain|cartilage-specific short collagen|collagen IX, alpha-1 polypeptide|collagen, type IX, alpha 1 125 0.01711 2.926 1 1 +1298 COL9A2 collagen type IX alpha 2 chain 1 protein-coding DJ39G22.4|EDM2|MED|STL5 collagen alpha-2(IX) chain|alpha 2 type IX collagen|collagen IX, alpha-2 polypeptide|collagen, type IX, alpha 2 50 0.006844 7.743 1 1 +1299 COL9A3 collagen type IX alpha 3 chain 20 protein-coding DJ885L7.4.1|EDM3|IDD|MED collagen alpha-3(IX) chain|collagen IX, alpha-3 polypeptide|collagen type IX proteoglycan|collagen, type IX, alpha 3 58 0.007939 5.786 1 1 +1300 COL10A1 collagen type X alpha 1 chain 6 protein-coding - collagen alpha-1(X) chain|Schmid metaphyseal chondrodysplasia|collagen X, alpha-1 polypeptide|collagen, type X, alpha 1 30 0.004106 6.449 1 1 +1301 COL11A1 collagen type XI alpha 1 chain 1 protein-coding CO11A1|COLL6|STL2 collagen alpha-1(XI) chain|collagen XI, alpha-1 polypeptide|collagen, type XI, alpha 1 379 0.05188 6.869 1 1 +1302 COL11A2 collagen type XI alpha 2 chain 6 protein-coding DFNA13|DFNB53|FBCG2|HKE5|PARP|STL3 collagen alpha-2(XI) chain|collagen, type XI, alpha 2|pro-a2 chain of collagen type XI 144 0.01971 4.588 1 1 +1303 COL12A1 collagen type XII alpha 1 chain 6 protein-coding BA209D8.1|BTHLM2|COL12A1L|DJ234P15.1|UCMD2 collagen alpha-1(XII) chain|collagen type XII proteoglycan|collagen, type XII, alpha 1 273 0.03737 10.52 1 1 +1305 COL13A1 collagen type XIII alpha 1 chain 10 protein-coding CMS19|COLXIIIA1 collagen alpha-1(XIII) chain|collagen, type XIII, alpha 1 54 0.007391 4.883 1 1 +1306 COL15A1 collagen type XV alpha 1 chain 9 protein-coding - collagen alpha-1(XV) chain|collagen XV, alpha-1 polypeptide|collagen type XV proteoglycan|collagen, type XV, alpha 1|endostatin-XV|restin 138 0.01889 9.688 1 1 +1307 COL16A1 collagen type XVI alpha 1 chain 1 protein-coding 447AA|FP1572 collagen alpha-1(XVI) chain|alpha 1 type XVI collagen|collagen XVI, alpha-1 polypeptide|collagen, type XVI, alpha 1 101 0.01382 9.667 1 1 +1308 COL17A1 collagen type XVII alpha 1 chain 10 protein-coding BA16H23.2|BP180|BPA-2|BPAG2|ERED|LAD-1 collagen alpha-1(XVII) chain|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, type XVII, alpha 1|type XVII collagen alpha-1 92 0.01259 7.091 1 1 +1310 COL19A1 collagen type XIX alpha 1 chain 6 protein-coding COL9A1L|D6S228E collagen alpha-1(XIX) chain|a1 chain of type XIX collagen|collagen XIX, alpha-1 polypeptide|collagen alpha 1 (Y) chain|collagen, type XIX, alpha 1 171 0.02341 1.908 1 1 +1311 COMP cartilage oligomeric matrix protein 19 protein-coding EDM1|EPD1|MED|PSACH|THBS5|TSP5 cartilage oligomeric matrix protein|cartilage oligomeric matrix protein (pseudoachondroplasia, epiphyseal dysplasia 1, multiple)|pseudoachondroplasia (epiphyseal dysplasia 1, multiple)|thrombospondin-5 43 0.005886 6.557 1 1 +1312 COMT catechol-O-methyltransferase 22 protein-coding HEL-S-98n catechol O-methyltransferase|catechol-O-methyltransferase isoform|epididymis secretory sperm binding protein Li 98n|testicular tissue protein Li 42 12 0.001642 11.09 1 1 +1314 COPA coatomer protein complex subunit alpha 1 protein-coding AILJK|HEP-COP coatomer subunit alpha|HEPCOP|alpha coat protein|alpha-COP|proxenin|xenin 86 0.01177 12.53 1 1 +1315 COPB1 coatomer protein complex subunit beta 1 11 protein-coding COPB coatomer subunit beta|beta coat protein|beta-cop 63 0.008623 11.5 1 1 +1316 KLF6 Kruppel like factor 6 10 protein-coding BCD1|CBA1|COPEB|CPBP|GBF|PAC1|ST12|ZF9 Krueppel-like factor 6|B-cell-derived protein 1|GC-rich binding factor|GC-rich sites-binding factor GBF|Kruppel-like zinc finger protein Zf9|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 34 0.004654 11.43 1 1 +1317 SLC31A1 solute carrier family 31 member 1 9 protein-coding COPT1|CTR1 high affinity copper uptake protein 1|copper transport 1 homolog|copper transporter 1|solute carrier family 31 (copper transporter), member 1|solute carrier family 31 (copper transporters), member 1 8 0.001095 10.27 1 1 +1318 SLC31A2 solute carrier family 31 member 2 9 protein-coding COPT2|CTR2|hCTR2 probable low affinity copper uptake protein 2|copper transporter 2|solute carrier family 31 (copper transporter), member 2|solute carrier family 31 (copper transporters), member 2 9 0.001232 8.387 1 1 +1325 CORT cortistatin 1 protein-coding CST-14|CST-17|CST-29 cortistatin|cortistatin-14|cortistatin-17|cortistatin-29|prepro-cortistatin|preprocortistatin 4 0.0005475 3.046 1 1 +1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 10 protein-coding AURA2|COT|EST|ESTF|MEKK8|TPL2|Tpl-2|c-COT mitogen-activated protein kinase kinase kinase 8|Ewing sarcoma transformant|augmented in rheumatoid arthritis 2|cot (cancer Osaka thyroid) oncogene|proto-oncogene c-Cot|proto-oncogene serine/threoine protein kinase|tumor progression locus 2 28 0.003832 7.27 1 1 +1327 COX4I1 cytochrome c oxidase subunit 4I1 16 protein-coding COX IV-1|COX4|COX4-1|COXIV|COXIV-1 cytochrome c oxidase subunit 4 isoform 1, mitochondrial|cytochrome c oxidase polypeptide IV|cytochrome c oxidase subunit IV 14 0.001916 12.52 1 1 +1329 COX5B cytochrome c oxidase subunit 5B 2 protein-coding COXVB cytochrome c oxidase subunit 5B, mitochondrial|cytochrome c oxidase polypeptide VB, mitochondrial|cytochrome c oxidase subunit Vb 9 0.001232 11.05 1 1 +1337 COX6A1 cytochrome c oxidase subunit 6A1 12 protein-coding CMTRID|COX6A|COX6AL cytochrome c oxidase subunit 6A1, mitochondrial|COX VIa-L|cytochrome C oxidase subunit VIa homolog|cytochrome c oxidase polypeptide VIa-liver|cytochrome c oxidase subunit VIA-liver|cytochrome c oxidase subunit VIa polypeptide 1 8 0.001095 11.37 1 1 +1339 COX6A2 cytochrome c oxidase subunit 6A2 16 protein-coding COX6AH|COXVIAH cytochrome c oxidase subunit 6A2, mitochondrial|COX VIa-M|cytochrome c oxidase polypeptide VIa-heart|cytochrome c oxidase subunit VIA-muscle|cytochrome c oxidase subunit VIa polypeptide 2 3 0.0004106 1.167 1 1 +1340 COX6B1 cytochrome c oxidase subunit 6B1 19 protein-coding COX6B|COXG|COXVIb1 cytochrome c oxidase subunit 6B1|COX VIb-1|cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) 9 0.001232 11.74 1 1 +1345 COX6C cytochrome c oxidase subunit 6C 8 protein-coding - cytochrome c oxidase subunit 6C|cytochrome c oxidase polypeptide VIc|cytochrome c oxidase subunit VIc preprotein 8 0.001095 11.37 1 1 +1346 COX7A1 cytochrome c oxidase subunit 7A1 19 protein-coding COX7A|COX7AH|COX7AM cytochrome c oxidase subunit 7A1, mitochondrial|cytochrome c oxidase subunit VIIa heart/muscle isoform|cytochrome c oxidase subunit VIIa polypeptide 1 (muscle)|cytochrome c oxidase subunit VIIa-H|cytochrome c oxidase subunit VIIa-M|cytochrome c oxidase subunit VIIa-heart|cytochrome c oxidase subunit VIIa-muscle 8 0.001095 6.631 1 1 +1347 COX7A2 cytochrome c oxidase subunit 7A2 6 protein-coding COX7AL|COX7AL1|COXVIIAL|COXVIIa-L|VIIAL cytochrome c oxidase subunit 7A2, mitochondrial|cytochrome c oxidase polypeptide 7A2, mitochondrial|cytochrome c oxidase polypeptide VIIa-liver/heart|cytochrome c oxidase subunit VIIa polypeptide 2 (liver)|cytochrome c oxidase subunit VIIa-L|cytochrome c oxidase subunit VIIa-liver/heart|cytochrome c oxidase subunit VIIaL|hepatic cytochrome-c oxidase chain VIIa 13 0.001779 10.87 1 1 +1349 COX7B cytochrome c oxidase subunit 7B X protein-coding APLCC|LSDMCA2 cytochrome c oxidase subunit 7B, mitochondrial|cytochrome c oxidase polypeptide VIIb|cytochrome c oxidase subunit VIIb|cytochrome-c oxidase chain VIIb 7 0.0009581 10.83 1 1 +1350 COX7C cytochrome c oxidase subunit 7C 5 protein-coding - cytochrome c oxidase subunit 7C, mitochondrial|cytochrome c oxidase polypeptide VIIc|cytochrome c oxidase subunit VIIc|cytochrome-c oxidase chain VIIc 4 0.0005475 11.68 1 1 +1351 COX8A cytochrome c oxidase subunit 8A 11 protein-coding COX|COX8|COX8-2|COX8L|VIII|VIII-L cytochrome c oxidase subunit 8A, mitochondrial|cytochrome c oxidase polypeptide VIII-liver/heart|cytochrome c oxidase subunit 8-2|cytochrome c oxidase subunit 8A (ubiquitous)|cytochrome c oxidase subunit VIII|cytochrome c oxidase subunit VIIIA (ubiquitous) 5 0.0006844 11.49 1 1 +1352 COX10 COX10, heme A:farnesyltransferase cytochrome c oxidase assembly factor 17 protein-coding - protoheme IX farnesyltransferase, mitochondrial|COX10 homolog, cytochrome c oxidase assembly protein, heme A: farnesyltransferase|cytochrome c oxidase assembly homolog 10|cytochrome c oxidase assembly protein|cytochrome c oxidase subunit X|heme A: farnesyltransferase|heme O synthase 35 0.004791 8.192 1 1 +1353 COX11 COX11, cytochrome c oxidase copper chaperone 17 protein-coding COX11P cytochrome c oxidase assembly protein COX11, mitochondrial|COX11 homolog, cytochrome c oxidase assembly protein|cytochrome c oxidase subunit 11 20 0.002737 9.622 1 1 +1355 COX15 COX15, cytochrome c oxidase assembly homolog 10 protein-coding CEMCOX2 cytochrome c oxidase assembly protein COX15 homolog|COX15 homolog, cytochrome c oxidase assembly protein|cytochrome c oxidase assembly homolog 15|cytochrome c oxidase subunit 15 21 0.002874 9.953 1 1 +1356 CP ceruloplasmin 3 protein-coding CP-2 ceruloplasmin|ceruloplasmin (ferroxidase) 82 0.01122 7.663 1 1 +1357 CPA1 carboxypeptidase A1 7 protein-coding CPA carboxypeptidase A1|carboxypeptidase A1 (pancreatic)|pancreatic carboxypeptidase A 44 0.006022 0.9705 1 1 +1358 CPA2 carboxypeptidase A2 7 protein-coding - carboxypeptidase A2|carboxypeptidase A2 (pancreatic) 40 0.005475 1.297 1 1 +1359 CPA3 carboxypeptidase A3 3 protein-coding MC-CPA mast cell carboxypeptidase A|carboxypeptidase A3 (mast cell)|tissue carboxypeptidase A 45 0.006159 5.539 1 1 +1360 CPB1 carboxypeptidase B1 3 protein-coding CPB|PASP|PCPB carboxypeptidase B|carboxypeptidase B1 (tissue)|pancreas-specific protein|pancreatic carboxypeptidase B|procarboxypeptidase B|protaminase|tissue carboxypeptidase B 56 0.007665 2.458 1 1 +1361 CPB2 carboxypeptidase B2 13 protein-coding CPU|PCPB|TAFI carboxypeptidase B2|carboxypeptidase B-like protein|carboxypeptidase B2 (plasma)|carboxypeptidase B2 (plasma, carboxypeptidase U)|carboxypeptidase R|thrombin-activable fibrinolysis inhibitor|thrombin-activatable fibrinolysis inhibitor 42 0.005749 1.691 1 1 +1362 CPD carboxypeptidase D 17 protein-coding GP180 carboxypeptidase D|metallocarboxypeptidase D 76 0.0104 11.27 1 1 +1363 CPE carboxypeptidase E 4 protein-coding CPH carboxypeptidase E|carboxypeptidase H|cobalt-stimulated chromaffin granule carboxypeptidase|enkephalin convertase|insulin granule-associated carboxypeptidase|prohormone-processing carboxypeptidase 37 0.005064 10.72 1 1 +1364 CLDN4 claudin 4 7 protein-coding CPE-R|CPER|CPETR|CPETR1|WBSCR8|hCPE-R claudin-4|CPE-receptor|Clostridium perfringens enterotoxin receptor 1|Williams-Beuren syndrome chromosomal region 8 protein 18 0.002464 10.45 1 1 +1365 CLDN3 claudin 3 7 protein-coding C7orf1|CPE-R2|CPETR2|HRVP1|RVP1 claudin-3|CPE-R 2|CPE-receptor 2|Clostridium perfringens enterotoxin receptor 2|ventral prostate.1 protein homolog|ventral prostate.1-like protein 4 0.0005475 7.689 1 1 +1366 CLDN7 claudin 7 17 protein-coding CEPTRL2|CLDN-7|CPETRL2|Hs.84359|claudin-1 claudin-7|clostridium perfringens enterotoxin receptor-like 2 11 0.001506 9.495 1 1 +1368 CPM carboxypeptidase M 12 protein-coding - carboxypeptidase M|renal carboxypeptidase|urinary carboxypeptidase B 27 0.003696 9.161 1 1 +1369 CPN1 carboxypeptidase N subunit 1 10 protein-coding CPN|SCPN carboxypeptidase N catalytic chain|anaphylatoxin inactivator|arginine carboxypeptidase|carboxypeptidase K|carboxypeptidase N catalytic subunit|carboxypeptidase N polypeptide 1 50 kD|carboxypeptidase N small subunit|carboxypeptidase N, polypeptide 1|kininase I|kininase-1|lysine carboxypeptidase|plasma carboxypeptidase B|serum carboxypeptidase N 53 0.007254 1.117 1 1 +1370 CPN2 carboxypeptidase N subunit 2 3 protein-coding ACBP carboxypeptidase N subunit 2|arginine carboxypeptidase|carboxypeptidase N 83 kDa chain|carboxypeptidase N large subunit|carboxypeptidase N regulatory subunit|carboxypeptidase N, polypeptide 2|carboxypeptidase N, polypeptide 2, 83kD 43 0.005886 1.938 1 1 +1371 CPOX coproporphyrinogen oxidase 3 protein-coding CPO|CPX|HCP oxygen-dependent coproporphyrinogen-III oxidase, mitochondrial|COX|coprogen oxidase|coproporphyrinogenase 25 0.003422 8.681 1 1 +1373 CPS1 carbamoyl-phosphate synthase 1 2 protein-coding CPSASE1|PHN carbamoyl-phosphate synthase [ammonia], mitochondrial|carbamoyl-phosphate synthase (ammonia)|carbamoyl-phosphate synthase 1, mitochondrial|carbamoylphosphate synthetase I 189 0.02587 6.14 1 1 +1374 CPT1A carnitine palmitoyltransferase 1A 11 protein-coding CPT1|CPT1-L|L-CPT1 carnitine O-palmitoyltransferase 1, liver isoform|CPT I|CPTI-L|carnitine O-palmitoyltransferase I, liver isoform|carnitine palmitoyltransferase 1A (liver)|carnitine palmitoyltransferase I, liver 71 0.009718 10.6 1 1 +1375 CPT1B carnitine palmitoyltransferase 1B 22 protein-coding CPT1-M|CPT1M|CPTI|CPTI-M|M-CPT1|MCCPT1|MCPT1 carnitine O-palmitoyltransferase 1, muscle isoform|carnitine O-palmitoyltransferase 1B|carnitine O-palmitoyltransferase I, mitochondrial muscle isoform|carnitine palmitoyltransferase 1B (muscle)|carnitine palmitoyltransferase I-like protein 49 0.006707 7.924 1 1 +1376 CPT2 carnitine palmitoyltransferase 2 1 protein-coding CPT1|CPTASE|IIAE4 carnitine O-palmitoyltransferase 2, mitochondrial|CPT II|carnitine palmitoyltransferase II|testicular secretory protein Li 13 34 0.004654 9.473 1 1 +1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) 1 protein-coding C3BR|C4BR|CD35|KN complement receptor type 1|C3-binding protein|C3b/C4b receptor|CD35 antigen|Knops blood group antigen|complement component (3b/4b) receptor 1 (Knops blood group) 160 0.0219 4.639 1 1 +1379 CR1L complement C3b/C4b receptor 1 like 1 protein-coding - complement component receptor 1-like protein|complement C4b-binding protein CR-1-like protein|complement component (3b/4b) receptor 1-like 60 0.008212 1.221 1 1 +1380 CR2 complement C3d receptor 2 1 protein-coding C3DR|CD21|CR|CVID7|SLEB9 complement receptor type 2|EBV receptor|complement C3d receptor|complement component (3d/Epstein Barr virus) receptor 2|complement component 3d receptor 2 137 0.01875 3.157 1 1 +1381 CRABP1 cellular retinoic acid binding protein 1 15 protein-coding CRABP|CRABP-I|CRABPI|RBP5 cellular retinoic acid-binding protein 1|cellular retinoic acid-binding protein I 13 0.001779 3.74 1 1 +1382 CRABP2 cellular retinoic acid binding protein 2 1 protein-coding CRABP-II|RBP6 cellular retinoic acid-binding protein 2|cellular retinoic acid-binding protein II 20 0.002737 9.104 1 1 +1384 CRAT carnitine O-acetyltransferase 9 protein-coding CAT1 carnitine O-acetyltransferase|CAT|carnitine acetylase|carnitine acetyltransferase 47 0.006433 10.18 1 1 +1385 CREB1 cAMP responsive element binding protein 1 2 protein-coding CREB|CREB-1 cyclic AMP-responsive element-binding protein 1|active transcription factor CREB|cAMP-response element-binding protein-1|cyclic adenosine 3',5'-monophosphate response element-binding protein CREB|transactivator protein 17 0.002327 9.83 1 1 +1386 ATF2 activating transcription factor 2 2 protein-coding CRE-BP1|CREB-2|CREB2|HB16|TREB7 cyclic AMP-dependent transcription factor ATF-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|cyclic AMP-responsive element-binding protein 2|histone acetyltransferase ATF2 28 0.003832 8.519 1 1 +1387 CREBBP CREB binding protein 16 protein-coding CBP|KAT3A|RSTS CREB-binding protein 253 0.03463 11.16 1 1 +1388 ATF6B activating transcription factor 6 beta 6 protein-coding CREB-RP|CREBL1|G13 cyclic AMP-dependent transcription factor ATF-6 beta|Creb-related protein|cAMP response element-binding protein-related protein|cAMP-dependent transcription factor ATF-6 beta|cAMP-responsive element-binding protein-like 1|protein G13 38 0.005201 11.11 1 1 +1389 CREBL2 cAMP responsive element binding protein like 2 12 protein-coding - cAMP-responsive element-binding protein-like 2|MHBs-binding protein 1 4 0.0005475 10.46 1 1 +1390 CREM cAMP responsive element modulator 10 protein-coding CREM-2|ICER|hCREM-2 cAMP-responsive element modulator|CREM 2alpha-b protein|CREM 2beta-a protein|cAMP response element modulator|inducible cAMP early repressor ICER 31 0.004243 8.656 1 1 +1392 CRH corticotropin releasing hormone 8 protein-coding CRF|CRH1 corticoliberin|corticotropin-releasing factor 6 0.0008212 0.8261 1 1 +1393 CRHBP corticotropin releasing hormone binding protein 5 protein-coding CRF-BP|CRFBP corticotropin-releasing factor-binding protein|CRF-binding protein|CRH-BP 37 0.005064 2.991 1 1 +1394 CRHR1 corticotropin releasing hormone receptor 1 17 protein-coding CRF-R|CRF-R-1|CRF-R1|CRF1|CRFR-1|CRFR1|CRH-R-1|CRH-R1|CRHR|CRHR1L corticotropin-releasing factor receptor 1|CRH receptor 1|corticotropin-releasing factor type 1 receptor|seven transmembrane helix receptor 53 0.007254 2.126 1 1 +1395 CRHR2 corticotropin releasing hormone receptor 2 7 protein-coding CRF-RB|CRF2|CRFR2|HM-CRF corticotropin-releasing factor receptor 2|CRF2 receptor, beta isoform|CRH receptor 2 variant B|CRH-R2 35 0.004791 0.9432 1 1 +1396 CRIP1 cysteine rich protein 1 14 protein-coding CRHP|CRIP|CRP-1|CRP1 cysteine-rich protein 1|cysteine-rich heart protein|cysteine-rich intestinal protein|cysteine-rich protein 1 (intestinal) 9 0.001232 9.702 1 1 +1397 CRIP2 cysteine rich protein 2 14 protein-coding CRIP|CRP2|ESP1 cysteine-rich protein 2|Cysteine-rich intestinal protein|LIM domain protein ESP1/CRP2 11 0.001506 11 1 1 +1398 CRK CRK proto-oncogene, adaptor protein 17 protein-coding CRKII|p38 adapter molecule crk|proto-oncogene c-Crk|v-crk avian sarcoma virus CT10 oncogene homolog|v-crk sarcoma virus CT10 oncogene-like protein 12 0.001642 9.641 1 1 +1399 CRKL CRK like proto-oncogene, adaptor protein 22 protein-coding - crk-like protein|v-crk avian sarcoma virus CT10 oncogene homolog-like 18 0.002464 11.03 1 1 +1400 CRMP1 collapsin response mediator protein 1 4 protein-coding CRMP-1|DPYSL1|DRP-1|DRP1|ULIP-3 dihydropyrimidinase-related protein 1|dihydropyrimidinase-like 1|unc-33-like phosphoprotein 3 74 0.01013 7.692 1 1 +1401 CRP C-reactive protein 1 protein-coding PTX1 C-reactive protein|C-reactive protein, pentraxin-related|pentraxin 1 26 0.003559 1.476 1 1 +1404 HAPLN1 hyaluronan and proteoglycan link protein 1 5 protein-coding CRT1|CRTL1 hyaluronan and proteoglycan link protein 1|Cartilage link protein|cartilage-link protein|cartilage-linking protein 1|proteoglycan link protein 56 0.007665 4.729 1 1 +1406 CRX cone-rod homeobox 19 protein-coding CORD2|CRD|LCA7|OTX3 cone-rod homeobox protein|orthodenticle homeobox 3 50 0.006844 0.2812 1 1 +1407 CRY1 cryptochrome circadian clock 1 12 protein-coding PHLL1 cryptochrome-1|cryptochrome 1 (photolyase-like) 43 0.005886 8.739 1 1 +1408 CRY2 cryptochrome circadian clock 2 11 protein-coding HCRY2|PHLL2 cryptochrome-2|cryptochrome 2 (photolyase-like)|growth-inhibiting protein 37 35 0.004791 9.815 1 1 +1409 CRYAA crystallin alpha A 21 protein-coding CRYA1|CTRCT9|HSPB4 alpha-crystallin A chain|crystallin, alpha-1|heat shock protein beta-4|human alphaA-crystallin (CRYA1) 13 0.001779 1.039 1 1 +1410 CRYAB crystallin alpha B 11 protein-coding CMD1II|CRYA2|CTPP2|CTRCT16|HEL-S-101|HSPB5|MFM2 alpha-crystallin B chain|epididymis secretory protein Li 101|heat shock protein beta-5|heat-shock 20 kD like-protein|renal carcinoma antigen NY-REN-27|rosenthal fiber component 11 0.001506 9.536 1 1 +1411 CRYBA1 crystallin beta A1 17 protein-coding CRYB1|CTRCT10 beta-crystallin A3|beta crystallin A3 chain transcript CN|beta crystallin A3 chain transcript LAM|beta crystallin A3 chain transcript PS|beta crystallin A3 chain transcript TC|crystallin beta A3/A1|crystallin, beta A3|eye lens structural protein|truncated beta crystallin A3/A1 chain|truncated beta-crystallin A3 17 0.002327 0.1869 1 1 +1412 CRYBA2 crystallin beta A2 2 protein-coding CTRCT42 beta-crystallin A2|eye lens structural protein 11 0.001506 1.247 1 1 +1413 CRYBA4 crystallin beta A4 22 protein-coding CTRCT23|CYRBA4|MCOPCT4 beta-crystallin A4|beta crystallin A4 chain transcript PS|beta crystallin alpha 4 chain|beta-A4 crystallin|crystallin, beta polypeptide A4|eye lens structural protein 34 0.004654 0.6976 1 1 +1414 CRYBB1 crystallin beta B1 22 protein-coding CATCN3|CTRCT17 beta-crystallin B1|beta-B1 crystallin|eye lens structural protein 35 0.004791 2.791 1 1 +1415 CRYBB2 crystallin beta B2 22 protein-coding CCA2|CRYB2|CRYB2A|CTRCT3|D22S665 beta-crystallin B2|CTA-221G9.7|beta-B2 crystallin|beta-crystallin Bp|eye lens structural protein 18 0.002464 1.65 1 1 +1416 CRYBB2P1 crystallin beta B2 pseudogene 1 22 pseudo CRYB2B - 26 0.003559 1 0 +1417 CRYBB3 crystallin beta B3 22 protein-coding CATCN2|CRYB3|CTRCT22 beta-crystallin B3|eye lens structural protein 21 0.002874 1.311 1 1 +1418 CRYGA crystallin gamma A 2 protein-coding CRY-g-A|CRYG1|CRYG5 gamma-crystallin A|crystallin, gamma 1|gamma-crystallin 5 28 0.003832 0.1129 1 1 +1419 CRYGB crystallin gamma B 2 protein-coding CRYG2|CTRCT39 gamma-crystallin B|crystallin, gamma 1-2 20 0.002737 0.08923 1 1 +1420 CRYGC crystallin gamma C 2 protein-coding CCL|CRYG3|CTRCT2 gamma-crystallin C|gamma-crystallin 2-1|gamma-crystallin 3 26 0.003559 0.119 1 1 +1421 CRYGD crystallin gamma D 2 protein-coding CACA|CCA3|CCP|CRYG4|CTRCT4|PCC|cry-g-D gamma-crystallin D|gamma crystallin 4|gamma-D-crystallin 37 0.005064 0.316 1 1 +1427 CRYGS crystallin gamma S 3 protein-coding CRYG8|CTRCT20 beta-crystallin S|crystallin, gamma 8 20 0.002737 4.029 1 1 +1428 CRYM crystallin mu 16 protein-coding DFNA40|THBP ketimine reductase mu-crystallin|NADP-regulated thyroid-hormone binding protein|mu-crystallin homolog|thiomorpholine-carboxylate dehydrogenase 21 0.002874 4.877 1 1 +1429 CRYZ crystallin zeta 1 protein-coding - quinone oxidoreductase|NADPH:quinone reductase|crystallin, zeta (quinone reductase) 26 0.003559 9.576 1 1 +1431 CS citrate synthase 12 protein-coding - citrate synthase, mitochondrial|citrate (Si)-synthase 30 0.004106 11.84 1 1 +1432 MAPK14 mitogen-activated protein kinase 14 6 protein-coding CSBP|CSBP1|CSBP2|CSPB1|EXIP|Mxi2|PRKM14|PRKM15|RK|SAPK2A|p38|p38ALPHA mitogen-activated protein kinase 14|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|mitogen-activated protein kinase p38 alpha|p38 MAP kinase|p38 mitogen activated protein kinase|p38alpha Exip|stress-activated protein kinase 2A 16 0.00219 10.38 1 1 +1434 CSE1L chromosome segregation 1 like 20 protein-coding CAS|CSE1|XPO2 exportin-2|CSE1 chromosome segregation 1-like|cellular apoptosis susceptibility protein|chromosome segregation 1-like protein|exp2|importin-alpha re-exporter 55 0.007528 11.22 1 1 +1435 CSF1 colony stimulating factor 1 1 protein-coding CSF-1|MCSF macrophage colony-stimulating factor 1|colony stimulating factor 1 (macrophage)|lanimostim|macrophage colony stimulating factor 1 27 0.003696 8.867 1 1 +1436 CSF1R colony stimulating factor 1 receptor 5 protein-coding C-FMS|CD115|CSF-1R|CSFR|FIM2|FMS|HDLS|M-CSF-R macrophage colony-stimulating factor 1 receptor|CD115 antigen|CSF-1 receptor|FMS proto-oncogene|McDonough feline sarcoma viral (v-fms) oncogene homolog|macrophage colony stimulating factor I receptor|proto-oncogene c-Fms 73 0.009992 9.779 1 1 +1437 CSF2 colony stimulating factor 2 5 protein-coding GMCSF granulocyte-macrophage colony-stimulating factor|CSF|colony stimulating factor 2 (granulocyte-macrophage)|granulocyte macrophage-colony stimulating factor|molgramostin|sargramostim 1 0.0001369 1.725 1 1 +1438 CSF2RA colony stimulating factor 2 receptor alpha subunit X|Y protein-coding CD116|CDw116|CSF2R|CSF2RAX|CSF2RAY|CSF2RX|CSF2RY|GM-CSF-R-alpha|GMCSFR|GMR|SMDP4 granulocyte-macrophage colony-stimulating factor receptor subunit alpha|CD116 antigen|GM-CSF receptor alpha subunit|GMCSFR-alpha|GMR-alpha|colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage)|granulocyte-macrophage colony-stimulating factor receptor alpha chain 6.727 0 1 +1439 CSF2RB colony stimulating factor 2 receptor beta common subunit 22 protein-coding CD131|CDw131|IL3RB|IL5RB|SMDP5 cytokine receptor common subunit beta|GM-CSF/IL-3/IL-5 receptor common beta subunit|GM-CSF/IL-3/IL-5 receptor common beta-chain|beta common cytokine receptor|colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage)|colony-stimulating factor-2 receptor, beta, low-affinity|interleukin 3 receptor/granulocyte-macrophage colony stimulating factor 3 receptor, beta (high affinity) 79 0.01081 7.379 1 1 +1440 CSF3 colony stimulating factor 3 17 protein-coding C17orf33|CSF3OS|GCSF granulocyte colony-stimulating factor|colony stimulating factor 3 (granulocyte)|filgrastim|granulocyte-colony stimulating factor|lenograstim|pluripoietin 9 0.001232 2.44 1 1 +1441 CSF3R colony stimulating factor 3 receptor 1 protein-coding CD114|GCSFR|SCN7 granulocyte colony-stimulating factor receptor|CD114 antigen|G-CSF receptor|G-CSF-R|colony stimulating factor 3 receptor (granulocyte) 85 0.01163 7.282 1 1 +1442 CSH1 chorionic somatomammotropin hormone 1 17 protein-coding CS-1|CSA|CSMT|GHB3|PL|hCS-1|hCS-A chorionic somatomammotropin hormone 1|choriomammotropin|chorionic somatomammotropin A|chorionic somatomammotropin hormone 1 (placental lactogen)|chorionic somatomammotropin-1|growth hormone B3|placental lactogen 22 0.003011 0.0906 1 1 +1443 CSH2 chorionic somatomammotropin hormone 2 17 protein-coding CS-2|CSB|GHB1|PL|hCS-B chorionic somatomammotropin hormone 2|choriomammotropin|chorionic somatomammotropin B|growth hormone B1|lactogen|placental lactogen 28 0.003832 0.168 1 1 +1444 CSHL1 chorionic somatomammotropin hormone like 1 17 protein-coding CS-5|CSHP1|CSL|GHB4|hCS-L chorionic somatomammotropin hormone-like 1|chorionic somatomammotropin CS-5|growth hormone B4|growth hormone cluster 46 0.006296 0.02855 1 1 +1445 CSK c-src tyrosine kinase 15 protein-coding - tyrosine-protein kinase CSK|C-Src kinase|protein-tyrosine kinase CYL 31 0.004243 10.65 1 1 +1446 CSN1S1 casein alpha s1 4 protein-coding CASA|CSN1 alpha-S1-casein|casein, alpha 30 0.004106 0.1688 1 1 +1447 CSN2 casein beta 4 protein-coding CASB beta-casein 21 0.002874 0.1616 1 1 +1448 CSN3 casein kappa 4 protein-coding CNS10|CSN10|CSNK|KCA kappa-casein 28 0.003832 0.2425 1 1 +1452 CSNK1A1 casein kinase 1 alpha 1 5 protein-coding CK1|CK1a|CKIa|HEL-S-77p|HLCDGP1|PRO2975 casein kinase I isoform alpha|CKI-alpha|clock regulator kinase|down-regulated in lung cancer|epididymis secretory sperm binding protein Li 77p 30 0.004106 12.27 1 1 +1453 CSNK1D casein kinase 1 delta 17 protein-coding ASPS|CKIdelta|FASPS2|HCKID casein kinase I isoform delta|CKI-delta|CKId|tau-protein kinase CSNK1D 27 0.003696 11.81 1 1 +1454 CSNK1E casein kinase 1 epsilon 22 protein-coding CKIepsilon|HCKIE casein kinase I isoform epsilon|CKI-epsilon|CKIe 39 0.005338 11.1 1 1 +1455 CSNK1G2 casein kinase 1 gamma 2 19 protein-coding CK1g2 casein kinase I isoform gamma-2|CKI-gamma 2|casein kinase 1 isoform gamma-2 22 0.003011 10.34 1 1 +1456 CSNK1G3 casein kinase 1 gamma 3 5 protein-coding CKI-gamma 3|CSNK1G3L casein kinase I isoform gamma-3 32 0.00438 9.25 1 1 +1457 CSNK2A1 casein kinase 2 alpha 1 20 protein-coding CK2A1|CKII|CSNK2A3|OCNDS casein kinase II subunit alpha|CK II alpha 3|CK2 catalytic subunit alpha|casein kinase 2, alpha 1 polypeptide|casein kinase II alpha 1 polypeptide pseudogene|casein kinase II alpha 1 subunit|protein kinase CK2 53 0.007254 10.36 1 1 +1459 CSNK2A2 casein kinase 2 alpha 2 16 protein-coding CK2A2|CK2alpha'|CSNK2A1 casein kinase II subunit alpha'|CK II alpha'|casein kinase 2 alpha'|casein kinase 2, alpha prime polypeptide 20 0.002737 9.077 1 1 +1460 CSNK2B casein kinase 2 beta 6 protein-coding CK2B|CK2N|CSK2B|G5A casein kinase II subunit beta|CK II beta|CSNK2B-LY6G5B-1072|CSNK2B-LY6G5B-1103|CSNK2B-LY6G5B-532|CSNK2B-LY6G5B-560|CSNK2B-LY6G5B-562|Casein kinase II beta subunit|alternative name: G5a, phosvitin|casein kinase 2, beta polypeptide|casein kinase II b subunit splicing isoform 132|casein kinase II b subunit splicing isoform 247|casein kinase II b subunit splicing isoform 318|casein kinase II b subunit splicing isoform 660|casein kinase II b subunit splicing isoform 806|chimera CSNK2B-LY6G5B splicing isoform 1072|chimera CSNK2B-LY6G5B splicing isoform 1103|chimera CSNK2B-LY6G5B splicing isoform 532|chimera CSNK2B-LY6G5B splicing isoform 560|chimera CSNK2B-LY6G5B splicing isoform 562|phosvitin|protein G5a 4 0.0005475 11.54 1 1 +1462 VCAN versican 5 protein-coding CSPG2|ERVR|GHAP|PG-M|WGN|WGN1 versican core protein|chondroitin sulfate proteoglycan core protein 2|glial hyaluronate-binding protein|large fibroblast proteoglycan|versican proteoglycan 312 0.0427 10.99 1 1 +1463 NCAN neurocan 19 protein-coding CSPG3 neurocan core protein|chondroitin sulfate proteoglycan 3 (neurocan)|neurocan proteoglycan 121 0.01656 2.367 1 1 +1464 CSPG4 chondroitin sulfate proteoglycan 4 15 protein-coding HMW-MAA|MCSP|MCSPG|MEL-CSPG|MSK16|NG2 chondroitin sulfate proteoglycan 4|chondroitin sulfate proteoglycan 4 (melanoma-associated)|chondroitin sulfate proteoglycan NG2|melanoma chondroitin sulfate proteoglycan|melanoma-associated chondroitin sulfate proteoglycan 149 0.02039 9.503 1 1 +1465 CSRP1 cysteine and glycine rich protein 1 1 protein-coding CRP|CRP1|CSRP|CYRP|D1S181E|HEL-141|HEL-S-286 cysteine and glycine-rich protein 1|LIM-domain protein|cysteine-rich protein 1|epididymis luminal protein 141|epididymis secretory protein Li 286 8 0.001095 12.25 1 1 +1466 CSRP2 cysteine and glycine rich protein 2 12 protein-coding CRP2|LMO5|SmLIM cysteine and glycine-rich protein 2|LIM domain only 5, smooth muscle|LIM domain only protein 5|LMO-5|cysteine-rich protein 2|smooth muscle cell LIM protein 12 0.001642 8.469 1 1 +1468 SLC25A10 solute carrier family 25 member 10 17 protein-coding DIC mitochondrial dicarboxylate carrier|dicarboxylate ion carrier|solute carrier family 25 (mitochondrial carrier; dicarboxylate transporter), member 10 31 0.004243 9.464 1 1 +1469 CST1 cystatin SN 20 protein-coding - cystatin-SN|cystain-SA-I|cystatin 1|cystatin SA-I|cysteine proteinase inhibitor, type 2 family|salivary cystatin-SA-1 35 0.004791 4.81 1 1 +1470 CST2 cystatin SA 20 protein-coding - cystatin-SA|cystatin 2|cystatin S5|cysteine-proteinase inhibitor|salivary cysteine (thiol) protease inhibitor 11 0.001506 2.919 1 1 +1471 CST3 cystatin C 20 protein-coding ARMD11|HEL-S-2 cystatin-C|bA218C14.4 (cystatin C)|cystatin 3|epididymis secretory protein Li 2|gamma-trace|neuroendocrine basic polypeptide|post-gamma-globulin 13 0.001779 12.78 1 1 +1472 CST4 cystatin S 20 protein-coding - cystatin-S|cystatin 4|cystatin-SA-III|salivary acidic protein 1 38 0.005201 2.296 1 1 +1473 CST5 cystatin D 20 protein-coding - cystatin-D|cystatin 5|cysteine-proteinase inhibitor 20 0.002737 1.247 1 1 +1474 CST6 cystatin E/M 11 protein-coding - cystatin-M|cystatin 6|cystatin M/E|cystatin-E|cysteine proteinase inhibitor 10 0.001369 4.503 1 1 +1475 CSTA cystatin A 3 protein-coding AREI|PSS4|STF1|STFA cystatin-A|cystatin A (stefin A)|cystatin AS 7 0.0009581 6.733 1 1 +1476 CSTB cystatin B 21 protein-coding CPI-B|CST6|EPM1|EPM1A|PME|STFB|ULD cystatin-B|cystatin B (stefin B)|liver thiol proteinase inhibitor 6 0.0008212 11.92 1 1 +1477 CSTF1 cleavage stimulation factor subunit 1 20 protein-coding CstF-50|CstFp50 cleavage stimulation factor subunit 1|CF-1 50 kDa subunit|CSTF 50 kDa subunit|cleavage stimulation factor 50 kDa subunit|cleavage stimulation factor, 3' pre-RNA, subunit 1|cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kD|cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kDa 31 0.004243 9.38 1 1 +1478 CSTF2 cleavage stimulation factor subunit 2 X protein-coding CstF-64 cleavage stimulation factor subunit 2|CF-1 64 kDa subunit|CSTF 64 kDa subunit|betaCstF-64 variant 2|cleavage stimulation factor 64 kDa subunit|cleavage stimulation factor, 3' pre-RNA, subunit 2|cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kD|cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa 35 0.004791 8.542 1 1 +1479 CSTF3 cleavage stimulation factor subunit 3 11 protein-coding CSTF-77 cleavage stimulation factor subunit 3|CF-1 77 kDa subunit|CSTF 77 kDa subunit|cleavage stimulation factor 77 kDa subunit|cleavage stimulation factor, 3' pre-RNA, subunit 3|cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kD|cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kDa 45 0.006159 9.32 1 1 +1482 NKX2-5 NK2 homeobox 5 5 protein-coding CHNG5|CSX|CSX1|HLHS2|NKX2.5|NKX2E|NKX4-1|VSD3 homeobox protein Nkx-2.5|NK2 transcription factor related, locus 5|NKX 2-5|cardiac-specific homeobox 1|homeobox protein CSX|homeobox protein NK-2 homolog E|homeobox protein NKX 2-5|tinman paralog 37 0.005064 1.567 1 1 +1485 CTAG1B cancer/testis antigen 1B X protein-coding CT6.1|CTAG|CTAG1|ESO1|LAGE-2|LAGE2B|NY-ESO-1 cancer/testis antigen 1|New York esophageal squamous cell carcinoma 1|autoimmunogenic cancer/testis antigen NY-ESO-1|cancer antigen 3|cancer/testis antigen 6.1|l antigen family member 2 1.132 0 1 +1486 CTBS chitobiase 1 protein-coding CTB di-N-acetylchitobiase|chitobiase, di-N-acetyl- 58 0.007939 8.835 1 1 +1487 CTBP1 C-terminal binding protein 1 4 protein-coding BARS C-terminal-binding protein 1|brefeldin A-ribosylated substrate 33 0.004517 11.49 1 1 +1488 CTBP2 C-terminal binding protein 2 10 protein-coding - C-terminal-binding protein 2|ribeye 59 0.008076 10.47 1 1 +1489 CTF1 cardiotrophin 1 16 protein-coding CT-1|CT1 cardiotrophin-1|cardiophin 1 2 0.0002737 6.43 1 1 +1490 CTGF connective tissue growth factor 6 protein-coding CCN2|HCS24|IGFBP8|NOV2 connective tissue growth factor|CCN family member 2|IBP-8|IGF-binding protein 8|IGFBP-8|hypertrophic chondrocyte-specific protein 24|insulin-like growth factor-binding protein 8 35 0.004791 11.28 1 1 +1491 CTH cystathionine gamma-lyase 1 protein-coding - cystathionine gamma-lyase|cystathionase (cystathionine gamma-lyase)|cysteine desulfhydrase|cysteine-protein sulfhydrase|gamma-cystathionase|homoserine deaminase|homoserine dehydratase 26 0.003559 6.214 1 1 +1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 2 protein-coding ALPS5|CD|CD152|CELIAC3|CTLA-4|GRD4|GSE|IDDM12 cytotoxic T-lymphocyte protein 4|CD152 isoform|celiac disease 3|cytotoxic T lymphocyte associated antigen 4 short spliced form|cytotoxic T-lymphocyte-associated serine esterase-4|insulin-dependent diabetes mellitus 12|ligand and transmembrane spliced cytotoxic T lymphocyte associated antigen 4 20 0.002737 4.43 1 1 +1495 CTNNA1 catenin alpha 1 5 protein-coding CAP102|MDPT2 catenin alpha-1|alpha-E-catenin|catenin (cadherin-associated protein), alpha 1, 102kDa|renal carcinoma antigen NY-REN-13 67 0.009171 12.93 1 1 +1496 CTNNA2 catenin alpha 2 2 protein-coding CAP-R|CAPR|CT114|CTNR catenin alpha-2|alpha-N-catenin|alpha-catenin-related protein|cadherin-associated protein, related|cancer/testis antigen 114|catenin (cadherin-associated protein), alpha 2 226 0.03093 2.971 1 1 +1497 CTNS cystinosin, lysosomal cystine transporter 17 protein-coding CTNS-LSB|PQLC4 cystinosin|cystinosis nephropathic 13 0.001779 8.642 1 1 +1499 CTNNB1 catenin beta 1 3 protein-coding CTNNB|MRD19|armadillo catenin beta-1|catenin (cadherin-associated protein), beta 1|catenin (cadherin-associated protein), beta 1, 88kDa 221 0.03025 12.91 1 1 +1500 CTNND1 catenin delta 1 11 protein-coding CAS|CTNND|P120CAS|P120CTN|p120|p120(CAS)|p120(CTN) catenin delta-1|cadherin-associated Src substrate|catenin (cadherin-associated protein), delta 1|p120 catenin 101 0.01382 12.67 1 1 +1501 CTNND2 catenin delta 2 5 protein-coding GT24|NPRAP catenin delta-2|T-cell delta-catenin|catenin (cadherin-associated protein), delta 2 (neural plakophilin-related arm-repeat protein)|neurojungin 215 0.02943 4.741 1 1 +1503 CTPS1 CTP synthase 1 1 protein-coding CTPS|IMD24 CTP synthase 1|CTP synthetase 1|UTP--ammonia ligase 1|cytidine 5'-triphosphate synthetase|cytidine 5-prime triphosphate synthetase 23 0.003148 9.452 1 1 +1504 CTRB1 chymotrypsinogen B1 16 protein-coding CTRB chymotrypsinogen B 4 0.0005475 0.3853 1 1 +1506 CTRL chymotrypsin like 16 protein-coding CTRL1 chymotrypsin-like protease CTRL-1 17 0.002327 3.506 1 1 +1508 CTSB cathepsin B 8 protein-coding APPS|CPSB cathepsin B|APP secretase|amyloid precursor protein secretase|cathepsin B1|cysteine protease 27 0.003696 14.52 1 1 +1509 CTSD cathepsin D 11 protein-coding CLN10|CPSD|HEL-S-130P cathepsin D|ceroid-lipofuscinosis, neuronal 10|epididymis secretory sperm binding protein Li 130P|lysosomal aspartyl peptidase|lysosomal aspartyl protease 41 0.005612 14.4 1 1 +1510 CTSE cathepsin E 1 protein-coding CATE cathepsin E|erythrocyte membrane aspartic proteinase|slow-moving proteinase 33 0.004517 4.217 1 1 +1511 CTSG cathepsin G 14 protein-coding CATG|CG cathepsin G 36 0.004927 2.844 1 1 +1512 CTSH cathepsin H 15 protein-coding ACC-4|ACC-5|ACC4|ACC5|CPSB pro-cathepsin H|N-benzoylarginine-beta-naphthylamide hydrolase|aleurain|cathepsin B3|cathepsin BA 25 0.003422 11.29 1 1 +1513 CTSK cathepsin K 1 protein-coding CTS02|CTSO|CTSO1|CTSO2|PKND|PYCD cathepsin K|cathepsin O|cathepsin O1|cathepsin O2|cathepsin X 19 0.002601 9.598 1 1 +1514 CTSL cathepsin L 9 protein-coding CATL|CTSL1|MEP cathepsin L1|major excreted protein 27 0.003696 11.15 1 1 +1515 CTSV cathepsin V 9 protein-coding CATL2|CTSL2|CTSU cathepsin L2|cathepsin L2, preproprotein|cathepsin U 25 0.003422 6.503 1 1 +1519 CTSO cathepsin O 4 protein-coding CTSO1 cathepsin O 26 0.003559 9.678 1 1 +1520 CTSS cathepsin S 1 protein-coding - cathepsin S 25 0.003422 10.65 1 1 +1521 CTSW cathepsin W 11 protein-coding LYPN cathepsin W|lymphopain 23 0.003148 5.854 1 1 +1522 CTSZ cathepsin Z 20 protein-coding CTSX cathepsin Z|carboxypeptidase LB|cathepsin B2|cathepsin IV|cathepsin P|cathepsin X|cathepsin Y|cathepsin Z1|cysteine-type carboxypeptidase|lysosomal carboxypeptidase B|preprocathepsin P 14 0.001916 12.04 1 1 +1523 CUX1 cut like homeobox 1 7 protein-coding CASP|CDP|CDP/Cut|CDP1|COY1|CUTL1|CUX|Clox|Cux/CDP|GOLIM6|Nbla10317|p100|p110|p200|p75 protein CASP|CCAAT displacement protein|cut homolog|golgi integral membrane protein 6|homeobox protein cux-1|putative protein product of Nbla10317 144 0.01971 10.89 1 1 +1524 CX3CR1 C-X3-C motif chemokine receptor 1 3 protein-coding CCRL1|CMKBRL1|CMKDR1|GPR13|GPRV28|V28 CX3C chemokine receptor 1|C-X3-C CKR-1|CMK-BRL-1|CMK-BRL1|G-protein coupled receptor 13|beta chemokine receptor-like 1|chemokine (C-C) receptor-like 1|chemokine (C-X3-C motif) receptor 1|chemokine (C-X3-C) receptor 1|fractalkine receptor 39 0.005338 6.099 1 1 +1525 CXADR coxsackie virus and adenovirus receptor 21 protein-coding CAR|CAR4/6|HCAR coxsackievirus and adenovirus receptor|46 kD coxsackievirus and adenovirus receptor (CAR) protein|CVB3-binding protein|HCVADR|coxsackievirus B-adenovirus receptor 26 0.003559 7.717 1 1 +1527 TEX28 testis expressed 28 X protein-coding CXorf2|MRX99|TEX28P1|TEX28P2|fTEX testis-specific protein TEX28 0.0007755 0 1 +1528 CYB5A cytochrome b5 type A 18 protein-coding CYB5|MCB5 cytochrome b5|cytochrome b5 type A (microsomal)|type 1 cyt-b5 9 0.001232 9.907 1 1 +1534 CYB561 cytochrome b561 17 protein-coding CYB561A1|FRRS2 cytochrome b561|cytochrome b-561|cytochrome b561 family, member A1|ferric-chelate reductase 2 18 0.002464 10.82 1 1 +1535 CYBA cytochrome b-245 alpha chain 16 protein-coding p22-PHOX cytochrome b-245 light chain|cytochrome b light chain|cytochrome b(558) alpha chain|cytochrome b(558) alpha-subunit|cytochrome b, alpha polypeptide|cytochrome b-245, alpha polypeptide|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 12 0.001642 10.64 1 1 +1536 CYBB cytochrome b-245 beta chain X protein-coding AMCBX2|CGD|GP91-1|GP91-PHOX|GP91PHOX|IMD34|NOX2|p91-PHOX cytochrome b-245 heavy chain|CGD91-phox|NADPH oxidase 2|cytochrome b(558) subunit beta|cytochrome b-245 beta polypeptide|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 47 0.006433 9.281 1 1 +1537 CYC1 cytochrome c1 8 protein-coding MC3DN6|UQCR4 cytochrome c1, heme protein, mitochondrial|complex III subunit 4|complex III subunit IV|cytochrome b-c1 complex subunit 4|cytochrome c-1|ubiquinol-cytochrome-c reductase complex cytochrome c1 subunit 40 0.005475 11.36 1 1 +1538 CYLC1 cylicin 1 X protein-coding CYCL1 cylicin-1|cylicin I|cylicin, basic protein of sperm head cytoskeleton 1|multiple-band polypeptide I 123 0.01684 0.03576 1 1 +1539 CYLC2 cylicin 2 9 protein-coding - cylicin-2|cylicin II|cylicin, basic protein of sperm head cytoskeleton 2|multiple-band polypeptide II 78 0.01068 0.04193 1 1 +1540 CYLD CYLD lysine 63 deubiquitinase 16 protein-coding BRSS|CDMT|CYLD1|CYLDI|EAC|MFT|MFT1|SBS|TEM|USPL2 ubiquitin carboxyl-terminal hydrolase CYLD|cylindromatosis (turban tumor syndrome)|deubiquitinating enzyme CYLD|probable ubiquitin carboxyl-terminal hydrolase CYLD|ubiquitin specific peptidase like 2|ubiquitin thioesterase CYLD|ubiquitin thiolesterase CYLD|ubiquitin-specific-processing protease CYLD 82 0.01122 10.01 1 1 +1543 CYP1A1 cytochrome P450 family 1 subfamily A member 1 15 protein-coding AHH|AHRR|CP11|CYP1|CYPIA1|P1-450|P450-C|P450DX cytochrome P450 1A1|aryl hydrocarbon hydroxylase|cytochrome P1-450, dioxin-inducible|cytochrome P450 form 6|cytochrome P450, family 1, subfamily A, polypeptide 1|cytochrome P450, subfamily I (aromatic compound-inducible), polypeptide 1|cytochrome P450-C|cytochrome P450-P1|flavoprotein-linked monooxygenase|xenobiotic monooxygenase 50 0.006844 1.904 1 1 +1544 CYP1A2 cytochrome P450 family 1 subfamily A member 2 15 protein-coding CP12|P3-450|P450(PA) cytochrome P450 1A2|CYPIA2|P450 form 4|aryl hydrocarbon hydroxylase|cholesterol 25-hydroxylase|cytochrome P(3)450|cytochrome P450 4|cytochrome P450, family 1, subfamily A, polypeptide 2|cytochrome P450, subfamily I (aromatic compound-inducible), polypeptide 2|cytochrome P450-P3|dioxin-inducible P3-450|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 39 0.005338 1.128 1 1 +1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 2 protein-coding CP1B|CYPIB1|GLC3A|P4501B1 cytochrome P450 1B1|aryl hydrocarbon hydroxylase|cytochrome P450, family 1, subfamily B, polypeptide 1|cytochrome P450, subfamily I (dioxin-inducible), polypeptide 1 (glaucoma 3, primary infantile)|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 35 0.004791 8.692 1 1 +1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 19 protein-coding CPA6|CYP2A|CYP2A3|CYPIIA6|P450C2A|P450PB cytochrome P450 2A6|1,4-cineole 2-exo-monooxygenase|coumarin 7-hydroxylase|cytochrome P450 IIA3|cytochrome P450(I)|cytochrome P450, family 2, subfamily A, polypeptide 6|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 6|flavoprotein-linked monooxygenase|xenobiotic monooxygenase 59 0.008076 1.894 1 1 +1549 CYP2A7 cytochrome P450 family 2 subfamily A member 7 19 protein-coding CPA7|CPAD|CYP2A|CYPIIA7|P450-IIA4 cytochrome P450 2A7|cytochrome P450 IIA4|cytochrome P450, family 2, subfamily A, polypeptide 7|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 7|cytochrome P450IIA4 47 0.006433 0.8937 1 1 +1550 CYP2A7P1 cytochrome P450 family 2 subfamily A member 7 pseudogene 1 19 pseudo CYP2A18PC|CYP2A18PN|CYP2A7P2|CYP2A7PT cytochrome P450, family 2, subfamily A, polypeptide 7 pseudogene 1|cytochrome P450, family 2, subfamily A, polypeptide 7 pseudogene 2|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 7, pseudogene 1|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 7, pseudogene 2 3 0.0004106 1 0 +1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 7 protein-coding CP37|CYPIIIA7|P-450(HFL33)|P-450111A7|P450-HFLA cytochrome P450 3A7|aryl hydrocarbon hydroxylase|cytochrome P450, family 3, subfamily A, polypeptide 7|cytochrome P450, subfamily IIIA, polypeptide 7|cytochrome P450-HFLA|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 43 0.005886 1.862 1 1 +1553 CYP2A13 cytochrome P450 family 2 subfamily A member 13 19 protein-coding CPAD|CYP2A|CYPIIA13 cytochrome P450 2A13|cytochrome P450, family 2, subfamily A, polypeptide 13|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 13 63 0.008623 0.5116 1 1 +1555 CYP2B6 cytochrome P450 family 2 subfamily B member 6 19 protein-coding CPB6|CYP2B|CYP2B7|CYP2B7P|CYPIIB6|EFVM|IIB1|P450 cytochrome P450 2B6|1,4-cineole 2-exo-monooxygenase|cytochrome P450 IIB1|cytochrome P450, family 2, subfamily B, polypeptide 6|cytochrome P450, subfamily IIB (phenobarbital-inducible), polypeptide 6 53 0.007254 2.012 1 1 +1556 CYP2B7P cytochrome P450 family 2 subfamily B member 7, pseudogene 19 pseudo CYP2B|CYP2B7|CYP2B7P1 cytochrome P450 2B7 isoform|cytochrome P450 2B7 short isoform|cytochrome P450, family 2, subfamily B, polypeptide 7 pseudogene 1|cytochrome P450, family 2, subfamily B, polypeptide 7, pseudogene|cytochrome P450, subfamily IIB (phenobarbital-inducible), polypeptide 7 60 0.008212 4.276 1 1 +1557 CYP2C19 cytochrome P450 family 2 subfamily C member 19 10 protein-coding CPCJ|CYP2C|CYPIIC17|CYPIIC19|P450C2C|P450IIC19 cytochrome P450 2C19|(R)-limonene 6-monooxygenase|(S)-limonene 6-monooxygenase|(S)-limonene 7-monooxygenase|S-mephenytoin 4-hydroxylase|cytochrome P-450 II C|cytochrome P450, family 2, subfamily C, polypeptide 19|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 70 0.009581 1.207 1 1 +1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 10 protein-coding CPC8|CYPIIC8|MP-12/MP-20 cytochrome P450 2C8|P450 form 1|cytochrome P450 IIC2|cytochrome P450 MP-12|cytochrome P450 MP-20|cytochrome P450 form 1|cytochrome P450, family 2, subfamily C, polypeptide 8|cytochrome P450, subfamily IIC (mephenytoin 4-hydroxylase), polypeptide 8|flavoprotein-linked monooxygenase|microsomal monooxygenase|s-mephenytoin 4-hydroxylase|xenobiotic monooxygenase 44 0.006022 3.093 1 1 +1559 CYP2C9 cytochrome P450 family 2 subfamily C member 9 10 protein-coding CPC9|CYP2C|CYP2C10|CYPIIC9|P450IIC9 cytochrome P450 2C9|cytochrome P-450 S-mephenytoin 4-hydroxylase|cytochrome P-450MP|cytochrome P450 PB-1|cytochrome P450, family 2, subfamily C, polypeptide 9|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 45 0.006159 2.036 1 1 +1562 CYP2C18 cytochrome P450 family 2 subfamily C member 18 10 protein-coding CPCI|CYP2C|CYP2C17|P450-6B/29C|P450IIC17 cytochrome P450 2C18|(S)-mephenytoin hydroxylase associated cytochrome P450|CYPIIC18|cytochrome P450, family 2, subfamily C, polypeptide 18|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 35 0.004791 3.188 1 1 +1564 CYP2D7 cytochrome P450 family 2 subfamily D member 7 (gene/pseudogene) 22 pseudo CYP2D|CYP2D7AP|CYP2D7P|CYP2D7P1|CYP2D@|P450C2D|P450DB1|RNA40057 Putative cytochrome P450 2D7|cytochrome P450, family 2, subfamily D, polypeptide 7 pseudogene 1|cytochrome P450, family 2, subfamily D, polypeptide 7, pseudogene|cytochrome P450, subfamily II (debrisoquine, sparteine, etc., -metabolising), polypeptide 7 pseudogene 1|cytochrome P450, subfamily IID (debrisoquine, sparteine, etc., -metabolizing) cluster 64 0.00876 3.984 1 1 +1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 22 protein-coding CPD6|CYP2D|CYP2D7AP|CYP2D7BP|CYP2D7P2|CYP2D8P2|CYP2DL1|CYPIID6|P450-DB1|P450C2D|P450DB1 cytochrome P450 2D6|cholesterol 25-hydroxylase|cytochrome P450, family 2, subfamily D, polypeptide 6|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|nonfunctional cytochrome P450 2D6|xenobiotic monooxygenase 51 0.006981 4.01 1 1 +1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 10 protein-coding CPE1|CYP2E|P450-J|P450C2E cytochrome P450 2E1|4-nitrophenol 2-hydroxylase|CYPIIE1|cytochrome P450, family 2, subfamily E, polypeptide 1|cytochrome P450, subfamily IIE (ethanol-inducible), polypeptide 1|cytochrome P450-J|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 38 0.005201 5.001 1 1 +1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 19 protein-coding C2F1|CYP2F|CYPIIF1 cytochrome P450 2F1|cytochrome P450, family 2, subfamily F, polypeptide 1|cytochrome P450, subfamily IIF, polypeptide 1|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 36 0.004927 0.7344 1 1 +1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 1 protein-coding CPJ2|CYPIIJ2 cytochrome P450 2J2|arachidonic acid epoxygenase|cytochrome P450, family 2, subfamily J, polypeptide 2|cytochrome P450, subfamily IIJ (arachidonic acid epoxygenase) polypeptide 2|flavoprotein-linked monooxygenase|microsomal monooxygenase 29 0.003969 6.648 1 1 +1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 7 protein-coding CP33|CP34|CYP3A|CYP3A3|CYPIIIA3|CYPIIIA4|HLP|NF-25|P450C3|P450PCN1 cytochrome P450 3A4|1,8-cineole 2-exo-monooxygenase|P450-III, steroid inducible|albendazole monooxygenase|albendazole sulfoxidase|cholesterol 25-hydroxylase|cytochrome P450 3A3|cytochrome P450 HLp|cytochrome P450 NF-25|cytochrome P450, family 3, subfamily A, polypeptide 4|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 40 0.005475 1.69 1 1 +1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 7 protein-coding CP35|CYPIIIA5|P450PCN3|PCN3 cytochrome P450 3A5|aryl hydrocarbon hydroxylase|cytochrome P450 HLp2|cytochrome P450, family 3, subfamily A, polypeptide 5|cytochrome P450, subfamily IIIA (niphedipine oxidase), polypeptide 5|cytochrome P450-PCN3|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 30 0.004106 5.165 1 1 +1579 CYP4A11 cytochrome P450 family 4 subfamily A member 11 1 protein-coding CP4Y|CYP4A2|CYP4AII cytochrome P450 4A11|20-HETE synthase|20-hydroxyeicosatetraenoic acid synthase|CYPIVA11|P450HL-omega|alkane-1 monooxygenase|cytochrome P-450HK-omega|cytochrome P450, family 4, subfamily A, polypeptide 11|cytochrome P450, subfamily IVA, polypeptide 11|cytochrome P450HL-omega|fatty acid omega-hydroxylase|lauric acid omega-hydroxylase|long-chain fatty acid omega-monooxygenase 62 0.008486 1.834 1 1 +1580 CYP4B1 cytochrome P450 family 4 subfamily B member 1 1 protein-coding CYPIVB1|P-450HP cytochrome P450 4B1|cytochrome P450, family 4, subfamily B, polypeptide 1|cytochrome P450, subfamily IVB, polypeptide 1|cytochrome P450-HP|microsomal monooxygenase 60 0.008212 4.997 1 1 +1581 CYP7A1 cytochrome P450 family 7 subfamily A member 1 8 protein-coding CP7A|CYP7|CYPVII cholesterol 7-alpha-monooxygenase|cholesterol 7-alpha-hydroxylase|cytochrome P450 7A1|cytochrome P450, family 7, subfamily A, polypeptide 1|cytochrome P450, subfamily VIIA polypeptide 1 54 0.007391 1.106 1 1 +1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 3 protein-coding CP8B|CYP12 7-alpha-hydroxycholest-4-en-3-one 12-alpha-hydroxylase|7 alpha-hydroxy-4-cholesten-3-one 12-alpha-hydroxylase|CYPVIIIB1|cytochrome P450 8B1|cytochrome P450, family 8, subfamily B, polypeptide 1|cytochrome P450, subfamily VIIIB (sterol 12-alpha-hydroxylase), polypeptide 1|sterol 12-alpha-hydroxylase 45 0.006159 2.284 1 1 +1583 CYP11A1 cytochrome P450 family 11 subfamily A member 1 15 protein-coding CYP11A|CYPXIA1|P450SCC cholesterol side-chain cleavage enzyme, mitochondrial|cholesterol 20-22 desmolase|cholesterol monooxygenase (side-chain cleaving)|cytochrome P450 11A1|cytochrome P450 family 11 subfamily A polypeptide 1|cytochrome P450(scc)|cytochrome P450, subfamily XIA (cholesterol side chain cleavage)|cytochrome P450C11A1|steroid 20-22-lyase 34 0.004654 3.609 1 1 +1584 CYP11B1 cytochrome P450 family 11 subfamily B member 1 8 protein-coding CPN1|CYP11B|FHI|P450C11 cytochrome P450 11B1, mitochondrial|CYPXIB1|cytochrome P-450c11|cytochrome P450, family 11, subfamily B, polypeptide 1|cytochrome P450, subfamily XIB (steroid 11-beta-hydroxylase), polypeptide 1|cytochrome P450C11|cytochrome p450 XIB1|steroid 11-beta-hydroxylase|steroid 11-beta-monooxygenase 111 0.01519 0.3149 1 1 +1585 CYP11B2 cytochrome P450 family 11 subfamily B member 2 8 protein-coding ALDOS|CPN2|CYP11B|CYP11BL|CYPXIB2|P-450C18|P450C18|P450aldo cytochrome P450 11B2, mitochondrial|aldosterone synthase|aldosterone-synthesizing enzyme|cytochrome P-450Aldo|cytochrome P-450C18|cytochrome P450, family 11, subfamily B, polypeptide 2|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 80 0.01095 0.1185 1 1 +1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 10 protein-coding CPT7|CYP17|P450C17|S17AH steroid 17-alpha-hydroxylase/17,20 lyase|17-alpha-hydroxyprogesterone aldolase|CYPXVII|cytochrome P450 17A1|cytochrome P450, family 17, subfamily A, polypeptide 1|cytochrome P450, subfamily XVII (steroid 17-alpha-hydroxylase), adrenal hyperplasia|cytochrome P450-C17|cytochrome P450c17|cytochrome p450 XVIIA1|steroid 17-alpha-monooxygenase 37 0.005064 2.082 1 1 +1587 ADAM3A ADAM metallopeptidase domain 3A (pseudogene) 8 pseudo ADAM3|CYRN1|tMDCI a disintegrin and metalloproteinase domain 3a (cyritestin 1)|cyritestin 1 22 0.003011 0.03222 1 1 +1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 15 protein-coding ARO|ARO1|CPV1|CYAR|CYP19|CYPXIX|P-450AROM aromatase|cytochrome P-450AROM|cytochrome P450 19A1|cytochrome P450, family 19, subfamily A, polypeptide 1|cytochrome P450, subfamily XIX (aromatization of androgens)|estrogen synthase|estrogen synthetase|flavoprotein-linked monooxygenase|microsomal monooxygenase 44 0.006022 2.673 1 1 +1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 6 protein-coding CA21H|CAH1|CPS1|CYP21|CYP21B|P450c21B steroid 21-hydroxylase|21-OHase|cytochrome P450 XXI|cytochrome P450, family 21, subfamily A, polypeptide 2|cytochrome P450, subfamily XXIA (steroid 21-hydroxylase, congenital adrenal hyperplasia), polypeptide 2|cytochrome P450-C21B|steroid 21 hydroxylase|steroid 21-monooxygenase 24 0.003285 5.117 1 1 +1590 CYP21A1P cytochrome P450 family 21 subfamily A member 1, pseudogene 6 pseudo CYP21A|CYP21P|P450c21A cytochrome P450, family 21, subfamily A, polypeptide 1 pseudogene|cytochrome P450, subfamily XXI (steroid 21-hydroxylase) pseudogene|cytochrome P450, subfamily XXIA (steroid 21-hydroxylase), polypeptide 1 pseudogene 31 0.004243 1 0 +1591 CYP24A1 cytochrome P450 family 24 subfamily A member 1 20 protein-coding CP24|CYP24|HCAI|HCINF1|P450-CC24 1,25-dihydroxyvitamin D(3) 24-hydroxylase, mitochondrial|1,25-@dihydroxyvitamin D3 24-hydroxylase|24-OHase|cytochrome P450 24A1|cytochrome P450, family 24, subfamily A, polypeptide 1|cytochrome P450, subfamily XXIV (vitamin D 24-hydroxylase)|cytochrome P450-CC24|exo-mitochondrial protein|vitamin D 24-hydroxylase|vitamin D(3) 24-hydroxylase 43 0.005886 4.141 1 1 +1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 10 protein-coding CP26|CYP26|P450RAI|P450RAI1 cytochrome P450 26A1|P450, retinoic acid-inactivating, 1|cytochrome P450 retinoic acid-inactivating 1|cytochrome P450, family 26, subfamily A, polypeptide 1|cytochrome P450, subfamily XXVIA, polypeptide 1|cytochrome P450RAI|hP450RAI|retinoic acid 4-hydroxylase|retinoic acid-metabolizing cytochrome 36 0.004927 2.737 1 1 +1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 2 protein-coding CP27|CTX|CYP27 sterol 26-hydroxylase, mitochondrial|5-beta-cholestane-3-alpha, 7-alpha, 12-alpha-triol 26-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, family 27, subfamily A, polypeptide 1|cytochrome P450, subfamily XXVIIA (steroid 27-hydroxylase, cerebrotendinous xanthomatosis), polypeptide 1|sterol 27-hydroxylase|vitamin D(3) 25-hydroxylase 29 0.003969 9.467 1 1 +1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 12 protein-coding CP2B|CYP1|CYP1alpha|CYP27B|P450c1|PDDR|VDD1|VDDR|VDDRI|VDR 25-hydroxyvitamin D-1 alpha hydroxylase, mitochondrial|1alpha(OH)ase|25 hydroxyvitamin D3-1-alpha hydroxylase|25-OHD-1 alpha-hydroxylase|VD3 1A hydroxylase|calcidiol 1-monooxygenase|cytochrome P450 subfamily XXVIIB polypeptide 1|cytochrome P450, family 27, subfamily B, polypeptide 1|cytochrome P450C1 alpha|cytochrome P450VD1-alpha|cytochrome p450 27B1 45 0.006159 5.523 1 1 +1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 7 protein-coding CP51|CYP51|CYPL1|LDM|P450-14DM|P450L1 lanosterol 14-alpha demethylase|CYPLI|cytochrome P450 51A1|cytochrome P450, 51 (lanosterol 14-alpha-demethylase)|cytochrome P450, family 51, subfamily A, polypeptide 1|cytochrome P450-14DM|cytochrome P45014DM|cytochrome P450LI|sterol 14-alpha demethylase 31 0.004243 10.72 1 1 +1600 DAB1 DAB1, reelin adaptor protein 1 protein-coding - disabled homolog 1|Dab reelin signal transducer 1|Dab, reelin signal transducer, homolog 1 84 0.0115 1.897 1 1 +1601 DAB2 DAB2, clathrin adaptor protein 5 protein-coding DOC-2|DOC2 disabled homolog 2|Dab, mitogen-responsive phosphoprotein, homolog 2|adaptor molecule disabled-2|differentially expressed in ovarian carcinoma 2|differentially-expressed protein 2|disabled homolog 2, mitogen-responsive phosphoprotein 80 0.01095 10.1 1 1 +1602 DACH1 dachshund family transcription factor 1 13 protein-coding DACH dachshund homolog 1|dac homolog 92 0.01259 5.821 1 1 +1603 DAD1 defender against cell death 1 14 protein-coding OST2 dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit DAD1|DAD-1|oligosaccharyl transferase subunit DAD1|oligosaccharyltransferase 2 homolog|oligosaccharyltransferase subunit 2 (non-catalytic) 5 0.0006844 11.32 1 1 +1604 CD55 CD55 molecule (Cromer blood group) 1 protein-coding CR|CROM|DAF|TC complement decay-accelerating factor|CD55 antigen|CD55 molecule, decay accelerating factor for complement (Cromer blood group) 25 0.003422 10.3 1 1 +1605 DAG1 dystroglycan 1 3 protein-coding 156DAG|A3a|AGRNR|DAG|MDDGA9|MDDGC7|MDDGC9 dystroglycan|dystroglycan 1 (dystrophin-associated glycoprotein 1) 57 0.007802 11.8 1 1 +1606 DGKA diacylglycerol kinase alpha 12 protein-coding DAGK|DAGK1|DGK-alpha diacylglycerol kinase alpha|80 kDa diacylglycerol kinase|DAG kinase alpha|diacylglycerol kinase, alpha 80kDa|diglyceride kinase alpha 64 0.00876 8.941 1 1 +1607 DGKB diacylglycerol kinase beta 7 protein-coding DAGK2|DGK|DGK-BETA diacylglycerol kinase beta|90 kDa diacylglycerol kinase|DAG kinase beta|diacylglycerol kinase, beta 90kDa|diglyceride kinase beta 132 0.01807 2.683 1 1 +1608 DGKG diacylglycerol kinase gamma 3 protein-coding DAGK3|DGK-GAMMA diacylglycerol kinase gamma|DAG kinase gamma|diacylglycerol kinase, gamma 90kDa|diacylglyerol kinase gamma|diglyceride kinase gamma 76 0.0104 5.655 1 1 +1609 DGKQ diacylglycerol kinase theta 4 protein-coding DAGK|DAGK4|DAGK7 diacylglycerol kinase theta|DAG kinase theta|DGK-theta|diacylglycerol kinase, theta 110kDa|diglyceride kinase theta|testis tissue sperm-binding protein Li 38a 28 0.003832 8.799 1 1 +1610 DAO D-amino acid oxidase 12 protein-coding DAAO|DAMOX|OXDA D-amino-acid oxidase 49 0.006707 1.297 1 1 +1611 DAP death associated protein 5 protein-coding - death-associated protein 1|DAP-1 11 0.001506 11.79 1 1 +1612 DAPK1 death associated protein kinase 1 9 protein-coding DAPK death-associated protein kinase 1|DAP kinase 1 102 0.01396 9.509 1 1 +1613 DAPK3 death associated protein kinase 3 19 protein-coding DLK|ZIP|ZIPK death-associated protein kinase 3|DAP kinase 3|DAP-like kinase|MYPT1 kinase|ZIP-kinase|zipper-interacting protein kinase 30 0.004106 9.94 1 1 +1615 DARS aspartyl-tRNA synthetase 2 protein-coding HBSL|aspRS aspartate--tRNA ligase, cytoplasmic|aspartate tRNA ligase 1, cytoplasmic|aspartyl-tRNA synthetase, cytoplasmic|cell proliferation-inducing gene 40 protein|testicular tissue protein Li 192 30 0.004106 10.87 1 1 +1616 DAXX death domain associated protein 6 protein-coding BING2|DAP6|EAP1 death domain-associated protein 6|CENP-C binding protein|ETS1-associated protein 1|Fas-binding protein|death-associated protein 6|fas death domain-associated protein 52 0.007117 10.53 1 1 +1617 DAZ1 deleted in azoospermia 1 Y protein-coding DAZ|SPGY deleted in azoospermia protein 1|testicular tissue protein Li 49 0.9581 0 1 +1618 DAZL deleted in azoospermia like 3 protein-coding DAZH|DAZL1|DAZLA|SPGYLA deleted in azoospermia-like|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|testis secretory sperm-binding protein Li 204a 20 0.002737 0.8767 1 1 +1620 BRINP1 BMP/retinoic acid inducible neural specific 1 9 protein-coding DBC1|DBCCR1|FAM5A BMP/retinoic acid-inducible neural-specific protein 1|bA574M5.1 (deleted in bladder cancer chromosome region candidate 1 (IB3089A))|bone morphogenetic protein/retinoic acid inducible neural-specific 1|bone morphogenic protein/retinoic acid inducible neural-specific 1|deleted in bladder cancer 1|deleted in bladder cancer chromosome region candidate 1|deleted in bladder cancer protein 1 126 0.01725 4.279 1 1 +1621 DBH dopamine beta-hydroxylase 9 protein-coding DBM dopamine beta-hydroxylase|dopamine beta-hydroxylase (dopamine beta-monooxygenase) 53 0.007254 2.876 1 1 +1622 DBI diazepam binding inhibitor, acyl-CoA binding protein 2 protein-coding ACBD1|ACBP|CCK-RP|EP acyl-CoA-binding protein|GABA receptor modulator|acyl coenzyme A binding protein|acyl-Coenzyme A binding domain containing 1|cholecystokinin-releasing peptide, trypsin-sensitive|diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein)|diazepam binding inhibitor (GABA receptor modulator, acyl-Coenzyme A binding protein)|diazepam-binding inhibitor|endozepine 17 0.002327 11.4 1 1 +1627 DBN1 drebrin 1 5 protein-coding D0S117E drebrin|developmentally-regulated brain protein|drebrin E|drebrin E2 53 0.007254 10.85 1 1 +1628 DBP D-box binding PAR bZIP transcription factor 19 protein-coding DABP D site-binding protein|D site of albumin promoter (albumin D-box) binding protein|albumin D box-binding protein|albumin D-element-binding protein|tax-responsive enhancer element-binding protein 302|taxREB302 13 0.001779 8.537 1 1 +1629 DBT dihydrolipoamide branched chain transacylase E2 1 protein-coding BCATE2|BCKAD-E2|BCKADE2|BCOADC-E2|E2|E2B lipoamide acyltransferase component of branched-chain alpha-keto acid dehydrogenase complex, mitochondrial|52 kDa mitochondrial autoantigen of primary biliary cirrhosis|BCKAD E2 subunit|E2 component of branched chain alpha-keto acid dehydrogenase complex|branched chain 2-oxo-acid dehydrogenase complex component E2|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 mitochondrial branched-chain alpha-keto acid dehydrogenase complex|mitochondrial branched chain alpha-keto acid dehydrogenase transacylase subunit (E2b) 43 0.005886 9.294 1 1 +1630 DCC DCC netrin 1 receptor 18 protein-coding CRC18|CRCR1|IGDCC1|MRMV1|NTN1R1 netrin receptor DCC|colorectal cancer suppressor|colorectal tumor suppressor|deleted in colorectal cancer protein|deleted in colorectal carcinoma|immunoglobulin superfamily DCC subclass member 1|putative colorectal tumor suppressor|tumor suppressor protein DCC 236 0.0323 1.549 1 1 +1632 ECI1 enoyl-CoA delta isomerase 1 16 protein-coding DCI enoyl-CoA delta isomerase 1, mitochondrial|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|dodecenoyl-CoA delta isomerase (3,2 trans-enoyl-CoA isomerase)|dodecenoyl-Coenzyme A delta isomerase (3,2 trans-enoyl-Coenzyme A isomerase) 21 0.002874 10.09 1 1 +1633 DCK deoxycytidine kinase 4 protein-coding - deoxycytidine kinase|deoxynucleoside kinase 22 0.003011 9.084 1 1 +1634 DCN decorin 12 protein-coding CSCD|DSPG2|PG40|PGII|PGS2|SLRR1B decorin|bone proteoglycan II|dermatan sulphate proteoglycans II|proteoglycan core protein|small leucine-rich protein 1B 39 0.005338 11.26 1 1 +1635 DCTD dCMP deaminase 4 protein-coding - deoxycytidylate deaminase 12 0.001642 10.52 1 1 +1636 ACE angiotensin I converting enzyme 17 protein-coding ACE1|CD143|DCP|DCP1 angiotensin-converting enzyme|CD143 antigen|angiotensin I converting enzyme (peptidyl-dipeptidase A) 1|angiotensin converting enzyme, somatic isoform|carboxycathepsin|dipeptidyl carboxypeptidase 1|dipeptidyl carboxypeptidase I|kininase II|peptidase P 98 0.01341 8.78 1 1 +1638 DCT dopachrome tautomerase 13 protein-coding TRP-2|TYRP2 L-dopachrome tautomerase|DT|L-dopachrome Delta-isomerase|L-dopachrome isomerase|TRP2|dopachrome delta-isomerase|dopachrome tautomerase (dopachrome delta-isomerase, tyrosine-related protein 2)|tyrosinase related protein-2|tyrosine-related protein 2 75 0.01027 1.36 1 1 +1639 DCTN1 dynactin subunit 1 2 protein-coding DAP-150|DP-150|P135 dynactin subunit 1|150 kDa dynein-associated polypeptide|dynactin 1 (p150, glued homolog, Drosophila) 92 0.01259 12.01 1 1 +1641 DCX doublecortin X protein-coding DBCN|DC|LISX|SCLH|XLIS neuronal migration protein doublecortin|doublecortex|doublin|lis-X|lissencephalin-X 72 0.009855 2.585 1 1 +1642 DDB1 damage specific DNA binding protein 1 11 protein-coding DDBA|UV-DDB1|XAP1|XPCE|XPE|XPE-BF DNA damage-binding protein 1|DDB p127 subunit|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|damage-specific DNA binding protein 1, 127kDa|xeroderma pigmentosum group E-complementing protein 93 0.01273 12.57 1 1 +1643 DDB2 damage specific DNA binding protein 2 11 protein-coding DDBB|UV-DDB2|XPE DNA damage-binding protein 2|DDB p48 subunit|UV-DDB 2|UV-damaged DNA-binding protein 2|damage-specific DNA binding protein 2, 48kDa|xeroderma pigmentosum group E protein 32 0.00438 8.897 1 1 +1644 DDC dopa decarboxylase 7 protein-coding AADC aromatic-L-amino-acid decarboxylase|dopa decarboxylase (aromatic L-amino acid decarboxylase) 59 0.008076 3.6 1 1 +1645 AKR1C1 aldo-keto reductase family 1 member C1 10 protein-coding 2-ALPHA-HSD|20-ALPHA-HSD|C9|DD1|DD1/DD2|DDH|DDH1|H-37|HAKRC|HBAB|MBAB aldo-keto reductase family 1 member C1|20 alpha-hydroxysteroid dehydrogenase|aldo-keto reductase C|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 25 0.003422 8.136 1 1 +1646 AKR1C2 aldo-keto reductase family 1 member C2 10 protein-coding AKR1C-pseudo|BABP|DD|DD-2|DD/BABP|DD2|DDH2|HAKRD|HBAB|MCDR2|SRXY8|TDD aldo-keto reductase family 1 member C2|3-alpha-HSD3|chlordecone reductase homolog HAKRD|dihydrodiol dehydrogenase 2; bile acid binding protein; 3-alpha hydroxysteroid dehydrogenase, type III|pseudo-chlordecone reductase|testicular 17,20-desmolase deficiency|trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|type II dihydrodiol dehydrogenase 20 0.002737 7.203 1 1 +1647 GADD45A growth arrest and DNA damage inducible alpha 1 protein-coding DDIT1|GADD45 growth arrest and DNA damage-inducible protein GADD45 alpha|DDIT-1|DNA damage-inducible transcript 1 protein|DNA damage-inducible transcript-1|growth arrest and DNA-damage-inducible 45 alpha 5 0.0006844 9.436 1 1 +1649 DDIT3 DNA damage inducible transcript 3 12 protein-coding CEBPZ|CHOP|CHOP-10|CHOP10|GADD153 DNA damage-inducible transcript 3 protein|C/EBP zeta|CCAAT/enhancer-binding protein homologous protein|DDIT-3|c/EBP-homologous protein 10|growth arrest and DNA damage-inducible protein GADD153 14 0.001916 8.963 1 1 +1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit 1 protein-coding AGER1|CDG1R|OKSWcl45|OST|OST48|WBP1 dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit|advanced glycation end-product receptor 1|advanced glycation endproduct receptor 1|dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit (non-catalytic)|dolichyl-diphosphooligosaccharide-protein glycotransferase|oligosaccharyl transferase 48 kDa subunit|oligosaccharyltransferase 48 kDa subunit|oligosaccharyltransferase subunit 48 14 0.001916 12.39 1 1 +1652 DDT D-dopachrome tautomerase 22 protein-coding DDCT D-dopachrome decarboxylase|phenylpyruvate tautomerase II 2 0.0002737 9.675 1 1 +1653 DDX1 DEAD-box helicase 1 2 protein-coding DBP-RB|UKVH5d ATP-dependent RNA helicase DDX1|DEAD (Asp-Glu-Ala-Asp) box helicase 1|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|DEAD/H-box helicase 1 48 0.00657 11.14 1 1 +1654 DDX3X DEAD-box helicase 3, X-linked X protein-coding CAP-Rf|DBX|DDX14|DDX3|HLP2|MRX102 ATP-dependent RNA helicase DDX3X|DEAD (Asp-Glu-Ala-Asp) box helicase 3, X-linked|DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, X-linked|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 75 0.01027 12.46 1 1 +1655 DDX5 DEAD-box helicase 5 17 protein-coding G17P1|HLR1|HUMP68|p68 probable ATP-dependent RNA helicase DDX5|ATP-dependent RNA helicase DDX5|DEAD (Asp-Glu-Ala-Asp) box helicase 5|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 52 0.007117 13.36 1 1 +1656 DDX6 DEAD-box helicase 6 11 protein-coding HLR2|P54|RCK probable ATP-dependent RNA helicase DDX6|ATP-dependent RNA helicase p54|DEAD (Asp-Glu-Ala-Asp) box helicase 6|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 47 0.006433 11.47 1 1 +1657 DMXL1 Dmx like 1 5 protein-coding - dmX-like protein 1 187 0.0256 9.525 1 1 +1659 DHX8 DEAH-box helicase 8 17 protein-coding DDX8|HRH1|PRP22|PRPF22 ATP-dependent RNA helicase DHX8|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 8 (RNA helicase)|DEAH (Asp-Glu-Ala-His) box polypeptide 8|DEAH box protein 8|RNA helicase HRH1 83 0.01136 10.02 1 1 +1660 DHX9 DExH-box helicase 9 1 protein-coding DDX9|LKP|NDH2|NDHII|RHA ATP-dependent RNA helicase A|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 9|DEAH (Asp-Glu-Ala-His) box helicase 9|DEAH (Asp-Glu-Ala-His) box polypeptide 9|DEAH box protein 9|DEAH-box helicase 9|RNA helicase A|leukophysin|nuclear DNA helicase II 111 0.01519 11.93 1 1 +1662 DDX10 DEAD-box helicase 10 11 protein-coding HRH-J8 probable ATP-dependent RNA helicase DDX10|DDX10-NUP98 fusion protein type 2|DEAD (Asp-Glu-Ala-Asp) box polypeptide 10|DEAD box protein 10|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 10 (RNA helicase) 54 0.007391 9.009 1 1 +1663 DDX11 DEAD/H-box helicase 11 12 protein-coding CHL1|CHLR1|KRG2|WABS probable ATP-dependent DNA helicase DDX11|CHL1-like helicase homolog|CHL1-related helicase gene-1|CHL1-related protein 1|DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11|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 94 0.01287 8.834 1 1 +1665 DHX15 DEAH-box helicase 15 4 protein-coding DBP1|DDX15|HRH2|PRP43|PRPF43|PrPp43p pre-mRNA-splicing factor ATP-dependent RNA helicase DHX15|ATP-dependent RNA helicase #46|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 15|DEAD/H box-15|DEAH (Asp-Glu-Ala-His) box helicase 15|DEAH (Asp-Glu-Ala-His) box polypeptide 15|DEAH box protein 15|RNA helicase 2|putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX15 62 0.008486 11.2 1 1 +1666 DECR1 2,4-dienoyl-CoA reductase 1, mitochondrial 8 protein-coding DECR|NADPH|SDR18C1 2,4-dienoyl-CoA reductase, mitochondrial|4-enoyl-CoA reductase|short chain dehydrogenase/reductase family 18C member 1 20 0.002737 10.33 1 1 +1668 DEFA3 defensin alpha 3 8 protein-coding DEF3|HNP-3|HNP3|HP-3|HP3 neutrophil defensin 3|defensin 3, neutrophil-specific|defensin, alpha 3, neutrophil-specific|neutrophil peptide 3 0 0 1 0 +1669 DEFA4 defensin alpha 4 8 protein-coding DEF4|HNP-4|HP-4|HP4 neutrophil defensin 4|corticostatin|defensin, alpha 4, corticostatin|defensin, alpha 4, preproprotein 13 0.001779 0.17 1 1 +1670 DEFA5 defensin alpha 5 8 protein-coding DEF5|HD-5 defensin-5|HD5(20-94)|defensin, alpha 5, Paneth cell-specific|defensin, alpha 5, preproprotein 9 0.001232 0.4011 1 1 +1671 DEFA6 defensin alpha 6 8 protein-coding DEF6|HD-6 defensin-6|defensin, alpha 6, Paneth cell-specific 8 0.001095 0.4689 1 1 +1672 DEFB1 defensin beta 1 8 protein-coding BD1|DEFB-1|DEFB101|HBD1 beta-defensin 1|BD-1 7 0.0009581 5.074 1 1 +1673 DEFB4A defensin beta 4A 8 protein-coding BD-2|DEFB-2|DEFB102|DEFB2|DEFB4|HBD-2|SAP1 beta-defensin 4A|beta defensin-2|defensin, beta 2|defensin, beta 4|skin-antimicrobial peptide 1 2 0.0002737 0.7997 1 1 +1674 DES desmin 2 protein-coding CSM1|CSM2|LGMD2R desmin|intermediate filament protein|mutant desmin p.K241E 35 0.004791 6.43 1 1 +1675 CFD complement factor D 19 protein-coding ADIPSIN|ADN|DF|PFD complement factor D|C3 convertase activator|D component of complement (adipsin)|complement factor D (adipsin)|complement factor D preproprotein|properdin factor D 2 0.0002737 7.43 1 1 +1676 DFFA DNA fragmentation factor subunit alpha 1 protein-coding DFF-45|DFF1|ICAD DNA fragmentation factor subunit alpha|DFF45|DNA fragmentation factor 45 kDa subunit|DNA fragmentation factor, 45kDa, alpha polypeptide|inhibitor of CAD 21 0.002874 8.962 1 1 +1677 DFFB DNA fragmentation factor subunit beta 1 protein-coding CAD|CPAN|DFF-40|DFF2|DFF40 DNA fragmentation factor subunit beta|DNA fragmentation factor 40 kDa subunit|DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase)|caspase-activated DNase|caspase-activated deoxyribonuclease|caspase-activated nuclease 23 0.003148 6.876 1 1 +1678 TIMM8A translocase of inner mitochondrial membrane 8 homolog A (yeast) X protein-coding DDP|DDP1|DFN1|MTS|TIM8 mitochondrial import inner membrane translocase subunit Tim8 A|X-linked deafness dystonia protein|deafness dystonia protein 1|deafness/dystonia peptide 9 0.001232 7.242 1 1 +1687 DFNA5 DFNA5, deafness associated tumor suppressor 7 protein-coding ICERE-1 non-syndromic hearing impairment protein 5|deafness, autosomal dominant 5|inversely correlated with estrogen receptor expression 1|nonsyndromic hearing impairment protein 45 0.006159 8.092 1 1 +1690 COCH cochlin 14 protein-coding COCH-5B2|COCH5B2|DFNA9 cochlin|coagulation factor C homolog, cochlin (Limulus polyphemus) 38 0.005201 5.549 1 1 +1716 DGUOK deoxyguanosine kinase 2 protein-coding MTDPS3|NCPH|PEOB4|dGK deoxyguanosine kinase, mitochondrial 21 0.002874 9.734 1 1 +1717 DHCR7 7-dehydrocholesterol reductase 11 protein-coding SLOS 7-dehydrocholesterol reductase|7-DHC reductase|delta-7-dehydrocholesterol reductase|putative sterol reductase SR-2|sterol delta-7-reductase 30 0.004106 10.38 1 1 +1718 DHCR24 24-dehydrocholesterol reductase 1 protein-coding DCE|Nbla03646|SELADIN1|seladin-1 delta(24)-sterol reductase|3 beta-hydroxysterol delta 24-reductase|desmosterol-to-cholesterol enzyme|diminuto/dwarf1 homolog|seladin 1|selective AD indicator 1 20 0.002737 12.41 1 1 +1719 DHFR dihydrofolate reductase 5 protein-coding DHFRP1|DYR dihydrofolate reductase 7 0.0009581 8.284 1 1 +1723 DHODH dihydroorotate dehydrogenase (quinone) 16 protein-coding DHOdehase|POADS|URA1 dihydroorotate dehydrogenase (quinone), mitochondrial|dihydroorotate oxidase|human complement of yeast URA1 27 0.003696 7.421 1 1 +1725 DHPS deoxyhypusine synthase 19 protein-coding DHS|DS|MIG13 deoxyhypusine synthase|migration-inducing gene 13 24 0.003285 9.981 1 1 +1727 CYB5R3 cytochrome b5 reductase 3 22 protein-coding B5R|DIA1 NADH-cytochrome b5 reductase 3|NADH-cytochrome b5 reductase 3 membrane-bound form|NADH-cytochrome b5 reductase 3 soluble form|diaphorase-1|mutant NADH-cytochrome b5 reductase 22 0.003011 12.22 1 1 +1728 NQO1 NAD(P)H quinone dehydrogenase 1 16 protein-coding DHQU|DIA4|DTD|NMOR1|NMORI|QR1 NAD(P)H dehydrogenase [quinone] 1|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 12 0.001642 10.49 1 1 +1729 DIAPH1 diaphanous related formin 1 5 protein-coding DFNA1|DIA1|DRF1|LFHL1|SCBMS|hDIA1 protein diaphanous homolog 1 62 0.008486 11.63 1 1 +1730 DIAPH2 diaphanous related formin 2 X protein-coding DIA|DIA2|DRF2|POF|POF2 protein diaphanous homolog 2|diaphanous homolog 2|diaphorase-2 102 0.01396 7.675 1 1 +1731 SEPT1 septin 1 16 protein-coding DIFF6|LARP|PNUTL3|SEP1 septin-1|differentiation 6 (deoxyguanosine triphosphate triphosphohydrolase)|peanut-like protein 3|serologically defined breast cancer antigen NY-BR-24 28 0.003832 6.731 1 1 +1733 DIO1 deiodinase, iodothyronine type I 1 protein-coding 5DI|TXDI1 type I iodothyronine deiodinase|DIOI|iodothyronine deiodinase type 1|thyroxine 5'-deiodinase|thyroxine deiodinase type I (selenoprotein)|type 1 DI|type-I 5'-deiodinase 9 0.001232 3.154 1 1 +1734 DIO2 deiodinase, iodothyronine type II 14 protein-coding 5DII|D2|DIOII|SelY|TXDI2 type II iodothyronine deiodinase|deiodinase-2|deiodonase-2|thyroxine deiodinase, type II|type 2 DI|type 2 iodothyronine deiodinase|type-II 5'-deiodinase|type-II 5'deiodinase 43 0.005886 7.797 1 1 +1735 DIO3 deiodinase, iodothyronine type III 14 protein-coding 5DIII|D3|DIOIII|TXDI3 thyroxine 5-deiodinase|iodothyronine deiodinase, placental type|thyroxine deiodinase type III (selenoprotein)|type 3 DI|type 3 iodothyronine selenodeiodinase|type-III 5' deiodinase 30 0.004106 3.151 1 1 +1736 DKC1 dyskerin pseudouridine synthase 1 X protein-coding CBF5|DKC|DKCX|NAP57|NOLA4|XAP101 H/ACA ribonucleoprotein complex subunit 4|CBF5 homolog|dyskeratosis congenita 1, dyskerin|nopp140-associated protein of 57 kDa|nucleolar protein NAP57|nucleolar protein family A member 4|snoRNP protein DKC1 34 0.004654 10.57 1 1 +1737 DLAT dihydrolipoamide S-acetyltransferase 11 protein-coding DLTA|PDC-E2|PDCE2 dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex, mitochondrial|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|pyruvate dehydrogenase complex component E2 41 0.005612 9.809 1 1 +1738 DLD dihydrolipoamide dehydrogenase 7 protein-coding DLDD|DLDH|E3|GCSL|LAD|PHE3 dihydrolipoyl dehydrogenase, mitochondrial|E3 component of pyruvate dehydrogenase complex, 2-oxo-glutarate complex, branched chain keto acid dehydrogenase complex|diaphorase|glycine cleavage system L protein|glycine cleavage system protein L|lipoamide dehydrogenase|lipoamide reductase|lipoyl dehydrogenase 35 0.004791 10.74 1 1 +1739 DLG1 discs large MAGUK scaffold protein 1 3 protein-coding DLGH1|SAP-97|SAP97|dJ1061C18.1.1|hdlg disks large homolog 1|discs large homolog 1|discs large homolog 1, scribble cell polarity complex component|discs, large homolog 1 (Drosophila) transcript variant 6-v1|discs, large homolog 1 (Drosophila) transcript variant 6-v2|presynaptic protein SAP97|synapse-associated protein 97 81 0.01109 10.36 1 1 +1740 DLG2 discs large MAGUK scaffold protein 2 11 protein-coding PPP1R58|PSD-93|PSD93|chapsyn-110 disks large homolog 2|channel-associated protein of synapse-110|channel-associated protein of synapses, 110kDa|discs large 2|discs, large homolog 2|discs, large homolog 2, chapsyn-110|postsynaptic density protein PSD-93|protein phosphatase 1, regulatory subunit 58 139 0.01903 5.222 1 1 +1741 DLG3 discs large MAGUK scaffold protein 3 X protein-coding MRX|MRX90|NEDLG|PPP1R82|SAP102|XLMR disks large homolog 3|discs, large homolog 3|neuroendocrine-DLG|protein phosphatase 1, regulatory subunit 82|synapse-associated protein 102 45 0.006159 9.82 1 1 +1742 DLG4 discs large MAGUK scaffold protein 4 17 protein-coding PSD95|SAP-90|SAP90 disks large homolog 4|Tax interaction protein 15|discs large homolog 4|post-synaptic density protein 95|synapse-associated protein 90 52 0.007117 8.03 1 1 +1743 DLST dihydrolipoamide S-succinyltransferase 14 protein-coding DLTS dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial|Dihydrolipoyllysine-residue succinyltransferase|E2K|OGDC-E2|dihydrolipoamide S-succinyltransferase (E2 component of 2-oxo-glutarate complex) 25 0.003422 11.01 1 1 +1745 DLX1 distal-less homeobox 1 2 protein-coding - homeobox protein DLX-1|distal-less homeo box 1 10 0.001369 3.39 1 1 +1746 DLX2 distal-less homeobox 2 2 protein-coding TES-1|TES1 homeobox protein DLX-2|distal-less homeo box 2 30 0.004106 2.518 1 1 +1747 DLX3 distal-less homeobox 3 17 protein-coding AI4|TDO homeobox protein DLX-3 23 0.003148 4.285 1 1 +1748 DLX4 distal-less homeobox 4 17 protein-coding BP1|DLX7|DLX8|DLX9|OFC15 homeobox protein DLX-4|beta protein 1|distal-less homeo box 7|distal-less homeo box 9|homeobox protein DLX-7|homeobox protein DLX-8 19 0.002601 3.746 1 1 +1749 DLX5 distal-less homeobox 5 7 protein-coding SHFM1D homeobox protein DLX-5|distal-less homeo box 5|split hand/foot malformation type 1 with sensorineural hearing loss 57 0.007802 4.501 1 1 +1750 DLX6 distal-less homeobox 6 7 protein-coding - homeobox protein DLX-6|distal-less homeo box 6 50 0.006844 2.843 1 1 +1755 DMBT1 deleted in malignant brain tumors 1 10 protein-coding GP340|SAG|SALSA|muclin deleted in malignant brain tumors 1 protein|glycoprotein 340|gp-340|hensin|salivary agglutinin|surfactant pulmonary-associated D-binding protein 196 0.02683 4.126 1 1 +1756 DMD dystrophin X protein-coding BMD|CMD3B|DXS142|DXS164|DXS206|DXS230|DXS239|DXS268|DXS269|DXS270|DXS272|MRX85 dystrophin 427 0.05845 8.215 1 1 +1757 SARDH sarcosine dehydrogenase 9 protein-coding BPR-2|DMGDHL1|SAR|SARD|SDH sarcosine dehydrogenase, mitochondrial|dimethylglycine dehydrogenase-like 1 70 0.009581 6.122 1 1 +1758 DMP1 dentin matrix acidic phosphoprotein 1 4 protein-coding ARHP|ARHR|DMP-1 dentin matrix acidic phosphoprotein 1|dentin matrix protein 1 47 0.006433 1.122 1 1 +1759 DNM1 dynamin 1 9 protein-coding DNM|EIEE31 dynamin-1 47 0.006433 7.999 1 1 +1760 DMPK dystrophia myotonica protein kinase 19 protein-coding DM|DM1|DM1PK|DMK|MDPK|MT-PK myotonin-protein kinase|DM protein kinase|DM1 protein kinase|myotonic dystrophy associated protein kinase|myotonin protein kinase A|thymopoietin homolog 44 0.006022 9.338 1 1 +1761 DMRT1 doublesex and mab-3 related transcription factor 1 9 protein-coding CT154|DMT1 doublesex- and mab-3-related transcription factor 1|DM domain expressed in testis 1|DM domain expressed in testis protein 1 35 0.004791 1.11 1 1 +1762 DMWD dystrophia myotonica, WD repeat containing 19 protein-coding D19S593E|DMR-N9|DMRN9|gene59 dystrophia myotonica WD repeat-containing protein|dystrophia myotonica-containing WD repeat motif protein|protein 59 36 0.004927 9.228 1 1 +1763 DNA2 DNA replication helicase/nuclease 2 10 protein-coding DNA2L|hDNA2 DNA replication ATP-dependent helicase/nuclease DNA2|DNA replication ATP-dependent helicase-like homolog|DNA replication helicase 2 homolog|DNA2-like helicase 58 0.007939 6.637 1 1 +1767 DNAH5 dynein axonemal heavy chain 5 5 protein-coding CILD3|DNAHC5|HL1|KTGNR|PCD dynein heavy chain 5, axonemal|axonemal beta dynein heavy chain 5|ciliary dynein heavy chain 5|dynein, axonemal, heavy polypeptide 5 488 0.06679 5.731 1 1 +1768 DNAH6 dynein axonemal heavy chain 6 2 protein-coding DNHL1|Dnahc6|HL-2|HL2 dynein heavy chain 6, axonemal|axonemal beta dynein heavy chain 6|ciliary dynein heavy chain 6|dynein heavy chain-like 1|dynein, axonemal, heavy polypeptide 6 149 0.02039 4.084 1 1 +1769 DNAH8 dynein axonemal heavy chain 8 6 protein-coding ATPase|hdhc9 dynein heavy chain 8, axonemal|axonemal beta dynein heavy chain 8|ciliary dynein heavy chain 8|dynein, axonemal, heavy polypeptide 8 372 0.05092 1.633 1 1 +1770 DNAH9 dynein axonemal heavy chain 9 17 protein-coding DNAH17L|DNEL1|DYH9|Dnahc9|HL-20|HL20 dynein heavy chain 9, axonemal|DNAH9 variant protein|axonemal beta dynein heavy chain 9|ciliary dynein heavy chain 9|dynein, axonemal, heavy polypeptide 9 417 0.05708 3.606 1 1 +1773 DNASE1 deoxyribonuclease 1 16 protein-coding DNL1|DRNI deoxyribonuclease-1|DNase I, lysosomal|Dornase alfa|deoxyribonuclease I|human urine deoxyribonuclease I 14 0.001916 6.142 1 1 +1774 DNASE1L1 deoxyribonuclease 1 like 1 X protein-coding DNAS1L1|DNASEX|DNL1L|G4.8|XIB deoxyribonuclease-1-like 1|DNase I, lysosomal-like|DNase I-like 1|DNase I-like, muscle-specific|deoxyribonuclease I-like 1 22 0.003011 9.003 1 1 +1775 DNASE1L2 deoxyribonuclease 1 like 2 16 protein-coding DNAS1L2 deoxyribonuclease-1-like 2|DNase I homolog protein DHP1|DNase I-like 2|deoxyribonuclease I-like 2 9 0.001232 3.892 1 1 +1776 DNASE1L3 deoxyribonuclease 1 like 3 3 protein-coding DHP2|DNAS1L3|LSD|SLEB16 deoxyribonuclease gamma|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 3|deoxyribonuclease I-like III 24 0.003285 4.542 1 1 +1777 DNASE2 deoxyribonuclease 2, lysosomal 19 protein-coding DNASE2A|DNL|DNL2 deoxyribonuclease-2-alpha|DNase II alpha|DNase II, lysosomal|R31240_2|acid DNase|deoxyribonuclease II alpha|deoxyribonuclease II, lysosomal|lysosomal DNase II 22 0.003011 10.56 1 1 +1778 DYNC1H1 dynein cytoplasmic 1 heavy chain 1 14 protein-coding CMT2O|DHC1|DHC1a|DNCH1|DNCL|DNECL|DYHC|Dnchc1|HL-3|SMALED1|p22 cytoplasmic dynein 1 heavy chain 1|dynein heavy chain, cytosolic|dynein, cytoplasmic, heavy polypeptide 1 234 0.03203 13.08 1 1 +1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 7 protein-coding DNCI1|DNCIC1 cytoplasmic dynein 1 intermediate chain 1|DH IC-1|cytoplasmic dynein intermediate chain 1|dynein intermediate chain 1, cytosolic|dynein, cytoplasmic, intermediate polypeptide 1 74 0.01013 5.522 1 1 +1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 2 protein-coding DIC74|DNCI2|IC2 cytoplasmic dynein 1 intermediate chain 2|DH IC-2|dynein intermediate chain 2, cytosolic|dynein, cytoplasmic, intermediate polypeptide 2|testis tissue sperm-binding protein Li 66n 33 0.004517 10.47 1 1 +1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 16 protein-coding DNCLI2|LIC2 cytoplasmic dynein 1 light intermediate chain 2|LIC-2|LIC53/55|dynein light intermediate chain 2, cytosolic|dynein, cytoplasmic, light intermediate polypeptide 2 29 0.003969 11.33 1 1 +1785 DNM2 dynamin 2 19 protein-coding CMT2M|CMTDI1|CMTDIB|DI-CMTB|DYN2|DYNII|LCCS5 dynamin-2|dynamin II 85 0.01163 11.67 1 1 +1786 DNMT1 DNA methyltransferase 1 19 protein-coding ADCADN|AIM|CXXC9|DNMT|HSN1E|MCMT|m.HsaI DNA (cytosine-5)-methyltransferase 1|CXXC-type zinc finger protein 9|DNA (cytosine-5-)-methyltransferase 1|DNA MTase HsaI|DNA methyltransferase HsaI 89 0.01218 10.62 1 1 +1787 TRDMT1 tRNA aspartic acid methyltransferase 1 10 protein-coding DMNT2|DNMT2|MHSAIIP|PUMET|RNMT1 tRNA (cytosine(38)-C(5))-methyltransferase|DNA (cytosine-5)-methyltransferase-like protein 2|DNA MTase homolog HsaIIP|DNA cytosine-5 methyltransferase 2|DNA methyltransferase-2|tRNA (cytosine-5-)-methyltransferase 38 0.005201 6.567 1 1 +1788 DNMT3A DNA methyltransferase 3 alpha 2 protein-coding DNMT3A2|M.HsaIIIA|TBRS DNA (cytosine-5)-methyltransferase 3A|DNA (cytosine-5-)-methyltransferase 3 alpha|DNA MTase HsaIIIA|DNA cytosine methyltransferase 3A2 127 0.01738 9.011 1 1 +1789 DNMT3B DNA methyltransferase 3 beta 20 protein-coding ICF|ICF1|M.HsaIIIB DNA (cytosine-5)-methyltransferase 3B|DNA (cytosine-5-)-methyltransferase 3 beta|DNA MTase HsaIIIB|DNA methyltransferase HsaIIIB 96 0.01314 6.589 1 1 +1791 DNTT DNA nucleotidylexotransferase 10 protein-coding TDT DNA nucleotidylexotransferase|nucleosidetriphosphate:DNA deoxynucleotidylexotransferase|terminal addition enzyme|terminal deoxynucleotidyltransferase|terminal deoxyribonucleotidyltransferase|terminal transferase 47 0.006433 0.5217 1 1 +1793 DOCK1 dedicator of cytokinesis 1 10 protein-coding DOCK180|ced5 dedicator of cytokinesis protein 1|180 kDa protein downstream of CRK|DOwnstream of CrK 109 0.01492 10.28 1 1 +1794 DOCK2 dedicator of cytokinesis 2 5 protein-coding IMD40 dedicator of cytokinesis protein 2|dedicator of cyto-kinesis 2 249 0.03408 7.932 1 1 +1795 DOCK3 dedicator of cytokinesis 3 3 protein-coding MOCA|PBP dedicator of cytokinesis protein 3|modifier of cell adhesion|presenilin-binding protein 162 0.02217 5.681 1 1 +1796 DOK1 docking protein 1 2 protein-coding P62DOK|pp62 docking protein 1|Downstream of tyrosine kinase 1|docking protein 1, 62kDa (downstream of tyrosine kinase 1) 32 0.00438 8.056 1 1 +1797 DXO decapping exoribonuclease 6 protein-coding DOM3L|DOM3Z|NG6|RAI1 decapping and exoribonuclease protein|protein Dom3Z 30 0.004106 8.458 1 1 +1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 11 protein-coding ALG7|CDG-Ij|CDG1J|CMS13|CMSTA2|D11S366|DGPT|DPAGT|DPAGT2|G1PT|GPT|UAGT|UGAT UDP-N-acetylglucosamine--dolichyl-phosphate N-acetylglucosaminephosphotransferase|GlcNAc-1-P transferase|GlcNAc-1-P transferase 1|N-acetylglucosamine-1-phosphate transferase|UDP-GlcNAc:dolichyl-phosphate N-acetylglucosaminephosphotransferase|UDP-N-acetylglucosamine--dolichyl-phosphate N-acetylglucosaminephosphotransferase 1|dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P tra|dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P transferase)|dolichyl-phosphate alpha-N-acetylglucosaminyltransferase 33 0.004517 9.781 1 1 +1800 DPEP1 dipeptidase 1 (renal) 16 protein-coding MBD1|MDP|RDP dipeptidase 1|dehydropeptidase-I|hRDP|microsomal dipeptidase|renal dipeptidase|testicular tissue protein Li 57 32 0.00438 4.069 1 1 +1801 DPH1 diphthamide biosynthesis 1 17 protein-coding DEDSSH|DPH2L|DPH2L1|OVCA1 diphthamide biosynthesis protein 1|DPH-like 1|DPH1 homolog|DPH2-like 1|candidate tumor suppressor in ovarian cancer 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 23 0.003148 9.3 1 1 +1802 DPH2 DPH2 homolog 1 protein-coding DPH2L2 diphthamide biosynthesis protein 2|DPH2-like 2|diphthamide biosynthesis protein 2 homolog-like 2|diphthamide biosynthesis-like protein 2|diptheria toxin resistance protein required for diphthamide biosynthesis-like 2 39 0.005338 9.068 1 1 +1803 DPP4 dipeptidyl peptidase 4 2 protein-coding ADABP|ADCP2|CD26|DPPIV|TP103 dipeptidyl peptidase 4|ADCP-2|DPP IV|T-cell activation antigen CD26|adenosine deaminase complexing protein 2|dipeptidyl peptidase IV|dipeptidylpeptidase 4|dipeptidylpeptidase IV (CD26, adenosine deaminase complexing protein 2) 68 0.009307 8.013 1 1 +1804 DPP6 dipeptidyl peptidase like 6 7 protein-coding DPL1|DPPX|MRD33|VF2 dipeptidyl aminopeptidase-like protein 6|DPP VI|dipeptidyl aminopeptidase IV-related protein|dipeptidyl peptidase IV-related protein|dipeptidyl peptidase VI|dipeptidyl-peptidase 6 152 0.0208 3.645 1 1 +1805 DPT dermatopontin 1 protein-coding TRAMP dermatopontin|tyrosine-rich acidic matrix protein 16 0.00219 5.973 1 1 +1806 DPYD dihydropyrimidine dehydrogenase 1 protein-coding DHP|DHPDHASE|DPD dihydropyrimidine dehydrogenase [NADP(+)]|dihydrothymine dehydrogenase|dihydrouracil dehydrogenase 129 0.01766 8.507 1 1 +1807 DPYS dihydropyrimidinase 8 protein-coding DHP|DHPase dihydropyrimidinase|dihydropyrimidine amidohydrolase|hydantoinase 75 0.01027 2.665 1 1 +1808 DPYSL2 dihydropyrimidinase like 2 8 protein-coding CRMP-2|CRMP2|DHPRP2|DRP-2|DRP2|N2A3|ULIP-2|ULIP2 dihydropyrimidinase-related protein 2|collapsin response mediator protein hCRMP-2|unc-33-like phosphoprotein 2 34 0.004654 10.83 1 1 +1809 DPYSL3 dihydropyrimidinase like 3 5 protein-coding CRMP-4|CRMP4|DRP-3|DRP3|LCRMP|ULIP|ULIP-1 dihydropyrimidinase-related protein 3|collapsin response mediator protein 4 long|testicular secretory protein Li 7|unc-33-like phosphoprotein 1 51 0.006981 11.21 1 1 +1810 DR1 down-regulator of transcription 1 1 protein-coding NC2|NC2-BETA|NC2B protein Dr1|TATA-binding protein-associated phosphoprotein|down-regulator of transcription 1, TBP-binding (negative cofactor 2)|negative cofactor 2|negative cofactor 2-beta 6 0.0008212 9.988 1 1 +1811 SLC26A3 solute carrier family 26 member 3 7 protein-coding CLD|DRA chloride anion exchanger|down-regulated in adenoma protein|solute carrier family 26 (anion exchanger), member 3 78 0.01068 1.582 1 1 +1812 DRD1 dopamine receptor D1 5 protein-coding DADR|DRD1A D(1A) dopamine receptor|dopamine D1 receptor 41 0.005612 2.346 1 1 +1813 DRD2 dopamine receptor D2 11 protein-coding D2DR|D2R D(2) dopamine receptor|dopamine D2 receptor|dopamine receptor D2 isoform|seven transmembrane helix receptor 62 0.008486 2.763 1 1 +1814 DRD3 dopamine receptor D3 3 protein-coding D3DR|ETM1|FET1 D(3) dopamine receptor|essential tremor 1 53 0.007254 0.09366 1 1 +1815 DRD4 dopamine receptor D4 11 protein-coding D4DR D(4) dopamine receptor|D(2C) dopamine receptor|dopamine D4 receptor|seven transmembrane helix receptor 14 0.001916 3.125 1 1 +1816 DRD5 dopamine receptor D5 4 protein-coding DBDR|DRD1B|DRD1L2 D(1B) dopamine receptor|D1beta dopamine receptor|d(5) dopamine receptor|dopamine D5 receptor|dopamine receptor D1B 80 0.01095 1.061 1 1 +1817 DRD5P1 dopamine receptor D5 pseudogene 1 2 pseudo - - 2 0.0002737 1 0 +1818 DRD5P2 dopamine receptor D5 pseudogene 2 1 pseudo - psi DRD5-2|seven transmembrane helix receptor 1 0.0001369 1 0 +1819 DRG2 developmentally regulated GTP binding protein 2 17 protein-coding - developmentally-regulated GTP-binding protein 2 25 0.003422 9.448 1 1 +1820 ARID3A AT-rich interaction domain 3A 19 protein-coding BRIGHT|DRIL1|DRIL3|E2FBP1 AT-rich interactive domain-containing protein 3A|ARID domain-containing 3A|ARID domain-containing protein 3A|AT rich interactive domain 3A (BRIGHT- like) protein|AT rich interactive domain 3A (BRIGHT-like)|B-cell regulator of IgH transcription|E2F-binding protein 1|dead ringer-like 1|dead ringer-like protein 1 40 0.005475 6.562 1 1 +1821 DRP2 dystrophin related protein 2 X protein-coding DRP-2 dystrophin-related protein 2 81 0.01109 3.96 1 1 +1822 ATN1 atrophin 1 12 protein-coding B37|D12S755E|DRPLA|HRS|NOD atrophin-1|dentatorubral-pallidoluysian atrophy protein 96 0.01314 12.09 1 1 +1823 DSC1 desmocollin 1 18 protein-coding CDHF1|DG2/DG3 desmocollin-1|cadherin family member 1|desmosomal glycoprotein 2/3 80 0.01095 1.629 1 1 +1824 DSC2 desmocollin 2 18 protein-coding ARVD11|CDHF2|DG2|DGII/III|DSC3 desmocollin-2|cadherin family member 2|desmosomal glycoprotein II/III 81 0.01109 9.223 1 1 +1825 DSC3 desmocollin 3 18 protein-coding CDHF3|DSC|DSC1|DSC2|DSC4|HT-CP desmocollin-3|cadherin family member 3|desmocollin-4 81 0.01109 5.61 1 1 +1826 DSCAM DS cell adhesion molecule 21 protein-coding CHD2|CHD2-42|CHD2-52 Down syndrome cell adhesion molecule 252 0.03449 2.115 1 1 +1827 RCAN1 regulator of calcineurin 1 21 protein-coding ADAPT78|CSP1|DSC1|DSCR1|MCIP1|RCN1 calcipressin-1|Down syndrome candidate region 1|Down syndrome critical region gene 1|calcium and oxidant-inducible mRNA|modulatory calcineurin-interacting protein 1|myocyte-enriched calcineurin-interacting protein 1|near DSCR proline-rich protein 17 0.002327 9.81 1 1 +1828 DSG1 desmoglein 1 18 protein-coding CDHF4|DG1|DSG|EPKHE|EPKHIA|PPKS1|SPPK1 desmoglein-1|cadherin family member 4|desmosomal glycoprotein 1|pemphigus foliaceus antigen 95 0.013 2.746 1 1 +1829 DSG2 desmoglein 2 18 protein-coding CDHF5|HDGC desmoglein-2|cadherin family member 5 71 0.009718 10.25 1 1 +1830 DSG3 desmoglein 3 18 protein-coding CDHF6|PVA desmoglein-3|130 kDa pemphigus vulgaris antigen|cadherin family member 6 111 0.01519 4.266 1 1 +1831 TSC22D3 TSC22 domain family member 3 X protein-coding DIP|DSIPI|GILZ|TSC-22R TSC22 domain family protein 3|DSIP-immunoreactive leucine zipper protein|DSIP-immunoreactive peptide|TSC-22 related protein|TSC-22-like protein|delta sleep-inducing peptide immunoreactor|glucocorticoid-induced leucine zipper protein 18 0.002464 11.2 1 1 +1832 DSP desmoplakin 6 protein-coding DCWHKTA|DP desmoplakin|250/210 kDa paraneoplastic pemphigus antigen 211 0.02888 11.97 1 1 +1833 EPYC epiphycan 12 protein-coding DSPG3|PGLB|Pg-Lb|SLRR3B epiphycan|dermatan sulfate proteoglycan 3|epiphycan proteoglycan|proteoglycan-lb|small chondroitin/dermatan sulfate proteoglycan 32 0.00438 2.13 1 1 +1834 DSPP dentin sialophosphoprotein 4 protein-coding DFNA39|DGI1|DMP3|DPP|DSP dentin sialophosphoprotein|dentin phosphophoryn|dentin phosphoprotein|dentin phosphoryn|dentin sialoprotein 116 0.01588 0.3767 1 1 +1836 SLC26A2 solute carrier family 26 member 2 5 protein-coding D5S1708|DTD|DTDST|EDM4|MST153|MSTP157 sulfate transporter|diastrophic dysplasia protein|solute carrier family 26 (anion exchanger), member 2|solute carrier family 26 (sulfate transporter), member 2|sulfate anion transporter 1 30 0.004106 9.179 1 1 +1837 DTNA dystrobrevin alpha 18 protein-coding D18S892E|DRP3|DTN|DTN-A|LVNC1 dystrobrevin alpha|dystrophin-related protein 3 91 0.01246 7.648 1 1 +1838 DTNB dystrobrevin beta 2 protein-coding - dystrobrevin beta|DTN-B|beta-dystrobrevin 39 0.005338 8.456 1 1 +1839 HBEGF heparin binding EGF like growth factor 5 protein-coding DTR|DTS|DTSF|HEGFL proheparin-binding EGF-like growth factor|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 3 0.0004106 8.431 1 1 +1840 DTX1 deltex E3 ubiquitin ligase 1 12 protein-coding hDx-1 E3 ubiquitin-protein ligase DTX1|deltex 1|deltex 1, E3 ubiquitin ligase|deltex homolog 1|deltex1|hDTX1|protein deltex-1 67 0.009171 6.657 1 1 +1841 DTYMK deoxythymidylate kinase 2 protein-coding CDC8|PP3731|TMPK|TYMK thymidylate kinase|dTMP kinase|deoxythymidylate kinase (thymidylate kinase) 9 0.001232 9.068 1 1 +1842 ECM2 extracellular matrix protein 2 9 protein-coding - extracellular matrix protein 2|extracellular matrix protein 2, female organ and adipocyte specific|matrix glycoprotein SC1/ECM2 50 0.006844 7.362 1 1 +1843 DUSP1 dual specificity phosphatase 1 5 protein-coding CL100|HVH1|MKP-1|MKP1|PTPN10 dual specificity protein phosphatase 1|CL 100|MAP kinase phosphatase 1|dual specificity protein phosphatase hVH1|mitogen-activated protein kinase phosphatase 1|protein-tyrosine phosphatase CL100|serine/threonine specific protein phosphatase 15 0.002053 11.62 1 1 +1844 DUSP2 dual specificity phosphatase 2 2 protein-coding PAC-1|PAC1 dual specificity protein phosphatase 2|dual specificity protein phosphatase PAC-1|serine/threonine specific protein phosphatase 15 0.002053 7.184 1 1 +1845 DUSP3 dual specificity phosphatase 3 17 protein-coding VHR dual specificity protein phosphatase 3|dual specificity protein phosphatase VHR|serine/threonine specific protein phosphatase|vaccinia H1-related phosphatase|vaccinia virus phosphatase VH1-related 11 0.001506 10.82 1 1 +1846 DUSP4 dual specificity phosphatase 4 8 protein-coding HVH2|MKP-2|MKP2|TYP dual specificity protein phosphatase 4|MAP kinase phosphatase 2|VH1 homologous phosphatase 2|dual specificity protein phosphatase hVH2|mitogen-activated protein kinase phosphatase 2|serine/threonine specific protein phosphatase 26 0.003559 7.766 1 1 +1847 DUSP5 dual specificity phosphatase 5 10 protein-coding DUSP|HVH3 dual specificity protein phosphatase 5|VH1-like phosphatase 3|dual specificity protein phosphatase hVH3|serine/threonine specific protein phosphatase 31 0.004243 9.13 1 1 +1848 DUSP6 dual specificity phosphatase 6 12 protein-coding HH19|MKP3|PYST1 dual specificity protein phosphatase 6|MAP kinase phosphatase 3|dual specificity protein phosphatase PYST1|mitogen-activated protein kinase phosphatase 3|serine/threonine specific protein phosphatase 32 0.00438 10.62 1 1 +1849 DUSP7 dual specificity phosphatase 7 3 protein-coding MKPX|PYST2 dual specificity protein phosphatase 7|dual specificity protein phosphatase PYST2 26 0.003559 9.356 1 1 +1850 DUSP8 dual specificity phosphatase 8 11 protein-coding C11orf81|HB5|HVH-5|HVH8 dual specificity protein phosphatase 8|H1 phosphatase, vaccinia virus homolog|dual specificity protein phosphatase hVH-5|serine/threonine specific protein phosphatase 24 0.003285 7.956 1 1 +1852 DUSP9 dual specificity phosphatase 9 X protein-coding MKP-4|MKP4 dual specificity protein phosphatase 9|map kinase phosphatase 4|mitogen-activated protein kinase phosphatase 4|serine/threonine specific protein phosphatase 31 0.004243 4.122 1 1 +1854 DUT deoxyuridine triphosphatase 15 protein-coding dUTPase deoxyuridine 5'-triphosphate nucleotidohydrolase, mitochondrial|dUTP diphosphatase|dUTP nucleotidohydrolase|dUTP pyrophosphatase 8 0.001095 10 1 1 +1855 DVL1 dishevelled segment polarity protein 1 1 protein-coding DRS2|DVL|DVL1L1|DVL1P1 segment polarity protein dishevelled homolog DVL-1|DSH homolog 1|dishevelled 1 (homologous to Drosophila dsh)|dishevelled, dsh homolog 1|dishevelled-1 45 0.006159 10.51 1 1 +1856 DVL2 dishevelled segment polarity protein 2 17 protein-coding - segment polarity protein dishevelled homolog DVL-2|dishevelled 2 (homologous to Drosophila dsh)|dishevelled, dsh homolog 2 40 0.005475 9.509 1 1 +1857 DVL3 dishevelled segment polarity protein 3 3 protein-coding DRS3 segment polarity protein dishevelled homolog DVL-3|dishevelled 3 (homologous to Drosophila dsh)|dishevelled, dsh homolog 3 52 0.007117 11.28 1 1 +1859 DYRK1A dual specificity tyrosine phosphorylation regulated kinase 1A 21 protein-coding DYRK|DYRK1|HP86|MNB|MNBH|MRD7 dual specificity tyrosine-phosphorylation-regulated kinase 1A|MNB/DYRK protein kinase|dual specificity YAK1-related kinase|dual specificity tyrosine-(Y)-phosphorylation regulated kinase 1A|hMNB|mnb protein kinase homolog hp86|protein kinase minibrain homolog|serine/threonine kinase MNB|serine/threonine-specific protein kinase 79 0.01081 10.49 1 1 +1861 TOR1A torsin family 1 member A 9 protein-coding DQ2|DYT1 torsin-1A|dystonia 1 protein|dystonia 1, torsion (autosomal dominant; torsin A)|torsin A|torsin ATPase 1|torsin ATPase-1A|torsin family 1, member A (torsin A) 22 0.003011 9.82 1 1 +1869 E2F1 E2F transcription factor 1 20 protein-coding E2F-1|RBAP1|RBBP3|RBP3 transcription factor E2F1|PBR3|PRB-binding protein E2F-1|RBAP-1|RBBP-3|retinoblastoma-associated protein 1|retinoblastoma-binding protein 3 25 0.003422 8.438 1 1 +1870 E2F2 E2F transcription factor 2 1 protein-coding E2F-2 transcription factor E2F2 24 0.003285 6.77 1 1 +1871 E2F3 E2F transcription factor 3 6 protein-coding E2F-3 transcription factor E2F3 30 0.004106 8.955 1 1 +1874 E2F4 E2F transcription factor 4 16 protein-coding E2F-4 transcription factor E2F4|E2F transcription factor 4, p107/p130-binding|p107/p130-binding protein 26 0.003559 10.25 1 1 +1875 E2F5 E2F transcription factor 5 8 protein-coding E2F-5 transcription factor E2F5|E2F transcription factor 5, p130-binding 26 0.003559 7.211 1 1 +1876 E2F6 E2F transcription factor 6 2 protein-coding E2F-6 transcription factor E2F6 13 0.001779 8.423 1 1 +1877 E4F1 E4F transcription factor 1 16 protein-coding E4F transcription factor E4F1|p120E4F|p50E4F|putative E3 ubiquitin-protein ligase E4F1|transcription factor E4F 51 0.006981 9.143 1 1 +1879 EBF1 early B-cell factor 1 5 protein-coding COE1|EBF|O/E-1|OLF1 transcription factor COE1|Collier, Olf and EBF transcription factor 1|olfactory neuronal transcription factor 1 80 0.01095 6.858 1 1 +1880 GPR183 G protein-coupled receptor 183 13 protein-coding EBI2|hEBI2 G-protein coupled receptor 183|EBV-induced G-protein coupled receptor 2|Epstein-Barr virus induced gene 2 (lymphocyte-specific G protein-coupled receptor)|epstein-Barr virus-induced G-protein coupled receptor 2 19 0.002601 7.193 1 1 +1889 ECE1 endothelin converting enzyme 1 1 protein-coding ECE endothelin-converting enzyme 1|ECE-1 45 0.006159 11.92 1 1 +1890 TYMP thymidine phosphorylase 22 protein-coding ECGF|ECGF1|MEDPS1|MNGIE|MTDPS1|PDECGF|TP|hPD-ECGF thymidine phosphorylase|gliostatin|tdRPase 27 0.003696 10.25 1 1 +1891 ECH1 enoyl-CoA hydratase 1 19 protein-coding HPXEL delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial|delta3,5-delta2,4-dienoyl-CoA isomerase|delta3,5-delta2,4-dienoyl-coenzyme A isomerase|dienoyl-CoA isomerase|enoyl Coenzyme A hydratase 1, peroxisomal|enoyl-CoA hydratase 1, peroxisomal|peroxisomal enoyl-CoA hydratase 1 12 0.001642 11.63 1 1 +1892 ECHS1 enoyl-CoA hydratase, short chain 1 10 protein-coding ECHS1D|SCEH enoyl-CoA hydratase, mitochondrial|enoyl Coenzyme A hydratase, short chain, 1, mitochondrial|enoyl-CoA hydratase, short chain, 1, mitochondrial|short chain enoyl-CoA hydratase 25 0.003422 11.42 1 1 +1893 ECM1 extracellular matrix protein 1 1 protein-coding URBWD extracellular matrix protein 1|secretory component p85|testicular tissue protein Li 61 43 0.005886 9.305 1 1 +1894 ECT2 epithelial cell transforming 2 3 protein-coding ARHGEF31 protein ECT2|epithelial cell-transforming sequence 2 oncogene 57 0.007802 9.273 1 1 +1896 EDA ectodysplasin A X protein-coding ECTD1|ED1|ED1-A1|ED1-A2|EDA-A1|EDA-A2|EDA1|EDA2|HED|HED1|ODT1|STHAGX1|TNLG7C|XHED|XLHED ectodysplasin-A|X-linked anhidroitic ectodermal dysplasia protein|oligodontia 1|tumor necrosis factor ligand 7C 32 0.00438 6.442 1 1 +1901 S1PR1 sphingosine-1-phosphate receptor 1 1 protein-coding CD363|CHEDG1|D1S3362|ECGF1|EDG-1|EDG1|S1P1 sphingosine 1-phosphate receptor 1|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 EDG1|sphingosine 1-phosphate receptor Edg-1 48 0.00657 8.673 1 1 +1902 LPAR1 lysophosphatidic acid receptor 1 9 protein-coding EDG2|GPR26|Gpcr26|LPA1|Mrec1.3|VZG1|edg-2|rec.1.3|vzg-1 lysophosphatidic acid receptor 1|LPA receptor 1|LPA-1|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 2|lysophosphatidic acid receptor Edg-2|ventricular zone gene 1 37 0.005064 7.697 1 1 +1903 S1PR3 sphingosine-1-phosphate receptor 3 9 protein-coding EDG-3|EDG3|LPB3|S1P3 sphingosine 1-phosphate receptor 3|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 Edg-3 32 0.00438 8.662 1 1 +1906 EDN1 endothelin 1 6 protein-coding ARCND3|ET1|HDLCQ7|PPET1|QME endothelin-1|preproendothelin-1 21 0.002874 7.102 1 1 +1907 EDN2 endothelin 2 1 protein-coding ET-2|ET2|PPET2 endothelin-2|preproendothelin 2 12 0.001642 4.183 1 1 +1908 EDN3 endothelin 3 20 protein-coding ET-3|ET3|HSCR4|PPET3|WS4B endothelin-3|preproendothelin-3 37 0.005064 3.167 1 1 +1909 EDNRA endothelin receptor type A 4 protein-coding ET-A|ETA|ETA-R|ETAR|ETRA|MFDA|hET-AR endothelin-1 receptor|G protein-coupled receptor|endothelin receptor subtype A|endothelin-1-specific receptor 29 0.003969 8.195 1 1 +1910 EDNRB endothelin receptor type B 13 protein-coding ABCDS|ET-B|ET-BR|ETB|ETB1|ETBR|ETRB|HSCR|HSCR2|WS4A endothelin B receptor|endothelin receptor non-selective type|endothelin receptor subtype B1 84 0.0115 8.444 1 1 +1911 PHC1 polyhomeotic homolog 1 12 protein-coding EDR1|HPH1|MCPH11|RAE28 polyhomeotic-like protein 1|early development regulator 1 (homolog of polyhomeotic 1)|early development regulatory protein 1|polyhomeotic-like 1 37 0.005064 8.889 1 1 +1912 PHC2 polyhomeotic homolog 2 1 protein-coding EDR2|HPH2|PH2 polyhomeotic-like protein 2|early development regulator 2 (homolog of polyhomeotic 2)|early development regulatory protein 2|polyhomeotic 2|polyhomeotic-like 2 51 0.006981 11.43 1 1 +1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 6 protein-coding CCS-3|CCS3|EE1A1|EEF-1|EEF1A|EF-Tu|EF1A|GRAF-1EF|HNGC:16303|LENG7|PTI1|eEF1A-1 elongation factor 1-alpha 1|CTCL tumor antigen|EF-1-alpha-1|EF1a-like protein|cervical cancer suppressor 3|elongation factor 1 alpha subunit|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 68 0.009307 16.16 1 1 +1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 20 protein-coding EEF1AL|EF-1-alpha-2|EF1A|EIEE33|HS1|MRD38|STN|STNL elongation factor 1-alpha 2|eukaryotic elongation factor 1 A-2|statin-S1 42 0.005749 7.413 1 1 +1933 EEF1B2 eukaryotic translation elongation factor 1 beta 2 2 protein-coding EEF1B|EEF1B1|EF1B elongation factor 1-beta|EF-1-beta|eukaryotic translation elongation factor 1 beta 1 50 0.006844 11.77 1 1 +1936 EEF1D eukaryotic translation elongation factor 1 delta 8 protein-coding EF-1D|EF1D|FP1047 elongation factor 1-delta|EF-1-delta|antigen NY-CO-4|eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) 45 0.006159 13 1 1 +1937 EEF1G eukaryotic translation elongation factor 1 gamma 11 protein-coding EF1G|GIG35 elongation factor 1-gamma|EF-1-gamma|PRO1608|eEF-1B gamma|pancreatic tumor-related protein|translation elongation factor eEF-1 gamma chain 23 0.003148 13.95 1 1 +1938 EEF2 eukaryotic translation elongation factor 2 19 protein-coding EEF-2|EF-2|EF2|SCA26 elongation factor 2|polypeptidyl-tRNA translocase 58 0.007939 15.59 1 1 +1939 EIF2D eukaryotic translation initiation factor 2D 1 protein-coding HCA56|LGTN eukaryotic translation initiation factor 2D|hepatocellular carcinoma-associated antigen 56|ligatin 24 0.003285 10.01 1 1 +1942 EFNA1 ephrin A1 1 protein-coding B61|ECKLG|EFL1|EPLG1|LERK-1|LERK1|TNFAIP4 ephrin-A1|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 13 0.001779 10.62 1 1 +1943 EFNA2 ephrin A2 19 protein-coding ELF-1|EPLG6|HEK7-L|LERK-6|LERK6 ephrin-A2|HEK7 ligand|eph-related receptor tyrosine kinase ligand 6 4 0.0005475 1.763 1 1 +1944 EFNA3 ephrin A3 1 protein-coding EFL2|EPLG3|Ehk1-L|LERK3 ephrin-A3|EFL-2|EHK1 ligand|LERK-3|eph-related receptor tyrosine kinase ligand 3|ligand of eph-related kinase 3 15 0.002053 7.517 1 1 +1945 EFNA4 ephrin A4 1 protein-coding EFL4|EPLG4|LERK4 ephrin-A4|LERK-4|eph-related receptor tyrosine kinase ligand 4|ligand of eph-related kinase 4 11 0.001506 7.898 1 1 +1946 EFNA5 ephrin A5 5 protein-coding AF1|EFL5|EPLG7|GLC1M|LERK7|RAGS ephrin-A5|AL-1|LERK-7|eph-related receptor tyrosine kinase ligand 7 18 0.002464 7.297 1 1 +1947 EFNB1 ephrin B1 X protein-coding CFND|CFNS|EFB1|EFL3|EPLG2|Elk-L|LERK2 ephrin-B1|ELK ligand|eph-related receptor tyrosine kinase ligand 2 21 0.002874 9.918 1 1 +1948 EFNB2 ephrin B2 13 protein-coding EPLG5|HTKL|Htk-L|LERK5 ephrin-B2|HTK ligand|LERK-5|eph-related receptor tyrosine kinase ligand 5|ligand of eph-related kinase 5 29 0.003969 9.731 1 1 +1949 EFNB3 ephrin B3 17 protein-coding EFL6|EPLG8|LERK8 ephrin-B3|EPH-related receptor transmembrane ligand ELK-L3|eph-related receptor tyrosine kinase ligand 8 44 0.006022 6.141 1 1 +1950 EGF epidermal growth factor 4 protein-coding HOMG4|URG pro-epidermal growth factor|beta-urogastrone 90 0.01232 4.485 1 1 +1951 CELSR3 cadherin EGF LAG seven-pass G-type receptor 3 3 protein-coding ADGRC3|CDHF11|EGFL1|FMI1|HFMI1|MEGF2|RESDA1 cadherin EGF LAG seven-pass G-type receptor 3|EGF-like protein 1|EGF-like-domain, multiple 1|adhesion G protein-coupled receptor C3|anchor protein|cadherin family member 11|cadherin, EGF LAG seven-pass G-type receptor 3 (flamingo homolog, Drosophila)|epidermal growth factor-like protein 1|flamingo homolog 1|multiple EGF-like domains protein 2|multiple epidermal growth factor-like domains protein 2 191 0.02614 7.499 1 1 +1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 1 protein-coding ADGRC2|CDHF10|EGFL2|Flamingo1|MEGF3 cadherin EGF LAG seven-pass G-type receptor 2|EGF-like protein 2|EGF-like-domain, multiple 2|adhesion G protein-coupled receptor C2|cadherin family member 10|cadherin, EGF LAG seven-pass G-type receptor 2 (flamingo homolog, Drosophila)|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 190 0.02601 10.16 1 1 +1953 MEGF6 multiple EGF like domains 6 1 protein-coding EGFL3 multiple epidermal growth factor-like domains protein 6|EGF-like protein 3|EGF-like-domain, multiple 3|epidermal growth factor-like protein 3|multiple EGF-like domains protein 6 96 0.01314 8.547 1 1 +1954 MEGF8 multiple EGF like domains 8 19 protein-coding C19orf49|CRPT2|EGFL4|SBP1 multiple epidermal growth factor-like domains protein 8|EGF-like domain-containing protein 4|EGF-like-domain, multiple 4|HBV pre-S2-binding protein 1|HBV pre-s2 binding protein 1|epidermal growth factor-like protein 4|hepatitis B virus pre-S2-binding protein 1 177 0.02423 10.38 1 1 +1955 MEGF9 multiple EGF like domains 9 9 protein-coding EGFL5 multiple epidermal growth factor-like domains protein 9|EGF-like-domain, multiple 5|epidermal growth factor-like protein 5 34 0.004654 9.908 1 1 +1956 EGFR epidermal growth factor receptor 7 protein-coding ERBB|ERBB1|HER1|NISBD2|PIG61|mENA epidermal growth factor receptor|avian erythroblastic leukemia viral (v-erb-b) oncogene homolog|cell growth inhibiting protein 40|cell proliferation-inducing protein 61|erb-b2 receptor tyrosine kinase 1|proto-oncogene c-ErbB-1|receptor tyrosine-protein kinase erbB-1 231 0.03162 9.296 1 1 +1958 EGR1 early growth response 1 5 protein-coding AT225|G0S30|KROX-24|NGFI-A|TIS8|ZIF-268|ZNF225 early growth response protein 1|EGR-1|nerve growth factor-induced protein A|transcription factor ETR103|transcription factor Zif268|zinc finger protein 225|zinc finger protein Krox-24 59 0.008076 11.62 1 1 +1959 EGR2 early growth response 2 10 protein-coding AT591|CMT1D|CMT4E|KROX20 E3 SUMO-protein ligase EGR2|KROX-20, Drosophila, homolog (early growth response-2)|early growth response protein 2|zinc finger protein Krox-20 43 0.005886 7.565 1 1 +1960 EGR3 early growth response 3 8 protein-coding EGR-3|PILOT early growth response protein 3|zinc finger protein pilot 32 0.00438 7.278 1 1 +1961 EGR4 early growth response 4 2 protein-coding NGFI-C|NGFIC|PAT133 early growth response protein 4|AT133|EGR-4 23 0.003148 2.256 1 1 +1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase 3 protein-coding ECHD|FRTS3|L-PBE|LBFP|LBP|PBFE peroxisomal bifunctional enzyme|3,2-trans-enoyl-CoA isomerase|L-3-hydroxyacyl-CoA dehydrogenase|L-bifunctional protein, peroxisomal|PBE|enoyl-CoA, hydratase/3-hydroxyacyl CoA dehydrogenase|enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase|peroxisomal enoyl-CoA hydratase 59 0.008076 8.361 1 1 +1964 EIF1AX eukaryotic translation initiation factor 1A, X-linked X protein-coding EIF1A|EIF1AP1|EIF4C|eIF-1A|eIF-4C eukaryotic translation initiation factor 1A, X-chromosomal|Putative eukaryotic translation initiation factor 1A|eIF-1A X isoform|eukaryotic translation initiation factor 1A, X chromosome|eukaryotic translation initiation factor 4C 35 0.004791 10.74 1 1 +1965 EIF2S1 eukaryotic translation initiation factor 2 subunit alpha 14 protein-coding EIF-2|EIF-2A|EIF-2alpha|EIF2|EIF2A eukaryotic translation initiation factor 2 subunit 1|eIF-2-alpha|eukaryotic translation initiation factor 2, subunit 1 alpha, 35kDa 17 0.002327 10.53 1 1 +1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha 12 protein-coding EIF2B|EIF2BA translation initiation factor eIF-2B subunit alpha|eIF-2B GDP-GTP exchange factor subunit alpha|eukaryotic translation initiation factor 2B, subunit 1 alpha, 26kDa 21 0.002874 10.1 1 1 +1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma X protein-coding EIF2|EIF2G|EIF2gamma|eIF-2gA eukaryotic translation initiation factor 2 subunit 3|eIF-2-gamma X|eIF-2gX|eukaryotic translation initiation factor 2 subunit gamma X|eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa|eukaryotic translation initiation factor 2G 20 0.002737 12.05 1 1 +1969 EPHA2 EPH receptor A2 1 protein-coding ARCC2|CTPA|CTPP1|CTRCT6|ECK ephrin type-A receptor 2|epithelial cell receptor protein tyrosine kinase|soluble EPHA2 variant 1|tyrosine-protein kinase receptor ECK 122 0.0167 9.548 1 1 +1973 EIF4A1 eukaryotic translation initiation factor 4A1 17 protein-coding DDX2A|EIF-4A|EIF4A|eIF-4A-I|eIF4A-I eukaryotic initiation factor 4A-I|ATP-dependent RNA helicase eIF4A-1|eukaryotic initiation factor 4AI|eukaryotic translation initiation factor 4A 23 0.003148 13.24 1 1 +1974 EIF4A2 eukaryotic translation initiation factor 4A2 3 protein-coding BM-010|DDX2B|EIF4A|EIF4F|eIF-4A-II|eIF4A-II eukaryotic initiation factor 4A-II|ATP-dependent RNA helicase eIF4A-2 46 0.006296 12.82 1 1 +1975 EIF4B eukaryotic translation initiation factor 4B 12 protein-coding EIF-4B|PRO1843 eukaryotic translation initiation factor 4B 44 0.006022 12.8 1 1 +1977 EIF4E eukaryotic translation initiation factor 4E 4 protein-coding AUTS19|CBP|EIF4E1|EIF4EL1|EIF4F|eIF-4E eukaryotic translation initiation factor 4E|eIF-4F 25 kDa subunit|eukaryotic translation initiation factor 4E-like 1|mRNA cap-binding protein 16 0.00219 8.941 1 1 +1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 8 protein-coding 4E-BP1|4EBP1|BP-1|PHAS-I eukaryotic translation initiation factor 4E-binding protein 1|eIF4E-binding protein 1|phosphorylated heat- and acid-stable protein regulated by insulin 1 5 0.0006844 9.542 1 1 +1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 10 protein-coding 4EBP2|PHASII eukaryotic translation initiation factor 4E-binding protein 2|4E-BP2|eIF4E-binding protein 2|phosphorylated, heat and acid stable regulated by insulin protein II 13 0.001779 11.78 1 1 +1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 3 protein-coding EIF-4G1|EIF4F|EIF4G|EIF4GI|P220|PARK18 eukaryotic translation initiation factor 4 gamma 1|EIF4-gamma|eIF-4-gamma 1|eucaryotic translation initiation factor 4G 127 0.01738 13.13 1 1 +1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 11 protein-coding AAG1|DAP5|NAT1|P97 eukaryotic translation initiation factor 4 gamma 2|DAP-5|aging-associated protein 1|death-associated protein 5|eIF-4-gamma 2|eIF-4G 2|eIF4G 2|eukaryotic translation initiation factor 4G-like 1 64 0.00876 14.04 1 1 +1983 EIF5 eukaryotic translation initiation factor 5 14 protein-coding EIF-5|EIF-5A eukaryotic translation initiation factor 5 37 0.005064 11.95 1 1 +1984 EIF5A eukaryotic translation initiation factor 5A 17 protein-coding EIF-5A|EIF5A1|eIF5AI eukaryotic translation initiation factor 5A-1|eIF-4D|eIF-5A-1|eIF-5A1|eukaryotic initiation factor 5A|rev-binding factor 20 0.002737 12.67 1 1 +1990 CELA1 chymotrypsin like elastase family member 1 12 protein-coding ELA1 chymotrypsin-like elastase family member 1|elastase 1, pancreatic|elastase-1|pancreatic elastase 1 23 0.003148 0.3366 1 1 +1991 ELANE elastase, neutrophil expressed 19 protein-coding ELA2|GE|HLE|HNE|NE|PMN-E|SCN1 neutrophil elastase|PMN elastase|bone marrow serine protease|elastase 2, neutrophil|elastase-2|granulocyte-derived elastase|leukocyte elastase|medullasin|polymorphonuclear elastase 24 0.003285 1.032 1 1 +1992 SERPINB1 serpin family B member 1 6 protein-coding EI|ELANH2|HEL-S-27|HEL57|LEI|M/NEI|MNEI|PI-2|PI2 leukocyte elastase inhibitor|epididymis luminal protein 57|epididymis secretory protein Li 27|peptidase inhibitor 2|protease inhibitor 2 (anti-elastase), monocyte/neutrophil derived|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 1|serpin peptidase inhibitor, clade B (ovalbumin), member 1 17 0.002327 10.2 1 1 +1993 ELAVL2 ELAV like RNA binding protein 2 9 protein-coding HEL-N1|HELN1|HUB ELAV-like protein 2|ELAV (embryonic lethal, abnormal vision, Drosophila)-like 2 (Hu antigen B)|ELAV like neuron-specific RNA binding protein 2|ELAV-like neuronal protein 1 isoform Hel-N2|hu-antigen B|nervous system-specific RNA-binding protein Hel-N1 70 0.009581 3.953 1 1 +1994 ELAVL1 ELAV like RNA binding protein 1 19 protein-coding ELAV1|HUR|Hua|MelG ELAV-like protein 1|ELAV (embryonic lethal, abnormal vision, Drosophila)-like 1 (Hu antigen R)|Hu antigen R|embryonic lethal, abnormal vision, drosophila, homolog-like 1|hu-antigen R 43 0.005886 10.9 1 1 +1995 ELAVL3 ELAV like RNA binding protein 3 19 protein-coding HUC|HUCL|PLE21 ELAV-like protein 3|ELAV (embryonic lethal, abnormal vision, Drosophila)-like 3 (Hu antigen C)|ELAV like neuron-specific RNA binding protein 3|Hu antigen C|hu-antigen C|paraneoplastic cerebellar degeneration-associated antigen|paraneoplastic limbic encephalitis antigen 21 37 0.005064 2.281 1 1 +1996 ELAVL4 ELAV like RNA binding protein 4 1 protein-coding HUD|PNEM ELAV-like protein 4|ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 (Hu antigen D)|ELAV like neuron-specific RNA binding protein 4|Hu antigen D|paraneoplastic encephalomyelitis antigen HuD 58 0.007939 2.035 1 1 +1997 ELF1 E74 like ETS transcription factor 1 13 protein-coding - ETS-related transcription factor Elf-1|E74-like factor 1 (ets domain transcription factor) 51 0.006981 10.2 1 1 +1998 ELF2 E74 like ETS transcription factor 2 4 protein-coding EU32|NERF|NERF-1A|NERF-1B|NERF-1a,b|NERF-2 ETS-related transcription factor Elf-2|E74-like factor 2 (ets domain transcription factor)|ets family transcription factor ELF2C|new Ets-related factor 29 0.003969 9.286 1 1 +1999 ELF3 E74 like ETS transcription factor 3 1 protein-coding EPR-1|ERT|ESE-1|ESX ETS-related transcription factor Elf-3|E74-like factor 3 (ETS domain transcription factor, serine box, epithelial-specific)|E74-like factor 3 (ets domain transcription factor)|E74-like factor 3 (ets domain transcription factor, epithelial-specific )|epithelial-restricted with serine box|epithelium-restricted Ets protein ESX|epithelium-specific Ets transcription factor 1|ets domain transcription factor, serine box (epithelial-specific) 98 0.01341 9.999 1 1 +2000 ELF4 E74 like ETS transcription factor 4 X protein-coding ELFR|MEF ETS-related transcription factor Elf-4|E74-like factor 4 (ets domain transcription factor)|myeloid Elf-1-like factor 47 0.006433 9.152 1 1 +2001 ELF5 E74 like ETS transcription factor 5 11 protein-coding ESE2 ETS-related transcription factor Elf-5|E74-like factor 5 (ets domain transcription factor)|epithelium-restricted ESE-1-related Ets factor|epithelium-specific Ets transcription factor 2 12 0.001642 3.358 1 1 +2002 ELK1 ELK1, ETS transcription factor X protein-coding - ETS domain-containing protein Elk-1|ELK1, member of ETS oncogene family|ETS-like gene 1|tyrosine kinase (ELK1) oncogene 30 0.004106 9.776 1 1 +2004 ELK3 ELK3, ETS transcription factor 12 protein-coding ERP|NET|SAP-2|SAP2 ETS domain-containing protein Elk-3|ELK3, ETS-domain protein (SRF accessory protein 2)|ETS-related protein ERP|ETS-related protein NET|SRF accessory protein 2|serum response factor accessory protein 2 29 0.003969 8.419 1 1 +2005 ELK4 ELK4, ETS transcription factor 1 protein-coding SAP1 ETS domain-containing protein Elk-4|ELK4, ETS-domain protein (SRF accessory protein 1)|SAP-1|serum response factor accessory protein 1 27 0.003696 7.101 1 1 +2006 ELN elastin 7 protein-coding SVAS|WBS|WS elastin|tropoelastin 69 0.009444 9.319 1 1 +2009 EML1 echinoderm microtubule associated protein like 1 14 protein-coding BH|ELP79|EMAP|EMAPL|HuEMAP echinoderm microtubule-associated protein-like 1|EMAP-1|huEMAP-1 70 0.009581 8.129 1 1 +2010 EMD emerin X protein-coding EDMD|LEMD5|STA emerin|LEM domain containing 5 22 0.003011 10.29 1 1 +2011 MARK2 microtubule affinity regulating kinase 2 11 protein-coding EMK-1|EMK1|PAR-1|Par-1b|Par1b serine/threonine-protein kinase MARK2|ELKL motif kinase 1|MAP/microtubule affinity-regulating kinase 2|PAR1 homolog b|Ser/Thr protein kinase PAR-1B|serine/threonine protein kinase EMK|testicular tissue protein Li 117 69 0.009444 10.46 1 1 +2012 EMP1 epithelial membrane protein 1 12 protein-coding CL-20|EMP-1|TMP epithelial membrane protein 1|tumor-associated membrane protein 12 0.001642 11.03 1 1 +2013 EMP2 epithelial membrane protein 2 16 protein-coding XMP epithelial membrane protein 2 12 0.001642 10.89 1 1 +2014 EMP3 epithelial membrane protein 3 19 protein-coding YMP epithelial membrane protein 3|EMP-3|HNMP-1|hematopoietic neural membrane protein 1 13 0.001779 9.019 1 1 +2015 ADGRE1 adhesion G protein-coupled receptor E1 19 protein-coding EMR1|TM7LN3 adhesion G protein-coupled receptor E1|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 1|egf-like module containing, mucin-like, hormone receptor-like sequence 1 89 0.01218 3.657 1 1 +2016 EMX1 empty spiracles homeobox 1 2 protein-coding - homeobox protein EMX1|empty spiracles homolog 1|empty spiracles-like protein 1 9 0.001232 2.697 1 1 +2017 CTTN cortactin 11 protein-coding EMS1 src substrate cortactin|1110020L01Rik|amplaxin|ems1 sequence (mammary tumor and squamous cell carcinoma-associated (p80/85 src substrate)|oncogene EMS1 59 0.008076 12.19 1 1 +2018 EMX2 empty spiracles homeobox 2 10 protein-coding - homeobox protein EMX2|empty spiracles homolog 2|empty spiracles-like protein 2 26 0.003559 3.78 1 1 +2019 EN1 engrailed homeobox 1 2 protein-coding - homeobox protein engrailed-1|engrailed homolog 1|homeobox protein en-1|hu-En-1 27 0.003696 3.16 1 1 +2020 EN2 engrailed homeobox 2 7 protein-coding - homeobox protein engrailed-2|engrailed homolog 2|engrailed-2|homeobox protein en-2|hu-En-2 10 0.001369 2.845 1 1 +2021 ENDOG endonuclease G 9 protein-coding - endonuclease G, mitochondrial|endo G|mitochondrial endonuclease G 5 0.0006844 7.969 1 1 +2022 ENG endoglin 9 protein-coding END|HHT1|ORW1 endoglin|CD105 antigen 23 0.003148 11.19 1 1 +2023 ENO1 enolase 1 1 protein-coding ENO1L1|HEL-S-17|MPB1|NNE|PPH alpha-enolase|c-myc promoter-binding protein-1|2-phospho-D-glycerate hydro-lyase|MYC promoter-binding protein 1|alpha enolase like 1|enolase 1, (alpha)|enolase-alpha|epididymis secretory protein Li 17|non-neural enolase|phosphopyruvate hydratase|plasminogen-binding protein|tau-crystallin 28 0.003832 14.57 1 1 +2026 ENO2 enolase 2 12 protein-coding HEL-S-279|NSE gamma-enolase|2-phospho-D-glycerate hydro-lyase|2-phospho-D-glycerate hydrolyase|enolase 2 (gamma, neuronal)|epididymis secretory protein Li 279|neural enolase|neuron specific gamma enolase|neuron-specific enolase|neuronal enriched enolase|neurone-specific enolase 18 0.002464 9.877 1 1 +2027 ENO3 enolase 3 17 protein-coding GSD13|MSE beta-enolase|2-phospho-D-glycerate hydrolyase|enolase 3 (beta, muscle)|muscle enriched enolase|muscle-specific enolase|skeletal muscle enolase 26 0.003559 5.978 1 1 +2028 ENPEP glutamyl aminopeptidase 4 protein-coding APA|CD249|gp160 glutamyl aminopeptidase|AP-A|EAP|aminopeptidase A|differentiation antigen gp160|glutamyl aminopeptidase (aminopeptidase A) 105 0.01437 7.358 1 1 +2029 ENSA endosulfine alpha 1 protein-coding ARPP-19e alpha-endosulfine|endosulfine-alpha variant 1|endosulfine-alpha variant 3 13 0.001779 11.92 1 1 +2030 SLC29A1 solute carrier family 29 member 1 (Augustine blood group) 6 protein-coding ENT1 equilibrative nucleoside transporter 1|equilibrative nitrobenzylmercaptopurine riboside (NBMPR)-sensitive nucleoside transporter|nucleoside transporter, es-type|solute carrier family 29 (equilibrative nucleoside transporter), member 1|solute carrier family 29 (nucleoside transporters), member 1 31 0.004243 10.45 1 1 +2033 EP300 E1A binding protein p300 22 protein-coding KAT3B|RSTS2|p300 histone acetyltransferase p300|E1A-associated protein p300|E1A-binding protein, 300kD|p300 HAT 252 0.03449 10.97 1 1 +2034 EPAS1 endothelial PAS domain protein 1 2 protein-coding ECYT4|HIF2A|HLF|MOP2|PASD2|bHLHe73 endothelial PAS domain-containing protein 1|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|hypoxia-inducible factor 2 alpha|member of PAS protein 2 83 0.01136 11.9 1 1 +2035 EPB41 erythrocyte membrane protein band 4.1 1 protein-coding 4.1R|EL1|HE protein 4.1|EPB4.1|P4.1|band 4.1|elliptocytosis 1, RH-linked|erythrocyte surface protein band 4.1 58 0.007939 10.02 1 1 +2036 EPB41L1 erythrocyte membrane protein band 4.1 like 1 20 protein-coding 4.1N|MRD11 band 4.1-like protein 1|neuron-type nonerythroid protein 4.1|neuronal protein 4.1 69 0.009444 10.56 1 1 +2037 EPB41L2 erythrocyte membrane protein band 4.1 like 2 6 protein-coding 4.1-G|4.1G band 4.1-like protein 2|erythrocyte membrane protein band 4.1 like-protein 2|generally expressed protein 4.1 79 0.01081 10.15 1 1 +2038 EPB42 erythrocyte membrane protein band 4.2 15 protein-coding PA|SPH5 erythrocyte membrane protein band 4.2|P4.2|erythrocyte protein 4.2|erythrocyte surface protein band 4.2 48 0.00657 0.3733 1 1 +2039 DMTN dematin actin binding protein 8 protein-coding DMT|EPB49 dematin|erythrocyte membrane protein band 4.9 (dematin) 36 0.004927 9.122 1 1 +2040 STOM stomatin 9 protein-coding BND7|EPB7|EPB72 erythrocyte band 7 integral membrane protein|erythrocyte membrane protein band 7.2 (stomatin)|erythrocyte surface protein band 7.2|protein 7.2b 13 0.001779 11.89 1 1 +2041 EPHA1 EPH receptor A1 7 protein-coding EPH|EPHT|EPHT1 ephrin type-A receptor 1|eph tyrosine kinase 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 72 0.009855 7.356 1 1 +2042 EPHA3 EPH receptor A3 3 protein-coding EK4|ETK|ETK1|HEK|HEK4|TYRO4 ephrin type-A receptor 3|EPH-like kinase 4|TYRO4 protein tyrosine kinase|eph-like tyrosine kinase 1|human embryo kinase 1|testicular tissue protein Li 64|tyrosine-protein kinase receptor ETK1 180 0.02464 6.289 1 1 +2043 EPHA4 EPH receptor A4 2 protein-coding HEK8|SEK|TYRO1 ephrin type-A receptor 4|EK8|EPH-like kinase 8|TYRO1 protein tyrosine kinase|receptor protein-tyrosine kinase HEK8|tyrosine-protein kinase TYRO1|tyrosine-protein kinase receptor SEK 103 0.0141 7.987 1 1 +2044 EPHA5 EPH receptor A5 4 protein-coding CEK7|EHK-1|EHK1|EK7|HEK7|TYRO4 ephrin type-A receptor 5|EPH homology kinase 1|EPH-like kinase 7|brain-specific kinase|receptor protein-tyrosine kinase HEK7|tyrosine-protein kinase receptor EHK-1 212 0.02902 2.096 1 1 +2045 EPHA7 EPH receptor A7 6 protein-coding EHK-3|EHK3|EK11|HEK11 ephrin type-A receptor 7|EPH homology kinase 3|EPH-like kinase 11|Eph homology kinase-3|receptor protein-tyrosine kinase HEK11|tyrosine-protein kinase receptor EHK-3 131 0.01793 4.141 1 1 +2046 EPHA8 EPH receptor A8 1 protein-coding EEK|EK3|HEK3 ephrin type-A receptor 8|EPH- and ELK-related kinase|EPH- and ELK-related tyrosine kinase|EPH-like kinase 3|hydroxyaryl-protein kinase|protein-tyrosine kinase|tyrosine-protein kinase receptor EEK|tyrosylprotein kinase 104 0.01423 1.802 1 1 +2047 EPHB1 EPH receptor B1 3 protein-coding ELK|EPHT2|Hek6|NET ephrin type-B receptor 1|EK6|EPH-like kinase 6|eph tyrosine kinase 2|neuronally-expressed EPH-related tyrosine kinase|soluble EPHB1 variant 1|tyrosine-protein kinase receptor EPH-2 151 0.02067 5.657 1 1 +2048 EPHB2 EPH receptor B2 1 protein-coding CAPB|DRT|EK5|EPHT3|ERK|Hek5|PCBC|Tyro5 ephrin type-B receptor 2|EPH-like kinase 5|developmentally-regulated Eph-related tyrosine kinase|elk-related tyrosine kinase|eph tyrosine kinase 3|protein-tyrosine kinase HEK5|renal carcinoma antigen NY-REN-47|tyrosine-protein kinase TYRO5|tyrosine-protein kinase receptor EPH-3 86 0.01177 8.491 1 1 +2049 EPHB3 EPH receptor B3 3 protein-coding EK2|ETK2|HEK2|TYRO6 ephrin type-B receptor 3|EPH-like tyrosine kinase 2|embryonic kinase 2|human embryo kinase 2|tyrosine-protein kinase TYRO6 86 0.01177 8.882 1 1 +2050 EPHB4 EPH receptor B4 7 protein-coding HTK|MYK1|TYRO11 ephrin type-B receptor 4|ephrin receptor EphB4|hepatoma transmembrane kinase|soluble EPHB4 variant 1|soluble EPHB4 variant 2|soluble EPHB4 variant 3|tyrosine-protein kinase TYRO11|tyrosine-protein kinase receptor HTK 74 0.01013 10.68 1 1 +2051 EPHB6 EPH receptor B6 7 protein-coding HEP ephrin type-B receptor 6|human kinase-defective Eph-family receptor protein|tyrosine-protein kinase-defective receptor EPH-6 115 0.01574 7.652 1 1 +2052 EPHX1 epoxide hydrolase 1 1 protein-coding EPHX|EPOX|HYL1|MEH epoxide hydrolase 1|epoxide hydratase|epoxide hydrolase 1 microsomal|epoxide hydrolase 1, microsomal (xenobiotic) 50 0.006844 11.38 1 1 +2053 EPHX2 epoxide hydrolase 2 8 protein-coding CEH|SEH bifunctional epoxide hydrolase 2|epoxide hydratase|epoxide hydrolase 2, cytoplasmic|epoxide hydrolase 2, cytosolic|epoxide hydrolase, soluble 41 0.005612 8.603 1 1 +2054 STX2 syntaxin 2 12 protein-coding EPIM|EPM|STX2A|STX2B|STX2C syntaxin-2|epimorphin 26 0.003559 8.115 1 1 +2055 CLN8 ceroid-lipofuscinosis, neuronal 8 8 protein-coding C8orf61|EPMR protein CLN8|ceroid-lipofuscinosis, neuronal 8 (epilepsy, progressive with mental retardation) 21 0.002874 8.681 1 1 +2056 EPO erythropoietin 7 protein-coding EP|MVCD2 erythropoietin|epoetin 16 0.00219 1.569 1 1 +2057 EPOR erythropoietin receptor 19 protein-coding EPO-R erythropoietin receptor 29 0.003969 7.053 1 1 +2058 EPRS glutamyl-prolyl-tRNA synthetase 1 protein-coding EARS|GLUPRORS|PARS|PIG32|QARS|QPRS bifunctional glutamate/proline--tRNA ligase|bifunctional aminoacyl-tRNA synthetase|cell proliferation-inducing gene 32 protein|glutamate tRNA ligase|glutamatyl-prolyl-tRNA synthetase|glutaminyl-tRNA synthetase|proliferation-inducing gene 32 protein|proliferation-inducing protein 32|proline-tRNA ligase|prolyl-tRNA synthetase 114 0.0156 11.55 1 1 +2059 EPS8 epidermal growth factor receptor pathway substrate 8 12 protein-coding DFNB102 epidermal growth factor receptor kinase substrate 8 73 0.009992 10.03 1 1 +2060 EPS15 epidermal growth factor receptor pathway substrate 15 1 protein-coding AF-1P|AF1P|MLLT5 epidermal growth factor receptor substrate 15|ALL1 fused gene from chromosome 1|protein AF-1p 61 0.008349 10.55 1 1 +2063 NR2F6 nuclear receptor subfamily 2 group F member 6 19 protein-coding EAR-2|EAR2|ERBAL2 nuclear receptor subfamily 2 group F member 6|ERBA-related gene-2|V-erbA-related protein 2|nuclear receptor V-erbA-related|v-erb-a avian erythroblastic leukemia viral oncogene homolog-like 2 13 0.001779 10.06 1 1 +2064 ERBB2 erb-b2 receptor tyrosine kinase 2 17 protein-coding CD340|HER-2|HER-2/neu|HER2|MLN 19|NEU|NGL|TKR1 receptor tyrosine-protein kinase erbB-2|c-erb B2/neu protein|herstatin|human epidermal growth factor receptor 2|metastatic lymph node gene 19 protein|neuro/glioblastoma derived oncogene homolog|neuroblastoma/glioblastoma derived oncogene homolog|p185erbB2|proto-oncogene Neu|proto-oncogene c-ErbB-2|tyrosine kinase-type cell surface receptor HER2|v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 2|v-erb-b2 avian erythroblastic leukemia viral oncoprotein 2|v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog 153 0.02094 11.67 1 1 +2065 ERBB3 erb-b2 receptor tyrosine kinase 3 12 protein-coding ErbB-3|HER3|LCCS2|MDA-BF-1|c-erbB-3|c-erbB3|erbB3-S|p180-ErbB3|p45-sErbB3|p85-sErbB3 receptor tyrosine-protein kinase erbB-3|human epidermal growth factor receptor 3|proto-oncogene-like protein c-ErbB-3|tyrosine kinase-type cell surface receptor HER3|v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 3 168 0.02299 10.73 1 1 +2066 ERBB4 erb-b2 receptor tyrosine kinase 4 2 protein-coding ALS19|HER4|p180erbB4 receptor tyrosine-protein kinase erbB-4|ERBB4 transcript variant I12DEL|ERBB4 transcript variant I20DEL|avian erythroblastic leukemia viral (v-erb-b2) oncogene homolog 4|human epidermal growth factor receptor 4|proto-oncogene-like protein c-ErbB-4|tyrosine kinase-type cell surface receptor HER4|v-erb-a erythroblastic leukemia viral oncogene homolog 4|v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4 232 0.03175 4.725 1 1 +2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit 19 protein-coding COFS4|RAD10|UV20 DNA excision repair protein ERCC-1|excision repair cross-complementation group 1|excision repair cross-complementing rodent repair deficiency, complementation group 1 (includes overlapping antisense sequence) 22 0.003011 9.862 1 1 +2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit 19 protein-coding COFS2|EM9|TFIIH|TTD|TTD1|XPD TFIIH basal transcription factor complex helicase XPD subunit|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 XPB subunit|TFIIH basal transcription factor complex helicase subunit|TFIIH p80|basic transcription factor 2 80 kDa subunit|excision repair cross-complementation group 2|excision repair cross-complementing rodent repair deficiency, complementation group 2|xeroderma pigmentosum complementary group D|xeroderma pigmentosum group D-complementing protein 90 0.01232 8.884 1 1 +2069 EREG epiregulin 4 protein-coding EPR|ER|Ep proepiregulin 14 0.001916 3.72 1 1 +2070 EYA4 EYA transcriptional coactivator and phosphatase 4 6 protein-coding CMD1J|DFNA10 eyes absent homolog 4|dJ78N10.1 (eyes absent)|eyes absent-like protein 4 81 0.01109 3.972 1 1 +2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit 2 protein-coding BTF2|GTF2H|RAD25|TFIIH|TTD2|XPB TFIIH basal transcription factor complex helicase XPB subunit|BTF2 p89|DNA excision repair protein ERCC-3|DNA repair helicase|DNA repair protein complementing XP-B cells|TFIIH 89 kDa subunit|TFIIH basal transcription factor complex 89 kDa subunit|TFIIH p89|basic transcription factor 2 89 kDa subunit|excision repair cross-complementation group 3|excision repair cross-complementing rodent repair deficiency, complementation group 3|xeroderma pigmentosum group B-complementing protein|xeroderma pigmentosum, complementation group B 50 0.006844 10.02 1 1 +2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit 16 protein-coding ERCC11|FANCQ|RAD1|XFEPS|XPF DNA repair endonuclease XPF|DNA excision repair protein ERCC-4|DNA repair protein complementing XP-F cells|excision repair cross-complementation group 4|excision repair cross-complementing rodent repair deficiency, complementation group 4|excision-repair, complementing defective, in Chinese hamster|xeroderma pigmentosum group F-complementing protein|xeroderma pigmentosum, complementation group F 64 0.00876 7.876 1 1 +2073 ERCC5 ERCC excision repair 5, endonuclease 13 protein-coding COFS3|ERCC5-201|ERCM2|UVDR|XPG|XPGC DNA repair protein complementing XP-G cells|DNA excision repair protein ERCC-5|XPG-complementing protein|excision repair cross-complementation group 5|excision repair cross-complementing rodent repair deficiency, complementation group 5|xeroderma pigmentosum, complementation group G 59 0.008076 10.06 1 1 +2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor 10 protein-coding ARMD5|CKN2|COFS|COFS1|CSB|POF11|RAD26|UVSS1 DNA excision repair protein ERCC-6|ERCC6-PGBD3 fusion protein|ATP-dependent helicase ERCC6|Cockayne syndrome group B protein|ERCC6-PGBD3 fusion protein (isoform 1)|cockayne syndrome protein CSB|excision repair cross-complementation group 6|excision repair cross-complementing rodent repair deficiency, complementation group 6 115 0.01574 7.894 1 1 +2077 ERF ETS2 repressor factor 19 protein-coding CRS4|PE-2|PE2 ETS domain-containing transcription factor ERF 39 0.005338 10.22 1 1 +2078 ERG ERG, ETS transcription factor 21 protein-coding erg-3|p55 transcriptional regulator ERG|TMPRSS2/ERG fusion|erythroblast transformation-specific transcription factor ERG variant 10|ets-related|transcriptional regulator ERG (transforming protein ERG)|v-ets avian erythroblastosis virus E26 oncogene homolog|v-ets avian erythroblastosis virus E26 oncogene related|v-ets erythroblastosis virus E26 oncogene homolog|v-ets erythroblastosis virus E26 oncogene like 57 0.007802 7.836 1 1 +2079 ERH enhancer of rudimentary homolog (Drosophila) 14 protein-coding DROER enhancer of rudimentary homolog 6 0.0008212 10.86 1 1 +2081 ERN1 endoplasmic reticulum to nucleus signaling 1 17 protein-coding IRE1|IRE1P|IRE1a|hIRE1p serine/threonine-protein kinase/endoribonuclease IRE1|ER to nucleus signalling 1|inositol-requiring 1|inositol-requiring enzyme 1|inositol-requiring protein 1|ire1-alpha|protein kinase/endoribonuclease 44 0.006022 6.728 1 1 +2086 ERV3-1 endogenous retrovirus group 3 member 1 7 protein-coding ERV-R|ERV3|ERVR|HERV-R|HERVR|envR endogenous retrovirus group 3 member 1 Env polyprotein|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 29 0.003969 1 0 +2091 FBL fibrillarin 19 protein-coding FIB|FLRN|RNU3IP1 rRNA 2'-O-methyltransferase fibrillarin|34 kDa nucleolar scleroderma antigen|34-kD nucleolar scleroderma antigen|RNA, U3 small nucleolar interacting protein 1|histone-glutamine methyltransferase 31 0.004243 11.39 1 1 +2098 ESD esterase D 13 protein-coding FGH S-formylglutathione hydrolase|esterase 10|esterase D/formylglutathione hydrolase|methylumbelliferyl-acetate deacetylase|testicular tissue protein Li 66 20 0.002737 10.64 1 1 +2099 ESR1 estrogen receptor 1 6 protein-coding ER|ESR|ESRA|ESTRR|Era|NR3A1 estrogen receptor|ER-alpha|estradiol receptor|estrogen nuclear receptor alpha|estrogen receptor alpha E1-E2-1-2|estrogen receptor alpha E1-N2-E2-1-2|nuclear receptor subfamily 3 group A member 1 68 0.009307 6.655 1 1 +2100 ESR2 estrogen receptor 2 14 protein-coding ER-BETA|ESR-BETA|ESRB|ESTRB|Erb|NR3A2 estrogen receptor beta|ER beta|estrogen receptor 2 (ER beta)|estrogen receptor beta 4|nuclear receptor subfamily 3 group A member 2 46 0.006296 3.646 1 1 +2101 ESRRA estrogen related receptor alpha 11 protein-coding ERR1|ERRa|ERRalpha|ESRL1|NR3B1 steroid hormone receptor ERR1|ERR-alpha|estrogen receptor-like 1|estrogen-related nuclear receptor alpha|nuclear receptor subfamily 3 group B member 1 26 0.003559 9.968 1 1 +2103 ESRRB estrogen related receptor beta 14 protein-coding DFNB35|ERR2|ERRb|ESRL2|NR3B2 steroid hormone receptor ERR2|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 45 0.006159 1.754 1 1 +2104 ESRRG estrogen related receptor gamma 1 protein-coding ERR3|ERRgamma|NR3B3 estrogen-related receptor gamma|ERR gamma-2|estrogen receptor-related protein 3|nuclear receptor subfamily 3 group B member 3 80 0.01095 5 1 1 +2107 ETF1 eukaryotic translation termination factor 1 5 protein-coding D5S1995|ERF|ERF1|RF1|SUP45L1|TB3-1 eukaryotic peptide chain release factor subunit 1|polypeptide chain release factor 1|protein Cl1|sup45 (yeast omnipotent suppressor 45) homolog-like 1 26 0.003559 11.27 1 1 +2108 ETFA electron transfer flavoprotein alpha subunit 15 protein-coding EMA|GA2|MADD electron transfer flavoprotein subunit alpha, mitochondrial|alpha-ETF|electron transfer flavoprotein, alpha polypeptide|glutaric aciduria II 13 0.001779 10.4 1 1 +2109 ETFB electron transfer flavoprotein beta subunit 19 protein-coding FP585|MADD electron transfer flavoprotein subunit beta|beta-ETF|electron transfer flavoprotein, beta polypeptide|electron-transferring-flavoprotein, beta polypeptide 22 0.003011 10.58 1 1 +2110 ETFDH electron transfer flavoprotein dehydrogenase 4 protein-coding ETFQO|MADD electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|ETF dehydrogenase|ETF-QO|ETF-ubiquinone oxidoreductase|electron-transferring-flavoprotein dehydrogenase 30 0.004106 8.544 1 1 +2113 ETS1 ETS proto-oncogene 1, transcription factor 11 protein-coding ETS-1|EWSR2|c-ets-1|p54 protein C-ets-1|Avian erythroblastosis virus E26 (v-ets) oncogene homolog-1|v-ets avian erythroblastosis virus E2 oncogene homolog 1|v-ets avian erythroblastosis virus E26 oncogene homolog 1 45 0.006159 10.71 1 1 +2114 ETS2 ETS proto-oncogene 2, transcription factor 21 protein-coding ETS2IT1 protein C-ets-2|oncogene ETS-2|v-ets avian erythroblastosis virus E2 oncogene homolog 2|v-ets avian erythroblastosis virus E26 oncogene homolog 2|v-ets erythroblastosis virus E26 oncogene homolog 2 35 0.004791 11.11 1 1 +2115 ETV1 ETS variant 1 7 protein-coding ER81 ETS translocation variant 1|ets variant gene 1|ets-related protein 81 60 0.008212 8.286 1 1 +2116 ETV2 ETS variant 2 19 protein-coding ER71|ETSRP71 ETS translocation variant 2|ets variant gene 2|ets-related protein 71 11 0.001506 3.789 1 1 +2117 ETV3 ETS variant 3 1 protein-coding METS|PE-1|PE1|bA110J1.4 ETS translocation variant 3|ETS domain transcriptional repressor PE1|ets variant gene 3, ETS family transcriptional repressor|mitogenic Ets transcriptional suppressor 24 0.003285 7.05 1 1 +2118 ETV4 ETS variant 4 17 protein-coding E1A-F|E1AF|PEA3|PEAS3 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 33 0.004517 7.861 1 1 +2119 ETV5 ETS variant 5 3 protein-coding ERM ETS translocation variant 5|ets-related molecule|ets-related protein ERM 55 0.007528 9.183 1 1 +2120 ETV6 ETS variant 6 12 protein-coding TEL|TEL/ABL|THC5 transcription factor ETV6|ETS translocation variant 6|ETS-related protein Tel1|TEL1 oncogene|ets variant gene 6 (TEL oncogene) 56 0.007665 9.957 1 1 +2121 EVC EvC ciliary complex subunit 1 4 protein-coding DWF-1|EVC1|EVCL ellis-van Creveld syndrome protein|Ellis van Creveld protein|Ellis van Creveld syndrome 78 0.01068 8.588 1 1 +2122 MECOM MDS1 and EVI1 complex locus 3 protein-coding AML1-EVI-1|EVI1|MDS1|MDS1-EVI1|PRDM3|RUSAT2 MDS1 and EVI1 complex locus protein EVI1|AML1-EVI-1 fusion protein|MDS1 and EVI1 complex locus protein MDS1|PR domain 3|ecotropic virus integration site 1 protein homolog|myelodysplasia syndrome-associated protein 1|oncogene EVI1|zinc finger protein Evi1 131 0.01793 8.377 1 1 +2123 EVI2A ecotropic viral integration site 2A 17 protein-coding EVDA|EVI-2A|EVI2 protein EVI2A|ecotropic viral integration site 2A protein homolog 21 0.002874 7.353 1 1 +2124 EVI2B ecotropic viral integration site 2B 17 protein-coding CD361|D17S376|EVDB protein EVI2B|EVI-2B|ecotropic viral integration site 2B protein homolog 31 0.004243 7.872 1 1 +2125 EVPL envoplakin 17 protein-coding EVPK envoplakin|210 kDa cornified envelope precursor protein|210 kDa paraneoplastic pemphigus antigen 131 0.01793 8.622 1 1 +2128 EVX1 even-skipped homeobox 1 7 protein-coding EVX-1 homeobox even-skipped homolog protein 1|eve, even-skipped homeo box homolog 1|eve, even-skipped homeobox homolog 1|even-skipped homeo box 1 (homolog of Drosophila) 20 0.002737 1.074 1 1 +2130 EWSR1 EWS RNA binding protein 1 22 protein-coding EWS|EWS-FLI1|bK984G1.4 RNA-binding protein EWS|EWS RNA-binding protein variant 6|Ewing sarcoma breakpoint region 1|Ewings sarcoma EWS-Fli1 (type 1) oncogene 60 0.008212 12.08 1 1 +2131 EXT1 exostosin glycosyltransferase 1 8 protein-coding EXT|LGCR|LGS|TRPS2|TTV exostosin-1|Glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N- acetylglucosaminyltransferase|Langer-Giedion syndrome chromosome region|N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase|exostoses (multiple) 1|glucuronosyl-N-acetylglucosaminyl-proteoglycan/N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|multiple exostoses protein 1|putative tumor suppressor protein EXT1 63 0.008623 10.12 1 1 +2132 EXT2 exostosin glycosyltransferase 2 11 protein-coding SOTV|SSMS exostosin-2|N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase|glucuronosyl-N-acetylglucosaminyl-proteoglycan/N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|multiple exostoses protein 2|putative tumor suppressor protein EXT2 50 0.006844 10.74 1 1 +2134 EXTL1 exostosin like glycosyltransferase 1 1 protein-coding EXTL exostosin-like 1|alpha-N-acetylglucosaminyltransferase II|exostoses (multiple)-like 1|exostosin-L|glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N- acetylglucosaminyltransferase|glucuronyl-N-acetylglucosaminylproteoglycan alpha-1,4-N- acetylglucosaminyltransferase|multiple exostosis-like protein 48 0.00657 3.77 1 1 +2135 EXTL2 exostosin like glycosyltransferase 2 1 protein-coding EXTR2 exostosin-like 2|EXT-related protein 2|alpha-1,4-N-acetylhexosaminyltransferase EXTL2|alpha-GalNAcT EXTL2|exostoses (multiple)-like 2|glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|processed exostosin-like 2 25 0.003422 8.315 1 1 +2137 EXTL3 exostosin like glycosyltransferase 3 8 protein-coding BOTV|EXTL1L|EXTR1|REGR|RPR exostosin-like 3|EXT-related 1|exostoses (multiple)-like 3|exostosin tumor-like 3|glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|hereditary multiple exostoses gene isolog|putative tumor suppressor protein EXTL3|reg receptor 55 0.007528 10.21 1 1 +2138 EYA1 EYA transcriptional coactivator and phosphatase 1 8 protein-coding BOP|BOR|BOS1|OFC1 eyes absent homolog 1 84 0.0115 3.791 1 1 +2139 EYA2 EYA transcriptional coactivator and phosphatase 2 20 protein-coding EAB1 eyes absent homolog 2 51 0.006981 7.025 1 1 +2140 EYA3 EYA transcriptional coactivator and phosphatase 3 1 protein-coding - eyes absent homolog 3|eyes absent 3 38 0.005201 6.732 1 1 +2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit 17 protein-coding KMT6B histone-lysine N-methyltransferase EZH1|ENX-2|enhancer of zeste homolog 1 53 0.007254 9.495 1 1 +2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit 7 protein-coding ENX-1|ENX1|EZH1|EZH2b|KMT6|KMT6A|WVS|WVS2 histone-lysine N-methyltransferase EZH2|enhancer of zeste homolog 2|lysine N-methyltransferase 6 54 0.007391 8.246 1 1 +2147 F2 coagulation factor II, thrombin 11 protein-coding PT|RPRGL2|THPH1 prothrombin|coagulation factor II|prepro-coagulation factor II|prothrombin B-chain|serine protease 42 0.005749 1.587 1 1 +2149 F2R coagulation factor II thrombin receptor 5 protein-coding CF2R|HTR|PAR-1|PAR1|TR proteinase-activated receptor 1|protease-activated receptor 1 43 0.005886 9.792 1 1 +2150 F2RL1 F2R like trypsin receptor 1 5 protein-coding GPR11|PAR2 proteinase-activated receptor 2|G-protein coupled receptor 11|coagulation factor II (thrombin) receptor-like 1|protease-activated receptor 2|thrombin receptor-like 1 24 0.003285 8.236 1 1 +2151 F2RL2 coagulation factor II thrombin receptor like 2 5 protein-coding PAR-3|PAR3 proteinase-activated receptor 3|Coagulation factor II receptor-like 2 (protease-actovated receptor 3)|protease-activated receptor 3|thrombin receptor-like 2 23 0.003148 5.585 1 1 +2152 F3 coagulation factor III, tissue factor 1 protein-coding CD142|TF|TFA tissue factor|coagulation factor III (thromboplastin, tissue factor) 12 0.001642 9.039 1 1 +2153 F5 coagulation factor V 1 protein-coding FVL|PCCF|RPRGL1|THPH2 coagulation factor V|activated protein c cofactor|coagulation factor V (proaccelerin, labile factor)|coagulation factor V jinjiang A2 domain|factor V Leiden 202 0.02765 6.466 1 1 +2155 F7 coagulation factor VII 13 protein-coding SPCA coagulation factor VII|FVII coagulation protein|coagulation factor VII (serum prothrombin conversion accelerator)|eptacog alfa|proconvertin 48 0.00657 3.465 1 1 +2157 F8 coagulation factor VIII X protein-coding AHF|DXS1253E|F8B|F8C|FVIII|HEMA coagulation factor VIII|antihemophilic factor|coagulation factor VIII A1 domain|coagulation factor VIII C2 domain|coagulation factor VIII, procoagulant component|coagulation factor VIIIc|factor VIII F8B 193 0.02642 7.946 1 1 +2158 F9 coagulation factor IX X protein-coding F9 p22|FIX|HEMB|P19|PTC|THPH8 coagulation factor IX|Christmas factor|factor 9|factor IX F9|plasma thromboplastic component|plasma thromboplastin component 61 0.008349 0.6474 1 1 +2159 F10 coagulation factor X 13 protein-coding FX|FXA coagulation factor X|Stuart-Prower factor|factor Xa|prothrombinase 45 0.006159 5.32 1 1 +2160 F11 coagulation factor XI 4 protein-coding FXI coagulation factor XI|PTA|plasma thromboplastin antecedent 48 0.00657 1.393 1 1 +2161 F12 coagulation factor XII 5 protein-coding HAE3|HAEX|HAF coagulation factor XII|Hageman factor|beta-factor XIIa part 1|beta-factor XIIa part 2|coagulation factor XII (Hageman factor)|coagulation factor XIIa heavy chain|coagulation factor XIIa light chain 35 0.004791 6.467 1 1 +2162 F13A1 coagulation factor XIII A chain 6 protein-coding F13A coagulation factor XIII A chain|FSF, A subunit|TGase|bA525O21.1 (coagulation factor XIII, A1 polypeptide)|coagulation factor XIII, A polypeptide|coagulation factor XIII, A1 polypeptide|coagulation factor XIIIa|factor XIIIa|fibrin stabilizing factor, A subunit|fibrinoligase|protein-glutamine gamma-glutamyltransferase A chain|transglutaminase A chain|transglutaminase. plasma 105 0.01437 8.387 1 1 +2165 F13B coagulation factor XIII B chain 1 protein-coding FXIIIB coagulation factor XIII B chain|TGase|coagulation factor XIII, B polypeptide|fibrin-stabilizing factor B subunit|protein-glutamine gamma-glutamyltransferase B chain|transglutaminase B chain 107 0.01465 0.6571 1 1 +2166 FAAH fatty acid amide hydrolase 1 protein-coding FAAH-1|PSAB fatty-acid amide hydrolase 1|anandamide amidohydrolase 1|oleamide hydrolase 1 36 0.004927 8.464 1 1 +2167 FABP4 fatty acid binding protein 4 8 protein-coding A-FABP|AFABP|ALBP|HEL-S-104|aP2 fatty acid-binding protein, adipocyte|adipocyte fatty acid binding protein|adipocyte lipid-binding protein|adipocyte-type fatty acid-binding protein|epididymis secretory protein Li 104|fatty acid binding protein 4, adipocyte 13 0.001779 5.37 1 1 +2168 FABP1 fatty acid binding protein 1 2 protein-coding FABPL|L-FABP fatty acid-binding protein, liver|fatty acid binding protein 1, liver|liver-type fatty acid-binding protein 16 0.00219 1.951 1 1 +2169 FABP2 fatty acid binding protein 2 4 protein-coding FABPI|I-FABP fatty acid-binding protein, intestinal|fatty acid binding protein 2, intestinal|intestinal-type fatty acid-binding protein 14 0.001916 0.7799 1 1 +2170 FABP3 fatty acid binding protein 3 1 protein-coding FABP11|H-FABP|M-FABP|MDGI|O-FABP fatty acid-binding protein, heart|fatty acid binding protein 11|fatty acid binding protein 3, muscle and heart|heart-type fatty acid-binding protein|mammary-derived growth inhibitor|muscle fatty acid-binding protein 7 0.0009581 7.157 1 1 +2171 FABP5 fatty acid binding protein 5 8 protein-coding E-FABP|EFABP|KFABP|PA-FABP|PAFABP fatty acid-binding protein, epidermal|epidermal-type fatty acid-binding protein|fatty acid binding protein 5 (psoriasis-associated)|psoriasis-associated fatty acid-binding protein homolog 6 0.0008212 6.95 1 1 +2172 FABP6 fatty acid binding protein 6 5 protein-coding I-15P|I-BABP|I-BALB|I-BAP|ILBP|ILBP3|ILLBP gastrotropin|GT|fatty acid binding protein 6, ileal|ileal bile acid binding protein|ileal lipid-binding protein|illeal lipid-binding protein|intestinal 15 kDa protein 17 0.002327 3.315 1 1 +2173 FABP7 fatty acid binding protein 7 6 protein-coding B-FABP|BLBP|FABPB|MRG fatty acid-binding protein, brain|brain lipid-binding protein|brain-type fatty acid-binding protein|hypothetical protein DKFZp547J2313|mammary-derived growth inhibitor-related 13 0.001779 2.714 1 1 +2175 FANCA Fanconi anemia complementation group A 16 protein-coding FA|FA-H|FA1|FAA|FACA|FAH|FANCH Fanconi anemia group A protein|Fanconi anemia, complementation group H|Fanconi anemia, type 1 77 0.01054 7.887 1 1 +2176 FANCC Fanconi anemia complementation group C 9 protein-coding FA3|FAC|FACC Fanconi anemia group C protein 33 0.004517 8.077 1 1 +2177 FANCD2 Fanconi anemia complementation group D2 3 protein-coding FA-D2|FA4|FACD|FAD|FAD2|FANCD Fanconi anemia group D2 protein 106 0.01451 8.039 1 1 +2178 FANCE Fanconi anemia complementation group E 6 protein-coding FACE|FAE Fanconi anemia group E protein 46 0.006296 7.487 1 1 +2180 ACSL1 acyl-CoA synthetase long-chain family member 1 4 protein-coding ACS1|FACL1|FACL2|LACS|LACS1|LACS2 long-chain-fatty-acid--CoA ligase 1|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|palmitoyl-CoA ligase 1|palmitoyl-CoA ligase 2|paltimoyl-CoA ligase 1 47 0.006433 10.7 1 1 +2181 ACSL3 acyl-CoA synthetase long-chain family member 3 2 protein-coding ACS3|FACL3|PRO2194 long-chain-fatty-acid--CoA ligase 3|LACS 3|fatty-acid-Coenzyme A ligase, long-chain 3|lignoceroyl-CoA synthase|long-chain acyl-CoA synthetase 3 51 0.006981 11.06 1 1 +2182 ACSL4 acyl-CoA synthetase long-chain family member 4 X protein-coding ACS4|FACL4|LACS4|MRX63|MRX68 long-chain-fatty-acid--CoA ligase 4|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 45 0.006159 10.21 1 1 +2184 FAH fumarylacetoacetate hydrolase 15 protein-coding - fumarylacetoacetase|FAA|beta-diketonase|fumarylacetoacetate hydrolase (fumarylacetoacetase) 30 0.004106 9.121 1 1 +2185 PTK2B protein tyrosine kinase 2 beta 8 protein-coding CADTK|CAKB|FADK2|FAK2|PKB|PTK|PYK2|RAFTK protein-tyrosine kinase 2-beta|CAK-beta|FADK 2|PTK2B protein tyrosine kinase 2 beta|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|related adhesion focal tyrosine kinase 79 0.01081 9.708 1 1 +2186 BPTF bromodomain PHD finger transcription factor 17 protein-coding FAC1|FALZ|NURF301 nucleosome-remodeling factor subunit BPTF|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 175 0.02395 10.62 1 1 +2187 FANCB Fanconi anemia complementation group B X protein-coding FA2|FAAP90|FAAP95|FAB|FACB Fanconi anemia group B protein|Fanconi anemia-associated polypeptide of 95 kDa 50 0.006844 4.272 1 1 +2188 FANCF Fanconi anemia complementation group F 11 protein-coding FAF Fanconi anemia group F protein 21 0.002874 8.585 1 1 +2189 FANCG Fanconi anemia complementation group G 9 protein-coding FAG|XRCC9 Fanconi anemia group G protein|DNA repair protein XRCC9|X-ray repair complementing defective repair in Chinese hamster cells 9|X-ray repair, complementing defective, in Chinese hamster, 9|truncated Fanconi anemia group G protein 35 0.004791 8.468 1 1 +2191 FAP fibroblast activation protein alpha 2 protein-coding DPPIV|FAPA|SIMP prolyl endopeptidase FAP|170 kDa melanoma membrane-bound gelatinase|FAPalpha|dipeptidyl peptidase FAP|gelatine degradation protease FAP|integral membrane serine protease|post-proline cleaving enzyme|seprase|serine integral membrane protease|surface-expressed protease 85 0.01163 7.403 1 1 +2192 FBLN1 fibulin 1 22 protein-coding FBLN|FIBL1 fibulin-1 69 0.009444 10.86 1 1 +2193 FARSA phenylalanyl-tRNA synthetase alpha subunit 19 protein-coding CML33|FARSL|FARSLA|FRSA|PheHA phenylalanine--tRNA ligase alpha subunit|pheRS|phenylalanine tRNA ligase 1, alpha, cytoplasmic|phenylalanine--tRNA ligase alpha chain|phenylalanine-tRNA synthetase alpha-subunit|phenylalanine-tRNA synthetase-like, alpha subunit|phenylalanyl-tRNA synthetase alpha chain|phenylalanyl-tRNA synthetase-like, alpha subunit 34 0.004654 10.55 1 1 +2194 FASN fatty acid synthase 17 protein-coding FAS|OA-519|SDR27X1 fatty acid synthase|short chain dehydrogenase/reductase family 27X, member 1 140 0.01916 12.39 1 1 +2195 FAT1 FAT atypical cadherin 1 4 protein-coding CDHF7|CDHR8|FAT|ME5|hFat1 protocadherin Fat 1|FAT tumor suppressor 1|cadherin ME5|cadherin family member 7|cadherin-related family member 8|cadherin-related tumor suppressor homolog|protein fat homolog 408 0.05584 11.47 1 1 +2196 FAT2 FAT atypical cadherin 2 5 protein-coding CDHF8|CDHR9|HFAT2|MEGF1 protocadherin Fat 2|FAT tumor suppressor homolog 2|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 297 0.04065 5.924 1 1 +2197 FAU FAU, ubiquitin like and ribosomal protein S30 fusion 11 protein-coding FAU1|Fub1|Fubi|MNSFbeta|RPS30|S30|asr1 ubiquitin-like protein fubi and ribosomal protein S30|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-S30 fusion protein 14 0.001916 12.74 1 1 +2199 FBLN2 fibulin 2 3 protein-coding - fibulin-2|FIBL-2 91 0.01246 9.516 1 1 +2200 FBN1 fibrillin 1 15 protein-coding ACMICD|ECTOL1|FBN|GPHYSD2|MASS|MFLS|MFS1|OCTD|SGS|SSKS|WMS|WMS2 fibrillin-1|fibrillin 15|fibrillin-1 preproprotein 236 0.0323 10.46 1 1 +2201 FBN2 fibrillin 2 5 protein-coding CCA|DA9|EOMD fibrillin-2|fibrillin 5 310 0.04243 6.276 1 1 +2202 EFEMP1 EGF containing fibulin like extracellular matrix protein 1 2 protein-coding DHRD|DRAD|FBLN3|FBNL|FIBL-3|MLVT|MTLV|S1-5 EGF-containing fibulin-like extracellular matrix protein 1|extracellular protein S1-5|fibulin-3 49 0.006707 9.844 1 1 +2203 FBP1 fructose-bisphosphatase 1 9 protein-coding FBP fructose-1,6-bisphosphatase 1|D-fructose-1,6-bisphosphate 1-phosphohydrolase 1|FBPase 1|growth-inhibiting protein 17|liver FBPase 17 0.002327 8.853 1 1 +2204 FCAR Fc fragment of IgA receptor 19 protein-coding CD89|CTB-61M7.2|FcalphaRI immunoglobulin alpha Fc receptor|Fc alpha receptor|Fc fragment of IgA, receptor for 49 0.006707 1.748 1 1 +2205 FCER1A Fc fragment of IgE receptor Ia 1 protein-coding FCE1A|FcERI high affinity immunoglobulin epsilon receptor subunit alpha|Fc IgE receptor, alpha polypeptide|Fc epsilon RI alpha-chain|Fc epsilon receptor Ia|Fc fragment of IgE, high affinity I, receptor for; alpha polypeptide|Fc-epsilon RI-alpha|high affinity immunoglobulin epsilon receptor alpha-subunit|igE Fc receptor subunit alpha|immunoglobulin E receptor, high-affinity, of mast cells, alpha polypeptide 42 0.005749 4.253 1 1 +2206 MS4A2 membrane spanning 4-domains A2 11 protein-coding APY|ATOPY|FCER1B|FCERI|IGEL|IGER|IGHER|MS4A1 high affinity immunoglobulin epsilon receptor subunit beta|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|igE Fc receptor subunit beta|immunoglobulin E receptor, high affinity, beta polypeptide|membrane-spanning 4-domains subfamily A member 2 36 0.004927 3.497 1 1 +2207 FCER1G Fc fragment of IgE receptor Ig 1 protein-coding FCRG high affinity immunoglobulin epsilon receptor subunit gamma|Fc epsilon receptor Ig|Fc fragment of IgE, high affinity I, receptor for; gamma polypeptide|Fc receptor gamma-chain|fc-epsilon RI-gamma|fcRgamma|fceRI gamma|immunoglobulin E receptor, high affinity, gamma chain 10 0.001369 8.712 1 1 +2208 FCER2 Fc fragment of IgE receptor II 19 protein-coding BLAST-2|CD23|CD23A|CLEC4J|FCE2|IGEBF low affinity immunoglobulin epsilon Fc receptor|C-type lectin domain family 4, member J|CD23 antigen|Fc epsilon receptor II|Fc fragment of IgE, low affinity II, receptor for (CD23)|fc-epsilon-RII|immunoglobulin E-binding factor|immunoglobulin epsilon-chain|lymphocyte IgE receptor 21 0.002874 2.095 1 1 +2209 FCGR1A Fc fragment of IgG receptor Ia 1 protein-coding CD64|CD64A|FCRI|IGFR1 high affinity immunoglobulin gamma Fc receptor I|Fc fragment of IgG, high affinity Ia, receptor (CD64)|Fc fragment of IgG, high affinity Ia, receptor for (CD64)|Fc gamma receptor|Fc gamma receptor Ia|Fc-gamma RI|Fc-gamma receptor I A1|IgG Fc receptor I|fc-gamma RIA|fcgammaRIa 20 0.002737 6.159 1 1 +2210 FCGR1B Fc fragment of IgG receptor Ib 1 protein-coding CD64b|IGFRB high affinity immunoglobulin gamma Fc receptor IB|Fc fragment of IgG, high affinity Ib, receptor (CD64)|Fc gamma receptor Ib|Fc-gamma receptor I B2|fc-gamma RIB|fcRIB|hFcgammaRIB|igG Fc receptor IB 11 0.001506 6.099 1 1 +2212 FCGR2A Fc fragment of IgG receptor IIa 1 protein-coding CD32|CD32A|CDw32|FCG2|FCGR2|FCGR2A1|FcGR|IGFR2 low affinity immunoglobulin gamma Fc region receptor II-a|Fc fragment of IgG, low affinity IIa, receptor (CD32)|Fc gamma receptor IIa|Immunoglobulin G Fc receptor II|fc-gamma RII-a|fc-gamma-RIIa|fcRII-a|igG Fc receptor II-a 40 0.005475 9.288 1 1 +2213 FCGR2B Fc fragment of IgG receptor IIb 1 protein-coding CD32|CD32B|FCG2|FCGR2|IGFR2 low affinity immunoglobulin gamma Fc region receptor II-b|CDw32|Fc fragment of IgG, low affinity II, receptor for (CD32)|Fc fragment of IgG, low affinity IIb, receptor (CD32)|Fc fragment of IgG, low affinity IIb, receptor for (CD32)|Fc gamma RIIb|Fc gamma receptor IIb|fc-gamma RII-b|fc-gamma-RIIb|fcRII-b|igG Fc receptor II-b 22 0.003011 6.473 1 1 +2214 FCGR3A Fc fragment of IgG receptor IIIa 1 protein-coding CD16|CD16A|FCG3|FCGR3|FCGRIII|FCR-10|FCRIII|FCRIIIA|IGFR3|IMD20 low affinity immunoglobulin gamma Fc region receptor III-A|CD16a antigen|Fc fragment of IgG low affinity IIIa receptor|Fc fragment of IgG, low affinity III, receptor for (CD16)|Fc fragment of IgG, low affinity IIIa, receptor (CD16a)|Fc gamma receptor III-A|Fc gamma receptor IIIa|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|neutrophil-specific antigen NA 37 0.005064 9.671 1 1 +2215 FCGR3B Fc fragment of IgG receptor IIIb 1 protein-coding CD16|CD16b|FCG3|FCGR3|FCR-10|FCRIII|FCRIIIb low affinity immunoglobulin gamma Fc region receptor III-B|Fc fragment of IgG, low affinity IIIb, receptor (CD16b)|Fc gamma receptor IIIb|Fc-gamma receptor IIIb (CD 16)|fc-gamma RIII-beta|fc-gamma RIIIb|igG Fc receptor III-1 34 0.004654 3.902 1 1 +2217 FCGRT Fc fragment of IgG receptor and transporter 19 protein-coding FCRN|alpha-chain IgG receptor FcRn large subunit p51|Fc fragment of IgG, receptor, transporter, alpha|FcRn alpha chain|IgG Fc fragment receptor transporter alpha chain|heavy chain of the major histocompatibility complex class I-like Fc receptor|immunoglobulin receptor, intestinal, heavy chain|major histocompatibility complex class I-like Fc receptor|neonatal Fc receptor|neonatal Fc-receptor for Ig|transmembrane alpha chain of the neonatal receptor 31 0.004243 11.27 1 1 +2218 FKTN fukutin 9 protein-coding CMD1X|FCMD|LGMD2M|MDDGA4|MDDGB4|MDDGC4 fukutin|Fukuyama type congenital muscular dystrophy protein|patient fukutin 28 0.003832 8.808 1 1 +2219 FCN1 ficolin 1 9 protein-coding FCNM ficolin-1|M-ficolin|ficolin (collagen/fibrinogen domain-containing) 1|ficolin-A|ficolin-alpha 48 0.00657 4.84 1 1 +2220 FCN2 ficolin 2 9 protein-coding EBP-37|FCNL|P35|ficolin-2 ficolin-2|37 kDa elastin-binding protein|L-ficolin|collagen/fibrinogen domain-containing protein 2|ficolin (collagen/fibrinogen domain containing lectin) 2 (hucolin)|ficolin B|ficolin-beta|serum lectin p35 42 0.005749 1.033 1 1 +2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 8 protein-coding DGPT|ERG9|SQS|SS squalene synthase|FPP:FPP farnesyltransferase|presqualene-di-diphosphate synthase|squalene synthetase 24 0.003285 11.28 1 1 +2224 FDPS farnesyl diphosphate synthase 1 protein-coding FPPS|FPS|POROK9 farnesyl pyrophosphate synthase|(2E,6E)-farnesyl diphosphate synthase|FPP synthase|FPP synthetase|farnesyl pyrophosphate synthetase, dimethylallyltranstransferase, geranyltranstransferase 42 0.005749 11.15 1 1 +2230 FDX1 ferredoxin 1 11 protein-coding ADX|FDX|LOH11CR1D adrenodoxin, mitochondrial|adrenal ferredoxin|hepatoredoxin|mitochondrial adrenodoxin 11 0.001506 8.963 1 1 +2232 FDXR ferredoxin reductase 17 protein-coding ADXR NADPH:adrenodoxin oxidoreductase, mitochondrial|AR|adrenodoxin reductase|adrenodoxin-NADP(+) reductase|ferredoxin--NADP(+) reductase 40 0.005475 8.771 1 1 +2235 FECH ferrochelatase 18 protein-coding EPP|FCE ferrochelatase, mitochondrial|heme synthase|heme synthetase|protoheme ferro-lyase|protoporphyria 20 0.002737 9.152 1 1 +2237 FEN1 flap structure-specific endonuclease 1 11 protein-coding FEN-1|MF1|RAD2 flap endonuclease 1|DNase IV|FEN-1|maturation factor-1 14 0.001916 9.533 1 1 +2239 GPC4 glypican 4 X protein-coding K-glypican glypican-4|dJ900E8.1 (glypican 4)|glypican proteoglycan 4 41 0.005612 9.086 1 1 +2241 FER FER tyrosine kinase 5 protein-coding PPP1R74|TYK3|p94-Fer tyrosine-protein kinase Fer|feline encephalitis virus-related kinase FER|fer (fps/fes related) tyrosine kinase|fujinami poultry sarcoma/Feline sarcoma-related protein Fer|phosphoprotein NCP94|protein phosphatase 1, regulatory subunit 74|proto-oncogene c-Fer|tyrosine kinase 3 71 0.009718 5.652 1 1 +2242 FES FES proto-oncogene, tyrosine kinase 15 protein-coding FPS tyrosine-protein kinase Fes/Fps|Oncogene FES, feline sarcoma virus|feline sarcoma (Snyder-Theilen) viral (v-fes)/Fujinami avian sarcoma (PRCII) viral (v-fps) oncogene homolog|feline sarcoma oncogene|feline sarcoma/Fujinami avian sarcoma oncogene homolog|p93c-fes|proto-oncogene c-Fes|proto-oncogene c-Fps|proto-oncogene tyrosine-protein kinase Fes/Fps 49 0.006707 8.089 1 1 +2243 FGA fibrinogen alpha chain 4 protein-coding Fib2 fibrinogen alpha chain|fibrinogen, A alpha polypeptide 117 0.01601 2.864 1 1 +2244 FGB fibrinogen beta chain 4 protein-coding HEL-S-78p fibrinogen beta chain|beta-fibrinogen|epididymis secretory sperm binding protein Li 78p|fibrinogen, B beta polypeptide 53 0.007254 2.606 1 1 +2245 FGD1 FYVE, RhoGEF and PH domain containing 1 X protein-coding AAS|FGDY|MRXS16|ZFYVE3 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 76 0.0104 8.356 1 1 +2246 FGF1 fibroblast growth factor 1 5 protein-coding AFGF|ECGF|ECGF-beta|ECGFA|ECGFB|FGF-1|FGF-alpha|FGFA|GLIO703|HBGF-1|HBGF1 fibroblast growth factor 1|beta-endothelial cell growth factor|endothelial cell growth factor, alpha|endothelial cell growth factor, beta|fibroblast growth factor 1 (acidic)|heparin-binding growth factor 1 14 0.001916 6.523 1 1 +2247 FGF2 fibroblast growth factor 2 4 protein-coding BFGF|FGF-2|FGFB|HBGF-2 fibroblast growth factor 2|basic fibroblast growth factor bFGF|fibroblast growth factor 2 (basic)|heparin-binding growth factor 2|prostatropin 13 0.001779 7.081 1 1 +2248 FGF3 fibroblast growth factor 3 11 protein-coding HBGF-3|INT2 fibroblast growth factor 3|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 25 0.003422 0.434 1 1 +2249 FGF4 fibroblast growth factor 4 11 protein-coding HBGF-4|HST|HST-1|HSTF1|K-FGF|KFGF fibroblast growth factor 4|FGF-4|HSTF-1|fibroblast growth factor 4 splice isoform|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 7 0.0009581 0.1542 1 1 +2250 FGF5 fibroblast growth factor 5 4 protein-coding HBGF-5|Smag-82|TCMGLY fibroblast growth factor 5|heparin-binding growth factor 5 40 0.005475 1.51 1 1 +2251 FGF6 fibroblast growth factor 6 12 protein-coding HBGF-6|HST2 fibroblast growth factor 6|FGF-6|HST-2|HSTF-2|heparin secretory-transforming protein 2|heparin-binding growth factor 6 37 0.005064 0.04149 1 1 +2252 FGF7 fibroblast growth factor 7 15 protein-coding HBGF-7|KGF fibroblast growth factor 7|FGF-7|heparin-binding growth factor 7|keratinocyte growth factor 18 0.002464 6.325 1 1 +2253 FGF8 fibroblast growth factor 8 10 protein-coding AIGF|FGF-8|HBGF-8|HH6|KAL6 fibroblast growth factor 8|androgen-induced growth factor|fibroblast growth factor 8 (androgen-induced)|heparin-binding growth factor 8 20 0.002737 0.683 1 1 +2254 FGF9 fibroblast growth factor 9 13 protein-coding FGF-9|GAF|HBFG-9|HBGF-9|SYNS3 fibroblast growth factor 9|fibroblast growth factor 9 (glia-activating factor)|heparin-binding growth factor 9 20 0.002737 3.324 1 1 +2255 FGF10 fibroblast growth factor 10 5 protein-coding - fibroblast growth factor 10|FGF-10|keratinocyte growth factor 2|produced by fibroblasts of urinary bladder lamina propria 32 0.00438 1.147 1 1 +2256 FGF11 fibroblast growth factor 11 17 protein-coding FGF-11|FHF-3|FHF3 fibroblast growth factor 11|fibroblast growth factor homologous factor 3 10 0.001369 6.992 1 1 +2257 FGF12 fibroblast growth factor 12 3 protein-coding FGF12B|FHF1 fibroblast growth factor 12|FGF-12|FHF-1|fibroblast growth factor 12B|fibroblast growth factor FGF-12b|fibroblast growth factor homologous factor 1|myocyte-activating factor 43 0.005886 5.031 1 1 +2258 FGF13 fibroblast growth factor 13 X protein-coding FGF-13|FGF2|FHF-2|FHF2 fibroblast growth factor 13|fibroblast growth factor homologous factor 2 54 0.007391 6.367 1 1 +2259 FGF14 fibroblast growth factor 14 13 protein-coding FGF-14|FHF-4|FHF4|SCA27 fibroblast growth factor 14|bA397O8.2|fibroblast growth factor homologous factor 4 39 0.005338 5.572 1 1 +2260 FGFR1 fibroblast growth factor receptor 1 8 protein-coding BFGFR|CD331|CEK|ECCL|FGFBR|FGFR-1|FLG|FLT-2|FLT2|HBGFR|HH2|HRTFDS|KAL2|N-SAM|OGD|bFGF-R-1 fibroblast growth factor receptor 1|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 59 0.008076 10.24 1 1 +2261 FGFR3 fibroblast growth factor receptor 3 4 protein-coding ACH|CD333|CEK2|HSFGFR3EX|JTK4 fibroblast growth factor receptor 3|FGFR-3|fibroblast growth factor receptor 3 variant 4|hydroxyaryl-protein kinase|tyrosine kinase JTK4 113 0.01547 8.795 1 1 +2262 GPC5 glypican 5 13 protein-coding - glypican-5|bA93M14.1|glypican proteoglycan 5 114 0.0156 2.178 1 1 +2263 FGFR2 fibroblast growth factor receptor 2 10 protein-coding BBDS|BEK|BFR-1|CD332|CEK3|CFD1|ECT1|JWS|K-SAM|KGFR|TK14|TK25 fibroblast growth factor receptor 2|BEK fibroblast growth factor receptor|bacteria-expressed kinase|keratinocyte growth factor receptor|protein tyrosine kinase, receptor like 14 88 0.01204 9.018 1 1 +2264 FGFR4 fibroblast growth factor receptor 4 5 protein-coding CD334|JTK2|TKF fibroblast growth factor receptor 4|hydroxyaryl-protein kinase|protein-tyrosine kinase|tyrosine kinase related to fibroblast growth factor receptor|tyrosylprotein kinase 75 0.01027 7.035 1 1 +2266 FGG fibrinogen gamma chain 4 protein-coding - fibrinogen gamma chain|fibrinogen, gamma polypeptide|testicular tissue protein Li 70 47 0.006433 2.861 1 1 +2267 FGL1 fibrinogen like 1 8 protein-coding HFREP1|HP-041|LFIRE-1|LFIRE1 fibrinogen-like protein 1|hepassocin|hepatocellular carcinoma-related sequence|hepatocyte-derived fibrinogen-related protein 1|liver fibrinogen-related protein 1 22 0.003011 2.404 1 1 +2268 FGR FGR proto-oncogene, Src family tyrosine kinase 1 protein-coding SRC2|c-fgr|c-src2|p55-Fgr|p55c-fgr|p58-Fgr|p58c-fgr tyrosine-protein kinase Fgr|Gardner-Rasheed feline sarcoma viral (v-fgr) oncogene homolog|c-fgr protooncogene|c-src-2 proto-oncogene|feline Gardner-Rasheed sarcoma viral oncogene homolog|p55-c-fgr protein|proto-oncogene c-Fgr|proto-oncogene tyrosine-protein kinase FGR|v-fgr feline Gardner-Rasheed sarcoma viral oncogene homolog 36 0.004927 7.221 1 1 +2271 FH fumarate hydratase 1 protein-coding FMRD|HLRCC|LRCC|MCL|MCUL1 fumarate hydratase, mitochondrial|fumarase 35 0.004791 10.53 1 1 +2272 FHIT fragile histidine triad 3 protein-coding AP3Aase|FRA3B bis(5'-adenosyl)-triphosphatase|AP3A hydrolase|diadenosine 5',5'''-P1,P3-triphosphate hydrolase|dinucleosidetriphosphatase 20 0.002737 5.504 1 1 +2273 FHL1 four and a half LIM domains 1 X protein-coding FHL-1|FHL1A|FHL1B|FLH1A|KYOT|RBMX1A|RBMX1B|SLIM|SLIM-1|SLIM1|SLIMMER|XMPMA four and a half LIM domains protein 1|LIM protein SLIMMER|four-and-a-half Lin11, Isl-1 and Mec-3 domains 1|skeletal muscle LIM-protein 1 29 0.003969 9.908 1 1 +2274 FHL2 four and a half LIM domains 2 2 protein-coding AAG11|DRAL|FHL-2|SLIM-3|SLIM3 four and a half LIM domains protein 2|LIM domain protein DRAL|aging-associated gene 11|down-regulated in rhabdomyosarcoma LIM protein|skeletal muscle LIM-protein 3 22 0.003011 9.527 1 1 +2275 FHL3 four and a half LIM domains 3 1 protein-coding SLIM2 four and a half LIM domains protein 3|FHL-3|LIM-only protein FHL3|SLIM-2|skeletal muscle LIM-protein 2 13 0.001779 8.671 1 1 +2277 VEGFD vascular endothelial growth factor D X protein-coding FIGF|VEGF-D vascular endothelial growth factor D|c-fos induced growth factor (vascular endothelial growth factor D) 28 0.003832 2.983 1 1 +2280 FKBP1A FK506 binding protein 1A 20 protein-coding FKBP-12|FKBP-1A|FKBP1|FKBP12|PKC12|PKCI2|PPIASE peptidyl-prolyl cis-trans isomerase FKBP1A|12 kDa FK506-binding protein|12 kDa FKBP|FK506 binding protein 1A, 12kDa|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|protein kinase C inhibitor 2|rotamase 12 0.001642 12.19 1 1 +2281 FKBP1B FK506 binding protein 1B 2 protein-coding FKBP12.6|FKBP1L|OTK4|PKBP1L|PPIase peptidyl-prolyl cis-trans isomerase FKBP1B|12.6 kDa FK506-binding protein|12.6 kDa FKBP|FK506 binding protein 1B, 12.6 kDa|FK506-binding protein 12.6|FKBP-12.6|FKBP-1B|PPIase FKBP1B|calstabin 2|h-FKBP-12|immunophilin FKBP12.6|rotamase 2 0.0002737 6.232 1 1 +2282 FKBP1AP1 FK506 binding protein 1A pseudogene 1 19 pseudo FKBP12|FKBP1P1 FK506 binding protein 1 pseudogene 1|FK506 binding protein 1A, 12kDa pseudogene 1 3.545 0 1 +2286 FKBP2 FK506 binding protein 2 11 protein-coding FKBP-13|PPIase peptidyl-prolyl cis-trans isomerase FKBP2|13 kDa FK506-binding protein|13 kDa FKBP|FK506 binding protein 2, 13kDa|FK506-binding protein 2 (13kD)|FKBP-2|PPIase FKBP2|immunophilin FKBP13|proline isomerase|rapamycin-binding protein|rotamase 11 0.001506 10.21 1 1 +2287 FKBP3 FK506 binding protein 3 14 protein-coding FKBP-25|FKBP-3|FKBP25|PPIase peptidyl-prolyl cis-trans isomerase FKBP3|25 kDa FK506-binding protein|25 kDa FKBP|FK506 binding protein 3, 25kDa|FK506-binding protein 25, T-cell|FK506-binding protein 3 (25kD)|PPIase FKBP3|immunophilin FKBP25|rapamycin binding protein|rapamycin-selective 25 kDa immunophilin|rotamase 16 0.00219 10.29 1 1 +2288 FKBP4 FK506 binding protein 4 12 protein-coding FKBP51|FKBP52|FKBP59|HBI|Hsp56|PPIase|p52 peptidyl-prolyl cis-trans isomerase FKBP4|FK506 binding protein 4, 59kDa|FK506-binding protein 4 (59kD)|HSP binding immunophilin|T-cell FK506-binding protein, 59kD|peptidylprolyl cis-trans isomerase|rotamase 34 0.004654 11.85 1 1 +2289 FKBP5 FK506 binding protein 5 6 protein-coding AIG6|FKBP51|FKBP54|P54|PPIase|Ptg-10 peptidyl-prolyl cis-trans isomerase FKBP5|51 kDa FK506-binding protein|51 kDa FKBP|54 kDa progesterone receptor-associated immunophilin|FF1 antigen|FKBP-51|HSP90-binding immunophilin|PPIase FKBP5|T-cell FK506-binding protein|androgen-regulated protein 6|peptidylprolyl cis-trans isomerase|rotamase 30 0.004106 10.55 1 1 +2290 FOXG1 forkhead box G1 14 protein-coding 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 forkhead box protein G1|brain factor 1|brain factor 2|forkhead-like 1|forkhead-like 2|forkhead-like 3|forkhead-like 4|oncogene QIN 72 0.009855 2.005 1 1 +2294 FOXF1 forkhead box F1 16 protein-coding ACDMPV|FKHL5|FREAC1 forkhead box protein F1|FREAC-1|Forkhead, drosophila, homolog-like 5|forkhead-related activator 1|forkhead-related protein FKHL5|forkhead-related transcription factor 1 30 0.004106 5.889 1 1 +2295 FOXF2 forkhead box F2 6 protein-coding FKHL6|FREAC-2|FREAC2 forkhead box protein F2|forkhead-like 6|forkhead-related activator 2|forkhead-related protein FKHL6|forkhead-related transcription factor 2 31 0.004243 5.72 1 1 +2296 FOXC1 forkhead box C1 6 protein-coding ARA|FKHL7|FREAC-3|FREAC3|IGDA|IHG1|IRID1|RIEG3 forkhead box protein C1|forkhead box C1 protein|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 27 0.003696 7.803 1 1 +2297 FOXD1 forkhead box D1 5 protein-coding FKHL8|FREAC-4|FREAC4 forkhead box protein D1|Forkhead, drosophila, homolog-like 8|forkhead-like 8|forkhead-related activator 4|forkhead-related protein FKHL8|forkhead-related transcription factor 4 5 0.0006844 4.708 1 1 +2298 FOXD4 forkhead box D4 9 protein-coding FKHL9|FOXD4A|FREAC-5|FREAC5 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 39 0.005338 3.388 1 1 +2299 FOXI1 forkhead box I1 5 protein-coding FKH10|FKHL10|FREAC-6|FREAC6|HFH-3|HFH3 forkhead box protein I1|HNF-3/fork-head homolog-3|forkhead-like 10|forkhead-related activator 6|forkhead-related protein FKHL10|forkhead-related transcription factor 6|hepatocyte nuclear factor 3 forkhead homolog 3 54 0.007391 1.845 1 1 +2300 FOXL1 forkhead box L1 16 protein-coding FKH6|FKHL11|FREAC7 forkhead box protein L1|forkhead-like 11|forkhead-related protein FKHL11|forkhead-related transcription factor 7 17 0.002327 4.808 1 1 +2301 FOXE3 forkhead box E3 1 protein-coding FKHL12|FREAC8 forkhead box protein E3|FREAC-8|forkhead, drosophila, homolog-like 12|forkhead-related protein FKHL12|forkhead-related transcription factor 8 9 0.001232 1.233 1 1 +2302 FOXJ1 forkhead box J1 17 protein-coding FKHL13|HFH-4|HFH4 forkhead box protein J1|fork head homologue 4|forkhead transcription factor HFH-4|forkhead-like 13|forkhead-related protein FKHL13|hepatocyte nuclear factor 3 forkhead homolog 4 13 0.001779 4.995 1 1 +2303 FOXC2 forkhead box C2 16 protein-coding FKHL14|LD|MFH-1|MFH1 forkhead box protein C2|MFH-1,mesenchyme forkhead 1|forkhead box C2 (MFH-1, mesenchyme forkhead 1)|forkhead, Drosophila, homolog-like 14|forkhead-related protein FKHL14|mesenchyme fork head protein 1|mesenchyme forkhead 1|transcription factor FKH-14 32 0.00438 3.217 1 1 +2304 FOXE1 forkhead box E1 9 protein-coding FKHL15|FOXE2|HFKH4|HFKL5|NMTC4|TITF2|TTF-2|TTF2 forkhead box protein E1|HNF-3/fork head-like protein 5|forkhead box E2|forkhead box protein E2|forkhead, drosophila, homolog-like 15|forkhead-related protein FKHL15|thyroid transcription factor 2 48 0.00657 3.598 1 1 +2305 FOXM1 forkhead box M1 12 protein-coding FKHL16|FOXM1B|HFH-11|HFH11|HNF-3|INS-1|MPHOSPH2|MPP-2|MPP2|PIG29|TRIDENT forkhead box protein M1|Forkhead, drosophila, homolog-like 16|HNF-3/fork-head homolog 11|M-phase phosphoprotein 2|MPM-2 reactive phosphoprotein 2|forkhead-related protein FKHL16|hepatocyte nuclear factor 3 forkhead homolog 11|transcription factor Trident|winged-helix factor from INS-1 cells 56 0.007665 9.276 1 1 +2306 FOXD2 forkhead box D2 1 protein-coding FKHL17|FREAC-9|FREAC9 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 20 0.002737 5.023 1 1 +2307 FOXS1 forkhead box S1 20 protein-coding FKHL18|FREAC10 forkhead box protein S1|FREAC-10|forkhead-like 18 protein|forkhead-related activator 10|forkhead-related transcription factor 10|forkhead-related transcription factor FREAC-10 28 0.003832 5.51 1 1 +2308 FOXO1 forkhead box O1 13 protein-coding FKH1|FKHR|FOXO1A forkhead box protein O1|forkhead box protein O1A|forkhead, Drosophila, homolog of, in rhabdomyosarcoma 30 0.004106 9.291 1 1 +2309 FOXO3 forkhead box O3 6 protein-coding AF6q21|FKHRL1|FKHRL1P2|FOXO2|FOXO3A forkhead box protein O3|forkhead box O3A|forkhead homolog (rhabdomyosarcoma) like 1|forkhead in rhabdomyosarcoma-like 1|forkhead, Drosophila, homolog of, in rhabdomyosarcoma-like 1 28 0.003832 10.44 1 1 +2310 FOXO3B forkhead box O3B pseudogene 17 pseudo FKHRL1P1|ZNF286C forkhead homolog (rhabdomyosarcoma) like 1 pseudogene 1|forkhead homolog (rhabdomyosarcoma) pseudogene|forkhead(Drosophila) homolog (rhabdomyosarcoma) 1 like pseudogene 1 9.3 0 1 +2312 FLG filaggrin 1 protein-coding ATOD2 filaggrin|epidermal filaggrin 587 0.08034 4.12 1 1 +2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor 11 protein-coding EWSR2|SIC-1 Friend leukemia integration 1 transcription factor|Ewing sarcoma breakpoint region 2|Friend leukemia virus integration 1|transcription factor ERGB 54 0.007391 8.106 1 1 +2314 FLII FLII, actin remodeling protein 17 protein-coding FLI|FLIL|Fli1 protein flightless-1 homolog|flightless I actin binding protein|flightless I homolog 69 0.009444 11.58 1 1 +2315 MLANA melan-A 9 protein-coding MART-1|MART1 melanoma antigen recognized by T-cells 1|antigen LB39-AA|antigen SK29-AA|protein Melan-A 7 0.0009581 1.598 1 1 +2316 FLNA filamin A X protein-coding ABP-280|ABPX|CSBS|CVD1|FLN|FLN-A|FLN1|FMD|MNS|NHBP|OPD|OPD1|OPD2|XLVD|XMVD filamin-A|actin binding protein 280|alpha-filamin|endothelial actin-binding protein|filamin A, alpha|filamin-1|non-muscle filamin 186 0.02546 13.88 1 1 +2317 FLNB filamin B 3 protein-coding ABP-278|ABP-280|AOI|FH1|FLN-B|FLN1L|LRS1|SCT|TABP|TAP filamin-B|ABP-280 homolog|Larsen syndrome 1 (autosomal dominant)|actin binding protein 278|actin-binding-like protein|beta-filamin|filamin B, beta|filamin homolog 1|filamin-3|thyroid autoantigen 155 0.02122 12.6 1 1 +2318 FLNC filamin C 7 protein-coding ABP-280|ABP280A|ABPA|ABPL|CMH26|FLN2|MFM5|MPD4|RCM5 filamin-C|ABP-280-like protein|ABP-L, gamma filamin|actin binding protein 280|filamin C, gamma|filamin-2|gamma filamin 234 0.03203 8.356 1 1 +2319 FLOT2 flotillin 2 17 protein-coding ECS-1|ECS1|ESA|ESA1|M17S1 flotillin-2|Flotillin 2 (epidermal surface antigen 1)|epidermal surface antigen|membrane component chromosome 17 surface marker 1|membrane component, chromosome 17, surface marker 1 (35kD protein identified by monoclonal antibody ECS-1) 33 0.004517 11.48 1 1 +2321 FLT1 fms related tyrosine kinase 1 13 protein-coding FLT|FLT-1|VEGFR-1|VEGFR1 vascular endothelial growth factor receptor 1|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 permeability factor receptor 123 0.01684 9.76 1 1 +2322 FLT3 fms related tyrosine kinase 3 13 protein-coding CD135|FLK-2|FLK2|STK1 receptor-type tyrosine-protein kinase FLT3|CD135 antigen|FL cytokine receptor|fetal liver kinase 2|fms-like tyrosine kinase 3|growth factor receptor tyrosine kinase type III|stem cell tyrosine kinase 1 92 0.01259 3.287 1 1 +2323 FLT3LG fms related tyrosine kinase 3 ligand 19 protein-coding FL|FLT3L fms-related tyrosine kinase 3 ligand|flt3 ligand 22 0.003011 6.731 1 1 +2324 FLT4 fms related tyrosine kinase 4 5 protein-coding FLT-4|FLT41|LMPH1A|PCL|VEGFR-3|VEGFR3 vascular endothelial growth factor receptor 3|fms-like tyrosine kinase 4|tyrosine-protein kinase receptor FLT4 136 0.01861 7.846 1 1 +2326 FMO1 flavin containing monooxygenase 1 1 protein-coding - dimethylaniline monooxygenase [N-oxide-forming] 1|FMO 1|Flavin-containing monooxygenase 1 (fetal liver)|dimethylaniline oxidase 1|fetal hepatic flavin-containing monooxygenase 1 70 0.009581 4.674 1 1 +2327 FMO2 flavin containing monooxygenase 2 1 protein-coding FMO1B1 dimethylaniline monooxygenase [N-oxide-forming] 2|FMO, pulmonary|dimethylaniline oxidase 2|flavin containing monooxygenase 2 (non-functional)|pulmonary flavin-containing monooxygenase 2 59 0.008076 5.952 1 1 +2328 FMO3 flavin containing monooxygenase 3 1 protein-coding FMOII|TMAU|dJ127D3.1 dimethylaniline monooxygenase [N-oxide-forming] 3|FMO form 2|dimethylaniline oxidase 3|hepatic flavin-containing monooxygenase-3|trimethylamine monooxygenase 68 0.009307 5.557 1 1 +2329 FMO4 flavin containing monooxygenase 4 1 protein-coding FMO2 dimethylaniline monooxygenase [N-oxide-forming] 4|FMO 4|dimethylaniline oxidase 4|hepatic flavin-containing monooxygenase 4 55 0.007528 6.351 1 1 +2330 FMO5 flavin containing monooxygenase 5 1 protein-coding - dimethylaniline monooxygenase [N-oxide-forming] 5|FMO 5|dimethylaniline oxidase 5|hepatic flavin-containing monooxygenase 5 44 0.006022 6.658 1 1 +2331 FMOD fibromodulin 1 protein-coding FM|SLRR2E fibromodulin|KSPG fibromodulin|collagen-binding 59 kDa protein|keratan sulfate proteoglycan fibromodulin 52 0.007117 9.629 1 1 +2332 FMR1 fragile X mental retardation 1 X protein-coding FMRP|FRAXA|POF|POF1 synaptic functional regulator FMR1|fragile X mental retardation protein 1 58 0.007939 10.17 1 1 +2334 AFF2 AF4/FMR2 family member 2 X protein-coding FMR2|FMR2P|FRAXE|MRX2|OX19 AF4/FMR2 family member 2|fragile X E mental retardation syndrome protein|fragile X mental retardation 2 protein|protein FMR-2 190 0.02601 4.917 1 1 +2335 FN1 fibronectin 1 2 protein-coding CIG|ED-B|FINC|FN|FNZ|GFND|GFND2|LETS|MSF fibronectin|cold-insoluble globulin|migration-stimulating factor 182 0.02491 14.67 1 1 +2339 FNTA farnesyltransferase, CAAX box, alpha 8 protein-coding FPTA|PGGT1A|PTAR2 protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha|FTase-alpha|GGTase-I-alpha|farnesyl-protein transferase alpha-subunit|protein prenyltransferase alpha subunit repeat containing 2|ras proteins prenyltransferase subunit alpha|type I protein geranyl-geranyltransferase alpha subunit 31 0.004243 10.47 1 1 +2342 FNTB farnesyltransferase, CAAX box, beta 14 protein-coding FPTB protein farnesyltransferase subunit beta|CAAX farnesyltransferase subunit beta|FTase-beta|ras proteins prenyltransferase subunit beta 21 0.002874 9.318 1 1 +2346 FOLH1 folate hydrolase 1 11 protein-coding FGCP|FOLH|GCP2|GCPII|NAALAD1|NAALAdase|PSM|PSMA|mGCP glutamate carboxypeptidase 2|N-acetylated alpha-linked acidic dipeptidase 1|N-acetylated-alpha-linked acidic dipeptidase I|NAALADase I|cell growth-inhibiting gene 27 protein|folate hydrolase (prostate-specific membrane antigen) 1|folylpoly-gamma-glutamate carboxypeptidase|glutamate carboxylase II|glutamate carboxypeptidase II|membrane glutamate carboxypeptidase|prostate specific membrane antigen variant F|pteroylpoly-gamma-glutamate carboxypeptidase 113 0.01547 6.275 1 1 +2348 FOLR1 folate receptor 1 11 protein-coding FBP|FOLR folate receptor alpha|FR-alpha|KB cells FBP|adult folate-binding protein|folate binding protein|folate receptor 1 (adult)|folate receptor, adult|ovarian tumor-associated antigen MOv18 20 0.002737 5.273 1 1 +2350 FOLR2 folate receptor beta 11 protein-coding BETA-HFR|FBP|FBP/PL-1|FR-BETA|FR-P3 folate receptor beta|folate receptor 2 (fetal)|folate receptor, fetal/placental|folate-binding protein, fetal/placental|placental folate-binding protein 20 0.002737 7.473 1 1 +2352 FOLR3 folate receptor 3 11 protein-coding FR-G|FR-gamma|gamma-hFR folate receptor gamma|folate receptor 3 (gamma) 30 0.004106 1.42 1 1 +2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit 14 protein-coding AP-1|C-FOS|p55 proto-oncogene c-Fos|FBJ murine osteosarcoma viral (v-fos) oncogene homolog (oncogene FOS)|FBJ murine osteosarcoma viral oncogene homolog|Fos proto-oncogene, AP-1 trancription factor subunit|G0/G1 switch regulatory protein 7|activator protein 1|cellular oncogene c-fos 25 0.003422 11.68 1 1 +2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit 19 protein-coding AP-1|G0S3|GOS3|GOSB protein fosB|FBJ murine osteosarcoma viral oncogene homolog B|FosB proto-oncogene, AP-1 trancription factor subunit|G0/G1 switch regulatory protein 3|activator protein 1 22 0.003011 8.866 1 1 +2355 FOSL2 FOS like 2, AP-1 transcription factor subunit 2 protein-coding FRA2 fos-related antigen 2|FOS like 2, AP-1 trancription factor subunit|FOS like antigen 2|FRA-2 41 0.005612 10.56 1 1 +2356 FPGS folylpolyglutamate synthase 9 protein-coding - folylpolyglutamate synthase, mitochondrial|folylpoly-gamma-glutamate synthetase|tetrahydrofolate synthase|tetrahydrofolylpolyglutamate synthase 35 0.004791 10.07 1 1 +2357 FPR1 formyl peptide receptor 1 19 protein-coding FMLP|FPR fMet-Leu-Phe receptor|N-formylpeptide chemoattractant receptor|fMLP receptor 50 0.006844 6.486 1 1 +2358 FPR2 formyl peptide receptor 2 19 protein-coding ALXR|FMLP-R-II|FMLPX|FPR2A|FPRH1|FPRH2|FPRL1|HM63|LXA4R N-formyl peptide receptor 2|FMLP-R-I|FMLP-related receptor I|LXA4 receptor|RFP|formyl peptide receptor-like 1|lipoxin A4 receptor (formyl peptide receptor related) 49 0.006707 3.115 1 1 +2359 FPR3 formyl peptide receptor 3 19 protein-coding FML2_HUMAN|FMLP-R-II|FMLPY|FPRH1|FPRH2|FPRL2|RMLP-R-I N-formyl peptide receptor 3|FMLP-related receptor II|formyl peptide receptor-like 2 40 0.005475 7.761 1 1 +2395 FXN frataxin 9 protein-coding CyaY|FA|FARR|FRDA|X25 frataxin, mitochondrial|Friedreich ataxia protein 8 0.001095 7.831 1 1 +2444 FRK fyn related Src family tyrosine kinase 6 protein-coding GTK|PTK5|RAK tyrosine-protein kinase FRK|PTK5 protein tyrosine kinase 5|fyn-related kinase|nuclear tyrosine protein kinase RAK|protein-tyrosine kinase 5 36 0.004927 5.696 1 1 +2475 MTOR mechanistic target of rapamycin 1 protein-coding FRAP|FRAP1|FRAP2|RAFT1|RAPT1|SKS serine/threonine-protein kinase mTOR|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|mechanistic target of rapamycin (serine/threonine kinase)|rapamycin and FKBP12 target 1|rapamycin associated protein FRAP2|rapamycin target protein 1 181 0.02477 10.53 1 1 +2483 FRG1 FSHD region gene 1 4 protein-coding FRG1A|FSG1 protein FRG1|FSHD region gene 1 protein|facioscapulohumeral muscular dystrophy region gene-1 53 0.007254 9.178 1 1 +2487 FRZB frizzled-related protein 2 protein-coding FRE|FRITZ|FRP-3|FRZB-1|FRZB-PEN|FRZB1|FZRB|OS1|SFRP3|SRFP3|hFIZ secreted frizzled-related protein 3|frezzled|frizzled homolog-related|frizzled-related protein 1|sFRP-3 40 0.005475 7.623 1 1 +2488 FSHB follicle stimulating hormone beta subunit 11 protein-coding HH24 follitropin subunit beta|FSH-B|FSH-beta|follicle stimulating hormone, beta polypeptide|follitropin, beta chain 15 0.002053 0.07884 1 1 +2491 CENPI centromere protein I X protein-coding CENP-I|FSHPRH1|LRPR1 centromere protein I|FSH primary response 1|follicle-stimulating hormone primary response protein|interphase centromere complex protein 19|leucine-rich primary response protein 1 48 0.00657 4.95 1 1 +2492 FSHR follicle stimulating hormone receptor 2 protein-coding FSHR1|FSHRO|LGR1|ODG1 follicle-stimulating hormone receptor|FSH receptor|follitropin receptor 125 0.01711 0.2281 1 1 +2494 NR5A2 nuclear receptor subfamily 5 group A member 2 1 protein-coding B1F|B1F2|CPF|FTF|FTZ-F1|FTZ-F1beta|LRH-1|LRH1|hB1F-2 nuclear receptor subfamily 5 group A member 2|CYP7A promoter-binding factor|b1-binding factor, hepatocyte transcription factor which activates enhancer II of hepatitis B virus|fetoprotein-alpha 1 (AFP) transcription factor|hepatocytic transcription factor hB1F-3|liver nuclear receptor homolog-1 variant 2 61 0.008349 5.848 1 1 +2495 FTH1 ferritin heavy chain 1 11 protein-coding FHC|FTH|FTHL6|HFE5|PIG15|PLIF ferritin heavy chain|apoferritin|cell proliferation-inducing gene 15 protein|ferritin H subunit|ferritin, heavy polypeptide 1|placenta immunoregulatory factor|proliferation-inducing protein 15 17 0.002327 14.95 1 1 +2498 FTH1P3 ferritin heavy chain 1 pseudogene 3 2 pseudo FTHL3|FTHL3P ferritin, heavy polypeptide 1 pseudogene 3|ferritin, heavy polypeptide-like 3 pseudogene 0 0 8.027 1 1 +2502 FTH1P10 ferritin heavy chain 1 pseudogene 10 5 pseudo FTHL10 ferritin, heavy polypeptide 1 pseudogene 10|ferritin, heavy polypeptide-like 10 13 0.001779 1 0 +2512 FTL ferritin light chain 19 protein-coding LFTD|NBIA3 ferritin light chain|ferritin L subunit|ferritin L-chain|ferritin light polypeptide-like 3|ferritin, light polypeptide 15 0.002053 15.43 1 1 +2515 ADAM2 ADAM metallopeptidase domain 2 8 protein-coding CRYN1|CRYN2|CT15|FTNB|PH-30b|PH30|PH30-beta disintegrin and metalloproteinase domain-containing protein 2|cancer/testis antigen 15|fertilin subunit beta 102 0.01396 0.3571 1 1 +2516 NR5A1 nuclear receptor subfamily 5 group A member 1 9 protein-coding AD4BP|ELP|FTZ1|FTZF1|POF7|SF-1|SF1|SPGF8|SRXY3|hSF-1 steroidogenic factor 1|STF-1|adrenal 4 binding protein|fushi tarazu factor homolog 1|nuclear receptor AdBP4|steroid hormone receptor Ad4BP|steroidogenic factor 1 nuclear receptor|steroidogenic factor-1 29 0.003969 1.333 1 1 +2517 FUCA1 fucosidase, alpha-L- 1, tissue 1 protein-coding FUCA tissue alpha-L-fucosidase|alpha-L-fucosidase 1|alpha-L-fucosidase I|alpha-L-fucoside fucohydrolase 1 22 0.003011 10.25 1 1 +2519 FUCA2 fucosidase, alpha-L- 2, plasma 6 protein-coding dJ20N2.5 plasma alpha-L-fucosidase|alpha-L-fucosidase 2|alpha-L-fucoside fucohydrolase 2 31 0.004243 10.36 1 1 +2520 GAST gastrin 17 protein-coding GAS gastrin|preprogastrin 11 0.001506 0.781 1 1 +2521 FUS FUS RNA binding protein 16 protein-coding ALS6|ETM4|FUS1|HNRNPP2|POMP75|TLS RNA-binding protein FUS|75 kDa DNA-pairing protein|fus-like protein|fused in sarcoma|fusion gene in myxoid liposarcoma|heterogeneous nuclear ribonucleoprotein P2|oncogene FUS|oncogene TLS|translocated in liposarcoma protein 38 0.005201 12.25 1 1 +2523 FUT1 fucosyltransferase 1 (H blood group) 19 protein-coding H|HH|HSC galactoside 2-alpha-L-fucosyltransferase 1|GDP-L-fucose:beta-D-galactoside 2-alpha-L-fucosyltransferase 1|alpha(1,2) fucosyltransferase 1|alpha(1,2)FT 1|blood group H alpha 2-fucosyltransferase|galactoside 2-alpha-L-fucosyltransferase 28 0.003832 6.709 1 1 +2524 FUT2 fucosyltransferase 2 19 protein-coding B12QTL1|SE|SEC2|Se2|sej galactoside 2-alpha-L-fucosyltransferase 2|GDP-L-fucose:beta-D-galactoside 2-alpha-L-fucosyltransferase 2|alpha (1,2) fucosyltransferase|alpha(1,2)FT 2|alpha(1,2)FT2|fucosyltransferase 2 (secretor status included)|secretor blood group alpha-2-fucosyltransferase|secretor factor 26 0.003559 6.363 1 1 +2525 FUT3 fucosyltransferase 3 (Lewis blood group) 19 protein-coding CD174|FT3B|FucT-III|LE|Les galactoside 3(4)-L-fucosyltransferase|Lewis FT|alpha-(1,3/1,4)-fucosyltransferase|blood group Lewis alpha-4-fucosyltransferase|fucosyltransferase 3 (galactoside 3(4)-L-fucosyltransferase, Lewis blood group)|fucosyltransferase III 32 0.00438 5.502 1 1 +2526 FUT4 fucosyltransferase 4 11 protein-coding CD15|ELFT|FCT3A|FUC-TIV|FUTIV|LeX|SSEA-1 alpha-(1,3)-fucosyltransferase 4|ELAM ligand fucosyltransferase|ELAM-1 ligand fucosyltransferase|Lewis X|alpha (1,3) fucosyltransferase, myeloid-specific|fucT-IV|fucosyltransferase 4 (alpha (1,3) fucosyltransferase, myeloid-specific)|fucosyltransferase IV|galactoside 3-L-fucosyltransferase|stage-specific embryonic antigen 1 15 0.002053 7.643 1 1 +2527 FUT5 fucosyltransferase 5 19 protein-coding FUC-TV alpha-(1,3)-fucosyltransferase 5|alpha (1,3) fucosyltransferase|fucT-V|fucosyltransferase 5 (alpha (1,3) fucosyltransferase)|fucosyltransferase V|galactoside 3-L-fucosyltransferase 32 0.00438 0.9812 1 1 +2528 FUT6 fucosyltransferase 6 19 protein-coding FCT3A|FT1A|Fuc-TVI|FucT-VI alpha-(1,3)-fucosyltransferase 6|fucosyltransferase 6 (alpha (1,3) fucosyltransferase)|fucosyltransferase VI|galactoside 3-L-fucosyltransferase 34 0.004654 4.276 1 1 +2529 FUT7 fucosyltransferase 7 9 protein-coding FucT-VII alpha-(1,3)-fucosyltransferase 7|fuc-TVII|fucosyltransferase 7 (alpha (1,3) fucosyltransferase)|fucosyltransferase VII|galactoside 3-L-fucosyltransferase|selectin-ligand synthase 20 0.002737 3.466 1 1 +2530 FUT8 fucosyltransferase 8 14 protein-coding - alpha-(1,6)-fucosyltransferase|GDP-L-Fuc:N-acetyl-beta-D-glucosaminide alpha1,6-fucosyltransferase|GDP-fucose--glycoprotein fucosyltransferase|alpha1-6FucT|fucosyltransferase 8 (alpha (1,6) fucosyltransferase)|glycoprotein 6-alpha-L-fucosyltransferase 48 0.00657 9.142 1 1 +2531 KDSR 3-ketodihydrosphingosine reductase 18 protein-coding DHSR|FVT1|SDR35C1 3-ketodihydrosphingosine reductase|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 18 0.002464 10.45 1 1 +2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) 1 protein-coding CCBP1|CD234|DARC|Dfy|FY|GPD|GpFy|WBCQ1 atypical chemokine receptor 1|Duffy antigen chemokine receptor|Duffy blood group antigen|Duffy blood group system protein|Duffy blood group, chemokine receptor|Fy glycoprotein|glycoprotein D|plasmodium vivax receptor 50 0.006844 6.699 1 1 +2533 FYB FYN binding protein 5 protein-coding ADAP|PRO0823|SLAP-130|SLAP130 FYN-binding protein|FYB-120/130|FYN-T-binding protein|SLP-76-associated phosphoprotein|adhesion and degranulation-promoting adaptor protein|p120/p130 102 0.01396 8.192 1 1 +2534 FYN FYN proto-oncogene, Src family tyrosine kinase 6 protein-coding SLK|SYN|p59-FYN tyrosine-protein kinase Fyn|FYN oncogene related to SRC, FGR, YES|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) 48 0.00657 9.693 1 1 +2535 FZD2 frizzled class receptor 2 17 protein-coding Fz2|fz-2|fzE2|hFz2 frizzled-2|frizzled 2, seven transmembrane spanning receptor|frizzled family receptor 2|frizzled homolog 2 47 0.006433 6.719 1 1 +2537 IFI6 interferon alpha inducible protein 6 1 protein-coding 6-16|FAM14C|G1P3|IFI-6-16|IFI616 interferon alpha-inducible protein 6|interferon, alpha-inducible protein clone IFI-6-16|interferon-induced protein 6-16 7 0.0009581 11.37 1 1 +2538 G6PC glucose-6-phosphatase catalytic subunit 17 protein-coding G6PC1|G6PT|G6Pase|GSD1|GSD1a glucose-6-phosphatase|G-6-Pase|G6Pase-alpha|glucose-6-phosphatase alpha 31 0.004243 1.324 1 1 +2539 G6PD glucose-6-phosphate dehydrogenase X protein-coding G6PD1 glucose-6-phosphate 1-dehydrogenase 36 0.004927 10.45 1 1 +2542 SLC37A4 solute carrier family 37 member 4 11 protein-coding G6PT1|G6PT2|G6PT3|GSD1b|GSD1c|GSD1d|PRO0685|TRG-19|TRG19 glucose-6-phosphate exchanger SLC37A4|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 (glucose-6-phosphate transporter), member 4|transformation-related gene 19 protein 20 0.002737 9.388 1 1 +2543 GAGE1 G antigen 1 X protein-coding CT4.1|GAGE-1 G antigen 1|MZ2-F antigen|cancer/testis antigen 4.1|cancer/testis antigen family 4, member 1 4 0.0005475 0.3794 1 1 +2547 XRCC6 X-ray repair cross complementing 6 22 protein-coding CTC75|CTCBF|G22P1|KU70|ML8|TLAA X-ray repair cross-complementing protein 6|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|CTC box binding factor 75 kDa subunit|DNA repair protein XRCC6|Ku autoantigen p70 subunit|Ku autoantigen, 70kDa|X-ray repair complementing defective repair in Chinese hamster cells 6|lupus Ku autoantigen protein p70|thyroid autoantigen 70kD (Ku antigen)|thyroid autoantigen 70kDa (Ku antigen)|thyroid-lupus autoantigen p70 39 0.005338 12.64 1 1 +2548 GAA glucosidase alpha, acid 17 protein-coding LYAG lysosomal alpha-glucosidase|acid maltase|aglucosidase alfa 65 0.008897 11.44 1 1 +2549 GAB1 GRB2 associated binding protein 1 4 protein-coding - GRB2-associated-binding protein 1|GRB2-associated binder 1|growth factor receptor bound protein 2-associated protein 1 39 0.005338 9.023 1 1 +2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 6 protein-coding GABABR1|GABBR1-3|GB1|GPRC3A gamma-aminobutyric acid type B receptor subunit 1|GABA-B receptor, R1 subunit|gamma-aminobutyric acid (GABA) B receptor, 1|seven transmembrane helix receptor 81 0.01109 8.58 1 1 +2551 GABPA GA binding protein transcription factor alpha subunit 21 protein-coding E4TF1-60|E4TF1A|NFT2|NRF2|NRF2A|RCH04A07 GA-binding protein alpha chain|GA binding protein transcription factor alpha subunit 60kDa|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 32 0.00438 9.414 1 1 +2553 GABPB1 GA binding protein transcription factor beta subunit 1 15 protein-coding BABPB2|E4TF1|E4TF1-47|E4TF1-53|E4TF1B|GABPB|GABPB-1|GABPB2|NRF2B1|NRF2B2 GA-binding protein subunit beta-1|GA binding protein transcription factor beta subunit 1 transcript variant gamma-2|GABP subunit beta-2|nuclear respiratory factor 2|transcription factor E4TF1-47|transcription factor E4TF1-53 24 0.003285 8.635 1 1 +2554 GABRA1 gamma-aminobutyric acid type A receptor alpha1 subunit 5 protein-coding ECA4|EIEE19|EJM|EJM5 gamma-aminobutyric acid receptor subunit alpha-1|GABA(A) receptor subunit alpha-1|GABA(A) receptor, alpha 1|gamma-aminobutyric acid (GABA) A receptor, alpha 1 99 0.01355 1.161 1 1 +2555 GABRA2 gamma-aminobutyric acid type A receptor alpha2 subunit 4 protein-coding - gamma-aminobutyric acid receptor subunit alpha-2|GABA(A) receptor subunit alpha-2 104 0.01423 1.638 1 1 +2556 GABRA3 gamma-aminobutyric acid type A receptor alpha3 subunit X protein-coding - gamma-aminobutyric acid receptor subunit alpha-3|GABA(A) receptor subunit alpha-3|GABA(A) receptor, alpha 3|gamma-aminobutyric acid (GABA) A receptor, alpha 3|gamma-animobutyric acid (GABA) A receptor, alpha 3 62 0.008486 2.69 1 1 +2557 GABRA4 gamma-aminobutyric acid type A receptor alpha4 subunit 4 protein-coding - gamma-aminobutyric acid receptor subunit alpha-4|GABA(A) receptor, alpha 4|gamma-aminobutyric acid (GABA) A receptor, alpha 4|gamma-aminobutyric acid A receptor alpha 4 104 0.01423 1.18 1 1 +2558 GABRA5 gamma-aminobutyric acid type A receptor alpha5 subunit 15 protein-coding - gamma-aminobutyric acid receptor subunit alpha-5|GABA(A) receptor subunit alpha-5|gamma-aminobutyric acid (GABA) A receptor, alpha 5 91 0.01246 1.733 1 1 +2559 GABRA6 gamma-aminobutyric acid type A receptor alpha6 subunit 5 protein-coding - gamma-aminobutyric acid receptor subunit alpha-6|GABA subunit A receptor alpha 6|GABA(A) receptor subunit alpha-6|GABA(A) receptor, alpha 6|gamma-aminobutyric acid (GABA) A receptor, alpha 6 107 0.01465 0.1934 1 1 +2560 GABRB1 gamma-aminobutyric acid type A receptor beta1 subunit 4 protein-coding - gamma-aminobutyric acid receptor subunit beta-1|GABA(A) receptor subunit beta-1|GABA(A) receptor, beta 1|gamma-aminobutyric acid (GABA) A receptor, beta 1|gamma-aminobutyric acid A receptor beta 1 74 0.01013 1.087 1 1 +2561 GABRB2 gamma-aminobutyric acid type A receptor beta2 subunit 5 protein-coding - gamma-aminobutyric acid receptor subunit beta-2|GABA(A) receptor subunit beta-2|gamma-aminobutyric acid A receptor beta 2 66 0.009034 3.757 1 1 +2562 GABRB3 gamma-aminobutyric acid type A receptor beta3 subunit 15 protein-coding ECA5|EIEE43 gamma-aminobutyric acid receptor subunit beta-3|GABA-alpha receptor beta-2 subunit|GABAA receptor beta-3 subunit|gamma-aminobutyric acid (GABA) A receptor, beta 3|gamma-aminobutyric acid A receptor beta 3 107 0.01465 5.593 1 1 +2563 GABRD gamma-aminobutyric acid type A receptor delta subunit 1 protein-coding EIG10|EJM7|GEFSP5 gamma-aminobutyric acid receptor subunit delta|GABA(A) receptor subunit delta|GABA(A) receptor, delta|GABA-A receptor, delta polypeptide|gamma-aminobutyric acid (GABA) A receptor, delta 45 0.006159 5.336 1 1 +2564 GABRE gamma-aminobutyric acid type A receptor epsilon subunit X protein-coding - gamma-aminobutyric acid receptor subunit epsilon|GABA(A) receptor subunit epsilon|GABA(A) receptor, epsilon|gamma-aminobutyric acid (GABA) A receptor, epsilon 56 0.007665 6.665 1 1 +2565 GABRG1 gamma-aminobutyric acid type A receptor gamma1 subunit 4 protein-coding - gamma-aminobutyric acid receptor subunit gamma-1|GABA(A) receptor subunit gamma-1|GABA(A) receptor, gamma|gamma-1 polypeptide|gamma-aminobutyric acid (GABA) A receptor, gamma 1 109 0.01492 1.422 1 1 +2566 GABRG2 gamma-aminobutyric acid type A receptor gamma2 subunit 5 protein-coding CAE2|ECA2|GEFSP3 gamma-aminobutyric acid receptor subunit gamma-2|GABA(A) receptor subunit gamma-2|GABA(A) receptor, gamma 2|gamma-aminobutyric acid (GABA) A receptor, gamma 2 93 0.01273 1.717 1 1 +2567 GABRG3 gamma-aminobutyric acid type A receptor gamma3 subunit 15 protein-coding - gamma-aminobutyric acid receptor subunit gamma-3|GABA(A) receptor subunit gamma-3|GABA(G) receptor, gamma 3|gamma-aminobutyric acid (GABA) A receptor, gamma 3 84 0.0115 1.46 1 1 +2568 GABRP gamma-aminobutyric acid type A receptor pi subunit 5 protein-coding - gamma-aminobutyric acid receptor subunit pi|GABA(A) receptor subunit pi|GABA(A) receptor, pi|gamma-aminobutyric acid (GABA) A receptor, pi 38 0.005201 4.76 1 1 +2569 GABRR1 gamma-aminobutyric acid type A receptor rho1 subunit 6 protein-coding - gamma-aminobutyric acid receptor subunit rho-1|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 57 0.007802 1.555 1 1 +2570 GABRR2 gamma-aminobutyric acid type A receptor rho2 subunit 6 protein-coding - gamma-aminobutyric acid receptor subunit rho-2|GABA-C receptor, rho-2 subunit|gamma-aminobutyric acid (GABA) A receptor, rho 2 37 0.005064 1.296 1 1 +2571 GAD1 glutamate decarboxylase 1 2 protein-coding CPSQ1|GAD|SCP glutamate decarboxylase 1|67 kDa glutamic acid decarboxylase|GAD-67|glutamate decarboxylase 1 (brain, 67kDa)|glutamate decarboxylase 67 kDa isoform 68 0.009307 4.446 1 1 +2572 GAD2 glutamate decarboxylase 2 10 protein-coding GAD65 glutamate decarboxylase 2|65 kDa glutamic acid decarboxylase|GAD-65|Glutamate decarboxylase-2 (pancreas)|glutamate decarboxylase 2 (pancreatic islets and brain, 65kDa)|glutamate decarboxylase 65 kDa isoform 81 0.01109 0.8281 1 1 +2574 GAGE2C G antigen 2C X protein-coding CT4.2|GAGE-2|GAGE-2C|GAGE2 G antigen 2B/2C|G antigen 2|cancer/testis antigen 4.2 1 0.0001369 0.2222 1 1 +2576 GAGE4 G antigen 4 X protein-coding CT4.4 G antigen 4|GAGE-4|cancer/testis antigen 4.4|cancer/testis antigen family 4, member 4 0.6587 0 1 +2580 GAK cyclin G associated kinase 4 protein-coding DNAJ26|DNAJC26 cyclin-G-associated kinase|auxilin-2 95 0.013 10.95 1 1 +2581 GALC galactosylceramidase 14 protein-coding - galactocerebrosidase|GALCERase|galactocerebroside beta-galactosidase|galactosylceramide beta-galactosidase|galactosylceraminidase|testis tissue sperm-binding protein Li 88E|testis tissue sperm-binding protein Li 89A 42 0.005749 9.258 1 1 +2582 GALE UDP-galactose-4-epimerase 1 protein-coding SDR1E1 UDP-glucose 4-epimerase|UDP galactose-4'-epimerase|UDP-GalNAc 4-epimerase|UDP-GlcNAc 4-epimerase|UDP-N-acetylgalactosamine 4-epimerase|UDP-N-acetylglucosamine 4-epimerase|galactose-4-epimerase, UDP-|galactowaldenase|short chain dehydrogenase/reductase family 1E, member 1 16 0.00219 9.619 1 1 +2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 12 protein-coding GALGT|GALNACT|GalNAc-T|SPG26 beta-1,4 N-acetylgalactosaminyltransferase 1|GD2 synthase, GM2 synthase|GM2/GD2 synthase|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-acetyl-galactosaminyl transferase 1|beta1,4GalNAc-T 51 0.006981 5.828 1 1 +2584 GALK1 galactokinase 1 17 protein-coding GALK|GK1|HEL-S-19 galactokinase|epididymis secretory protein Li 19|galactose kinase 15 0.002053 8.656 1 1 +2585 GALK2 galactokinase 2 15 protein-coding GK2 N-acetylgalactosamine kinase|galNAc kinase 20 0.002737 8.51 1 1 +2587 GALR1 galanin receptor 1 18 protein-coding GALNR|GALNR1 galanin receptor type 1|GAL1-R|GALR-1 34 0.004654 1.266 1 1 +2588 GALNS galactosamine (N-acetyl)-6-sulfatase 16 protein-coding GALNAC6S|GAS|GalN6S|MPS4A N-acetylgalactosamine-6-sulfatase|N-acetylgalactosamine-6-sulfate sulfatase|chondroitinase|chondroitinsulfatase|galNAc6S sulfatase|galactosamine (N-acetyl)-6-sulfate sulfatase|galactose-6-sulfate sulfatase 24 0.003285 8.913 1 1 +2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 18 protein-coding GALNAC-T1 polypeptide N-acetylgalactosaminyltransferase 1|GalNAc transferase 1|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 1|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1)|polypeptide GalNAc transferase 1|pp-GaNTase 1|protein-UDP acetylgalactosaminyltransferase 1 36 0.004927 10.96 1 1 +2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 1 protein-coding GalNAc-T2 polypeptide N-acetylgalactosaminyltransferase 2|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 2|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 2 (GalNAc-T2)|polypeptide GalNAc transferase 2|pp-GaNTase 2 52 0.007117 11.4 1 1 +2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 2 protein-coding GalNAc-T3|HFTC|HHS polypeptide N-acetylgalactosaminyltransferase 3|GalNAc transferase 3|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 3|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 3 (GalNAc-T3)|polypeptide GalNAc transferase 3|polypeptide GalNAc-transferase T3|pp-GaNTase 3|protein-UDP acetylgalactosaminyltransferase 3 47 0.006433 8.303 1 1 +2592 GALT galactose-1-phosphate uridylyltransferase 9 protein-coding - galactose-1-phosphate uridylyltransferase|UDP-glucose--hexose-1-phosphate uridylyltransferase|gal-1-P uridylyltransferase|galactose-1-phosphate uridyl transferase 21 0.002874 8.625 1 1 +2593 GAMT guanidinoacetate N-methyltransferase 19 protein-coding CCDS2|HEL-S-20|PIG2|TP53I2 guanidinoacetate N-methyltransferase|epididymis secretory protein Li 20 10 0.001369 8.491 1 1 +2595 GANC glucosidase alpha, neutral C 15 protein-coding - neutral alpha-glucosidase C 49 0.006707 8.288 1 1 +2596 GAP43 growth associated protein 43 3 protein-coding B-50|PP46 neuromodulin|axonal membrane protein GAP-43|calmodulin-binding protein P-57|nerve growth-related peptide GAP43|neural phosphoprotein B-50|neuron growth-associated protein 43|protein F1 39 0.005338 4.133 1 1 +2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase 12 protein-coding G3PD|GAPD|HEL-S-162eP glyceraldehyde-3-phosphate dehydrogenase|aging-associated gene 9 protein|epididymis secretory sperm binding protein Li 162eP|peptidyl-cysteine S-nitrosylase GAPDH 28 0.003832 15.92 1 1 +2615 LRRC32 leucine rich repeat containing 32 11 protein-coding D11S833E|GARP leucine-rich repeat-containing protein 32|garpin|glycoprotein A repetitions predominant 69 0.009444 9.18 1 1 +2617 GARS glycyl-tRNA synthetase 7 protein-coding CMT2D|DSMAV|GlyRS|HMN5|SMAD1 glycine--tRNA ligase|AP-4-A synthetase|Charcot-Marie-Tooth neuropathy 2D|Charcot-Marie-Tooth neuropathy, neuronal type, D|diadenosine tetraphosphate synthetase 31 0.004243 11.31 1 1 +2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase 21 protein-coding AIRS|GARS|GARTF|PAIS|PGFT|PRGS trifunctional purine biosynthetic protein adenosine-3|glycinamide ribonucleotide formyltransferase 53 0.007254 10.39 1 1 +2619 GAS1 growth arrest specific 1 9 protein-coding - growth arrest-specific protein 1|GAS-1|Growth arrest-specific gene-1 11 0.001506 7.547 1 1 +2620 GAS2 growth arrest specific 2 11 protein-coding - growth arrest-specific protein 2|GAS-2 38 0.005201 4.015 1 1 +2621 GAS6 growth arrest specific 6 13 protein-coding AXLLG|AXSF growth arrest-specific protein 6|AXL receptor tyrosine kinase ligand|AXL stimulatory factor 52 0.007117 10.95 1 1 +2622 GAS8 growth arrest specific 8 16 protein-coding CILD33|DRC4|GAS11 growth arrest-specific protein 8|GAS-11|growth arrest-specific protein 11 30 0.004106 8.828 1 1 +2623 GATA1 GATA binding protein 1 X protein-coding ERYF1|GATA-1|GF-1|GF1|NF-E1|NFE1|XLANP|XLTDA|XLTT erythroid transcription factor|GATA binding protein 1 (globin transcription factor 1)|GATA-binding factor 1|NF-E1 DNA-binding protein|erythroid transcription factor 1|globin transcription factor 1|nuclear factor, erythroid 1|transcription factor GATA1 33 0.004517 0.9481 1 1 +2624 GATA2 GATA binding protein 2 3 protein-coding DCML|IMD21|MONOMAC|NFE1B endothelial transcription factor GATA-2 37 0.005064 7.3 1 1 +2625 GATA3 GATA binding protein 3 10 protein-coding HDR|HDRS trans-acting T-cell-specific transcription factor GATA-3|GATA-binding factor 3 170 0.02327 7.148 1 1 +2626 GATA4 GATA binding protein 4 8 protein-coding ASD2|TACHD|TOF|VSD1 transcription factor GATA-4|GATA-binding factor 4 26 0.003559 2.997 1 1 +2627 GATA6 GATA binding protein 6 18 protein-coding - transcription factor GATA-6|GATA-binding factor 6 30 0.004106 6.837 1 1 +2628 GATM glycine amidinotransferase 15 protein-coding AGAT|AT|CCDS3 glycine amidinotransferase, mitochondrial|glycine amidinotransferase (L-arginine:glycine amidinotransferase)|testicular secretory protein Li 19|transamidinase 29 0.003969 9.155 1 1 +2629 GBA glucosylceramidase beta 1 protein-coding GBA1|GCB|GLUC glucosylceramidase|D-glucosyl-N-acylsphingosine glucohydrolase|acid beta-glucosidase|alglucerase|beta-GC|beta-glucocerebrosidase|glucosidase, beta, acid|glucosylceramidase-like protein|imiglucerase|lysosomal glucocerebrosidase 42 0.005749 10.49 1 1 +2630 GBAP1 glucosylceramidase beta pseudogene 1 1 pseudo GBAP glucosidase, beta, acid pseudogene 1|glucosidase, beta; acid, pseudogene|glucosylceramidase-like protein 25 0.003422 8.886 1 1 +2631 GBAS glioblastoma amplified sequence 7 protein-coding NIPSNAP2 protein NipSnap homolog 2|4-nitrophenylphosphatase domain and non-neuronal SNAP25-like 2 23 0.003148 10.46 1 1 +2632 GBE1 1,4-alpha-glucan branching enzyme 1 3 protein-coding APBD|GBE|GSD4 1,4-alpha-glucan-branching enzyme|amylo-(1,4 to 1,6) transglucosidase|amylo-(1,4 to 1,6) transglycosylase|brancher enzyme|glucan (1,4-alpha-), branching enzyme 1|glycogen branching enzyme 41 0.005612 9.197 1 1 +2633 GBP1 guanylate binding protein 1 1 protein-coding - guanylate-binding protein 1|GBP-1|GTP-binding protein 1|guanine nucleotide-binding protein 1|guanylate binding protein 1, interferon-inducible|guanylate binding protein 1, interferon-inducible, 67kDa|huGBP-1|interferon-induced guanylate-binding protein 1 42 0.005749 9.816 1 1 +2634 GBP2 guanylate binding protein 2 1 protein-coding - guanylate-binding protein 2|GTP-binding protein 2|guanine nucleotide-binding protein 2|guanylate binding protein 2, interferon-inducible|interferon-induced guanylate-binding protein 2 28 0.003832 10.41 1 1 +2635 GBP3 guanylate binding protein 3 1 protein-coding - guanylate-binding protein 3|GTP-binding protein 3|guanine nucleotide-binding protein 3|guanylate-binding protein 3 delta C 37 0.005064 9.003 1 1 +2636 GBX1 gastrulation brain homeobox 1 7 protein-coding Huh-17 homeobox protein GBX-1|gastrulation and brain-specific homeobox protein 1 22 0.003011 0.3405 1 1 +2637 GBX2 gastrulation brain homeobox 2 2 protein-coding - homeobox protein GBX-2|gastrulation and brain-specific homeobox protein 2 28 0.003832 1.754 1 1 +2638 GC GC, vitamin D binding protein 4 protein-coding DBP|DBP/GC|GRD3|Gc-MAF|GcMAF|HEL-S-51|VDBG|VDBP vitamin D-binding protein|DBP-maf|VDB|epididymis secretory protein Li 51|gc protein-derived macrophage activating factor|gc-globulin|group-specific component (vitamin D binding protein)|vitamin D-binding alpha-globulin|vitamin D-binding protein-macrophage activating factor 50 0.006844 1.597 1 1 +2639 GCDH glutaryl-CoA dehydrogenase 19 protein-coding ACAD5|GCD glutaryl-CoA dehydrogenase, mitochondrial|glutaryl-Coenzyme A dehydrogenase 41 0.005612 8.975 1 1 +2641 GCG glucagon 2 protein-coding GLP1|GLP2|GRPP glucagon|glicentin-related polypeptide|glucagon-like peptide 1|glucagon-like peptide 2|preproglucagon 26 0.003559 0.5444 1 1 +2642 GCGR glucagon receptor 17 protein-coding GGR|GL-R glucagon receptor 7 0.0009581 1.689 1 1 +2643 GCH1 GTP cyclohydrolase 1 14 protein-coding DYT14|DYT5|DYT5a|GCH|GTP-CH-1|GTPCH1|HPABH4B GTP cyclohydrolase 1|GTP cyclohydrolase I|GTP-CH-I|dystonia 14|guanosine 5'-triphosphate cyclohydrolase I 14 0.001916 8.012 1 1 +2644 GCHFR GTP cyclohydrolase I feedback regulator 15 protein-coding GFRP|HsT16933|P35 GTP cyclohydrolase 1 feedback regulatory protein|GTP cyclohydrolase I feedback regulatory protein 5 0.0006844 7.647 1 1 +2645 GCK glucokinase 7 protein-coding FGQTL3|GK|GLK|HHF3|HK4|HKIV|HXKP|LGLK|MODY2 glucokinase|ATP:D-hexose 6-phosphotransferase|HK IV|glucokinase (hexokinase 4)|hexokinase D, pancreatic isozyme|hexokinase type IV 44 0.006022 2.762 1 1 +2646 GCKR glucokinase regulator 2 protein-coding FGQTL5|GKRP glucokinase regulatory protein|glucokinase (hexokinase 4) regulator|hexokinase 4 regulator 43 0.005886 2.025 1 1 +2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 12 protein-coding BLOS1|BORCS1|GCN5L1|MICoA|RT14 biogenesis of lysosome-related organelles complex 1 subunit 1|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 8 0.001095 10.26 1 1 +2648 KAT2A lysine acetyltransferase 2A 17 protein-coding GCN5|GCN5L2|PCAF-b|hGCN5 histone acetyltransferase KAT2A|GCN5 (general control of amino-acid synthesis, yeast, homolog)-like 2|General control of amino acid synthesis, yeast, homolog-like 2|K(lysine) acetyltransferase 2A|STAF97|general control of amino acid synthesis protein 5-like 2|histone acetyltransferase GCN5|hsGCN5 50 0.006844 10.28 1 1 +2649 NR6A1 nuclear receptor subfamily 6 group A member 1 9 protein-coding CT150|GCNF|GCNF1|NR61|RTR|hGCNF|hRTR nuclear receptor subfamily 6 group A member 1|germ cell nuclear factor variant 1|retinoic acid receptor-related testis-associated receptor|retinoid receptor-related testis-specific receptor 27 0.003696 3.319 1 1 +2650 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 9 protein-coding C2GNT|C2GNT-L|C2GNT1|G6NT|NACGT2|NAGCT2 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|core2-GlcNAc-transferase|glucosaminyl (N-acetyl) transferase 1, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 31 0.004243 7.975 1 1 +2651 GCNT2 glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) 6 protein-coding CCAT|CTRCT13|GCNT2C|GCNT5|IGNT|II|NACGT1|NAGCT1|ULG3|bA360O19.2|bA421M1.1 N-acetyllactosaminide beta-1,6-N-acetylglucosaminyl-transferase|I beta-1,6-N-acetylglucosaminyltransferase|Ii blood group|beta-1,6-N-acetylglucosaminyltransferase 2 77 0.01054 7.593 1 1 +2652 OPN1MW opsin 1 (cone pigments), medium-wave-sensitive X protein-coding CBBM|CBD|COD5|GCP|GOP|OPN1MW1 medium-wave-sensitive opsin 1|cone dystrophy 5 (X-linked)|green cone photoreceptor pigment|green cone pigment|green-sensitive opsin|photopigment apoprotein 9 0.001232 0.07449 1 1 +2653 GCSH glycine cleavage system protein H 16 protein-coding GCE|NKH glycine cleavage system H protein, mitochondrial|glycine cleavage system protein H (aminomethyl carrier)|lipoic acid-containing protein|mitochondrial glycine cleavage system H-protein 8 0.001095 4.407 1 1 +2657 GDF1 growth differentiation factor 1 19 protein-coding DORV|DTGA3|RAI embryonic growth/differentiation factor 1|GDF-1 8 0.001095 3.278 1 1 +2658 GDF2 growth differentiation factor 2 10 protein-coding BMP-9|BMP9|HHT5 growth/differentiation factor 2|bone morphogenetic protein 9 61 0.008349 0.1156 1 1 +2660 MSTN myostatin 2 protein-coding GDF8|MSLHP growth/differentiation factor 8 34 0.004654 2.567 1 1 +2661 GDF9 growth differentiation factor 9 5 protein-coding - growth/differentiation factor 9 35 0.004791 3.878 1 1 +2662 GDF10 growth differentiation factor 10 10 protein-coding BIP|BMP-3b|BMP3B growth/differentiation factor 10|bone morphogenetic protein 3B|bone-inducing protein 51 0.006981 3.284 1 1 +2664 GDI1 GDP dissociation inhibitor 1 X protein-coding 1A|GDIL|MRX41|MRX48|OPHN2|RABGD1A|RABGDIA|XAP-4 rab GDP dissociation inhibitor alpha|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|testis secretory sperm-binding protein Li 208a 32 0.00438 11.82 1 1 +2665 GDI2 GDP dissociation inhibitor 2 10 protein-coding HEL-S-46e|RABGDIB rab GDP dissociation inhibitor beta|GDI-2|epididymis secretory sperm binding protein Li 46e|guanosine diphosphate dissociation inhibitor 2|rab GDI beta|rab GDP-dissociation inhibitor, beta 32 0.00438 12.35 1 1 +2668 GDNF glial cell derived neurotrophic factor 5 protein-coding ATF|ATF1|ATF2|HFB1-GDNF|HSCR3 glial cell line-derived neurotrophic factor|astrocyte-derived trophic factor 29 0.003969 1.157 1 1 +2669 GEM GTP binding protein overexpressed in skeletal muscle 8 protein-coding KIR GTP-binding protein GEM|GTP-binding mitogen-induced T-cell protein|RAS-like protein KIR|kinase-inducible Ras-like protein 26 0.003559 8.331 1 1 +2670 GFAP glial fibrillary acidic protein 17 protein-coding ALXDRD glial fibrillary acidic protein 44 0.006022 4.235 1 1 +2671 GFER growth factor, augmenter of liver regeneration 16 protein-coding ALR|ERV1|HERV1|HPO|HPO1|HPO2|HSS FAD-linked sulfhydryl oxidase ALR|ERV1 homolog|erv1-like growth factor|hepatic regenerative stimulation substance|hepatopoietin protein 9 0.001232 8.948 1 1 +2672 GFI1 growth factor independent 1 transcriptional repressor 1 protein-coding GFI-1|GFI1A|SCN2|ZNF163 zinc finger protein Gfi-1|growth factor independence-1|growth factor independent 1 transcription repressor|growth factor independent protein 1|zinc finger protein 163 23 0.003148 4.683 1 1 +2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 2 protein-coding CMS12|CMSTA1|GFA|GFAT|GFAT 1|GFAT1|GFAT1m|GFPT|GFPT1L|MSLG glutamine--fructose-6-phosphate aminotransferase [isomerizing] 1|D-fructose-6-phosphate amidotransferase 1|glucosamine--fructose-6-phosphate aminotransferase [isomerizing] 1|glutamine:fructose-6-phosphate amidotransferase 1|hexosephosphate aminotransferase 1 44 0.006022 11.21 1 1 +2674 GFRA1 GDNF family receptor alpha 1 10 protein-coding GDNFR|GDNFRA|GFR-ALPHA-1|RET1L|RETL1|TRNR1 GDNF family 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 60 0.008212 6.968 1 1 +2675 GFRA2 GDNF family receptor alpha 2 8 protein-coding GDNFRB|NRTNR-ALPHA|NTNRA|RETL2|TRNR2 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 26 0.003559 4.828 1 1 +2676 GFRA3 GDNF family receptor alpha 3 5 protein-coding GDNFR3 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 29 0.003969 3.205 1 1 +2677 GGCX gamma-glutamyl carboxylase 2 protein-coding VKCFD1 vitamin K-dependent gamma-carboxylase|peptidyl-glutamate 4-carboxylase 46 0.006296 9.521 1 1 +2678 GGT1 gamma-glutamyltransferase 1 22 protein-coding CD224|D22S672|D22S732|GGT|GGT 1|GTG gamma-glutamyltranspeptidase 1|glutathione hydrolase 1|leukotriene-C4 hydrolase|testicular tissue protein Li 73 36 0.004927 8.076 1 1 +2679 GGT3P gamma-glutamyltransferase 3 pseudogene 22 pseudo GGT3 - 99 0.01355 4.34 1 1 +2681 GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene 9 pseudo GGTA|GGTA1|GLYT2|a1/3GTP alpha-1,3-galactosyltransferase pseudogene 10 0.001369 6.881 1 1 +2683 B4GALT1 beta-1,4-galactosyltransferase 1 9 protein-coding B4GAL-T1|CDG2D|GGTB2|GT1|GTB|beta4Gal-T1 beta-1,4-galactosyltransferase 1|UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 1|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 1|beta-1,4-GalTase 1|glycoprotein-4-beta-galactosyltransferase 2|lactose synthase 15 0.002053 11.76 1 1 +2686 GGT7 gamma-glutamyltransferase 7 20 protein-coding D20S101|GGT4|GGTL3|GGTL5|dJ18C9.2 gamma-glutamyltransferase 7|GGT 7|gamma-glutamyltransferase 4|gamma-glutamyltransferase-like 3|gamma-glutamyltransferase-like 5|gamma-glutamyltranspeptidase 7|gamma-glutamyltranspeptidase-like 3|glutathione hydrolase 7 35 0.004791 8.683 1 1 +2687 GGT5 gamma-glutamyltransferase 5 22 protein-coding GGL|GGT 5|GGT-REL|GGTLA1 gamma-glutamyltransferase 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 48 0.00657 9.092 1 1 +2688 GH1 growth hormone 1 17 protein-coding GH|GH-N|GHB5|GHN|IGHD1B|hGH-N somatotropin|growth hormone B5|pituitary growth hormone 26 0.003559 0.2987 1 1 +2689 GH2 growth hormone 2 17 protein-coding GH-V|GHB2|GHL|GHV|hGH-V growth hormone variant|growth hormone B2|placenta-specific growth hormone|placental-specific growth hormone 45 0.006159 0.1447 1 1 +2690 GHR growth hormone receptor 5 protein-coding GHBP|GHIP growth hormone receptor|GH receptor|growth hormone binding protein|serum binding protein|somatotropin receptor 74 0.01013 6.594 1 1 +2691 GHRH growth hormone releasing hormone 20 protein-coding GHRF|GRF|INN somatoliberin|growth hormone releasing factor|sermorelin|somatocrinin|somatorelin 8 0.001095 0.442 1 1 +2692 GHRHR growth hormone releasing hormone receptor 7 protein-coding GHRFR|GRFR|IGHD1B growth hormone-releasing hormone receptor|GHRH receptor|GRF receptor|growth hormone releasing hormone receptor variant 1|growth hormone releasing hormone receptor variant 2|growth hormone releasing hormone receptor variant 3|growth hormone releasing hormone receptor variant 4 38 0.005201 0.5481 1 1 +2693 GHSR growth hormone secretagogue receptor 3 protein-coding GHDP growth hormone secretagogue receptor type 1|GH-releasing peptide receptor|GHRP|GHS-R|ghrelin receptor 45 0.006159 0.1155 1 1 +2694 GIF gastric intrinsic factor 11 protein-coding IF|IFMH|INF|TCN3 gastric intrinsic factor|gastric intrinsic factor (vitamin B synthesis)|intrinsic factor 42 0.005749 0.4277 1 1 +2695 GIP gastric inhibitory polypeptide 17 protein-coding - gastric inhibitory polypeptide|glucose-dependent insulinotropic polypeptide|incretin hormone 20 0.002737 0.4431 1 1 +2696 GIPR gastric inhibitory polypeptide receptor 19 protein-coding PGQTL2 gastric inhibitory polypeptide receptor|GIP-R|glucose-dependent insulinotropic polypeptide receptor 28 0.003832 2.977 1 1 +2697 GJA1 gap junction protein alpha 1 6 protein-coding AVSD3|CMDR|CX43|EKVP|GJAL|HLHS1|HSS|ODDD|PPKCA gap junction alpha-1 protein|connexin-43|gap junction 43 kDa heart protein|gap junction protein, alpha 1, 43kDa 48 0.00657 11.07 1 1 +2700 GJA3 gap junction protein alpha 3 13 protein-coding CTRCT14|CX46|CZP3 gap junction alpha-3 protein|connexin-46|gap junction alpha 3|gap junction protein, alpha 3, 46kDa 19 0.002601 3.331 1 1 +2701 GJA4 gap junction protein alpha 4 1 protein-coding CX37 gap junction alpha-4 protein|connexin-37|gap junction protein, alpha 4, 37kDa 24 0.003285 7.56 1 1 +2702 GJA5 gap junction protein alpha 5 1 protein-coding ATFB11|CX40 gap junction alpha-5 protein|connexin 40|gap junction protein alpha 5 40kDa 46 0.006296 7.333 1 1 +2703 GJA8 gap junction protein alpha 8 1 protein-coding CAE|CAE1|CTRCT1|CX50|CZP1|MP70 gap junction alpha-8 protein|cell surface glycoprotein|connexin 50|gap junction alpha 8|gap junction membrane channel protein alpha-8|gap junction protein alpha 8 50kDa|lens fiber protein MP70|lens intrinsic membrane protein MP70 70 0.009581 0.1439 1 1 +2705 GJB1 gap junction protein beta 1 X protein-coding CMTX|CMTX1|CX32 gap junction beta-1 protein|GAP junction 28 kDa liver protein|connexin-32|gap junction protein, beta 1, 32kDa 16 0.00219 5.564 1 1 +2706 GJB2 gap junction protein beta 2 13 protein-coding CX26|DFNA3|DFNA3A|DFNB1|DFNB1A|HID|KID|NSRD1|PPK gap junction beta-2 protein|connexin 26|gap junction protein, beta 2, 26kDa|mutant gap junction protein beta 2 9 0.001232 8.395 1 1 +2707 GJB3 gap junction protein beta 3 1 protein-coding CX31|DFNA2|DFNA2B|EKV gap junction beta-3 protein|connexin 31|gap junction protein, beta 3, 31kDa 20 0.002737 5.816 1 1 +2709 GJB5 gap junction protein beta 5 1 protein-coding CX31.1 gap junction beta-5 protein|gap junction protein, beta 5 (connexin 31.1)|gap junction protein, beta 5, 31.1kDa|gap junctional protein cx31.1 20 0.002737 4.455 1 1 +2710 GK glycerol kinase X protein-coding GK1|GKD glycerol kinase|ATP:glycerol 3-phosphotransferase|glycerokinase 31 0.004243 7.486 1 1 +2712 GK2 glycerol kinase 2 4 protein-coding GKP2|GKTA glycerol kinase 2|ATP:glycerol 3-phosphotransferase 2|glycerokinase 2|glycerol kinase pseudogene 2|glycerol kinase testis specific 2|testis tissue sperm-binding protein Li 77m 70 0.009581 0.09253 1 1 +2713 GK3P glycerol kinase 3 pseudogene 4 pseudo GKP3|GKTB glycerol kinase pseudogene 3 4.433 0 1 +2717 GLA galactosidase alpha X protein-coding GALA alpha-galactosidase A|agalsidase alfa|alpha-D-galactosidase A|alpha-D-galactoside galactohydrolase 1|alpha-gal A|melibiase 35 0.004791 8.997 1 1 +2719 GPC3 glypican 3 X protein-coding DGSX|GTR2-2|MXR7|OCI-5|SDYS|SGB|SGBS|SGBS1 glypican-3|glypican proteoglycan 3|heparan sulphate proteoglycan|intestinal protein OCI-5|secreted glypican-3 45 0.006159 6.781 1 1 +2720 GLB1 galactosidase beta 1 3 protein-coding EBP|ELNR1|MPS4B beta-galactosidase|acid beta-galactosidase|elastin receptor 1, 67kDa|lactase 45 0.006159 10.52 1 1 +2729 GCLC glutamate-cysteine ligase catalytic subunit 6 protein-coding GCL|GCS|GLCL|GLCLC glutamate--cysteine ligase catalytic subunit|GCS heavy chain|gamma-ECS|gamma-glutamylcysteine synthetase 33 0.004517 9.942 1 1 +2730 GCLM glutamate-cysteine ligase modifier subunit 1 protein-coding GLCLR glutamate--cysteine ligase regulatory subunit|GCS light chain|GSC light chain|gamma-ECS regulatory subunit|gamma-glutamylcysteine synthetase regulatory subunit|glutamate-cysteine ligase (gamma-glutamylcysteine synthetase), regulatory (30.8kD)|glutamate-cysteine ligase modifier subunit delta2 alternative splicing|glutamate-cysteine ligase regulatory protein 16 0.00219 8.459 1 1 +2731 GLDC glycine decarboxylase 9 protein-coding GCE|GCSP|HYGN1 glycine dehydrogenase (decarboxylating), mitochondrial|glycine cleavage system protein P|glycine decarboxylase P-protein|glycine dehydrogenase (aminomethyl-transferring)|glycine dehydrogenase (decarboxylating)|glycine dehydrogenase [decarboxylating], mitochondrial 82 0.01122 5.576 1 1 +2733 GLE1 GLE1, RNA export mediator 9 protein-coding GLE1L|LCCS|LCCS1|hGLE1 nucleoporin GLE1|GLE1 RNA export mediator homolog|GLE1-like protein|GLE1-like, RNA export mediator 35 0.004791 9.806 1 1 +2734 GLG1 golgi glycoprotein 1 16 protein-coding CFR-1|ESL-1|MG-160|MG160 Golgi apparatus protein 1|E-selectin ligand 1|cysteine-rich fibroblast growth factor receptor|golgi sialoglycoprotein MG-160 83 0.01136 12.16 1 1 +2735 GLI1 GLI family zinc finger 1 12 protein-coding GLI zinc finger protein GLI1|GLI-Kruppel family member GLI1|glioma-associated oncogene 1|glioma-associated oncogene homolog 1 (zinc finger protein)|oncogene GLI 119 0.01629 4.565 1 1 +2736 GLI2 GLI family zinc finger 2 2 protein-coding CJS|HPE9|PHS2|THP1|THP2 zinc finger protein GLI2|GLI family zinc finger protein 2|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 146 0.01998 6.237 1 1 +2737 GLI3 GLI family zinc finger 3 7 protein-coding ACLS|GCPS|GLI3-190|GLI3FL|PAP-A|PAPA|PAPA1|PAPB|PHS|PPDIV transcriptional activator GLI3|GLI-Kruppel family member GLI3|glioma-associated oncogene family zinc finger 3|oncogene GLI3|zinc finger protein GLI3 202 0.02765 8.072 1 1 +2738 GLI4 GLI family zinc finger 4 8 protein-coding HKR4|ZNF928 zinc finger protein GLI4|GLI-Kruppel family member GLI4 (oncogene HKR4)|glioma-associated oncogene family zinc finger 4|krueppel-related zinc finger protein 4 27 0.003696 7.42 1 1 +2739 GLO1 glyoxalase I 6 protein-coding GLOD1|GLYI|HEL-S-74 lactoylglutathione lyase|S-D-lactoylglutathione methylglyoxal lyase|aldoketomutase|epididymis secretory protein Li 74|glx I|glyoxalase domain containing 1|ketone-aldehyde mutase|lactoyl glutathione lyase|methylglyoxalase 15 0.002053 11.53 1 1 +2740 GLP1R glucagon like peptide 1 receptor 6 protein-coding GLP-1|GLP-1-R|GLP-1R glucagon-like peptide 1 receptor|GLP-1 receptor|GLP1 receptor|seven transmembrane helix receptor 28 0.003832 1.814 1 1 +2741 GLRA1 glycine receptor alpha 1 5 protein-coding HKPX1|STHE glycine receptor subunit alpha-1|glycine receptor 48 kDa subunit|glycine receptor strychnine-binding subunit 48 0.00657 0.3215 1 1 +2742 GLRA2 glycine receptor alpha 2 X protein-coding GLR glycine receptor subunit alpha-2|glycine receptor alpha 2 subunit|glycine receptor, alpha-2 polypeptide 58 0.007939 0.9199 1 1 +2743 GLRB glycine receptor beta 4 protein-coding HKPX2 glycine receptor subunit beta|glycine receptor 58 kDa subunit|glycine receptor, beta subunit 55 0.007528 6.008 1 1 +2744 GLS glutaminase 2 protein-coding AAD20|GAC|GAM|GLS1|KGA glutaminase kidney isoform, mitochondrial|K-glutaminase|L-glutamine amidohydrolase|glutaminase C|glutaminase, phosphate-activated 44 0.006022 10.52 1 1 +2745 GLRX glutaredoxin 5 protein-coding GRX|GRX1 glutaredoxin-1|TTase-1|glutaredoxin (thioltransferase)|thioltransferase|thioltransferase-1 7 0.0009581 8.866 1 1 +2746 GLUD1 glutamate dehydrogenase 1 10 protein-coding GDH|GDH1|GLUD glutamate dehydrogenase 1, mitochondrial|epididymis tissue sperm binding protein Li 18mP|glutamate dehydrogenase (NAD(P)+) 32 0.00438 11.87 1 1 +2747 GLUD2 glutamate dehydrogenase 2 X protein-coding GDH2|GLUDP1 glutamate dehydrogenase 2, mitochondrial|GDH 2|glutamate dehydrogenase pseudogene 1|testicular secretory protein Li 14 85 0.01163 8.715 1 1 +2752 GLUL glutamate-ammonia ligase 1 protein-coding GLNS|GS|PIG43|PIG59 glutamine synthetase|cell proliferation-inducing protein 59|glutamate decarboxylase|glutamine synthase|proliferation-inducing protein 43 42 0.005749 13.53 1 1 +2760 GM2A GM2 ganglioside activator 5 protein-coding GM2-AP|SAP-3 ganglioside GM2 activator|cerebroside sulfate activator protein|shingolipid activator protein 3|sphingolipid activator protein 3 8 0.001095 11.15 1 1 +2762 GMDS GDP-mannose 4,6-dehydratase 6 protein-coding GMD|SDR3E1 GDP-mannose 4,6 dehydratase|GDP-D-mannose dehydratase|short chain dehydrogenase/reductase family 3E, member 1 31 0.004243 8.619 1 1 +2764 GMFB glia maturation factor beta 14 protein-coding GMF glia maturation factor beta|GMF-beta 8 0.001095 10.35 1 1 +2765 GML glycosylphosphatidylinositol anchored molecule like 8 protein-coding LY6DL glycosyl-phosphatidylinositol-anchored molecule-like protein|GPI anchored molecule like protein|Glycosylphosphatidylinositol-anchored molecule-like protein|glycosylphosphatidylinositol anchored molecule like protein 18 0.002464 0.04982 1 1 +2766 GMPR guanosine monophosphate reductase 6 protein-coding GMPR 1|GMPR1 GMP reductase 1|guanine monophosphate reductase|guanosine 5'-monophosphate oxidoreductase 1|guanosine monophosphate reductase 1 22 0.003011 7.517 1 1 +2767 GNA11 G protein subunit alpha 11 19 protein-coding FBH|FBH2|FHH2|GNA-11|HHC2|HYPOC2 guanine nucleotide-binding protein subunit alpha-11|g alpha-11|guanine nucleotide binding protein (G protein), alpha 11 (Gq class)|guanine nucleotide-binding protein G(y) subunit alpha 67 0.009171 8.936 1 1 +2768 GNA12 G protein subunit alpha 12 7 protein-coding NNX3|RMP|gep guanine nucleotide-binding protein subunit alpha-12|WUGSC:H_GS165O14.2|g alpha-12|guanine nucleotide binding protein (G protein) alpha 12 26 0.003559 10.67 1 1 +2769 GNA15 G protein subunit alpha 15 19 protein-coding GNA16 guanine nucleotide-binding protein subunit alpha-15|G-protein subunit alpha-16|epididymis tissue protein Li 17E|g alpha-15|g alpha-16|guanine nucleotide binding protein (G protein), alpha 15 (Gq class)|guanine nucleotide-binding protein subunit alpha-16 31 0.004243 7.901 1 1 +2770 GNAI1 G protein subunit alpha i1 7 protein-coding Gi guanine nucleotide-binding protein G(i) subunit alpha-1|Gi1 protein alpha subunit|adenylate cyclase-inhibiting G alpha protein|guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 1 30 0.004106 8.948 1 1 +2771 GNAI2 G protein subunit alpha i2 3 protein-coding GIP|GNAI2B|H_LUCA15.1|H_LUCA16.1 guanine nucleotide-binding protein G(i) subunit alpha-2|GTP-binding regulatory protein Gi alpha-2 chain|adenylate cyclase-inhibiting G alpha protein|guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2|guanine nucleotide-binding protein G(i), alpha-2 subunit 26 0.003559 12.63 1 1 +2773 GNAI3 G protein subunit alpha i3 1 protein-coding 87U6|ARCND1 guanine nucleotide-binding protein G(k) subunit alpha|g(i) alpha-3|guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 3 31 0.004243 10.96 1 1 +2774 GNAL G protein subunit alpha L 18 protein-coding DYT25 guanine nucleotide-binding protein G(olf) subunit alpha|adenylate cyclase-stimulating G alpha protein, olfactory type|guanine nucleotide binding protein (G protein), alpha activating activity polypeptide, olfactory type|guanine nucleotide binding protein (G protein), alpha stimulating activity polypeptide, olfactory type 36 0.004927 5.805 1 1 +2775 GNAO1 G protein subunit alpha o1 16 protein-coding EIEE17|G-ALPHA-o|GNAO|HLA-DQB1 guanine nucleotide-binding protein G(o) subunit alpha|GO2-q chimeric G-protein|guanine nucleotide binding protein (G protein), alpha activating activity polypeptide O|guanine nucleotide-binding regulatory protein 2 28 0.003832 6.929 1 1 +2776 GNAQ G protein subunit alpha q 9 protein-coding CMC1|G-ALPHA-q|GAQ|SWS guanine nucleotide-binding protein G(q) subunit alpha|guanine nucleotide binding protein (G protein), q polypeptide|guanine nucleotide-binding protein alpha-q 83 0.01136 10.57 1 1 +2778 GNAS GNAS complex locus 20 protein-coding AHO|C20orf45|GNAS1|GPSA|GSA|GSP|NESP|POH|SCG6|SgVI protein ALEX|protein GNAS|protein SCG6 (secretogranin VI)|G protein subunit alpha S|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|secretogranin VI 195 0.02669 14.69 1 1 +2779 GNAT1 G protein subunit alpha transducin 1 3 protein-coding CSNB1G|CSNBAD3|GBT1|GNATR guanine nucleotide-binding protein G(t) subunit alpha-1|guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 1|guanine nucleotide-binding protein G(T), alpha-1 subunit|rod-type transducin alpha subunit|transducin alpha-1 chain|transducin, rod-specific 26 0.003559 0.6292 1 1 +2780 GNAT2 G protein subunit alpha transducin 2 1 protein-coding ACHM4|GNATC guanine nucleotide-binding protein G(t) subunit alpha-2|cone-type transducin alpha subunit|guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 2|transducin alpha-2 chain|transducin, cone-specific, alpha polypeptide 16 0.00219 1.186 1 1 +2781 GNAZ G protein subunit alpha z 22 protein-coding - guanine nucleotide-binding protein G(z) subunit alpha|g(x) alpha chain|guanine nucleotide binding protein (G protein), alpha z polypeptide|gz-alpha|transducin alpha 60 0.008212 6.991 1 1 +2782 GNB1 G protein subunit beta 1 1 protein-coding MRD42 guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1|beta subunit, signal-transducing proteins GS/GI|guanine nucleotide binding protein (G protein), beta polypeptide 1|testicular tissue protein Li 72|transducin beta chain 1 31 0.004243 12.96 1 1 +2783 GNB2 G protein subunit beta 2 7 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-2|G protein, beta-2 subunit|g protein subunit beta-2|guanine nucleotide binding protein (G protein), beta polypeptide 2|guanine nucleotide-binding protein G(I)/G(S)/G(T) beta subunit 2|signal-transducing guanine nucleotide-binding regulatory protein beta subunit|transducin beta chain 2 17 0.002327 12.3 1 1 +2784 GNB3 G protein subunit beta 3 12 protein-coding CSNB1H guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-3|G protein, beta-3 subunit|GTP-binding regulatory protein beta-3 chain|guanine nucleotide binding protein (G protein), beta polypeptide 3|guanine nucleotide-binding protein G(I)/G(S)/G(T) beta subunit 3|hypertension associated protein|transducin beta chain 3 33 0.004517 4.159 1 1 +2785 GNG3 G protein subunit gamma 3 11 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-3|NBP gamma-3|guanine nucleotide binding protein (G protein), gamma 3|guanine nucleotide-binding protein gamma-3 subunit 6 0.0008212 2.915 1 1 +2786 GNG4 G protein subunit gamma 4 1 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-4|guanine nucleotide binding protein (G protein), gamma 4|guanine nucleotide binding protein 4 8 0.001095 6.37 1 1 +2787 GNG5 G protein subunit gamma 5 1 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-5|guanine nucleotide binding protein (G protein), gamma 5 4 0.0005475 10.75 1 1 +2788 GNG7 G protein subunit gamma 7 19 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-7|guanine nucleotide binding protein (G protein), gamma 7 8 0.001095 7.478 1 1 +2790 GNG10 G protein subunit gamma 10 9 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-10|guanine nucleotide binding protein (G protein), gamma 10|guanine nucleotide binding protein 10 1 0.0001369 9.029 1 1 +2791 GNG11 G protein subunit gamma 11 7 protein-coding GNGT11 guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-11|G protein gamma-11 subunit|guanine nucleotide binding protein (G protein), gamma 11|guanine nucleotide-binding protein G(I)/G(S)/G(O) gamma-11 subunit 10 0.001369 8.811 1 1 +2792 GNGT1 G protein subunit gamma transducin 1 7 protein-coding GNG1 guanine nucleotide-binding protein G(T) subunit gamma-T1|guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1|transducin gamma chain 11 0.001506 1.227 1 1 +2793 GNGT2 G protein subunit gamma transducin 2 17 protein-coding G-GAMMA-8|G-GAMMA-C|GNG8|GNG9|GNGT8 guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-T2|G protein cone gamma 8 subunit|G-gamma-9|g gamma-C|gamma-T2 subunit|guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2|guanine nucleotide binding protein gamma 9|guanine nucleotide binding protein gamma transducing activity polypeptide 2 10 0.001369 4.424 1 1 +2794 GNL1 G protein nucleolar 1 (putative) 6 protein-coding HSR1 guanine nucleotide-binding protein-like 1|GTP-binding protein HSR1|HSR1 GTP-binding protein 34 0.004654 10.46 1 1 +2796 GNRH1 gonadotropin releasing hormone 1 8 protein-coding GNRH|GRH|LHRH|LNRH progonadoliberin-1|GnRH-associated peptide 1|gonadotropin-releasing hormone 1 (luteinizing-releasing hormone)|leuteinizing-releasing hormone|luliberin I|prolactin release-inhibiting factor 12 0.001642 4.314 1 1 +2797 GNRH2 gonadotropin releasing hormone 2 20 protein-coding GnRH-II|LH-RHII progonadoliberin-2|GnRH-associated peptide 2|GnRH-associated peptide II|Gonadoliberin II|Gonadoliberin-2|luliberin II|luteinizing hormone-releasing hormone II|progonadoliberin II 9 0.001232 0.2796 1 1 +2798 GNRHR gonadotropin releasing hormone receptor 4 protein-coding GNRHR1|GRHR|HH7|LHRHR|LRHR gonadotropin-releasing hormone receptor|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 23 0.003148 2.064 1 1 +2799 GNS glucosamine (N-acetyl)-6-sulfatase 12 protein-coding G6S N-acetylglucosamine-6-sulfatase|glucosamine -6-sulfatase 35 0.004791 12.06 1 1 +2800 GOLGA1 golgin A1 9 protein-coding golgin-97 golgin subfamily A member 1|gap junction protein, alpha 4, 37kD|golgi autoantigen, golgin subfamily a, 1 48 0.00657 9.167 1 1 +2801 GOLGA2 golgin A2 9 protein-coding GM130 golgin subfamily A member 2|130 kDa cis-Golgi matrix protein|GM130 autoantigen|Golgi matrix protein GM130|SY11 protein|golgi autoantigen, golgin subfamily a, 2|golgin-95 71 0.009718 10.86 1 1 +2802 GOLGA3 golgin A3 12 protein-coding GCP170|MEA-2 golgin subfamily A member 3|Golgi membrane associated protein|Golgi peripheral membrane protein|SY2/SY10 protein|golgi autoantigen, golgin subfamily a, 3|golgi complex-associated protein of 170 kDa|golgin-160|golgin-165|male enhanced antigen-2 122 0.0167 11.01 1 1 +2803 GOLGA4 golgin A4 3 protein-coding CRPF46|GCP2|GOLG|MU-RMS-40.18|p230 golgin subfamily A member 4|256 kDa golgin|72.1 protein|centrosome-related protein F46|golgi autoantigen, golgin subfamily a, 4|golgin-240|golgin-245|protein 72.1|trans-Golgi p230 127 0.01738 11.01 1 1 +2804 GOLGB1 golgin B1 3 protein-coding GCP|GCP372|GOLIM1 golgin subfamily B member 1|372 kDa Golgi complex-associated protein|giantin|golgi autoantigen, golgin subfamily b, macrogolgin (with transmembrane signal), 1|golgi integral membrane protein 1|golgin B1, golgi integral membrane protein|macrogolgin 193 0.02642 11.64 1 1 +2805 GOT1 glutamic-oxaloacetic transaminase 1 10 protein-coding AST1|ASTQTL1|GIG18|cAspAT|cCAT aspartate aminotransferase, cytoplasmic|aspartate aminotransferase 1|aspartate transaminase 1|cysteine aminotransferase, cytoplasmic|cysteine transaminase, cytoplasmic|glutamate oxaloacetate transaminase 1|glutamic-oxaloacetic transaminase 1, soluble|growth-inhibiting protein 18|testis secretory sperm-binding protein Li 196a|transaminase A 20 0.002737 10.2 1 1 +2806 GOT2 glutamic-oxaloacetic transaminase 2 16 protein-coding KAT4|KATIV|KYAT4|mitAAT aspartate aminotransferase, mitochondrial|FABP-1|FABPpm|aspartate aminotransferase 2|aspartate transaminase 2|fatty acid-binding protein|glutamate oxaloacetate transaminase 2|glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 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 28 0.003832 11.36 1 1 +2810 SFN stratifin 1 protein-coding YWHAS 14-3-3 protein sigma|14-3-3 sigma|epithelial cell marker protein 1 17 0.002327 9.093 1 1 +2811 GP1BA glycoprotein Ib platelet alpha subunit 17 protein-coding BDPLT1|BDPLT3|BSS|CD42B|CD42b-alpha|DBPLT3|GP1B|GPIbA|GPIbalpha|VWDP platelet glycoprotein Ib alpha chain|GP-Ib alpha|antigen CD42b-alpha|glycoprotein Ib (platelet), alpha polypeptide|mutant platelet membrane glycoprotein Ib-alpha|platelet membrane glycoprotein 1b-alpha subunit|platelet membrane glycoprotein Ib-alpha 43 0.005886 3.532 1 1 +2812 GP1BB glycoprotein Ib platelet beta subunit 22 protein-coding BDPLT1|BS|CD42C|GPIBB|GPIbbeta platelet glycoprotein Ib beta chain|GP-Ib beta|antigen CD42b-beta|glycoprotein Ib (platelet), beta polypeptide|nuclear localization signal deleted in velocardiofacial syndrome|platelet membrane glycoprotein Ib beta|truncated platelet membrane glycoprotein Ib beta 2 0.0002737 1 0 +2813 GP2 glycoprotein 2 16 protein-coding ZAP75 pancreatic secretory granule membrane major glycoprotein GP2|glycoprotein 2 (zymogen granule membrane)|pancreatic zymogen granule membrane associated protein GP2 80 0.01095 2.298 1 1 +2814 GP5 glycoprotein V platelet 3 protein-coding CD42d|GPV platelet glycoprotein V|glycoprotein 5 35 0.004791 1.618 1 1 +2815 GP9 glycoprotein IX platelet 3 protein-coding CD42a|GPIX platelet glycoprotein IX|glycoprotein 9 17 0.002327 0.3892 1 1 +2817 GPC1 glypican 1 2 protein-coding glypican glypican-1|glypican proteoglycan 1 27 0.003696 10.93 1 1 +2819 GPD1 glycerol-3-phosphate dehydrogenase 1 12 protein-coding GPD-C|GPDH-C|HTGTI glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic|glycerol-3-phosphate dehydrogenase 1 (soluble)|glycerol-3-phosphate dehydrogenase [NAD+], cytoplasmic|glycerophosphate dehydrogenase 30 0.004106 5.738 1 1 +2820 GPD2 glycerol-3-phosphate dehydrogenase 2 2 protein-coding GDH2|GPDM|mGPDH glycerol-3-phosphate dehydrogenase, mitochondrial|GPD-M|GPDH-M|glycerol-3-phosphate dehydrogenase 2 (mitochondrial)|mitochondrial glycerophosphate dehydrogenase|mtGPD|testicular tissue protein Li 76 45 0.006159 10.13 1 1 +2821 GPI glucose-6-phosphate isomerase 19 protein-coding AMF|GNPI|NLK|PGI|PHI|SA-36|SA36 glucose-6-phosphate isomerase|autocrine motility factor|hexose monophosphate isomerase|hexosephosphate isomerase|neuroleukin|oxoisomerase|phosphoglucose isomerase|phosphohexomutase|phosphohexose isomerase|phosphosaccharomutase|sperm antigen-36 44 0.006022 12.8 1 1 +2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 6 protein-coding GPIPLD|GPIPLDM|PIGPLD|PIGPLD1|PLD phosphatidylinositol-glycan-specific phospholipase D|GPI-PLD|GPI-specific phospholipase D|PI-G PLD|glycoprotein phospholipase D 59 0.008076 4.203 1 1 +2823 GPM6A glycoprotein M6A 4 protein-coding GPM6|M6A neuronal membrane glycoprotein M6-a 42 0.005749 4.668 1 1 +2824 GPM6B glycoprotein M6B X protein-coding M6B neuronal membrane glycoprotein M6-b|protolipid M6B 23 0.003148 7.176 1 1 +2825 GPR1 G protein-coupled receptor 1 2 protein-coding - G-protein coupled receptor 1|probable G-protein coupled receptor 1 27 0.003696 3.663 1 1 +2826 CCR10 C-C motif chemokine receptor 10 17 protein-coding GPR2 C-C chemokine receptor type 10|C-C CKR-10|CC chemokine receptor 10|CC-CKR-10|CCR-10|G-protein coupled receptor 2|chemokine (C-C motif) receptor 10 16 0.00219 4.002 1 1 +2827 GPR3 G protein-coupled receptor 3 1 protein-coding ACCA G-protein coupled receptor 3|ACCA orphan receptor|adenylate cyclase constitutive activator 16 0.00219 4.807 1 1 +2828 GPR4 G protein-coupled receptor 4 19 protein-coding - G-protein coupled receptor 4|G-protein coupled receptor 19 31 0.004243 7.232 1 1 +2829 XCR1 X-C motif chemokine receptor 1 3 protein-coding CCXCR1|GPR5 chemokine XC receptor 1|G protein-coupled receptor 5|XC chemokine receptor 1|chemokine (C motif) XC receptor 1|chemokine (C motif) receptor 1|lymphotactin receptor 33 0.004517 1.433 1 1 +2830 GPR6 G protein-coupled receptor 6 6 protein-coding - G-protein coupled receptor 6|sphingosine 1-phosphate receptor GPR6 37 0.005064 0.3813 1 1 +2831 NPBWR1 neuropeptides B/W receptor 1 8 protein-coding GPR7 neuropeptides B/W receptor type 1|G-protein coupled receptor 7|neuropeptide B/W receptor 1|opioid-somatostatin-like receptor 7 41 0.005612 0.9925 1 1 +2832 NPBWR2 neuropeptides B/W receptor 2 20 protein-coding GPR8 neuropeptides B/W receptor type 2|G-protein coupled receptor 8|opioid-somatostatin-like receptor 8 43 0.005886 0.1587 1 1 +2833 CXCR3 C-X-C motif chemokine receptor 3 X protein-coding CD182|CD183|CKR-L2|CMKAR3|GPR9|IP10-R|Mig-R|MigR C-X-C chemokine receptor type 3|G protein-coupled receptor 9|IP-10 receptor|Mig receptor|chemokine (C-X-C motif) receptor 3|chemokine receptor 3|interferon-inducible protein 10 receptor 28 0.003832 5.15 1 1 +2834 PRLHR prolactin releasing hormone receptor 10 protein-coding GPR10|GR3|PrRPR prolactin-releasing peptide receptor|G-protein coupled receptor 10|hGR3|prRP receptor 54 0.007391 0.9922 1 1 +2835 GPR12 G protein-coupled receptor 12 13 protein-coding GPCR12|GPCR21|PPP1R84 G-protein coupled receptor 12|protein phosphatase 1, regulatory subunit 84 32 0.00438 1.466 1 1 +2837 UTS2R urotensin 2 receptor 17 protein-coding GPR14|UR-2-R|UTR|UTR2 urotensin-2 receptor|G-protein coupled receptor 14|UR-II-R|urotensin II receptor 22 0.003011 0.9163 1 1 +2838 GPR15 G protein-coupled receptor 15 3 protein-coding BOB G-protein coupled receptor 15|brother of Bonzo 42 0.005749 1.439 1 1 +2840 GPR17 G protein-coupled receptor 17 2 protein-coding - uracil nucleotide/cysteinyl leukotriene receptor|P2Y-like receptor|R12|UDP/CysLT receptor 36 0.004927 3.061 1 1 +2841 GPR18 G protein-coupled receptor 18 13 protein-coding - N-arachidonyl glycine receptor|NAGly receptor 18 0.002464 3.123 1 1 +2842 GPR19 G protein-coupled receptor 19 12 protein-coding - probable G-protein coupled receptor 19|GPR-NGA 26 0.003559 4.503 1 1 +2843 GPR20 G protein-coupled receptor 20 8 protein-coding - G-protein coupled receptor 20|CTD-3064M3.3 38 0.005201 1.945 1 1 +2844 GPR21 G protein-coupled receptor 21 9 protein-coding - probable G-protein coupled receptor 21 20 0.002737 1.665 1 1 +2845 GPR22 G protein-coupled receptor 22 7 protein-coding - probable G-protein coupled receptor 22 30 0.004106 1.096 1 1 +2846 LPAR4 lysophosphatidic acid receptor 4 X protein-coding GPR23|LPA4|P2RY9|P2Y5-LIKE|P2Y9 lysophosphatidic acid receptor 4|G-protein coupled receptor 23|LPA receptor 4|LPA-4|P2Y purinoceptor 9|P2Y5-like receptor|purinergic receptor 9 59 0.008076 2.25 1 1 +2847 MCHR1 melanin concentrating hormone receptor 1 22 protein-coding GPR24|MCH-1R|MCH1R|SLC-1|SLC1 melanin-concentrating hormone receptor 1|G protein-coupled receptor 24|MCH receptor 1|somatostatin receptor-like protein 33 0.004517 3.433 1 1 +2848 GPR25 G protein-coupled receptor 25 1 protein-coding - probable G-protein coupled receptor 25 17 0.002327 1.086 1 1 +2849 GPR26 G protein-coupled receptor 26 10 protein-coding - G-protein coupled receptor 26 39 0.005338 1.172 1 1 +2850 GPR27 G protein-coupled receptor 27 3 protein-coding SREB1 probable G-protein coupled receptor 27|super conserved receptor expressed in brain 1 17 0.002327 2.971 1 1 +2852 GPER1 G protein-coupled estrogen receptor 1 7 protein-coding CEPR|CMKRL2|DRY12|FEG-1|GPCR-Br|GPER|GPR30|LERGU|LERGU2|LyGPR|mER 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|membrane estrogen receptor 31 0.004243 6.411 1 1 +2853 GPR31 G protein-coupled receptor 31 6 protein-coding 12-HETER|HETER|HETER1 12-(S)-hydroxy-5,8,10,14-eicosatetraenoic acid receptor|12-(S)-HETE acid receptor|12-(S)-HETE receptor|12-(S)-hydroxy-5,8,10,14-eicosatetraenoic acid (HETE) receptor|bA517H2.2 (G protein-coupled receptor 31)|hydroxyeicosatetraenoic (HETE) acid receptor 1|probable G-protein coupled receptor 31 24 0.003285 0.5544 1 1 +2854 GPR32 G protein-coupled receptor 32 19 protein-coding RVDR1 probable G-protein coupled receptor 32|resolvin D1 receptor 54 0.007391 0.1167 1 1 +2857 GPR34 G protein-coupled receptor 34 X protein-coding LYPSR1 probable G-protein coupled receptor 34 22 0.003011 6.618 1 1 +2859 GPR35 G protein-coupled receptor 35 2 protein-coding - G-protein coupled receptor 35|KYNA receptor|kynurenic acid receptor 30 0.004106 5.76 1 1 +2861 GPR37 G protein-coupled receptor 37 7 protein-coding EDNRBL|PAELR|hET(B)R-LP prosaposin receptor GPR37|ETBR-LP-1|G protein-coupled receptor 37 (endothelin receptor type B-like)|Parkin-associated endothelin receptor-like receptor|endothelin B receptor-like protein 1|probable G-protein coupled receptor 37 68 0.009307 5.704 1 1 +2862 MLNR motilin receptor 13 protein-coding GPR38|MTLR1 motilin receptor|G protein-coupled receptor 38 20 0.002737 0.6398 1 1 +2863 GPR39 G protein-coupled receptor 39 2 protein-coding - G-protein coupled receptor 39 41 0.005612 6.261 1 1 +2864 FFAR1 free fatty acid receptor 1 19 protein-coding FFA1R|GPCR40|GPR40 free fatty acid receptor 1|G-protein coupled receptor 40 22 0.003011 0.3451 1 1 +2865 FFAR3 free fatty acid receptor 3 19 protein-coding FFA3R|GPR41|GPR42 free fatty acid receptor 3|G-protein coupled receptor 41 31 0.004243 1.887 1 1 +2866 GPR42 G protein-coupled receptor 42 (gene/pseudogene) 19 pseudo FFAR1L|FFAR3L|GPR41L|GPR42P G protein-coupled receptor 42 pseudogene 6 0.0008212 1 0 +2867 FFAR2 free fatty acid receptor 2 19 protein-coding FFA2R|GPR43 free fatty acid receptor 2|G-protein coupled receptor 43|fatty acid receptor 2|free fatty acid activated receptor 2 32 0.00438 3.724 1 1 +2868 GRK4 G protein-coupled receptor kinase 4 4 protein-coding GPRK2L|GPRK4|GRK4a|IT11 G protein-coupled receptor kinase 4|ITI1 31 0.004243 6.109 1 1 +2869 GRK5 G protein-coupled receptor kinase 5 10 protein-coding GPRK5 G protein-coupled receptor kinase 5|FP2025|g protein-coupled receptor kinase GRK5 37 0.005064 8.168 1 1 +2870 GRK6 G protein-coupled receptor kinase 6 5 protein-coding GPRK6 G protein-coupled receptor kinase 6 31 0.004243 9.645 1 1 +2872 MKNK2 MAP kinase interacting serine/threonine kinase 2 19 protein-coding GPRK7|MNK2 MAP kinase-interacting serine/threonine-protein kinase 2|G protein-coupled receptor kinase 7|MAP kinase signal-integrating kinase 2|MAPK signal-integrating kinase 2 32 0.00438 11.57 1 1 +2873 GPS1 G protein pathway suppressor 1 17 protein-coding COPS1|CSN1|SGN1 COP9 signalosome complex subunit 1|JAB1-containing signalosome subunit 1 36 0.004927 11.15 1 1 +2874 GPS2 G protein pathway suppressor 2 17 protein-coding AMF-1 G protein pathway suppressor 2|GPS-2 40 0.005475 9.958 1 1 +2875 GPT glutamic--pyruvic transaminase 8 protein-coding AAT1|ALT1|GPT1 alanine aminotransferase 1|GPT 1|alanine aminotransferase|glutamate pyruvate transaminase 1|glutamic--pyruvic transaminase 1|glutamic-alanine transaminase 1|glutamic-pyruvate transaminase (alanine aminotransferase) 28 0.003832 5.298 1 1 +2876 GPX1 glutathione peroxidase 1 3 protein-coding GPXD|GSHPX1 glutathione peroxidase 1|GSHPx-1|cellular glutathione peroxidase 56 0.007665 12.05 1 1 +2877 GPX2 glutathione peroxidase 2 14 protein-coding GI-GPx|GPRP|GPRP-2|GPx-2|GPx-GI|GSHPX-GI|GSHPx-2 glutathione peroxidase 2|gastrointestinal glutathione peroxidase|glutathione peroxidase 2 (gastrointestinal)|glutathione peroxidase-related protein 2 8 0.001095 5.968 1 1 +2878 GPX3 glutathione peroxidase 3 5 protein-coding GPx-P|GSHPx-3|GSHPx-P glutathione peroxidase 3|GPx-3|extracellular glutathione peroxidase|glutathione peroxidase 3 (plasma)|plasma glutathione peroxidase 11 0.001506 11.21 1 1 +2879 GPX4 glutathione peroxidase 4 19 protein-coding GPx-4|GSHPx-4|MCSP|PHGPx|SMDS|snGPx|snPHGPx phospholipid hydroperoxide glutathione peroxidase, mitochondrial|phospholipid hydroperoxide glutathione peroxidase|phospholipid hydroperoxidase|sperm nucleus glutathione peroxidase 9 0.001232 11.79 1 1 +2880 GPX5 glutathione peroxidase 5 6 protein-coding HEL-S-75p epididymal secretory glutathione peroxidase|EGLP|GPx-5|GSHPx-5|epididymal androgen-related protein|epididymis secretory sperm binding protein Li 75p|epididymis-specific glutathione peroxidase-like protein 33 0.004517 0.157 1 1 +2882 GPX7 glutathione peroxidase 7 1 protein-coding CL683|GPX6|GPx-7|GSHPx-7|NPGPx glutathione peroxidase 7|glutathione peroxidase 6|non-selenocysteine containing phospholipid hydroperoxide glutathione peroxidase 19 0.002601 7.671 1 1 +2885 GRB2 growth factor receptor bound protein 2 17 protein-coding ASH|EGFRBP-GRB2|Grb3-3|MST084|MSTP084|NCKAP2 growth factor receptor-bound protein 2|HT027|SH2/SH3 adapter GRB2|abundant SRC homology|epidermal growth factor receptor-binding protein GRB2|growth factor receptor-bound protein 3|protein Ash 20 0.002737 11.68 1 1 +2886 GRB7 growth factor receptor bound protein 7 17 protein-coding - growth factor receptor-bound protein 7|B47|GRB7 adapter protein|epidermal growth factor receptor GRB-7 37 0.005064 7.837 1 1 +2887 GRB10 growth factor receptor bound protein 10 7 protein-coding GRB-IR|Grb-10|IRBP|MEG1|RSS growth factor receptor-bound protein 10|GRB10 adapter protein|GRB10 adaptor protein|insulin receptor-binding protein Grb-IR|maternally expressed gene 1 46 0.006296 9.888 1 1 +2888 GRB14 growth factor receptor bound protein 14 2 protein-coding - growth factor receptor-bound protein 14|GRB14 adapter protein 56 0.007665 4.786 1 1 +2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 9 protein-coding C3G|GRF2 rap guanine nucleotide exchange factor 1|CRK SH3-binding GNRP|Rap guanine nucleotide exchange factor (GEF) 1|guanine nucleotide-releasing factor 2 (specific for crk proto-oncogene) 70 0.009581 10.93 1 1 +2890 GRIA1 glutamate ionotropic receptor AMPA type subunit 1 5 protein-coding GLUH1|GLUR1|GLURA|GluA1|HBGR1 glutamate receptor 1|AMPA 1|AMPA-selective glutamate receptor 1|gluR-1|gluR-A|gluR-K1|glutamate receptor, ionotropic, AMPA 1 155 0.02122 2.609 1 1 +2891 GRIA2 glutamate ionotropic receptor AMPA type subunit 2 4 protein-coding GLUR2|GLURB|GluA2|GluR-K2|HBGR2 glutamate receptor 2|AMPA-selective glutamate receptor 2|gluR-2|gluR-B|glutamate receptor B flip isoform|glutamate receptor, ionotropic, AMPA 2 126 0.01725 2.758 1 1 +2892 GRIA3 glutamate ionotropic receptor AMPA type subunit 3 X protein-coding GLUR-C|GLUR-K3|GLUR3|GLURC|GluA3|MRX94 glutamate receptor 3|AMPA-selective glutamate receptor 3|dJ1171F9.1|gluR-3|glutamate receptor C|glutamate receptor subunit 3|glutamate receptor, ionotrophic, AMPA 3|glutamate receptor, ionotropic, AMPA 3 100 0.01369 3.831 1 1 +2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 11 protein-coding GLUR4|GLUR4C|GLURD|GluA4 glutamate receptor 4|AMPA-selective glutamate receptor 4|gluR-4|gluR-D|glutamate receptor, ionotrophic, AMPA 4|glutamate receptor, ionotropic, AMPA 4 123 0.01684 2.787 1 1 +2894 GRID1 glutamate ionotropic receptor delta type subunit 1 10 protein-coding GluD1 glutamate receptor ionotropic, delta-1|gluR delta-1 subunit|glutamate receptor delta-1 subunit 153 0.02094 5.499 1 1 +2895 GRID2 glutamate ionotropic receptor delta type subunit 2 4 protein-coding GluD2|SCAR18 glutamate receptor ionotropic, delta-2|gluR delta-2 subunit|glutamate receptor delta-2 subunit|glutamate receptor, ionotropic, delta 2 178 0.02436 1.156 1 1 +2896 GRN granulin 17 protein-coding CLN11|GEP|GP88|PCDGF|PEPI|PGRN granulins|PC cell-derived growth factor|acrogranin|granulin-epithelin|proepithelin|progranulin 44 0.006022 13.13 1 1 +2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 21 protein-coding EAA3|EEA3|GLR5|GLUR5|GluK1|gluR-5 glutamate receptor ionotropic, kainate 1|excitatory amino acid receptor 3|glutamate receptor 5 109 0.01492 1.861 1 1 +2898 GRIK2 glutamate ionotropic receptor kainate type subunit 2 6 protein-coding EAA4|GLR6|GLUK6|GLUR6|GluK2|MRT6 glutamate receptor ionotropic, kainate 2|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 160 0.0219 3.746 1 1 +2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 1 protein-coding EAA5|GLR7|GLUR7|GluK3|GluR7a glutamate receptor ionotropic, kainate 3|dJ1090M5.1 (glutamate receptor, ionotropic, kainate 3 (GLUR7))|excitatory amino acid receptor 5|gluR-7|glutamate receptor 7 127 0.01738 4.788 1 1 +2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 11 protein-coding EAA1|GRIK|GluK4|KA1 glutamate receptor ionotropic, kainate 4|excitatory amino acid receptor 1|glutamate receptor KA1|glutamate receptor, ionotropic, kainate 4 98 0.01341 3.119 1 1 +2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 19 protein-coding EAA2|GRIK2|GluK5|KA2 glutamate receptor ionotropic, kainate 5|excitatory amino acid receptor 2|glutamate receptor KA2 86 0.01177 5.325 1 1 +2902 GRIN1 glutamate ionotropic receptor NMDA type subunit 1 9 protein-coding GluN1|MRD8|NMD-R1|NMDA1|NMDAR1|NR1 glutamate receptor ionotropic, NMDA 1|N-methyl-D-aspartate receptor channel, subunit zeta-1|N-methyl-D-aspartate receptor subunit NR1|glutamate [NMDA] receptor subunit zeta-1|glutamate receptor, ionotropic, N-methyl D-aspartate 1 55 0.007528 3.655 1 1 +2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A 16 protein-coding EPND|FESD|GluN2A|LKS|NMDAR2A|NR2A glutamate receptor ionotropic, NMDA 2A|N-methyl D-aspartate receptor subtype 2A|N-methyl-D-aspartate receptor channel, subunit epsilon-1|N-methyl-D-aspartate receptor subunit 2A|glutamate receptor, ionotropic, N-methyl D-aspartate 2A 205 0.02806 4.163 1 1 +2904 GRIN2B glutamate ionotropic receptor NMDA type subunit 2B 12 protein-coding EIEE27|GluN2B|MRD6|NMDAR2B|NR2B|hNR3 glutamate receptor ionotropic, NMDA 2B|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|glutamate receptor, ionotropic, N-methyl D-aspartate 2B 216 0.02956 0.9841 1 1 +2905 GRIN2C glutamate ionotropic receptor NMDA type subunit 2C 17 protein-coding GluN2C|NMDAR2C|NR2C glutamate receptor ionotropic, NMDA 2C|N-methyl D-aspartate receptor subtype 2C|N-methyl-D-aspartate receptor subunit 2C|glutamate [NMDA] receptor subunit epsilon-3|glutamate receptor, ionotropic, N-methyl D-aspartate 2C 60 0.008212 4.362 1 1 +2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D 19 protein-coding EB11|GluN2D|NMDAR2D|NR2D glutamate receptor ionotropic, NMDA 2D|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|glutamate receptor, ionotropic, N-methyl D-aspartate 2D 67 0.009171 6.376 1 1 +2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 8 protein-coding HNRGW|LFG1|NMDARA1|TMBIM3 protein lifeguard 1|NMDA receptor glutamate-binding subunit|glutamate [NMDA] receptor-associated protein 1|glutamate receptor, NMDA subtype, glutamate-binding subunit|glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding)|putative MAPK-activating protein PM02|transmembrane BAX inhibitor motif containing 3|transmembrane BAX inhibitor motif-containing protein 3 20 0.002737 12.37 1 1 +2908 NR3C1 nuclear receptor subfamily 3 group C member 1 5 protein-coding GCCR|GCR|GCRST|GR|GRL glucocorticoid receptor|glucocorticoid nuclear receptor variant 1|nuclear receptor subfamily 3, group C, member 1 (glucocorticoid receptor) 45 0.006159 10.14 1 1 +2909 ARHGAP35 Rho GTPase activating protein 35 19 protein-coding GRF-1|GRLF1|P190-A|P190A|p190ARhoGAP|p190RhoGAP rho GTPase-activating protein 35|glucocorticoid receptor DNA-binding factor 1|glucocorticoid receptor repression factor 1|rho GAP p190A 160 0.0219 11.17 1 1 +2911 GRM1 glutamate metabotropic receptor 1 6 protein-coding GPRC1A|MGLU1|MGLUR1|PPP1R85|SCAR13 metabotropic glutamate receptor 1|glutamate receptor, metabotropic 1|protein phosphatase 1, regulatory subunit 85 184 0.02518 2.183 1 1 +2912 GRM2 glutamate metabotropic receptor 2 3 protein-coding GLUR2|GPRC1B|MGLUR2|mGlu2 metabotropic glutamate receptor 2|glutamate receptor homolog|glutamate receptor, metabotropic 2 85 0.01163 3.076 1 1 +2913 GRM3 glutamate metabotropic receptor 3 7 protein-coding GLUR3|GPRC1C|MGLUR3|mGlu3 metabotropic glutamate receptor 3|glutamate receptor, metabotropic 3 148 0.02026 1.933 1 1 +2914 GRM4 glutamate metabotropic receptor 4 6 protein-coding GPRC1D|MGLUR4|mGlu4 metabotropic glutamate receptor 4|glutamate receptor, metabotropic 4 81 0.01109 3.284 1 1 +2915 GRM5 glutamate metabotropic receptor 5 11 protein-coding GPRC1E|MGLUR5|PPP1R86|mGlu5 metabotropic glutamate receptor 5|glutamate receptor, metabotropic 5|protein phosphatase 1, regulatory subunit 86 163 0.02231 2.299 1 1 +2916 GRM6 glutamate metabotropic receptor 6 5 protein-coding CSNB1B|GPRC1F|MGLUR6|mGlu6 metabotropic glutamate receptor 6|glutamate receptor, metabotropic 6 88 0.01204 2.22 1 1 +2917 GRM7 glutamate metabotropic receptor 7 3 protein-coding GLUR7|GPRC1G|MGLU7|MGLUR7|PPP1R87 metabotropic glutamate receptor 7|glutamate receptor, metabotropic 7|protein phosphatase 1, regulatory subunit 87 157 0.02149 1.5 1 1 +2918 GRM8 glutamate metabotropic receptor 8 7 protein-coding GLUR8|GPRC1H|MGLUR8|mGlu8 metabotropic glutamate receptor 8|glutamate receptor, metabotropic 8 190 0.02601 3.462 1 1 +2919 CXCL1 C-X-C motif chemokine ligand 1 4 protein-coding FSP|GRO1|GROa|MGSA|MGSA-a|NAP-3|SCYB1 growth-regulated alpha protein|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|chemokine (C-X-C motif) ligand 1 (melanoma growth stimulating activity, alpha)|fibroblast secretory protein|melanoma growth stimulating activity, alpha|melanoma growth stimulatory activity alpha|neutrophil-activating protein 3 10 0.001369 5.977 1 1 +2920 CXCL2 C-X-C motif chemokine ligand 2 4 protein-coding CINC-2a|GRO2|GROb|MGSA-b|MIP-2a|MIP2|MIP2A|SCYB2 C-X-C motif chemokine 2|GRO2 oncogene|MGSA beta|MIP2-alpha|chemokine (C-X-C motif) ligand 2|gro-beta|growth-regulated protein beta|macrophage inflammatory protein 2-alpha|melanoma growth stimulatory activity beta 7 0.0009581 6.057 1 1 +2921 CXCL3 C-X-C motif chemokine ligand 3 4 protein-coding CINC-2b|GRO3|GROg|MIP-2b|MIP2B|SCYB3 C-X-C motif chemokine 3|GRO-gamma|GRO-gamma(1-73)|GRO3 oncogene|MGSA gamma|MIP2-beta|chemokine (C-X-C motif) ligand 3|growth-regulated protein gamma|macrophage inflammatory protein 2-beta|melanoma growth stimulatory activity gamma 6 0.0008212 4.045 1 1 +2922 GRP gastrin releasing peptide 18 protein-coding BN|GRP-10|preproGRP|proGRP gastrin-releasing peptide|bombesin|neuromedin C|pre-progastrin releasing peptide|prepro-GRP|testicular tissue protein Li 103 34 0.004654 2.755 1 1 +2923 PDIA3 protein disulfide isomerase family A member 3 15 protein-coding ER60|ERp57|ERp60|ERp61|GRP57|GRP58|HEL-S-269|HEL-S-93n|HsT17083|P58|PI-PLC protein disulfide-isomerase A3|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|epididymis secretory protein Li 269|epididymis secretory sperm binding protein Li 93n|glucose regulated protein, 58kDa|phospholipase C-alpha|protein disulfide isomerase-associated 3 27 0.003696 13.34 1 1 +2925 GRPR gastrin releasing peptide receptor X protein-coding BB2|BB2R gastrin-releasing peptide receptor|GRP-R|GRP-preferring bombesin receptor|bombesin receptor 2 39 0.005338 2.808 1 1 +2926 GRSF1 G-rich RNA sequence binding factor 1 4 protein-coding - G-rich sequence factor 1|GRSF-1 31 0.004243 11.05 1 1 +2928 GSC2 goosecoid homeobox 2 22 protein-coding GSCL homeobox protein goosecoid-2|GSC-2|GSC-L 2 0.0002737 0.02722 1 1 +2931 GSK3A glycogen synthase kinase 3 alpha 19 protein-coding - glycogen synthase kinase-3 alpha|GSK-3 alpha|serine/threonine-protein kinase GSK3A 19 0.002601 10.76 1 1 +2932 GSK3B glycogen synthase kinase 3 beta 3 protein-coding - glycogen synthase kinase-3 beta|GSK-3 beta|GSK3beta isoform|serine/threonine-protein kinase GSK3B 31 0.004243 10.43 1 1 +2934 GSN gelsolin 9 protein-coding ADF|AGEL gelsolin|actin-depolymerizing factor|brevin 46 0.006296 13 1 1 +2935 GSPT1 G1 to S phase transition 1 16 protein-coding 551G9.2|ETF3A|GST1|eRF3a eukaryotic peptide chain release factor GTP-binding subunit ERF3A|G1 to S phase transition protein 1 homolog|eukaryotic peptide chain release factor subunit 3a 33 0.004517 11.59 1 1 +2936 GSR glutathione-disulfide reductase 8 protein-coding HEL-75|HEL-S-122m glutathione reductase, mitochondrial|GR|GRase|epididymis luminal protein 75|epididymis secretory sperm binding protein Li 122m|glutathione S-reductase|glutathione reductase 32 0.00438 9.682 1 1 +2937 GSS glutathione synthetase 20 protein-coding GSHS|HEL-S-64p|HEL-S-88n glutathione synthetase|GSH synthetase|GSH-S|glutathione synthase 23 0.003148 10.35 1 1 +2938 GSTA1 glutathione S-transferase alpha 1 6 protein-coding GST-epsilon|GST2|GSTA1-1|GTH1 glutathione S-transferase A1|GST HA subunit 1|GST class-alpha member 1|S-(hydroxyalkyl)glutathione lyase A1|glutathione S-alkyltransferase A1|glutathione S-aryltransferase A1|glutathione S-transferase 2|glutathione S-transferase Ha subunit 1|testicular tissue protein Li 80 26 0.003559 4.33 1 1 +2939 GSTA2 glutathione S-transferase alpha 2 6 protein-coding GST2|GSTA2-2|GTA2|GTH2 glutathione S-transferase A2|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|liver GST2|testis tissue sperm-binding protein Li 59n 27 0.003696 2.315 1 1 +2940 GSTA3 glutathione S-transferase alpha 3 6 protein-coding GSTA3-3|GTA3 glutathione S-transferase A3|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-3 15 0.002053 0.749 1 1 +2941 GSTA4 glutathione S-transferase alpha 4 6 protein-coding GSTA4-4|GTA4 glutathione S-transferase A4|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-4|glutathione transferase A4-4 19 0.002601 8.668 1 1 +2944 GSTM1 glutathione S-transferase mu 1 1 protein-coding GST1|GSTM1-1|GSTM1a-1a|GSTM1b-1b|GTH4|GTM1|H-B|MU|MU-1 glutathione S-transferase Mu 1|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 5 0.0006844 5.284 1 1 +2946 GSTM2 glutathione S-transferase mu 2 1 protein-coding GST4|GSTM|GSTM2-2|GTHMUS glutathione S-transferase Mu 2|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 (muscle) 18 0.002464 8.853 1 1 +2947 GSTM3 glutathione S-transferase mu 3 1 protein-coding GST5|GSTB|GSTM3-3|GTM3 glutathione S-transferase Mu 3|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 (brain)|glutathione S-transferase, Mu-3|hGSTM3-3 16 0.00219 9.346 1 1 +2948 GSTM4 glutathione S-transferase mu 4 1 protein-coding GSTM4-4|GTM4 glutathione S-transferase Mu 4|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|testis tissue sperm-binding protein Li 60n 25 0.003422 9.09 1 1 +2949 GSTM5 glutathione S-transferase mu 5 1 protein-coding GSTM5-5|GTM5 glutathione S-transferase Mu 5|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 38 0.005201 4.661 1 1 +2950 GSTP1 glutathione S-transferase pi 1 11 protein-coding DFN7|FAEES3|GST3|GSTP|HEL-S-22|PI glutathione S-transferase P|GST class-pi|GSTP1-1|deafness, X-linked 7|epididymis secretory protein Li 22|fatty acid ethyl ester synthase III 16 0.00219 12.5 1 1 +2952 GSTT1 glutathione S-transferase theta 1 22 protein-coding - glutathione S-transferase theta-1|GST class-theta-1|glutathione transferase T1-1 11 0.001506 7.639 1 1 +2953 GSTT2 glutathione S-transferase theta 2 (gene/pseudogene) 22 protein-coding - glutathione S-transferase theta-2|GST class-theta-2 3 0.0004106 6.518 1 1 +2954 GSTZ1 glutathione S-transferase zeta 1 14 protein-coding GSTZ1-1|MAAI|MAI maleylacetoacetate isomerase|S-(hydroxyalkyl)glutathione lyase|glutathione S-alkyltransferase|glutathione S-aralkyltransferase|glutathione S-aryltransferase|glutathione transferase zeta 1|maleylacetone isomerase 20 0.002737 8.656 1 1 +2956 MSH6 mutS homolog 6 2 protein-coding GTBP|GTMBP|HNPCC5|HSAP|p160 DNA mismatch repair protein Msh6|G/T mismatch-binding protein|mutS protein homolog 6|mutS-alpha 160 kDa subunit|sperm-associated protein 92 0.01259 10.36 1 1 +2957 GTF2A1 general transcription factor IIA subunit 1 14 protein-coding TF2A1|TFIIA|TFIIA-42|TFIIAL transcription initiation factor IIA subunit 1|TFIIA alpha, p55|TFIIA alpha/beta subunits|general transcription factor IIA 1|general transcription factor IIA, 1, 19/37kDa|glucose regulated protein, 58kD pseudogene|transcription initiation factor TFIIA 42 kDa subunit 27 0.003696 6.964 1 1 +2958 GTF2A2 general transcription factor IIA subunit 2 15 protein-coding HsT18745|T18745|TF2A2|TFIIA|TFIIA-12|TFIIA-gamma|TFIIAS transcription initiation factor IIA subunit 2|TFIIA gamma subunit|TFIIA p12 subunit|general transcription factor IIA 2|general transcription factor IIA, 2, 12kDa|transcription initiation factor IIA gamma chain 6 0.0008212 9.603 1 1 +2959 GTF2B general transcription factor IIB 1 protein-coding TF2B|TFIIB transcription initiation factor IIB|RNA polymerase II transcription factor IIB|S300-II|general transcription factor TFIIB 22 0.003011 9.098 1 1 +2960 GTF2E1 general transcription factor IIE subunit 1 3 protein-coding FE|TF2E1|TFIIE-A general transcription factor IIE subunit 1|TFIIE alpha subunit|TFIIE-alpha|general transcription factor IIE 56 kDa subunit|general transcription factor IIE, polypeptide 1, alpha 56kDa|transcription initiation factor IIE subunit alpha 46 0.006296 8.201 1 1 +2961 GTF2E2 general transcription factor IIE subunit 2 8 protein-coding FE|TF2E2|TFIIE-B|TTD6 transcription initiation factor IIE subunit beta|TFIIE beta subunit|TFIIE-beta|general transcription factor IIE, polypeptide 2, beta 34kDa 17 0.002327 9.172 1 1 +2962 GTF2F1 general transcription factor IIF subunit 1 19 protein-coding BTF4|RAP74|TF2F1|TFIIF general transcription factor IIF subunit 1|TFIIF-alpha|general transcription factor IIF 74 kDa subunit|general transcription factor IIF, polypeptide 1, 74kDa|transcription initiation factor IIF subunit alpha|transcription initiation factor RAP74 30 0.004106 10.93 1 1 +2963 GTF2F2 general transcription factor IIF subunit 2 13 protein-coding BTF4|RAP30|TF2F2|TFIIF general transcription factor IIF subunit 2|ATP-dependent helicase GTF2F2|TFIIF-beta|general transcription factor IIF 30 kDa subunit|general transcription factor IIF, polypeptide 2, 30kDa|transcription initiation factor IIF subunit beta|transcription initiation factor RAP30 11 0.001506 8.932 1 1 +2965 GTF2H1 general transcription factor IIH subunit 1 11 protein-coding BTF2|P62|TFB1|TFIIH general transcription factor IIH subunit 1|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, polypeptide 1, 62kDa 26 0.003559 9.509 1 1 +2966 GTF2H2 general transcription factor IIH subunit 2 5 protein-coding BTF2|BTF2P44|T-BTF2P44|TFIIH|p44 general transcription factor IIH subunit 2|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, polypeptide 2, 44kD subunit|general transcription factor IIH, polypeptide 2, 44kDa 2 0.0002737 6.664 1 1 +2967 GTF2H3 general transcription factor IIH subunit 3 12 protein-coding BTF2|P34|TFB4|TFIIH general transcription factor IIH subunit 3|TFIIH basal transcription factor complex p34 subunit|basic transcription factor 2 34 kDa subunit|general transcription factor IIH, polypeptide 3, 34kDa 16 0.00219 7.7 1 1 +2968 GTF2H4 general transcription factor IIH subunit 4 6 protein-coding P52|TFB2|TFIIH general transcription factor IIH subunit 4|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, polypeptide 4, 52kDa 25 0.003422 8.881 1 1 +2969 GTF2I general transcription factor IIi 7 protein-coding BAP135|BTKAP1|DIWS|GTFII-I|IB291|SPIN|TFII-I|WBS|WBSCR6 general transcription factor II-I|BTK-associated protein, 135kD|Bruton tyrosine kinase-associated protein 135|SRF-Phox1-interacting protein|Williams-Beuren syndrome chromosome region 6 103 0.0141 11.11 1 1 +2970 GTF2IP1 general transcription factor IIi pseudogene 1 7 pseudo WBSCR7 Williams-Beuren syndrome chromosome region 7 12.52 0 1 +2971 GTF3A general transcription factor IIIA 13 protein-coding AP2|TFIIIA transcription factor IIIA 12 0.001642 10.9 1 1 +2972 BRF1 BRF1, RNA polymerase III transcription initiation factor 90 kDa subunit 14 protein-coding BRF|BRF-1|CFDS|GTF3B|HEL-S-76p|TAF3B2|TAF3C|TAFIII90|TF3B90|TFIIIB90|hBRF transcription factor IIIB 90 kDa subunit|B - related factor 1|BRF1 homolog, subunit of RNA polymerase III transcription initiation factor IIIB|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|epididymis secretory sperm binding protein Li 76p|general transcription factor IIIB, 90kD subunit 39 0.005338 9.525 1 1 +2974 GUCY1B2 guanylate cyclase 1 soluble subunit beta 2 (pseudogene) 13 pseudo GC-SB2 guanylate cyclase 1 solube subunit beta 2 (pseudogene)|guanylate cyclase 1, soluble, beta 2 (pseudogene) 12 0.001642 2.273 1 1 +2975 GTF3C1 general transcription factor IIIC subunit 1 16 protein-coding TFIIIC|TFIIIC220|TFIIICalpha general transcription factor 3C polypeptide 1|TF3C-alpha|TFIIIC 220 kDa subunit|TFIIIC box B-binding subunit|general transcription factor IIIC, polypeptide 1 (alpha subunit)|general transcription factor IIIC, polypeptide 1, alpha 220kDa|transcription factor IIIC 220 kDa subunit|transcription factor IIIC subunit alpha 175 0.02395 11.38 1 1 +2976 GTF3C2 general transcription factor IIIC subunit 2 2 protein-coding TFIIIC-BETA|TFIIIC110 general transcription factor 3C polypeptide 2|TF3C-beta|TFIIIC 110 kDa subunit|general transcription factor IIIC, polypeptide 2, beta 110kDa|transcription factor IIIC 110 kDa subunit|transcription factor IIIC subunit beta 65 0.008897 10.45 1 1 +2977 GUCY1A2 guanylate cyclase 1 soluble subunit alpha 2 11 protein-coding GC-SA2|GUC1A2 guanylate cyclase soluble subunit alpha-2|GCS-alpha-2|guanylate cyclase 1, soluble, alpha 2 96 0.01314 4.379 1 1 +2978 GUCA1A guanylate cyclase activator 1A 6 protein-coding C6orf131|COD3|CORD14|GCAP|GCAP1|GUCA|GUCA1 guanylyl cyclase-activating protein 1|cone dystrophy 3|guanylate cyclase-activating protein, photoreceptor 1|guanylin 1, retina 19 0.002601 1.525 1 1 +2979 GUCA1B guanylate cyclase activator 1B 6 protein-coding GCAP2|GUCA2|RP48 guanylyl cyclase-activating protein 2|GCAP 2|guanylate cyclase activator 1B (retina)|guanylate cyclase-activating protein, photoreceptor 2 13 0.001779 4.364 1 1 +2980 GUCA2A guanylate cyclase activator 2A 1 protein-coding GCAP-I|GUCA2|STARA guanylin|guanylate cyclase activator 2A (guanylin 2, intestinal, heat-stable)|guanylate cyclase activator 2A (guanylin)|guanylate cyclase-activating protein 1|guanylate cyclase-activating protein I|prepro-guanylin 1 0.0001369 0.8301 1 1 +2981 GUCA2B guanylate cyclase activator 2B 1 protein-coding GCAP-II|UGN guanylate cyclase activator 2B|guanylate cyclase activator 2B (uroguanylin)|prepro-uroguanylin|uroguanylin 9 0.001232 0.6941 1 1 +2982 GUCY1A3 guanylate cyclase 1 soluble subunit alpha 4 protein-coding GC-SA3|GUC1A3|GUCA3|GUCSA3|GUCY1A1|MYMY6 guanylate cyclase soluble subunit alpha-3|GC-S-alpha-1|GCS-alpha-3|guanylate cyclase 1, soluble, alpha 3|soluble guanylate cyclase large subunit 96 0.01314 9.057 1 1 +2983 GUCY1B3 guanylate cyclase 1 soluble subunit beta 4 protein-coding GC-S-beta-1|GC-SB3|GUC1B3|GUCB3|GUCSB3|GUCY1B1 guanylate cyclase soluble subunit beta-1|GCS-beta-1|GCS-beta-3|guanylate cyclase 1, soluble, beta 3|guanylate cyclase soluble subunit beta-3|soluble guanylate cyclase small subunit 52 0.007117 8.17 1 1 +2984 GUCY2C guanylate cyclase 2C 12 protein-coding DIAR6|GUC2C|MECIL|MUCIL|STAR heat-stable enterotoxin receptor|GC-C|STA receptor|guanylyl cyclase C|hSTAR|intestinal guanylate cyclase 91 0.01246 2.462 1 1 +2986 GUCY2F guanylate cyclase 2F, retinal X protein-coding CYGF|GC-F|GUC2DL|GUC2F|RETGC-2|ROS-GC2 retinal guanylyl cyclase 2|guanylate cyclase 2D-like, membrane (retina-specific)|guanylate cyclase F|rod outer segment membrane guanylate cyclase 2 96 0.01314 0.1983 1 1 +2987 GUK1 guanylate kinase 1 1 protein-coding GMK guanylate kinase|ATP:GMP phosphotransferase|GMP kinase 25 0.003422 11.73 1 1 +2990 GUSB glucuronidase beta 7 protein-coding BG|MPS7 beta-glucuronidase|beta-D-glucuronidase|beta-G1 55 0.007528 10.76 1 1 +2992 GYG1 glycogenin 1 3 protein-coding GSD15|GYG glycogenin-1|GN-1|glycogenin glucosyltransferase 25 0.003422 9.914 1 1 +2993 GYPA glycophorin A (MNS blood group) 4 protein-coding CD235a|GPA|GPErik|GPSAT|HGpMiV|HGpMiXI|HGpSta(C)|MN|MNS|PAS-2 glycophorin-A|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|recombinant glycophorin A-B Miltenberger-DR|sialoglycoprotein alpha 28 0.003832 0.2478 1 1 +2994 GYPB glycophorin B (MNS blood group) 4 protein-coding CD235b|GPB|GYP|MNS|PAS-3|SS glycophorin-B|GYPB/GYPA fusion|SS-active sialoglycoprotein|Ss blood group|glycophorin B/glycophorin A fusion protein|glycophorin Hop|hybrid glycophorin Kip|sialoglycoprotein delta 16 0.00219 0.04635 1 1 +2995 GYPC glycophorin C (Gerbich blood group) 2 protein-coding CD236|CD236R|GE|GPC|GPD|GYPD|PAS-2|PAS-2' glycophorin-C|glycoconnectin|glycophorin-D|glycoprotein beta|sialoglycoprotein D 23 0.003148 8.482 1 1 +2996 GYPE glycophorin E (MNS blood group) 4 protein-coding GPE|MNS|MiIX glycophorin-E 19 0.002601 2.222 1 1 +2997 GYS1 glycogen synthase 1 19 protein-coding GSY|GYS glycogen [starch] synthase, muscle|glycogen synthase 1 (muscle) 55 0.007528 10.36 1 1 +2998 GYS2 glycogen synthase 2 12 protein-coding - glycogen [starch] synthase, liver|glycogen synthase 2 (liver) 68 0.009307 1.484 1 1 +2999 GZMH granzyme H 14 protein-coding CCP-X|CGL-2|CSP-C|CTLA1|CTSGL2 granzyme H|cathepsin G-like 2, protein h-CCPX|cytotoxic T-lymphocyte proteinase|cytotoxic T-lymphocyte-associated serine esterase 1|cytotoxin serine protease-C|granzyme H (cathepsin G-like 2, protein h-CCPX) 23 0.003148 4.595 1 1 +3000 GUCY2D guanylate cyclase 2D, retinal 17 protein-coding CORD5|CORD6|CYGD|GUC1A4|GUC2D|LCA|LCA1|RCD2|RETGC-1|ROS-GC1|ROSGC|retGC retinal guanylyl cyclase 1|ROS-GC|cone rod dystrophy 6|guanylate cyclase 2D, membrane (retina-specific)|retinal guanylate cyclase 1|rod outer segment membrane guanylate cyclase 68 0.009307 1.91 1 1 +3001 GZMA granzyme A 5 protein-coding CTLA3|HFSP granzyme A|CTL tryptase|Cytotoxic T-lymphocyte-associated serine esterase-3|Granzyme A (Cytotoxic T-lymphocyte-associated serine esterase-3; Hanukah factor serine protease)|HF|Hanukah factor serine protease)|cytotoxic T-lymphocyte proteinase 1|fragmentin-1|granzyme 1|granzyme A (granzyme 1, cytotoxic T-lymphocyte-associated serine esterase 3)|h factor 33 0.004517 5.965 1 1 +3002 GZMB granzyme B 14 protein-coding C11|CCPI|CGL-1|CGL1|CSP-B|CSPB|CTLA1|CTSGL1|HLP|SECT granzyme B|T-cell serine protease 1-3E|cathepsin G-like 1|cytotoxic T-lymphocyte proteinase 2|cytotoxic serine protease B|fragmentin 2|granzyme B (granzyme 2, cytotoxic T-lymphocyte-associated serine esterase 1)|human lymphocyte protein 29 0.003969 5.392 1 1 +3003 GZMK granzyme K 5 protein-coding TRYP2 granzyme K|NK-Tryp-2|NK-tryptase-2|fragmentin-3|granzyme 3|granzyme K (granzyme 3; tryptase II)|granzyme K (serine protease, granzyme 3; tryptase II)|tryptase II 31 0.004243 5.246 1 1 +3004 GZMM granzyme M 19 protein-coding LMET1|MET1 granzyme M|HU-Met-1|Met-1 serine protease|granzyme M (lymphocyte met-ase 1)|lymphocyte met-ase 1|met-ase|natural killer cell granular protease 11 0.001506 4.097 1 1 +3005 H1F0 H1 histone family member 0 22 protein-coding H10|H1FV histone H1.0|H1.0, H1(0), H1-0|histone H1'|histone H1(0) 12 0.001642 12.27 1 1 +3006 HIST1H1C histone cluster 1 H1 family member c 6 protein-coding H1.2|H1C|H1F2|H1s-1 histone H1.2|H1 histone family, member 2|histone 1, H1c|histone H1c|histone H1d|histone H1s-1|histone cluster 1, H1c 55 0.007528 9.393 1 1 +3007 HIST1H1D histone cluster 1 H1 family member d 6 protein-coding H1.3|H1D|H1F3|H1s-2 histone H1.3|H1 histone family, member 3|histone 1, H1d|histone H1c|histone H1s-2|histone cluster 1, H1d 27 0.003696 2.043 1 1 +3008 HIST1H1E histone cluster 1 H1 family member e 6 protein-coding H1.4|H1E|H1F4|H1s-4|dJ221C16.5 histone H1.4|H1 histone family, member 4|histone 1, H1e|histone H1b|histone H1s-4|histone cluster 1, H1e 62 0.008486 2.846 1 1 +3009 HIST1H1B histone cluster 1 H1 family member b 6 protein-coding H1|H1.5|H1B|H1F5|H1s-3 histone H1.5|H1 histone family, member 5|histone 1, H1b|histone H1a|histone H1b|histone H1s-3|histone cluster 1, H1b 57 0.007802 1.545 1 1 +3010 HIST1H1T histone cluster 1 H1 family member t 6 protein-coding H1.6|H1FT|H1t|dJ221C16.2 histone H1t|H1 histone family, member T (testis-specific)|histone 1, H1t|histone cluster 1, H1t|testicular H1 histone 26 0.003559 0.5086 1 1 +3012 HIST1H2AE histone cluster 1 H2A family member e 6 protein-coding H2A.1|H2A.2|H2A/a|H2AFA histone H2A type 1-B/E|H2A histone family, member A|histone 1, H2ae|histone H2A/a|histone H2AE|histone cluster 1, H2ae 31 0.004243 5.01 1 1 +3013 HIST1H2AD histone cluster 1 H2A family member d 6 protein-coding H2A.3|H2A/g|H2AFG histone H2A type 1-D|H2A histone family, member G|histone 1, H2ad|histone H2A.3|histone H2A/g|histone H2AD|histone cluster 1, H2ad 21 0.002874 1.357 1 1 +3014 H2AFX H2A histone family member X 11 protein-coding H2A.X|H2A/X|H2AX histone H2AX|H2AX histone|histone H2A.x 13 0.001779 9.928 1 1 +3015 H2AFZ H2A histone family member Z 4 protein-coding H2A.Z-1|H2A.z|H2A/z|H2AZ histone H2A.Z|H2AZ histone 18 0.002464 11.68 1 1 +3017 HIST1H2BD histone cluster 1 H2B family member d 6 protein-coding H2B.1B|H2B/b|H2BFB|HIRIP2|dJ221C16.6 histone H2B type 1-D|H2B histone family, member B|HIRA-interacting protein 2|histone 1, H2bd|histone H2B.1 B|histone H2B.b|histone cluster 1, H2bd 28 0.003832 8.111 1 1 +3018 HIST1H2BB histone cluster 1 H2B family member b 6 protein-coding H2B.1|H2B/f|H2BFF histone H2B type 1-B|H2B histone family, member F|histone 1, H2bb|histone H2B.1|histone H2B.f|histone cluster 1, H2bb 20 0.002737 0.273 1 1 +3020 H3F3A H3 histone family member 3A 1 protein-coding H3.3A|H3F3 histone H3.3|H3 histone, family 3A 15 0.002053 12.06 1 1 +3021 H3F3B H3 histone family member 3B 17 protein-coding H3.3B histone H3.3|H3 histone, family 3B (H3.3B) 22 0.003011 13.55 1 1 +3024 HIST1H1A histone cluster 1 H1 family member a 6 protein-coding H1.1|H1A|H1F1|HIST1 histone H1.1|H1 histone family, member 1|histone 1, H1a|histone H1a|histone cluster 1, H1a 21 0.002874 0.2777 1 1 +3026 HABP2 hyaluronan binding protein 2 10 protein-coding FSAP|HABP|HGFAL|NMTC5|PHBP hyaluronan-binding protein 2|factor VII activating protein|factor VII-activating protease|factor seven-activating protease|hepatocyte growth factor activator-like protein|hyaluronic acid binding protein 2|plasma hyaluronan binding protein 38 0.005201 3.696 1 1 +3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 X protein-coding 17b-HSD10|ABAD|CAMR|DUPXp11.22|ERAB|HADH2|HCD2|MHBD|MRPP2|MRX17|MRX31|MRXS10|SCHAD|SDR5C1 3-hydroxyacyl-CoA dehydrogenase type-2|3-hydroxy-2-methylbutyryl-CoA dehydrogenase|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 type dehydrogenase/reductase XH98G2 11 0.001506 10.59 1 1 +3029 HAGH hydroxyacylglutathione hydrolase 16 protein-coding GLO2|GLX2|GLXII|HAGH1 hydroxyacylglutathione hydrolase, mitochondrial|glx II|glyoxalase II|hydroxyacylglutathione hydroxylase 19 0.002601 9.616 1 1 +3030 HADHA hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit 2 protein-coding ECHA|GBP|HADH|LCEH|LCHAD|MTPA|TP-ALPHA trifunctional enzyme subunit alpha, mitochondrial|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 41 0.005612 12.2 1 1 +3032 HADHB hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit 2 protein-coding ECHB|MSTP029|MTPB|TP-BETA trifunctional enzyme subunit beta, mitochondrial|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 dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), beta subunit 41 0.005612 11.38 1 1 +3033 HADH hydroxyacyl-CoA dehydrogenase 4 protein-coding HAD|HADH1|HADHSC|HCDH|HHF4|MSCHAD|SCHAD hydroxyacyl-coenzyme A dehydrogenase, mitochondrial|L-3-hydroxyacyl-Coenzyme A dehydrogenase, short chain|medium and short-chain L-3-hydroxyacyl-coenzyme A dehydrogenase|short-chain 3-hydroxyacyl-CoA dehydrogenase|testis secretory sperm-binding protein Li 203a 28 0.003832 10.28 1 1 +3034 HAL histidine ammonia-lyase 12 protein-coding HIS|HSTD histidine ammonia-lyase|histidase 50 0.006844 2.647 1 1 +3035 HARS histidyl-tRNA synthetase 5 protein-coding CMT2W|HRS|USH3B histidine--tRNA ligase, cytoplasmic|HisRS|histidine translase 33 0.004517 10.36 1 1 +3036 HAS1 hyaluronan synthase 1 19 protein-coding HAS hyaluronan synthase 1|HA synthase 1|hyaluronate synthase 1|hyaluronic acid synthase 1 56 0.007665 2.666 1 1 +3037 HAS2 hyaluronan synthase 2 8 protein-coding - hyaluronan synthase 2|HA synthase 2|hyaluronate synthase 2|hyaluronic acid synthase 2 69 0.009444 5.567 1 1 +3038 HAS3 hyaluronan synthase 3 16 protein-coding - hyaluronan synthase 3|HA synthase 3|hyaluronate synthase 3|hyaluronic acid synthase 3 36 0.004927 7.285 1 1 +3039 HBA1 hemoglobin subunit alpha 1 16 protein-coding HBA-T3|HBH hemoglobin subunit alpha|alpha one globin|alpha-2 globin chain|delta globin|hemoglobin alpha 1 globin chain|hemoglobin, alpha 1 2 0.0002737 5.368 1 1 +3040 HBA2 hemoglobin subunit alpha 2 16 protein-coding HBA-T2|HBH hemoglobin subunit alpha|alpha globin|alpha-2 globin|hemoglobin alpha chain|hemoglobin, alpha 2|mutant hemoglobin alpha 2 globin chain 7 0.0009581 7.949 1 1 +3042 HBM hemoglobin subunit mu 16 protein-coding HBAP2|HBK hemoglobin subunit mu|alpha globin pseudogene 2|hemoglobin mu chain|hemoglobin, alpha pseudogene 2|hemoglobin, mu|mu-globin 3 0.0004106 0.1929 1 1 +3043 HBB hemoglobin subunit beta 11 protein-coding CD113t-C|beta-globin hemoglobin subunit beta|beta globin chain|hemoglobin, beta 16 0.00219 7.716 1 1 +3044 HBBP1 hemoglobin subunit beta pseudogene 1 11 pseudo HBH1|HBHP beta globin pseudogene|hemoglobin, beta pseudogene 1 11 0.001506 0.0728 1 1 +3045 HBD hemoglobin subunit delta 11 protein-coding - hemoglobin subunit delta|delta globin|delta-globin chain|hemoglobin delta chain|hemoglobin, delta 30 0.004106 0.6781 1 1 +3046 HBE1 hemoglobin subunit epsilon 1 11 protein-coding HBE hemoglobin subunit epsilon|epsilon globin|hemoglobin epsilon chain|hemoglobin, epsilon 1 21 0.002874 0.8595 1 1 +3047 HBG1 hemoglobin subunit gamma 1 11 protein-coding HBG-T2|HBGA|HBGR|HSGGL1|PRO2979 hemoglobin subunit gamma-1|A-gamma globin|gamma A hemoglobin|gamma globin|gamma-1-globin|hb F Agamma|hemoglobin gamma-1 chain|hemoglobin gamma-a chain|hemoglobin, gamma A|hemoglobin, gamma, regulator of 10 0.001369 0.8686 1 1 +3048 HBG2 hemoglobin subunit gamma 2 11 protein-coding HBG-T1|TNCY hemoglobin subunit gamma-2|G-gamma globin Paulinia|abnormal hemoglobin|gamma-2-globin|hb F Ggamma|hemoglobin gamma-2 chain|hemoglobin gamma-G chain|hemoglobin, gamma G|methemoglobin 34 0.004654 0.802 1 1 +3049 HBQ1 hemoglobin subunit theta 1 16 protein-coding HBQ hemoglobin subunit theta-1|hemoglobin theta-1 chain|hemoglobin, theta 1|theta-1-globin 8 0.001095 0.8833 1 1 +3050 HBZ hemoglobin subunit zeta 16 protein-coding HBZ-T1|HBZ1 hemoglobin subunit zeta|HBAZ|hemoglobin zeta chain|hemoglobin, zeta|zeta-globin 0 0 0.2952 1 1 +3052 HCCS holocytochrome c synthase X protein-coding CCHL|LSDMCA1|MCOPS7|MLS cytochrome c-type heme lyase|cytochrome c heme-lyase|holocytochrome c-type synthase|microphthalamia with linear skin defects 28 0.003832 8.921 1 1 +3053 SERPIND1 serpin family D member 1 22 protein-coding D22S673|HC2|HCF2|HCII|HLS2|LS2|THPH10 heparin cofactor 2|leuserpin 2|protease inhibitor leuserpin-2|serine (or cysteine) proteinase inhibitor, clade D (heparin cofactor), member 1|serpin D1|serpin peptidase inhibitor, clade D (heparin cofactor), member 1 39 0.005338 2.668 1 1 +3054 HCFC1 host cell factor C1 X protein-coding CFF|HCF|HCF-1|HCF1|HFC1|MRX3|PPP1R89|VCAF host cell factor 1|VP16-accessory protein|protein phosphatase 1, regulatory subunit 89 117 0.01601 11.17 1 1 +3055 HCK HCK proto-oncogene, Src family tyrosine kinase 20 protein-coding JTK9|p59Hck|p61Hck tyrosine-protein kinase HCK|hematopoietic cell kinase|hemopoietic cell kinase|p59-HCK/p60-HCK 58 0.007939 8.073 1 1 +3059 HCLS1 hematopoietic cell-specific Lyn substrate 1 3 protein-coding CTTNL|HS1|lckBP1|p75 hematopoietic lineage cell-specific protein 63 0.008623 9.332 1 1 +3060 HCRT hypocretin neuropeptide precursor 17 protein-coding NRCLP1|OX|PPOX orexin|hypocretin (orexin) neuropeptide|prepro-orexin 7 0.0009581 0.2537 1 1 +3061 HCRTR1 hypocretin receptor 1 1 protein-coding OX1R orexin receptor type 1|hypocretin (orexin) receptor 1|hypocretin receptor type 1|orexin receptor 1|ox-1-R|ox1-R 23 0.003148 0.6799 1 1 +3062 HCRTR2 hypocretin receptor 2 6 protein-coding OX2R orexin receptor type 2|hypocretin (orexin) receptor 2|hypocretin receptor type 2|orexin type-2 receptor|ox-2-R|ox2-R 94 0.01287 0.5105 1 1 +3064 HTT huntingtin 4 protein-coding HD|IT15 huntingtin|huntington disease protein 183 0.02505 11.01 1 1 +3065 HDAC1 histone deacetylase 1 1 protein-coding GON-10|HD1|RPD3|RPD3L1 histone deacetylase 1|reduced potassium dependency, yeast homolog-like 1 28 0.003832 11.31 1 1 +3066 HDAC2 histone deacetylase 2 6 protein-coding HD2|RPD3|YAF1 histone deacetylase 2|YY1-associated factor 1|transcriptional regulator homolog RPD3 47 0.006433 10.91 1 1 +3067 HDC histidine decarboxylase 15 protein-coding - histidine decarboxylase 63 0.008623 3.398 1 1 +3068 HDGF hepatoma-derived growth factor 1 protein-coding HMG1L2 hepatoma-derived growth factor|high mobility group protein 1-like 2 28 0.003832 12.75 1 1 +3069 HDLBP high density lipoprotein binding protein 2 protein-coding HBP|PRO2900|VGL vigilin|HDL-binding protein 107 0.01465 13.55 1 1 +3070 HELLS helicase, lymphoid-specific 10 protein-coding ICF4|LSH|Nbla10143|PASG|SMARCA6 lymphoid-specific helicase|SWI/SNF2-related, matrix-associated, actin-dependent regulator of chromatin, subfamily A, member 6|proliferation-associated SNF2-like protein 51 0.006981 6.8 1 1 +3071 NCKAP1L NCK associated protein 1 like 12 protein-coding HEM1 nck-associated protein 1-like|hematopoietic protein 1|membrane-associated protein hem-1 114 0.0156 8.203 1 1 +3073 HEXA hexosaminidase subunit alpha 15 protein-coding TSD beta-hexosaminidase subunit alpha|N-acetyl-beta-glucosaminidase subunit alpha|beta-N-acetylhexosaminidase subunit alpha|hexosaminidase A (alpha polypeptide)|hexosaminidase subunit A 37 0.005064 11.07 1 1 +3074 HEXB hexosaminidase subunit beta 5 protein-coding ENC-1AS|HEL-248|HEL-S-111 beta-hexosaminidase subunit beta|HCC-7|N-acetyl-beta-glucosaminidase subunit beta|beta-N-acetylhexosaminidase subunit beta|beta-hexosaminidase beta-subunit|cervical cancer proto-oncogene 7 protein|epididymis luminal protein 248|epididymis secretory protein Li 111|hexosaminidase B (beta polypeptide)|hexosaminidase subunit B 22 0.003011 11.12 1 1 +3075 CFH complement factor H 1 protein-coding AHUS1|AMBP1|ARMD4|ARMS1|CFHL3|FH|FHL1|HF|HF1|HF2|HUS complement factor H|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 179 0.0245 10.09 1 1 +3077 HFE hemochromatosis 6 protein-coding HFE1|HH|HLA-H|MVCD7|TFQTL2 hereditary hemochromatosis protein|MHC class I-like protein HFE|hereditary hemochromatosis protein HLA-H|high Fe 32 0.00438 6.781 1 1 +3078 CFHR1 complement factor H related 1 1 protein-coding CFHL|CFHL1|CFHL1P|CFHR1P|FHR1|H36-1|H36-2|HFL1|HFL2 complement factor H-related protein 1|FHR-1|H factor (complement)-like 1|H factor (complement)-like 2|H-factor-like 1|H36|complement factor H-related 1 pseudogene|h factor-like protein 1 38 0.005201 1.51 1 1 +3080 CFHR2 complement factor H related 2 1 protein-coding CFHL2|FHR2|HFL3 complement factor H-related protein 2|DDESK59|FHR-2|H factor (complement)-like 3|factor H-related gene 2|h factor-like 3|h factor-like protein 2 51 0.006981 0.7293 1 1 +3081 HGD homogentisate 1,2-dioxygenase 3 protein-coding AKU|HGO homogentisate 1,2-dioxygenase|homogentisate oxidase|homogentisate oxygenase|homogentisic acid oxidase|homogentisicase 43 0.005886 5.021 1 1 +3082 HGF hepatocyte growth factor 7 protein-coding DFNB39|F-TCF|HGFB|HPTA|SF hepatocyte growth factor|fibroblast-derived tumor cytotoxic factor|hepatocyte growth factor (hepapoietin A; scatter factor)|hepatopoietin-A|lung fibroblast-derived mitogen 129 0.01766 4.924 1 1 +3083 HGFAC HGF activator 4 protein-coding HGFA hepatocyte growth factor activator 59 0.008076 2.023 1 1 +3084 NRG1 neuregulin 1 8 protein-coding ARIA|GGF|GGF2|HGL|HRG|HRG1|HRGA|MST131|MSTP131|NDF|NRG1-IT2|SMDF pro-neuregulin-1, membrane-bound isoform|acetylcholine receptor-inducing activity|glial growth factor 2|heregulin, alpha (45kD, ERBB2 p185-activator)|neu differentiation factor|pro-NRG1|sensory and motor neuron derived factor 117 0.01601 4.87 1 1 +3087 HHEX hematopoietically expressed homeobox 10 protein-coding HEX|HMPH|HOX11L-PEN|PRH|PRHX hematopoietically-expressed homeobox protein HHEX|homeobox protein HEX|homeobox protein PRH|homeobox, hematopoietically expressed|proline-rich homeodomain-containing transcription factor 13 0.001779 7.284 1 1 +3090 HIC1 HIC ZBTB transcriptional repressor 1 17 protein-coding ZBTB29|ZNF901|hic-1 hypermethylated in cancer 1 protein|zinc finger and BTB domain-containing protein 29 16 0.00219 6.97 1 1 +3091 HIF1A hypoxia inducible factor 1 alpha subunit 14 protein-coding HIF-1-alpha|HIF-1A|HIF-1alpha|HIF1|HIF1-ALPHA|MOP1|PASD8|bHLHe78 hypoxia-inducible factor 1-alpha|ARNT interacting protein|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 subunit (basic helix-loop-helix transcription factor)|hypoxia-inducible factor 1 alpha isoform I.3|hypoxia-inducible factor1alpha|member of PAS protein 1|member of PAS superfamily 1 54 0.007391 11.67 1 1 +3092 HIP1 huntingtin interacting protein 1 7 protein-coding HIP-I|ILWEQ|SHON|SHONbeta|SHONgamma huntingtin-interacting protein 1|huntingtin-interacting protein I 97 0.01328 9.693 1 1 +3093 UBE2K ubiquitin conjugating enzyme E2 K 4 protein-coding E2-25K|HIP2|HYPG|LIG|UBC1 ubiquitin-conjugating enzyme E2 K|E2 ubiquitin-conjugating enzyme K|E2(25K)|HIP-2|huntingtin-interacting protein 2|ubiquitin carrier protein|ubiquitin conjugating enzyme E2K|ubiquitin-conjugating enzyme E2(25K)|ubiquitin-conjugating enzyme E2-25 KDA|ubiquitin-conjugating enzyme E2K (UBC1 homolog, yeast)|ubiquitin-protein ligase 16 0.00219 10.86 1 1 +3094 HINT1 histidine triad nucleotide binding protein 1 5 protein-coding HINT|NMAN|PKCI-1|PRKCNH1 histidine triad nucleotide-binding protein 1|adenosine 5'-monophosphoramidase|protein kinase C inhibitor 1|protein kinase C-interacting protein 1 3 0.0004106 11.89 1 1 +3096 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 6 protein-coding CIRIP|CRYBP1|GAAP|MBP-1|PRDII-BF1|Schnurri-1|ZAS1|ZNF40|ZNF40A zinc finger protein 40|cirhin interaction protein|gate keeper of apoptosis-activating protein|major histocompatibility complex binding protein 1|positive regulatory domain II binding factor 1 159 0.02176 9.143 1 1 +3097 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 6 protein-coding HIV-EP2|MBP-2|MIBP1|MRD43|SHN2|ZAS2|ZNF40B transcription factor HIVEP2|MHC binding protein-2|Schnurri-2|c-myc intron binding protein 1 137 0.01875 9.662 1 1 +3098 HK1 hexokinase 1 10 protein-coding HK|HK1-ta|HK1-tb|HK1-tc|HKD|HKI|HMSNR|HXK1|hexokinase hexokinase-1|HK I|brain form hexokinase|glycolytic enzyme|hexokinase I|hexokinase IR|hexokinase type I 69 0.009444 11.47 1 1 +3099 HK2 hexokinase 2 2 protein-coding HKII|HXK2 hexokinase-2|HK II|hexokinase type II|hexokinase-2, muscle|muscle form hexokinase 71 0.009718 10.22 1 1 +3101 HK3 hexokinase 3 5 protein-coding HKIII|HXK3 hexokinase-3|ATP:D-hexose 6-phosphotransferase|HK III|hexokinase 3 (white cell)|hexokinase type III 91 0.01246 5.807 1 1 +3104 ZBTB48 zinc finger and BTB domain containing 48 1 protein-coding HKR3|ZNF855|pp9964 zinc finger and BTB domain-containing protein 48|GLI-Kruppel family member HKR3|krueppel-related zinc finger protein 3|zinc finger protein 855 30 0.004106 8.545 1 1 +3105 HLA-A major histocompatibility complex, class I, A 6 protein-coding HLAA HLA class I histocompatibility antigen, A-1 alpha chain|MHC class I antigen HLA-A heavy chain|leukocyte antigen class I-A 146 0.01998 14.39 1 1 +3106 HLA-B major histocompatibility complex, class I, B 6 protein-coding AS|B-4901|HLAB major histocompatibility complex, class I, B|HLA class I antigen HLA-B|HLA class I histocompatibility antigen, B alpha chain|MHC HLA-B cell surface glycoprotein|MHC HLA-B transmembrane glycoprotein|MHC class 1 antigen|MHC class I antigen HLA-B alpha chain|MHC class I antigen HLA-B heavy chain|MHC class I antigen SHCHA|MHC class I molecule|leukocyte antigen class I-B 91 0.01246 14.65 1 1 +3107 HLA-C major histocompatibility complex, class I, C 6 protein-coding D6S204|HLA-JY3|HLAC|HLC-C|MHC|PSORS1 HLA class I histocompatibility antigen, Cw-1 alpha chain|HLA class I histocompatibility antigen, C alpha chain|HLA-C alpha chain|HLA-C antigen|MHC class I antigen heavy chain HLA-C|human leukocyte antigen-C alpha chain|major histocompatibility antigen HLA-C 83 0.01136 14.16 1 1 +3108 HLA-DMA major histocompatibility complex, class II, DM alpha 6 protein-coding D6S222E|DMA|HLADM|RING6 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 17 0.002327 10.06 1 1 +3109 HLA-DMB major histocompatibility complex, class II, DM beta 6 protein-coding D6S221E|RING7 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 30 0.004106 9.759 1 1 +3110 MNX1 motor neuron and pancreas homeobox 1 7 protein-coding HB9|HLXB9|HOXHB9|SCRA1 motor neuron and pancreas homeobox protein 1|homeobox HB9|homeobox protein HB9 25 0.003422 3.184 1 1 +3111 HLA-DOA major histocompatibility complex, class II, DO alpha 6 protein-coding HLA-DNA|HLA-DZA|HLADZ 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 21 0.002874 8.575 1 1 +3112 HLA-DOB major histocompatibility complex, class II, DO beta 6 protein-coding DOB HLA class II histocompatibility antigen, DO beta chain|MHC class II antigen DOB 2 0.0002737 5.24 1 1 +3113 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 6 protein-coding DP(W3)|DP(W4)|HLA-DP1A|HLADP|HLASB|PLT1 HLA class II histocompatibility antigen, DP alpha 1 chain|HLA-SB alpha chain|MHC class II DP3-alpha|MHC class II HLA-DPA1 antigen 21 0.002874 11.82 1 1 +3115 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 6 protein-coding DPB1|HLA-DP|HLA-DP1B|HLA-DPB 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-1|MHC class II antigen DPB1 27 0.003696 11.24 1 1 +3116 HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) 6 pseudo DP2B|DPB2|DPbeta2|HLA-DP2B - 5 0.0006844 2.492 1 1 +3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 6 protein-coding CELIAC1|DQ-A1|HLA-DQA HLA class II histocompatibility antigen, DQ alpha 1 chain|DC-1 alpha chain|DC-alpha|HLA-DCA|MHC HLA-DQ alpha|MHC class II DQA1|MHC class II HLA-DQ-alpha-1 15 0.002053 9.793 1 1 +3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 6 protein-coding DX-ALPHA|HLA-DXA HLA class II histocompatibility antigen, DQ alpha 2 chain|DX alpha chain|HLA class II histocompatibility antigen, DQ(6) alpha chain|MHC class II DQA2 23 0.003148 7.42 1 1 +3119 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 6 protein-coding CELIAC1|HLA-DQB|IDDM1 HLA class II histocompatibility antigen, DQ beta 1 chain|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 19 0.002601 10.28 1 1 +3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 6 protein-coding HLA-DQB1|HLA-DXB HLA class II histocompatibility antigen, DQ beta 2 chain|DV19.1 (major histocompatibility complex, class II, DQ beta 2 (HLA-DXB))|HLA class II histocompatibility antigen, DX beta chain|MHC class II antigen DQB2 53 0.007254 6.194 1 1 +3122 HLA-DRA major histocompatibility complex, class II, DR alpha 6 protein-coding HLA-DRA1 HLA class II histocompatibility antigen, DR alpha chain|MHC class II antigen DRA|histocompatibility antigen HLA-DR alpha 32 0.00438 13.1 1 1 +3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 6 protein-coding DRB1|HLA-DR1B|HLA-DRB|SS1 major histocompatibility complex, class II, DR beta 1|HLA class II histocompatibility antigen, DR-1 beta chain|MHC class II HLA-DR beta 1 chain|human leucocyte antigen DRB1|lymphocyte antigen DRB1 35 0.004791 11.59 1 1 +3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 6 protein-coding - major histocompatibility complex, class II, DR beta 5|DR beta-5|HLA class II histocompatibility antigen, DR-5 beta chain|MHC class II antigen DRB5 20 0.002737 9.782 1 1 +3128 HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) 6 pseudo - MHC class II antigen 115 0.01574 7.529 1 1 +3131 HLF HLF, PAR bZIP transcription factor 17 protein-coding - hepatic leukemia factor|PAR bZIP transcription factor 30 0.004106 7.196 1 1 +3132 HLA-DRB9 major histocompatibility complex, class II, DR beta 9 (pseudogene) 6 pseudo D6S206|D6S206E|HLA-DR1BL|HLA-DRB1L MHC class II antigen 1 0.0001369 1 0 +3133 HLA-E major histocompatibility complex, class I, E 6 protein-coding HLA-6.2|QA1 HLA class I histocompatibility antigen, alpha chain E|MHC class I antigen E 24 0.003285 12.95 1 1 +3134 HLA-F major histocompatibility complex, class I, F 6 protein-coding CDA12|HLA-5.4|HLA-CDA12|HLAF HLA class I histocompatibility antigen, alpha chain F|HLA F antigen|MHC class I antigen F|leukocyte antigen F 39 0.005338 10.37 1 1 +3135 HLA-G major histocompatibility complex, class I, G 6 protein-coding MHC-G HLA class I histocompatibility antigen, alpha chain G|HLA G antigen|HLA-G histocompatibility antigen, class I, G|MHC class I antigen G|b2 microglobulin 34 0.004654 6.302 1 1 +3136 HLA-H major histocompatibility complex, class I, H (pseudogene) 6 pseudo HLAHP - 10.93 0 1 +3137 HLA-J major histocompatibility complex, class I, J (pseudogene) 6 pseudo CDA12|D6S203|HLA-59|HLA-CDA12 - 15 0.002053 3.511 1 1 +3139 HLA-L major histocompatibility complex, class I, L (pseudogene) 6 pseudo HLA-92|HLA92|HLAL - 4 0.0005475 5.085 1 1 +3140 MR1 major histocompatibility complex, class I-related 1 protein-coding HLALS major histocompatibility complex class I-related gene protein|MHC class I-like antigen MR-1|MHC class-I related-gene protein|major histocompatibility complex, class I-like sequence 29 0.003969 7.555 1 1 +3141 HLCS holocarboxylase synthetase 21 protein-coding HCS biotin--protein ligase|biotin apo-protein ligase|biotin--[acetyl-CoA-carboxylase] ligase|biotin--[methylcrotonoyl-CoA-carboxylase] ligase|biotin--[methylmalonyl-CoA-carboxytransferase] ligase|holocarboxylase synthetase (biotin-(proprionyl-CoA-carboxylase (ATP-hydrolysing)) ligase)|holocarboxylase synthetase (biotin-(proprionyl-Coenzyme A-carboxylase (ATP-hydrolysing)) ligase) 48 0.00657 9.168 1 1 +3142 HLX H2.0 like homeobox 1 protein-coding HB24|HLX1 H2.0-like homeobox protein|H2.0-like homeo box-1|H2.0-like homeobox 1|homeobox protein HB24|homeobox protein HLX1 61 0.008349 7.156 1 1 +3145 HMBS hydroxymethylbilane synthase 11 protein-coding PBG-D|PBGD|PORC|UPS porphobilinogen deaminase|porphyria, acute; Chester type|pre-uroporphyrinogen synthase|uroporphyrinogen I synthase|uroporphyrinogen I synthetase 24 0.003285 8.849 1 1 +3146 HMGB1 high mobility group box 1 13 protein-coding HMG-1|HMG1|HMG3|SBP-1 high mobility group protein B1|Amphoterin|Sulfoglucuronyl carbohydrate binding protein|high-mobility group (nonhistone chromosomal) protein 1 22 0.003011 12.36 1 1 +3148 HMGB2 high mobility group box 2 4 protein-coding HMG2 high mobility group protein B2|HMG-2|high mobility group protein 2|high-mobility group (nonhistone chromosomal) protein 2 24 0.003285 10.88 1 1 +3149 HMGB3 high mobility group box 3 X protein-coding HMG-2a|HMG-4|HMG2A|HMG4 high mobility group protein B3|high mobility group protein 2a|high-mobility group (nonhistone chromosomal) protein 4 17 0.002327 10.04 1 1 +3150 HMGN1 high mobility group nucleosome binding domain 1 21 protein-coding HMG14 non-histone chromosomal protein HMG-14|high mobility group nucleosome-binding domain-containing protein 1|high-mobility group (nonhistone chromosomal) protein 14|high-mobility group nucleosome binding 1|nonhistone chromosomal protein HMG-14 11 0.001506 11.4 1 1 +3151 HMGN2 high mobility group nucleosomal binding domain 2 1 protein-coding HMG17 non-histone chromosomal protein HMG-17|high mobility group nucleosome-binding domain-containing protein 2|high mobility group protein N2|high-mobility group (nonhistone chromosomal) protein 17|nonhistone chromosomal protein HMG-17 12 0.001642 12.44 1 1 +3155 HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase 1 protein-coding HL hydroxymethylglutaryl-CoA lyase, mitochondrial|3-hydroxy-3-methylglutarate-CoA lyase|3-hydroxy-3-methylglutaryl-CoA lyase|3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase|HMG-CoA lyase|hydroxymethylglutaricaciduria|mitochondrial 3-hydroxy-3-methylglutaryl-CoA lyase 16 0.00219 9.847 1 1 +3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase 5 protein-coding LDLCQ3 3-hydroxy-3-methylglutaryl-Coenzyme A reductase|3-hydroxy-3-methylglutaryl CoA reductase (NADPH)|HMG-CoA reductase|hydroxymethylglutaryl-CoA reductase 46 0.006296 10.23 1 1 +3157 HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 5 protein-coding HMGCS hydroxymethylglutaryl-CoA synthase, cytoplasmic|3-hydroxy-3-methylglutaryl coenzyme A (HMG-CoA) synthase|3-hydroxy-3-methylglutaryl-CoA synthase 1 (soluble)|3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 (soluble) 36 0.004927 10.6 1 1 +3158 HMGCS2 3-hydroxy-3-methylglutaryl-CoA synthase 2 1 protein-coding - hydroxymethylglutaryl-CoA synthase, mitochondrial|3-hydroxy-3-methylglutaryl-CoA synthase 2 (mitochondrial)|3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 (mitochondrial)|HMG-CoA synthase|testicular tissue protein Li 88 40 0.005475 4.599 1 1 +3159 HMGA1 high mobility group AT-hook 1 6 protein-coding HMG-R|HMGA1A|HMGIY high mobility group protein HMG-I/HMG-Y|high mobility group protein A1|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 9 0.001232 11.35 1 1 +3161 HMMR hyaluronan mediated motility receptor 5 protein-coding CD168|IHABP|RHAMM hyaluronan mediated motility receptor|hyaluronan-mediated motility receptor (RHAMM)|intracellular hyaluronic acid-binding protein|receptor for hyaluronan-mediated motility 46 0.006296 7.341 1 1 +3162 HMOX1 heme oxygenase 1 22 protein-coding HMOX1D|HO-1|HSP32|bK286B10 heme oxygenase 1|heat shock protein, 32-kD|heme oxygenase (decycling) 1 26 0.003559 9.682 1 1 +3163 HMOX2 heme oxygenase 2 16 protein-coding HO-2 heme oxygenase 2|heme oxygenase (decycling) 2 11 0.001506 10.15 1 1 +3164 NR4A1 nuclear receptor subfamily 4 group A member 1 12 protein-coding GFRP1|HMR|N10|NAK-1|NGFIB|NP10|NUR77|TR3 nuclear receptor subfamily 4 group A member 1|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|orphan nuclear receptor HMR|orphan nuclear receptor TR3|steroid receptor TR3|testicular receptor 3 35 0.004791 10.45 1 1 +3166 HMX1 H6 family homeobox 1 4 protein-coding H6|NKX5-3 homeobox protein HMX1|H6 homeodomain protein|homeobox protein H6 3 0.0004106 1.344 1 1 +3167 HMX2 H6 family homeobox 2 10 protein-coding H6L|Nkx5-2 homeobox protein HMX2|homeo box (H6 family) 2|homeobox protein H6 family member 2 21 0.002874 0.8633 1 1 +3169 FOXA1 forkhead box A1 14 protein-coding HNF3A|TCF3A hepatocyte nuclear factor 3-alpha|HNF-3-alpha|HNF-3A|TCF-3A|forkhead box protein A1|transcription factor 3A 68 0.009307 6.733 1 1 +3170 FOXA2 forkhead box A2 20 protein-coding HNF3B|TCF3B hepatocyte nuclear factor 3-beta|HNF-3-beta|HNF-3B|TCF-3B|forkhead box protein A2|hepatic nuclear factor-3-beta|transcription factor 3B 31 0.004243 3.614 1 1 +3171 FOXA3 forkhead box A3 19 protein-coding FKHH3|HNF3G|TCF3G hepatocyte nuclear factor 3-gamma|HNF-3-gamma|HNF-3G|TCF-3G|fork head-related protein FKH H3|forkhead box protein A3|transcription factor 3G 29 0.003969 3.947 1 1 +3172 HNF4A hepatocyte nuclear factor 4 alpha 20 protein-coding FRTS4|HNF4|HNF4a7|HNF4a8|HNF4a9|HNF4alpha|MODY|MODY1|NR2A1|NR2A21|TCF|TCF14 hepatocyte nuclear factor 4-alpha|HNF4alpha10/11/12|TCF-14|hepatic nuclear factor 4 alpha|nuclear receptor subfamily 2 group A member 1|transcription factor 14|transcription factor HNF-4 71 0.009718 3.288 1 1 +3174 HNF4G hepatocyte nuclear factor 4 gamma 8 protein-coding NR2A2|NR2A3 hepatocyte nuclear factor 4-gamma|HNF-4-gamma|nuclear receptor subfamily 2 group A member 2 52 0.007117 4.829 1 1 +3175 ONECUT1 one cut homeobox 1 15 protein-coding HNF-6|HNF6|HNF6A hepatocyte nuclear factor 6|hepatocyte nuclear factor 6, alpha|one cut domain family member 1 42 0.005749 1.194 1 1 +3176 HNMT histamine N-methyltransferase 2 protein-coding HMT|HNMT-S1|HNMT-S2|MRT51 histamine N-methyltransferase 19 0.002601 9.128 1 1 +3177 SLC29A2 solute carrier family 29 member 2 11 protein-coding DER12|ENT2|HNP36 equilibrative nucleoside transporter 2|36 kDa nucleolar protein HNP36|delayed-early response protein 12|equilibrative NBMPR-insensitive nucleoside transporter|equilibrative nitrobenzylmercaptopurine riboside-insensitive nucleoside transporter|hydrophobic nucleolar protein, 36 kDa|hydrophobic nucleolar protein, 36kD|nucleoside transporter, ei-type|solute carrier family 29 (equilibrative nucleoside transporter), member 2|solute carrier family 29 (nucleoside transporters), member 2 27 0.003696 7.598 1 1 +3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 12 protein-coding ALS19|ALS20|HNRPA1|HNRPA1L3|IBMPFD3|UP 1|hnRNP A1|hnRNP-A1 heterogeneous nuclear ribonucleoprotein A1|helix-destabilizing protein|heterogeneous nuclear ribonucleoprotein A1B protein|heterogeneous nuclear ribonucleoprotein B2 protein|heterogeneous nuclear ribonucleoprotein core protein A1|hnRNP core protein A1-like 3|nuclear ribonucleoprotein particle A1 protein|putative heterogeneous nuclear ribonucleoprotein A1-like 3|single-strand DNA-binding protein UP1|single-strand RNA-binding protein 38 0.005201 12.6 1 1 +3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 7 protein-coding HNRNPA2|HNRNPB1|HNRPA2|HNRPA2B1|HNRPB1|IBMPFD2|RNPA2|SNRPB1 heterogeneous nuclear ribonucleoproteins A2/B1|hnRNP A2 / hnRNP B1|nuclear ribonucleoprotein particle A2 protein 50 0.006844 13.78 1 1 +3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B 5 protein-coding ABBP1|HNRPAB heterogeneous nuclear ribonucleoprotein A/B|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 21 0.002874 11.66 1 1 +3183 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) 14 protein-coding C1|C2|HNRNP|HNRPC|SNRPC heterogeneous nuclear ribonucleoproteins C1/C2|hnRNP C1/C2|nuclear ribonucleoprotein particle C1 protein|nuclear ribonucleoprotein particle C2 protein 29 0.003969 13.14 1 1 +3184 HNRNPD heterogeneous nuclear ribonucleoprotein D 4 protein-coding AUF1|AUF1A|HNRPD|P37|hnRNPD0 heterogeneous nuclear ribonucleoprotein D0|ARE-binding protein AUFI, type A|AU-rich element RNA binding protein 1, 37kDa|heterogeneous nuclear ribonucleoprotein D (AU-rich element RNA binding protein 1, 37kDa)|hnRNP D0 31 0.004243 11.94 1 1 +3185 HNRNPF heterogeneous nuclear ribonucleoprotein F 10 protein-coding HNRPF|OK/SW-cl.23|mcs94-1 heterogeneous nuclear ribonucleoprotein F|HnRNP F protein|nucleolin-like protein mcs94-1 35 0.004791 12.07 1 1 +3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 (H) 5 protein-coding HNRPH|HNRPH1|hnRNPH heterogeneous nuclear ribonucleoprotein H 38 0.005201 11.95 1 1 +3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 (H') X protein-coding FTP3|HNRPH'|HNRPH2|hnRNPH' heterogeneous nuclear ribonucleoprotein H2|FTP-3|heterogeneous nuclear ribonucleoprotein H-prime|hnRNP H'|hnRNP H2 35 0.004791 11.15 1 1 +3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 10 protein-coding 2H9|HNRPH3 heterogeneous nuclear ribonucleoprotein H3|heterogeneous nuclear ribonucleoprotein 2H9|heterogeneous nuclear ribonucleoprotein H3 (2H9)|hnRNP 2H9|hnRNP H3 23 0.003148 11.18 1 1 +3190 HNRNPK heterogeneous nuclear ribonucleoprotein K 9 protein-coding AUKS|CSBP|HNRPK|TUNP heterogeneous nuclear ribonucleoprotein K|dC-stretch binding protein|transformation upregulated nuclear protein 39 0.005338 13.45 1 1 +3191 HNRNPL heterogeneous nuclear ribonucleoprotein L 19 protein-coding HNRPL|P/OKcl.14|hnRNP-L heterogeneous nuclear ribonucleoprotein L|hnRNP L 65 0.008897 12.32 1 1 +3192 HNRNPU heterogeneous nuclear ribonucleoprotein U 1 protein-coding HNRNPU-AS1|HNRPU|SAF-A|SAFA|U21.1|hnRNP U heterogeneous nuclear ribonucleoprotein U|HNRNPU antisense RNA 1|heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A)|p120 nuclear protein|pp120 51 0.006981 13.25 1 1 +3195 TLX1 T-cell leukemia homeobox 1 10 protein-coding HOX11|TCL3 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 19 0.002601 2.325 1 1 +3196 TLX2 T-cell leukemia homeobox 2 2 protein-coding HOX11L1|NCX T-cell leukemia homeobox protein 2|homeo box 11-like 1|homeobox protein Hox-11L1|neural crest homeobox protein 9 0.001232 1.413 1 1 +3198 HOXA1 homeobox A1 7 protein-coding BSAS|HOX1|HOX1F homeobox protein Hox-A1|HOX A1 homeodomain protein|Hox 1.6-like protein|homeo box A1|homeobox 1F|homeobox protein Hox-1F|lab-like protein 50 0.006844 4.452 1 1 +3199 HOXA2 homeobox A2 7 protein-coding HOX1K|MCOHI homeobox protein Hox-A2|homeobox protein Hox-1K 43 0.005886 3.376 1 1 +3200 HOXA3 homeobox A3 7 protein-coding HOX1|HOX1E homeobox protein Hox-A3|Hox-1.5-like protein|homeo box 1E|homeo box A3|homeobox protein Hox-1E 55 0.007528 5.777 1 1 +3201 HOXA4 homeobox A4 7 protein-coding HOX1|HOX1D homeobox protein Hox-A4|Dfd-like protein|Hox-1.4-like protein|homeo box A4|homeobox protein Hox-1.4|homeobox protein Hox-1D 24 0.003285 5.113 1 1 +3202 HOXA5 homeobox A5 7 protein-coding HOX1|HOX1.3|HOX1C homeobox protein Hox-A5|homeo box 1C|homeo box A5|homeobox protein HOXA5|homeobox protein Hox-1C 27 0.003696 4.749 1 1 +3203 HOXA6 homeobox A6 7 protein-coding HOX1|HOX1.2|HOX1B homeobox protein Hox-A6|homeo box 1B|homeo box A6|homeobox protein HOXA6|homeobox protein Hox-1B 21 0.002874 2.488 1 1 +3204 HOXA7 homeobox A7 7 protein-coding ANTP|HOX1|HOX1.1|HOX1A homeobox protein Hox-A7|homeo box A7|homeobox protein HOX-1A|homeobox protein Hox 1.1 30 0.004106 5.492 1 1 +3205 HOXA9 homeobox A9 7 protein-coding ABD-B|HOX1|HOX1.7|HOX1G homeobox protein Hox-A9|homeobox protein Hox-1G|homeodomain protein HOXA9 25 0.003422 4.637 1 1 +3206 HOXA10 homeobox A10 7 protein-coding HOX1|HOX1.8|HOX1H|PL homeobox protein Hox-A10|homeo box A10|homeobox protein 1H|homeobox protein HOXA10|homeobox protein Hox-1.8|homeobox protein Hox-1H 24 0.003285 6.373 1 1 +3207 HOXA11 homeobox A11 7 protein-coding HOX1|HOX1I|RUSAT1 homeobox protein Hox-A11|homeo box 1I|homeobox protein HOXA11|homeobox protein Hox-1I 27 0.003696 4.095 1 1 +3208 HPCA hippocalcin 1 protein-coding BDR2|DYT2 neuron-specific calcium-binding protein hippocalcin|calcium-binding protein BDR-2 9 0.001232 3.359 1 1 +3209 HOXA13 homeobox A13 7 protein-coding HOX1|HOX1J homeobox protein Hox-A13|homeo box 1J|homeo box A13|homeobox protein HOXA13|homeobox protein Hox-1J|transcription factor HOXA13 23 0.003148 3.382 1 1 +3211 HOXB1 homeobox B1 17 protein-coding HCFP3|HOX2|HOX2I|Hox-2.9 homeobox protein Hox-B1|homeobox protein Hox-2I 43 0.005886 0.3922 1 1 +3212 HOXB2 homeobox B2 17 protein-coding HOX2|HOX2H|Hox-2.8|K8 homeobox protein Hox-B2|K8 home protein|homeo box 2H|homeo box B2|homeobox protein Hox-2.8|homeobox protein Hox-2H 34 0.004654 6.904 1 1 +3213 HOXB3 homeobox B3 17 protein-coding HOX2|HOX2G|Hox-2.7 homeobox protein Hox-B3|homeo box 2G|homeobox protein Hox-2.7|homeobox protein Hox-2G 55 0.007528 7.076 1 1 +3214 HOXB4 homeobox B4 17 protein-coding HOX-2.6|HOX2|HOX2F homeobox protein Hox-B4|homeo box 2F|homeo box B4|homeobox protein Hox-2.6|homeobox protein Hox-2F 23 0.003148 5.565 1 1 +3215 HOXB5 homeobox B5 17 protein-coding HHO.C10|HOX2|HOX2A|HU-1|Hox2.1 homeobox protein Hox-B5|homeo box 2A|homeo box B5|homeobox protein HHO.C10|homeobox protein Hox-2A|homeobox protein Hu-1 23 0.003148 4.849 1 1 +3216 HOXB6 homeobox B6 17 protein-coding HOX2|HOX2B|HU-2|Hox-2.2 homeobox protein Hox-B6|homeo box 2B|homeo box B6|homeobox protein Hox-2.2|homeobox protein Hox-2B|homeobox protein Hu-2 20 0.002737 5.663 1 1 +3217 HOXB7 homeobox B7 17 protein-coding HHO.C1|HOX2|HOX2C|Hox-2.3 homeobox protein Hox-B7|homeo box 2C|homeo box B7|homeo box c1 protein|homeobox protein HHO.C1|homeobox protein Hox-2C 16 0.00219 6.708 1 1 +3218 HOXB8 homeobox B8 17 protein-coding HOX2|HOX2D|Hox-2.4 homeobox protein Hox-B8|homeo box 2D|homeo box B8|homeobox protein Hox-2.4|homeobox protein Hox-2D 23 0.003148 3.651 1 1 +3219 HOXB9 homeobox B9 17 protein-coding HOX-2.5|HOX2|HOX2E homeobox protein Hox-B9|homeo box 2E|homeo box B9|homeobox protein Hox-2.5|homeobox protein Hox-2E 18 0.002464 4.365 1 1 +3221 HOXC4 homeobox C4 12 protein-coding HOX3|HOX3E|cp19 homeobox protein Hox-C4|homeo box 3E|homeobox protein CP19|homeobox protein Hox-3E 28 0.003832 5.418 1 1 +3222 HOXC5 homeobox C5 12 protein-coding CP11|HOX3|HOX3D homeobox protein Hox-C5|homeo box C5|homeobox protein CP11|homeobox protein Hox-3D 18 0.002464 3.672 1 1 +3223 HOXC6 homeobox C6 12 protein-coding CP25|HHO.C8|HOX3|HOX3C homeobox protein Hox-C6|homeo box 3C|homeo box C8 protein|homeobox protein CP25|homeobox protein HHO.C8|homeobox protein Hox-3C 23 0.003148 5.424 1 1 +3224 HOXC8 homeobox C8 12 protein-coding HOX3|HOX3A homeobox protein Hox-C8|Hox-3.1, mouse, homolog of|homeo box 3A|homeo box C8|homeobox protein Hox-3A 18 0.002464 3.986 1 1 +3225 HOXC9 homeobox C9 12 protein-coding HOX3|HOX3B homeobox protein Hox-C9|homeo box C9|homeobox protein Hox-3B 19 0.002601 4.432 1 1 +3226 HOXC10 homeobox C10 12 protein-coding HOX3I homeobox protein Hox-C10|homeo box C10|homeobox protein Hox-3I|homeoprotein C10 37 0.005064 4.75 1 1 +3227 HOXC11 homeobox C11 12 protein-coding HOX3H homeobox protein Hox-C11|homeo box C11|homeobox protein Hox-3H 27 0.003696 3.252 1 1 +3228 HOXC12 homeobox C12 12 protein-coding HOC3F|HOX3|HOX3F homeobox protein Hox-C12|homeo box 3F|homeo box C12|homeobox protein Hox-3F 16 0.00219 0.5148 1 1 +3229 HOXC13 homeobox C13 12 protein-coding ECTD9|HOX3|HOX3G homeobox protein Hox-C13|NUP98/HOXC13|homeo box 3G|homeobox protein Hox-3G 31 0.004243 3.439 1 1 +3231 HOXD1 homeobox D1 2 protein-coding HOX4|HOX4G|Hox-4.7 homeobox protein Hox-D1|homeo box 4G|homeo box D1|homeobox protein Hox-GG 19 0.002601 4.425 1 1 +3232 HOXD3 homeobox D3 2 protein-coding HOX1D|HOX4|HOX4A|Hox-4.1 homeobox protein Hox-D3|Hox-4.1, mouse, homolog of|homeo box D3|homeobox protein Hox-4A 35 0.004791 3.812 1 1 +3233 HOXD4 homeobox D4 2 protein-coding HHO.C13|HOX-5.1|HOX4|HOX4B|Hox-4.2 homeobox protein Hox-D4|Hox-4.2, mouse, homolog of homeo box X|homeobox protein HHO.C13|homeobox protein Hox-4B|homeobox protein Hox-5.1 34 0.004654 3.528 1 1 +3234 HOXD8 homeobox D8 2 protein-coding HOX4|HOX4E|HOX5.4 homeobox protein Hox-D8|Hox-4.5|homeo box 4E|homeo box D8|homeobox protein 5.4|homeobox protein Hox-4E|homeobox protein Hox-5.4 30 0.004106 6.079 1 1 +3235 HOXD9 homeobox D9 2 protein-coding HOX4|HOX4C|Hox-4.3|Hox-5.2 homeobox protein Hox-D9|Hox-4.3, mouse, homolog of|homeo box D9|homeobox protein Hox-4C|homeobox protein Hox-5.2 24 0.003285 5.821 1 1 +3236 HOXD10 homeobox D10 2 protein-coding HOX4|HOX4D|HOX4E|Hox-4.4 homeobox protein Hox-D10|homeo box 4D|homeo box D10|homeobox protein Hox-4D|homeobox protein Hox-4E 43 0.005886 4.093 1 1 +3237 HOXD11 homeobox D11 2 protein-coding HOX4|HOX4F homeobox protein Hox-D11|Hox-4.6, mouse, homolog of|homeo box 4F|homeo box D11|homeobox protein Hox-4F 17 0.002327 2.81 1 1 +3238 HOXD12 homeobox D12 2 protein-coding HOX4H homeobox protein Hox-D12|Hox-4.7, mouse, homolog of|homeo box D12|homeobox protein Hox-4H 26 0.003559 0.279 1 1 +3239 HOXD13 homeobox D13 2 protein-coding BDE|BDSD|HOX4I|SPD|SPD1 homeobox protein Hox-D13|homeo box 4I|homeo box D13|homeobox protein Hox-4I 24 0.003285 2.592 1 1 +3240 HP haptoglobin 16 protein-coding BP|HP2ALPHA2|HPA1S haptoglobin|binding peptide|haptoglobin alpha(1S)-beta|haptoglobin alpha(2FS)-beta|haptoglobin, alpha polypeptide|haptoglobin, beta polypeptide|zonulin 19 0.002601 4.75 1 1 +3241 HPCAL1 hippocalcin like 1 2 protein-coding BDR1|HLP2|VILIP-3 hippocalcin-like protein 1|calcium-binding protein BDR-1|visinin-like protein 3 14 0.001916 9.9 1 1 +3242 HPD 4-hydroxyphenylpyruvate dioxygenase 12 protein-coding 4-HPPD|4HPPD|GLOD3|HPPDASE|PPD 4-hydroxyphenylpyruvate dioxygenase|4-hydroxyphenylpyruvic acid oxidase|glyoxalase domain containing 3 28 0.003832 2.659 1 1 +3248 HPGD hydroxyprostaglandin dehydrogenase 15-(NAD) 4 protein-coding 15-PGDH|PGDH|PGDH1|PHOAR1|SDR36C1 15-hydroxyprostaglandin dehydrogenase [NAD(+)]|NAD+-dependent 15-hydroxyprostaglandin dehydrogenase|prostaglandin dehydrogenase 1|short chain dehydrogenase/reductase family 36C member 1 19 0.002601 7.119 1 1 +3249 HPN hepsin 19 protein-coding TMPRSS1 serine protease hepsin|testicular tissue protein Li 85|transmembrane protease serine 1 28 0.003832 6.901 1 1 +3250 HPR haptoglobin-related protein 16 protein-coding A-259H10.2|HP haptoglobin-related protein|Haptoglobin-related locus 38 0.005201 2.049 1 1 +3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 X protein-coding HGPRT|HPRT hypoxanthine-guanine phosphoribosyltransferase|HGPRTase|hypoxanthine-guanine phosphoribosyltransferase 1|testicular tissue protein Li 89 8 0.001095 9.424 1 1 +3257 HPS1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 10 protein-coding BLOC3S1|HPS Hermansky-Pudlak syndrome 1 protein 46 0.006296 10.22 1 1 +3262 HPVC1 human papillomavirus (type 18) E5 central sequence-like 1 7 ncRNA HPV18E5L|PE5L - 0.0505 0 1 +3263 HPX hemopexin 11 protein-coding HX hemopexin|beta-1B-glycoprotein 39 0.005338 4.133 1 1 +3265 HRAS HRas proto-oncogene, GTPase 11 protein-coding C-BAS/HAS|C-H-RAS|C-HA-RAS1|CTLO|H-RASIDX|HAMSV|HRAS1|RASH1|p21ras GTPase HRas|GTP- and GDP-binding peptide B|Ha-Ras1 proto-oncoprotein|Harvey rat sarcoma viral oncogene homolog|Harvey rat sarcoma viral oncoprotein|Ras family small GTP binding protein H-Ras|c-has/bas p21 protein|c-ras-Ki-2 activated oncogene|p19 H-RasIDX protein|transformation gene: oncogene HAMSV|transforming protein p21|v-Ha-ras Harvey rat sarcoma viral oncogene homolog 112 0.01533 9.413 1 1 +3266 ERAS ES cell expressed Ras X protein-coding HRAS2|HRASP GTPase ERas|E-Ras|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 19 0.002601 1.259 1 1 +3267 AGFG1 ArfGAP with FG repeats 1 2 protein-coding HRB|RAB|RIP arf-GAP domain and FG repeat-containing protein 1|HIV-1 Rev-binding protein|Rab, Rev/Rex activation domain-binding protein|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 32 0.00438 10.61 1 1 +3268 AGFG2 ArfGAP with FG repeats 2 7 protein-coding HRBL|RABR arf-GAP domain and FG repeat-containing protein 2|HIV-1 Rev-binding protein-like protein|Rev/Rex activation domain binding protein-related|arf-GAP domain and FG repeats-containing protein 2|nucleoporin|rev/Rex activation domain-binding protein related 40 0.005475 9.224 1 1 +3269 HRH1 histamine receptor H1 3 protein-coding H1-R|H1R|HH1R|hisH1 histamine H1 receptor|histamine receptor, subclass H1 41 0.005612 7.676 1 1 +3270 HRC histidine rich calcium binding protein 19 protein-coding - sarcoplasmic reticulum histidine-rich calcium-binding protein 69 0.009444 4.194 1 1 +3273 HRG histidine rich glycoprotein 3 protein-coding HPRG|HRGP|THPH11 histidine-rich glycoprotein|histidine-proline-rich glycoprotein 56 0.007665 1.386 1 1 +3274 HRH2 histamine receptor H2 5 protein-coding H2R histamine H2 receptor|HH2R|gastric receptor 1|gastric receptor I 47 0.006433 3.943 1 1 +3275 PRMT2 protein arginine methyltransferase 2 21 protein-coding HRMT1L1 protein arginine N-methyltransferase 2|HMT1 (hnRNP methyltransferase, S. cerevisiae)-like 1|HMT1 hnRNP methyltransferase-like 1|PRMT2 alpha|PRMT2 beta|PRMT2 gamma|histone-arginine N-methyltransferase PRMT2 37 0.005064 10.76 1 1 +3276 PRMT1 protein arginine methyltransferase 1 19 protein-coding ANM1|HCP1|HRMT1L2|IR1B4 protein arginine N-methyltransferase 1|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 23 0.003148 11.26 1 1 +3280 HES1 hes family bHLH transcription factor 1 3 protein-coding HES-1|HHL|HRY|bHLHb39 transcription factor HES-1|class B basic helix-loop-helix protein 39|hairy homolog|hairy-like protein 21 0.002874 9.949 1 1 +3281 HSBP1 heat shock factor binding protein 1 16 protein-coding NPC-A-13 heat shock factor-binding protein 1|nasopharyngeal carcinoma-associated antigen 13 4 0.0005475 11.28 1 1 +3283 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 1 protein-coding 3BETAHSD|HSD3B|HSDB3|HSDB3A|I|SDR11E1 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|progesterone reductase|short chain dehydrogenase/reductase family 11E, member 1|steroid Delta-isomerase|trophoblast antigen FDO161G 42 0.005749 0.6667 1 1 +3284 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 1 protein-coding HSD3B|HSDB|SDR11E2 3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 2|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 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 40 0.005475 1.283 1 1 +3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 1 protein-coding 11-DH|11-beta-HSD1|CORTRD2|HDL|HSD11|HSD11B|HSD11L|SDR26C1 corticosteroid 11-beta-dehydrogenase isozyme 1|short chain dehydrogenase/reductase family 26C member 1 28 0.003832 5.221 1 1 +3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 16 protein-coding AME|AME1|HSD11K|HSD2|SDR9C3 corticosteroid 11-beta-dehydrogenase isozyme 2|-HSD11 type II|11-DH2|11-HSD type II|11-beta-HSD type II|11-beta-HSD2|11-beta-hydroxysteroid dehydrogenase type 2|11-beta-hydroxysteroid dehydrogenase type II|NAD-dependent 11-beta-hydroxysteroid dehydrogenase|short chain dehydrogenase/reductase family 9C member 3 14 0.001916 7.2 1 1 +3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 17 protein-coding 17-beta-HSD|20-alpha-HSD|E2DH|EDH17B2|EDHB17|HSD17|SDR28C1 estradiol 17-beta-dehydrogenase 1|17-beta-hydroxysteroid dehydrogenase type 1|20 alpha-hydroxysteroid dehydrogenase|placental 17-beta-hydroxysteroid dehydrogenase|short chain dehydrogenase/reductase family 28C member 1|short chain dehydrogenase/reductase family 28CE, member 1 35 0.004791 6.14 1 1 +3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 9 protein-coding EDH17B3|SDR12C2 testosterone 17-beta-dehydrogenase 3|17-beta-HSD 3|17-beta-HSD3|17-beta-hydroxysteroid dehydrogenase type 3|hydroxysteroid dehydrogenase 3|short chain dehydrogenase/reductase family 12C member 2|testicular 17-beta-hydroxysteroid dehydrogenase 17 0.002327 2.359 1 1 +3294 HSD17B2 hydroxysteroid 17-beta dehydrogenase 2 16 protein-coding EDH17B2|HSD17|SDR9C2 estradiol 17-beta-dehydrogenase 2|17-beta-HSD 2|17-beta-hydroxysteroid dehydrogenase type 2|20 alpha-hydroxysteroid dehydrogenase|20-alpha-HSD|E2DH|microsomal 17-beta-hydroxysteroid dehydrogenase|short chain dehydrogenase/reductase family 9C member 2|testosterone 17-beta-dehydrogenase 28 0.003832 4.256 1 1 +3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 5 protein-coding DBP|MFE-2|MPF-2|PRLTS1|SDR8C1 peroxisomal multifunctional enzyme type 2|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|hydroxysteroid dehydrogenase 4|multifunctional protein 2|peroxisomal multifunctional protein 2|short chain dehydrogenase/reductase family 8C member 1 55 0.007528 11.17 1 1 +3297 HSF1 heat shock transcription factor 1 8 protein-coding HSTF1 heat shock factor protein 1 28 0.003832 11 1 1 +3298 HSF2 heat shock transcription factor 2 6 protein-coding HSF 2|HSTF 2 heat shock factor protein 2 23 0.003148 8.179 1 1 +3299 HSF4 heat shock transcription factor 4 16 protein-coding CTM|CTRCT5 heat shock factor protein 4|HSF 4|HSTF 4|hHSF4 32 0.00438 6.879 1 1 +3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 2 protein-coding CMT2T|DSMA5|HSJ-1|HSJ1|HSPF3 dnaJ homolog subfamily B member 2|DnaJ (Hsp40) 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 25 0.003422 11.08 1 1 +3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 9 protein-coding DJ-2|DjA1|HDJ2|HSDJ|HSJ-2|HSJ2|HSPF4|NEDD7|hDJ-2 dnaJ homolog subfamily A member 1|DnaJ (Hsp40) 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 25 0.003422 11.61 1 1 +3303 HSPA1A heat shock protein family A (Hsp70) member 1A 6 protein-coding HEL-S-103|HSP70-1|HSP70-1A|HSP70.1|HSP70I|HSP72|HSPA1 heat shock 70 kDa protein 1A|HSP70-1/HSP70-2|HSP70.1/HSP70.2|dnaK-type molecular chaperone HSP70-1|epididymis secretory protein Li 103|heat shock 70 kDa protein 1|heat shock 70 kDa protein 1/2|heat shock 70 kDa protein 1A/1B|heat shock 70kD protein 1A|heat shock 70kDa protein 1A|heat shock-induced protein 6 0.0008212 13.27 1 1 +3304 HSPA1B heat shock protein family A (Hsp70) member 1B 6 protein-coding HSP70-1B|HSP70-2|HSP70.2 heat shock 70 kDa protein 1B|HSP70-1/HSP70-2|HSP70.1/HSP70.2|heat shock 70 kDa protein 1/2|heat shock 70 kDa protein 1A/1B|heat shock 70 kDa protein 2|heat shock 70kD protein 1B|heat shock 70kDa protein 1B 8 0.001095 10.87 1 1 +3305 HSPA1L heat shock protein family A (Hsp70) member 1 like 6 protein-coding HSP70-1L|HSP70-HOM|HSP70T|hum70t heat shock 70 kDa protein 1-like|heat shock 10kDa protein 1-like|heat shock 70 kDa protein 1-Hom|heat shock 70 kDa protein 1L|heat shock 70kD protein-like 1|heat shock 70kDa protein 1-like 59 0.008076 5.862 1 1 +3306 HSPA2 heat shock protein family A (Hsp70) member 2 14 protein-coding HSP70-2|HSP70-3 heat shock-related 70 kDa protein 2|heat shock 70kD protein 2|heat shock 70kDa protein 2 49 0.006707 8.722 1 1 +3308 HSPA4 heat shock protein family A (Hsp70) member 4 5 protein-coding APG-2|HEL-S-5a|HS24/P52|HSPH2|RY|hsp70|hsp70RY heat shock 70 kDa protein 4|epididymis secretory sperm binding protein Li 5a|heat shock 70-related protein APG-2|heat shock 70kD protein 4|heat shock 70kDa protein 4|heat shock protein, 110 kDa|hsp70 RY 37 0.005064 11.23 1 1 +3309 HSPA5 heat shock protein family A (Hsp70) member 5 9 protein-coding BIP|GRP78|HEL-S-89n|MIF2 78 kDa glucose-regulated protein|endoplasmic reticulum lumenal Ca(2+)-binding protein grp78|epididymis secretory sperm binding protein Li 89n|glucose-regulated protein, 78kDa|heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa)|immunoglobulin heavy chain-binding protein 39 0.005338 13.91 1 1 +3310 HSPA6 heat shock protein family A (Hsp70) member 6 1 protein-coding HSP70B' heat shock 70 kDa protein 6|heat shock 70 kDa protein B'|heat shock 70kD protein 6 (HSP70B')|heat shock 70kDa protein 6 (HSP70B') 47 0.006433 7.371 1 1 +3311 HSPA7 heat shock protein family A (Hsp70) member 7 1 pseudo HSP70B heat shock 70kD protein 7 (HSP70B)|heat shock 70kDa protein 7 (HSP70B) 5.949 0 1 +3312 HSPA8 heat shock protein family A (Hsp70) member 8 11 protein-coding HEL-33|HEL-S-72p|HSC54|HSC70|HSC71|HSP71|HSP73|HSPA10|LAP-1|LAP1|NIP71 heat shock cognate 71 kDa protein|LPS-associated protein 1|N-myristoyltransferase inhibitor protein 71|constitutive heat shock protein 70|epididymis luminal protein 33|epididymis secretory sperm binding protein Li 72p|heat shock 70kDa protein 8|heat shock 70kd protein 10|heat shock cognate protein 54|lipopolysaccharide-associated protein 1 69 0.009444 14.4 1 1 +3313 HSPA9 heat shock protein family A (Hsp70) member 9 5 protein-coding CRP40|CSA|EVPLS|GRP-75|GRP75|HEL-S-124m|HSPA9B|MOT|MOT2|MTHSP75|PBP74|SAAN|SIDBA4 stress-70 protein, mitochondrial|75 kDa glucose-regulated protein|catecholamine-regulated protein 40|epididymis secretory sperm binding protein Li 124m|heat shock 70kD protein 9B|heat shock 70kDa protein 9 (mortalin)|mortalin, perinuclear|mortalin-2|mortalin2|p66-mortalin|peptide-binding protein 74 33 0.004517 12.54 1 1 +3314 HSPA8P1 heat shock protein family A (Hsp70) member 8 pseudogene 1 X pseudo HSPAP1 heat shock 70kD protein pseudogene 1|heat shock 70kDa protein 8 pseudogene 1|heat shock 70kDa protein pseudogene 1 1 0.0001369 1 0 +3315 HSPB1 heat shock protein family B (small) member 1 7 protein-coding CMT2F|HEL-S-102|HMN2B|HS.76067|HSP27|HSP28|Hsp25|SRP27 heat shock protein beta-1|28 kDa heat shock protein|epididymis secretory protein Li 102|estrogen-regulated 24 kDa protein|heat shock 27 kDa protein|heat shock 27kD protein 1|heat shock 27kDa protein 1|stress-responsive protein 27 7 0.0009581 13.23 1 1 +3316 HSPB2 heat shock protein family B (small) member 2 11 protein-coding HSP27|Hs.78846|LOH11CR1K|MKBP heat shock protein beta-2|DMPK-binding protein|heat shock 27kDa protein 2|heat-shock protein beta-2 11 0.001506 5.922 1 1 +3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 14 protein-coding EL52|HEL-S-65p|HSP86|HSP89A|HSP90A|HSP90N|HSPC1|HSPCA|HSPCAL1|HSPCAL4|HSPN|Hsp89|Hsp90|LAP-2|LAP2 heat shock protein HSP 90-alpha|HSP 86|LPS-associated protein 2|epididymis luminal secretory protein 52|epididymis secretory sperm binding protein Li 65p|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 90kDa alpha (cytosolic), class A member 1|heat shock protein 90kDa alpha family class A member 1|lipopolysaccharide-associated protein 2|renal carcinoma antigen NY-REN-38 85 0.01163 14.39 1 1 +3321 IGSF3 immunoglobulin superfamily member 3 1 protein-coding EWI-3|LCDD|V8 immunoglobulin superfamily member 3|glu-Trp-Ile EWI motif-containing protein 3|immunoglobin superfamily, member 3 105 0.01437 10.05 1 1 +3323 HSP90AA4P heat shock protein 90 alpha family class A member 4, pseudogene 4 pseudo HSP90Ad|HSPCAL2 heat shock 90kD protein 1, alpha-like 2|heat shock 90kDa protein 1, alpha-like 2|heat shock protein 90Ad|heat shock protein 90kDa alpha (cytosolic), class A member 4, pseudogene|heat shock protein 90kDa alpha family class A member 4, pseudogene 4 0.0005475 1 0 +3326 HSP90AB1 heat shock protein 90 alpha family class B member 1 6 protein-coding D6S182|HSP84|HSP90B|HSPC2|HSPCB heat shock protein HSP 90-beta|HSP90-beta|heat shock 84 kDa|heat shock 90kD protein 1, beta|heat shock protein 90 kDa|heat shock protein 90kDa alpha (cytosolic), class B member 1|heat shock protein 90kDa alpha family class B member 1 62 0.008486 14.77 1 1 +3327 HSP90AB3P heat shock protein 90 alpha family class B member 3, pseudogene 4 pseudo HSP90BC|HSPCP1 heat shock 90kD protein 1, beta pseudogene 1|heat shock 90kDa protein 1, beta pseudogene 1|heat shock protein 90Bc|heat shock protein 90kDa alpha (cytosolic), class B member 3, pseudogene|heat shock protein 90kDa alpha family class B member 3, pseudogene 0 0 1 0 +3329 HSPD1 heat shock protein family D (Hsp60) member 1 2 protein-coding CPN60|GROEL|HLD4|HSP-60|HSP60|HSP65|HuCHA60|SPG13 60 kDa heat shock protein, mitochondrial|60 kDa chaperonin|P60 lymphocyte protein|chaperonin 60|heat shock 60kDa protein 1 (chaperonin)|heat shock protein 65|mitochondrial matrix protein P1|short heat shock protein 60 Hsp60s1 40 0.005475 12.81 1 1 +3336 HSPE1 heat shock protein family E (Hsp10) member 1 2 protein-coding CPN10|EPF|GROES|HSP10 10 kDa heat shock protein, mitochondrial|10 kDa chaperonin|chaperonin 10|early-pregnancy factor|heat shock 10kD protein 1 (chaperonin 10)|heat shock 10kDa protein 1 4 0.0005475 10.96 1 1 +3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 19 protein-coding HSPF1|Hdj1|Hsp40|RSPH16B|Sis1 dnaJ homolog subfamily B member 1|DnaJ (Hsp40) homolog, subfamily B, member 1|dnaJ protein homolog 1|heat shock 40 kDa protein 1|human DnaJ protein 1|radial spoke 16 homolog B 20 0.002737 11.74 1 1 +3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 11 protein-coding DANJC4|HSPF2|MCG18 dnaJ homolog subfamily C member 4|DnaJ (Hsp40) homolog, subfamily C, member 4|dnaJ-like protein HSPF2|heat shock 40kD protein 2|multiple endocrine neoplasia type 1 candidate protein number 18 12 0.001642 9.387 1 1 +3339 HSPG2 heparan sulfate proteoglycan 2 1 protein-coding HSPG|PLC|PRCAN|SJA|SJS|SJS1 basement membrane-specific heparan sulfate proteoglycan core protein|endorepellin (domain V region)|perlecan proteoglycan 237 0.03244 12.45 1 1 +3340 NDST1 N-deacetylase and N-sulfotransferase 1 5 protein-coding HSST|MRT46|NST1 bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 1|HSNST 1|N-Deacetylase-N-sulfotransferase 1|N-HSST 1|N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1|N-deacetylase/N-sulfotransferase 1|N-heparan sulfate sulfotransferase 1|NDST-1|[Heparan sulfate]-glucosamine N-sulfotransferase 1|glucosaminyl N-deacetylase/N-sulfotransferase 1|heparan sulfate-N-deacetylase/N-sulfotransferase|heparan sulfate/heparin GlcNAc N-deacetylase/GlcN N-sulfotransferase 1 44 0.006022 11.31 1 1 +3344 FOXN2 forkhead box N2 2 protein-coding HTLF forkhead box protein N2|human T-cell leukemia virus enhancer factor 37 0.005064 8.723 1 1 +3346 HTN1 histatin 1 4 protein-coding HIS1 histatin-1|PPB|histidine-rich protein 1|post-PB protein 5 0.0006844 0.1775 1 1 +3347 HTN3 histatin 3 4 protein-coding HIS2|HTN2|HTN5 histatin-3|PB|basic histidine-rich protein|histatin-4|histatin-5|histatin-6|histatin-7|histatin-8|histatin-9|histidine-rich protein 3|hst 4 0.0005475 0.1286 1 1 +3350 HTR1A 5-hydroxytryptamine receptor 1A 5 protein-coding 5-HT-1A|5-HT1A|5HT1a|ADRB2RL1|ADRBRL1|G-21|PFMCD 5-hydroxytryptamine receptor 1A|5-HT1a receptor|5-hydroxytryptamine (serotonin) receptor 1A, G protein-coupled|guanine nucleotide-binding regulatory protein-coupled receptor 80 0.01095 0.3476 1 1 +3351 HTR1B 5-hydroxytryptamine receptor 1B 6 protein-coding 5-HT-1B|5-HT-1D-beta|5-HT1B|5-HT1DB|HTR1D2|HTR1DB|S12 5-hydroxytryptamine receptor 1B|5-hydroxytryptamine (serotonin) receptor 1B, G protein-coupled|serotonin 1D beta receptor|serotonin receptor 1B 48 0.00657 1.538 1 1 +3352 HTR1D 5-hydroxytryptamine receptor 1D 1 protein-coding 5-HT1D|HT1DA|HTR1DA|HTRL|RDC4 5-hydroxytryptamine receptor 1D|5-HT-1D|5-HT-1D-alpha|5-hydroxytryptamine (serotonin) receptor 1D, G protein-coupled|serotonin 1D alpha receptor|serotonin receptor 1D 36 0.004927 3.452 1 1 +3354 HTR1E 5-hydroxytryptamine receptor 1E 6 protein-coding 5-HT1E 5-hydroxytryptamine receptor 1E|5-HT-1E|5-hydroxytryptamine (serotonin) receptor 1E, G protein-coupled|S31|serotonin receptor 1E 72 0.009855 0.7369 1 1 +3355 HTR1F 5-hydroxytryptamine receptor 1F 3 protein-coding 5-HT-1F|5-HT1F|5HT6|HTR1EL|MR77 5-hydroxytryptamine receptor 1F|5-hydroxytryptamine (serotonin) receptor 1F, G protein-coupled|serotonin receptor 1F 52 0.007117 2.245 1 1 +3356 HTR2A 5-hydroxytryptamine receptor 2A 13 protein-coding 5-HT2A|HTR2 5-hydroxytryptamine receptor 2A|5-HT2 receptor|5-hydroxytryptamine (serotonin) receptor 2A, G protein-coupled|serotonin 5-HT-2A receptor 45 0.006159 2.075 1 1 +3357 HTR2B 5-hydroxytryptamine receptor 2B 2 protein-coding 5-HT(2B)|5-HT-2B|5-HT2B 5-hydroxytryptamine receptor 2B|5-HT 2B receptor|5-hydroxytryptamine (serotonin) receptor 2B, G protein-coupled|5-hydroxytryptamine 2B receptor|5-hydroxytryptamine receptor 2B variant b|serotonin receptor 2B 32 0.00438 4.319 1 1 +3358 HTR2C 5-hydroxytryptamine receptor 2C X protein-coding 5-HT1C|5-HT2C|5-HTR2C|5HTR2C|HTR1C 5-hydroxytryptamine receptor 2C|5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled|5-hydroxytryptamine receptor 1C|serotonin 5-HT-1C receptor|serotonin 5-HT-2C receptor 65 0.008897 1.505 1 1 +3359 HTR3A 5-hydroxytryptamine receptor 3A 11 protein-coding 5-HT-3|5-HT3A|5-HT3R|5HT3R|HTR3 5-hydroxytryptamine receptor 3A|5-HT3-A|5-hydroxytryptamine (serotonin) receptor 3A, ionotropic|5-hydroxytryptamine receptor 3|5HT3 serotonin receptor|serotonin receptor 3A|serotonin-gated ion channel receptor 60 0.008212 2.28 1 1 +3360 HTR4 5-hydroxytryptamine receptor 4 5 protein-coding 5-HT4|5-HT4R 5-hydroxytryptamine receptor 4|5-hydroxytryptamine (serotonin) receptor 4, G protein-coupled|cardiac 5-HT4 receptor 39 0.005338 0.8914 1 1 +3361 HTR5A 5-hydroxytryptamine receptor 5A 7 protein-coding 5-HT5A 5-hydroxytryptamine receptor 5A|5-HT-5|5-HT-5A|5-hydroxytryptamine (serotonin) receptor 5A, G protein-coupled 72 0.009855 0.4902 1 1 +3362 HTR6 5-hydroxytryptamine receptor 6 1 protein-coding 5-HT6|5-HT6R 5-hydroxytryptamine receptor 6|5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled|serotonin receptor 6 43 0.005886 0.9514 1 1 +3363 HTR7 5-hydroxytryptamine receptor 7 10 protein-coding 5-HT7 5-hydroxytryptamine receptor 7|5-HT-7|5-HT-X|5-hydroxytryptamine (serotonin) receptor 7 (adenylate cyclase-coupled) 58 0.007939 3.646 1 1 +3364 HUS1 HUS1 checkpoint clamp component 7 protein-coding hHUS1 checkpoint protein HUS1|HUS1 checkpoint homolog|hus1+-like protein 20 0.002737 8.365 1 1 +3371 TNC tenascin C 9 protein-coding 150-225|DFNA56|GMEM|GP|HXB|JI|TN|TN-C tenascin|GP 150-225|cytotactin|deafness, autosomal dominant 56|glioma-associated-extracellular matrix antigen|hexabrachion (tenascin)|myotendinous antigen|neuronectin|tenascin-C additional domain 1|tenascin-C isoform 14/AD1/16 174 0.02382 11.08 1 1 +3373 HYAL1 hyaluronoglucosaminidase 1 3 protein-coding HYAL-1|LUCA1|MPS9|NAT6 hyaluronidase-1|luCa-1|lung carcinoma protein 1|plasma hyaluronidase|tumor suppressor LUCA-1 24 0.003285 6.661 1 1 +3375 IAPP islet amyloid polypeptide 12 protein-coding DAP|IAP islet amyloid polypeptide|Islet amyloid polypeptide (diabetes-associated peptide; amylin)|amylin|diabetes-associated peptide|insulinoma amyloid peptide 14 0.001916 0.4955 1 1 +3376 IARS isoleucyl-tRNA synthetase 9 protein-coding GRIDHH|IARS1|ILERS|ILRS|IRS|PRO0785 isoleucine--tRNA ligase, cytoplasmic|isoleucine tRNA ligase 1, cytoplasmic 68 0.009307 11.28 1 1 +3381 IBSP integrin binding sialoprotein 4 protein-coding BNSP|BSP|BSP-II|SP-II bone sialoprotein 2|BSP II|bone sialoprotein II|cell-binding sialoprotein 47 0.006433 2.97 1 1 +3382 ICA1 islet cell autoantigen 1 7 protein-coding ICA69|ICAp69 islet cell autoantigen 1|69 kDa islet cell autoantigen|diabetes mellitus type I autoantigen|islet cell autoantigen 1 isoform|islet cell autoantigen 1, 69kDa|islet cell autoantigen p69|p69|testicular tissue protein Li 162 50 0.006844 8.478 1 1 +3383 ICAM1 intercellular adhesion molecule 1 19 protein-coding BB2|CD54|P3.58 intercellular adhesion molecule 1|ICAM-1|cell surface glycoprotein P3.58|intercellular adhesion molecule 1 (CD54), human rhinovirus receptor|major group rhinovirus receptor 32 0.00438 10.47 1 1 +3384 ICAM2 intercellular adhesion molecule 2 17 protein-coding CD102 intercellular adhesion molecule 2|ICAM-2 14 0.001916 8.047 1 1 +3385 ICAM3 intercellular adhesion molecule 3 19 protein-coding CD50|CDW50|ICAM-R intercellular adhesion molecule 3|ICAM-3 26 0.003559 8.379 1 1 +3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) 19 protein-coding CD242|LW intercellular adhesion molecule 4|CD242 antigen|LW antigen a|Landsteiner-Wiener blood group antigen a|Landsteiner-Wiener blood group glycoprotein|intercellular adhesion molecule 4 (LW blood group) 20 0.002737 3.814 1 1 +3394 IRF8 interferon regulatory factor 8 16 protein-coding H-ICSBP|ICSBP|ICSBP1|IMD32A|IMD32B|IRF-8 interferon regulatory factor 8|interferon consensus sequence binding protein 1 41 0.005612 7.925 1 1 +3396 MRPL58 mitochondrial ribosomal protein L58 17 protein-coding DS-1|DS1|ICT1|MRP-L58 peptidyl-tRNA hydrolase ICT1, mitochondrial|39S ribosomal protein L58, mitochondrial|digestion substraction 1|immature colon carcinoma transcript 1 protein 19 0.002601 8.768 1 1 +3397 ID1 inhibitor of DNA binding 1, HLH protein 20 protein-coding ID|bHLHb24 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 DNA binding 1, dominant negative helix-loop-helix protein|inhibitor of differentiation 1 17 0.002327 9.65 1 1 +3398 ID2 inhibitor of DNA binding 2, HLH protein 2 protein-coding GIG8|ID2A|ID2H|bHLHb26 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 DNA binding 2, dominant negative helix-loop-helix protein|inhibitor of differentiation 2 10 0.001369 10.33 1 1 +3399 ID3 inhibitor of DNA binding 3, HLH protein 1 protein-coding HEIR-1|bHLHb25 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|inhibitor of DNA binding 3, dominant negative helix-loop-helix protein|inhibitor of differentiation 3 12 0.001642 10.03 1 1 +3400 ID4 inhibitor of DNA binding 4, HLH protein 6 protein-coding IDB4|bHLHb27 DNA-binding protein inhibitor ID-4|class B basic helix-loop-helix protein 27|inhibitor of DNA binding 4, dominant negative helix-loop-helix protein|inhibitor of differentiation 4 5 0.0006844 8.367 1 1 +3416 IDE insulin degrading enzyme 10 protein-coding INSULYSIN insulin-degrading enzyme|Abeta-degrading protease|insulin protease|insulinase 62 0.008486 8.747 1 1 +3417 IDH1 isocitrate dehydrogenase (NADP(+)) 1, cytosolic 2 protein-coding HEL-216|HEL-S-26|IDCD|IDH|IDP|IDPC|PICD isocitrate dehydrogenase [NADP] cytoplasmic|NADP(+)-specific ICDH|NADP-dependent isocitrate dehydrogenase, cytosolic|NADP-dependent isocitrate dehydrogenase, peroxisomal|epididymis luminal protein 216|epididymis secretory protein Li 26|isocitrate dehydrogenase 1 (NADP+)|isocitrate dehydrogenase 1 (NADP+), soluble|oxalosuccinate decarboxylase 457 0.06255 11.26 1 1 +3418 IDH2 isocitrate dehydrogenase (NADP(+)) 2, mitochondrial 15 protein-coding D2HGA2|ICD-M|IDH|IDHM|IDP|IDPM|mNADP-IDH isocitrate dehydrogenase [NADP], mitochondrial|NADP(+)-specific ICDH|isocitrate dehydrogenase 2 (NADP+), mitochondrial|oxalosuccinate decarboxylase 47 0.006433 11.36 1 1 +3419 IDH3A isocitrate dehydrogenase 3 (NAD(+)) alpha 15 protein-coding - isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial|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 3 (NAD+) alpha|isocitric dehydrogenase subunit alpha 17 0.002327 10.15 1 1 +3420 IDH3B isocitrate dehydrogenase 3 (NAD(+)) beta 20 protein-coding RP46 isocitrate dehydrogenase [NAD] subunit beta, mitochondrial|NAD(+)-specific ICDH subunit beta|isocitrate dehydrogenase 3 (NAD+) beta|isocitric dehydrogenase subunit beta 27 0.003696 10.56 1 1 +3421 IDH3G isocitrate dehydrogenase 3 (NAD(+)) gamma X protein-coding H-IDHG isocitrate dehydrogenase [NAD] subunit gamma, mitochondrial|IDH-gamma|NAD (H)-specific isocitrate dehydrogenase gamma subunit|NAD(+)-specific ICDH subunit gamma|NAD+-specific ICDH|isocitrate dehydrogenase 3 (NAD+) gamma|isocitrate dehydrogenase 3 gamma|isocitrate dehydrogenase, NAD(+)-specific, mitochondrial, gamma subunit|isocitric dehydrogenase subunit gamma 24 0.003285 10.26 1 1 +3422 IDI1 isopentenyl-diphosphate delta isomerase 1 10 protein-coding IPP1|IPPI1 isopentenyl-diphosphate Delta-isomerase 1|IPP isomerase 1|isopentenyl diphosphate dimethylallyl diphosphate isomerase 1|isopentenyl pyrophosphate isomerase 1 27 0.003696 10.12 1 1 +3423 IDS iduronate 2-sulfatase X protein-coding MPS2|SIDS iduronate 2-sulfatase|alpha-L-iduronate sulfate sulfatase|iduronate 2-sulfatase 14 kDa chain|iduronate 2-sulfatase 42 kDa chain|idursulfase 40 0.005475 11.66 1 1 +3425 IDUA iduronidase, alpha-L- 4 protein-coding IDA|MPS1 alpha-L-iduronidase 34 0.004654 7.844 1 1 +3426 CFI complement factor I 4 protein-coding AHUS3|ARMD13|C3BINA|C3b-INA|FI|IF|KAF complement factor I|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 50 0.006844 8.91 1 1 +3428 IFI16 interferon gamma inducible protein 16 1 protein-coding IFNGIP1|PYHIN2 gamma-interferon-inducible protein 16|interferon-gamma induced protein IFI 16|interferon-inducible myeloid differentiation transcriptional activator 87 0.01191 10.89 1 1 +3429 IFI27 interferon alpha inducible protein 27 14 protein-coding FAM14D|ISG12|ISG12A|P27 interferon alpha-inducible protein 27, mitochondrial|2310061N23Rik|ISG12(a)|interferon alpha-induced 11.5 kDa protein|interferon-stimulated gene 12a protein 9 0.001232 10.93 1 1 +3430 IFI35 interferon induced protein 35 17 protein-coding IFP35 interferon-induced 35 kDa protein|IFP 35|ifi-35 23 0.003148 9.339 1 1 +3431 SP110 SP110 nuclear body protein 2 protein-coding IFI41|IFI75|IPR1|VODI sp110 nuclear body protein|interferon-induced protein 41, 30kD|interferon-induced protein 41/75|interferon-induced protein 75, 52kD|phosphoprotein 41|phosphoprotein 75|speckled 110 kDa|transcriptional coactivator Sp110 44 0.006022 8.803 1 1 +3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 10 protein-coding G10P2|GARG-39|IFI-54|IFI-54K|IFI54|IFIT-2|ISG-54 K|ISG-54K|ISG54|P54|cig42 interferon-induced protein with tetratricopeptide repeats 2|Interferon, alpha-inducible protein (MW 54kD)|interferon-induced 54 kDa protein|interferon-induced protein 54 38 0.005201 8.638 1 1 +3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 10 protein-coding C56|G10P1|IFI-56|IFI-56K|IFI56|IFIT-1|IFNAI1|ISG56|P56|RNM561 interferon-induced protein with tetratricopeptide repeats 1|interferon, alpha-inducible protein (MW 56kD)|interferon-induced 56 kDa protein|interferon-inducible mRNA 561 22 0.003011 9.188 1 1 +3437 IFIT3 interferon induced protein with tetratricopeptide repeats 3 10 protein-coding CIG-49|GARG-49|IFI60|IFIT4|IRG2|ISG60|P60|RIG-G|cig41 interferon-induced protein with tetratricopeptide repeats 3|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 26 0.003559 9.596 1 1 +3439 IFNA1 interferon alpha 1 9 protein-coding IFL|IFN|IFN-ALPHA|IFN-alphaD|IFNA13|IFNA@ interferon alpha-1/13|IFN-alpha 1b|IFN-alpha-1/13|interferon alpha 1b|interferon alpha-D|interferon-alpha1|leIF D 9 0.001232 0.192 1 1 +3440 IFNA2 interferon alpha 2 9 protein-coding IFN-alphaA|IFNA|IFNA2B|INFA2 interferon alpha-2|IFN-alpha-2|alpha-2a interferon|interferon alpha 2a|interferon alpha 2b|interferon alpha A|leIF A 16 0.00219 0.02851 1 1 +3441 IFNA4 interferon alpha 4 9 protein-coding IFN-alpha4a|INFA4 interferon alpha-4|IFN-alpha-4|interferon alpha-4B|interferon alpha-76|interferon alpha-M1 17 0.002327 0.01991 1 1 +3442 IFNA5 interferon alpha 5 9 protein-coding IFN-alpha-5|IFN-alphaG|INA5|INFA5|leIF G interferon alpha-5|interferon alpha-61|interferon alpha-G 18 0.002464 0.08029 1 1 +3443 IFNA6 interferon alpha 6 9 protein-coding IFN-alphaK interferon alpha-6|IFN-alpha-6|interferon alpha-54|interferon alpha-K|leIF K 20 0.002737 0.01678 1 1 +3444 IFNA7 interferon alpha 7 9 protein-coding IFN-alphaJ|IFNA-J interferon alpha-7|IFN-alpha 7|IFN-alpha-J1|interferon alpha-J|interferon alpha-J1|leIF J 21 0.002874 0.01481 1 1 +3445 IFNA8 interferon alpha 8 9 protein-coding IFN-alphaB interferon alpha-8|IFN-alpha-8|interferon alpha type 201|interferon alpha-B|interferon alpha-B'|interferon alpha-B2|leIF B 26 0.003559 0.05872 1 1 +3446 IFNA10 interferon alpha 10 9 protein-coding IFN-alphaC interferon alpha-10|IFN-alpha-10|interferon alpha-6L|interferon alpha-C|leIF C 24 0.003285 0.01915 1 1 +3447 IFNA13 interferon alpha 13 9 protein-coding - interferon alpha-1/13|IFN-alpha-1/13|interferon alpha-D|leIF D 9 0.001232 0.2455 1 1 +3448 IFNA14 interferon alpha 14 9 protein-coding IFN-alphaH|LEIF2H interferon alpha-14|IFN-alpha-14|interferon alpha-H|interferon lambda-2-H|leIF H 17 0.002327 0.02089 1 1 +3449 IFNA16 interferon alpha 16 9 protein-coding IFN-alpha-16|IFN-alphaO interferon alpha-16|IFN-alpha-N-protein|interferon alpha-WA 32 0.00438 0.006866 1 1 +3451 IFNA17 interferon alpha 17 9 protein-coding IFN-alphaI|IFNA|INFA|LEIF2C1 interferon alpha-17|IFN-alpha-17|interferon alpha-88|interferon alpha-I'|interferon alpha-T|interferon alpha-WA|leIF I 21 0.002874 0.01108 1 1 +3452 IFNA21 interferon alpha 21 9 protein-coding IFN-alphaI|LeIF F|leIF-F interferon alpha-21|IFN-alpha-21|interferon alpha-F|leukocyte interferon protein 18 0.002464 0.172 1 1 +3454 IFNAR1 interferon alpha and beta receptor subunit 1 21 protein-coding AVP|IFN-alpha-REC|IFNAR|IFNBR|IFRC interferon alpha/beta receptor 1|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 and omega) receptor 1|interferon receptor 1|interferon-alpha/beta receptor alpha chain|interferon-beta receptor 1|type I interferon receptor 1 33 0.004517 10.76 1 1 +3455 IFNAR2 interferon alpha and beta receptor subunit 2 21 protein-coding IFN-R|IFN-alpha-REC|IFNABR|IFNARB|IMD45 interferon alpha/beta receptor 2|IFN-R-2|IFN-alpha/beta receptor 2|human interferon alpha/beta receptor|interferon (alpha, beta and omega) receptor 2|interferon alpha binding protein|interferon receptor|interferon-alpha/beta receptor beta chain|type I interferon receptor 2 32 0.00438 8.728 1 1 +3456 IFNB1 interferon beta 1 9 protein-coding IFB|IFF|IFN-beta|IFNB interferon beta|fibroblast interferon|interferon, beta 1, fibroblast|interferon-beta 19 0.002601 0.3478 1 1 +3458 IFNG interferon gamma 12 protein-coding IFG|IFI interferon gamma|IFN-gamma|immune interferon 27 0.003696 2.009 1 1 +3459 IFNGR1 interferon gamma receptor 1 6 protein-coding CD119|IFNGR|IMD27A|IMD27B interferon gamma receptor 1|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 44 0.006022 10.87 1 1 +3460 IFNGR2 interferon gamma receptor 2 (interferon gamma transducer 1) 21 protein-coding AF-1|IFGR2|IFNGT1|IMD28 interferon gamma receptor 2|IFN-gamma receptor 2|IFN-gamma-R2|interferon gamma receptor accessory factor-1|interferon gamma receptor beta chain|interferon gamma transducer 1 23 0.003148 10.91 1 1 +3467 IFNW1 interferon omega 1 9 protein-coding - interferon omega-1|IFN-omega 1, interferon omega-1|interferon alpha-II-1 18 0.002464 0.2024 1 1 +3475 IFRD1 interferon related developmental regulator 1 7 protein-coding PC4|TIS7 interferon-related developmental regulator 1|12-O-tetradecanoylphorbol-13-acetate-induced sequence 7|TPA induced sequence 7|nerve growth factor-inducible protein PC4|pheochromocytoma cell-4 42 0.005749 9.466 1 1 +3476 IGBP1 immunoglobulin (CD79A) binding protein 1 X protein-coding ALPHA-4|IBP1 immunoglobulin-binding protein 1|B cell signal transduction molecule alpha 4|CD79a-binding protein 1|bA351K23.1 (immunoglobulin binding protein 1 (CD79A) )|protein alpha-4|protein phosphatase 2/4/6 regulatory subunit|protein phosphatase 2A, regulatory subunit alpha-4|renal carcinoma antigen NY-REN-16 33 0.004517 10.5 1 1 +3479 IGF1 insulin like growth factor 1 12 protein-coding IGF-I|IGFI|MGF insulin-like growth factor I|insulin-like growth factor 1 (somatomedin C)|insulin-like growth factor IB|mechano growth factor|somatomedin-C 21 0.002874 7.046 1 1 +3480 IGF1R insulin like growth factor 1 receptor 15 protein-coding CD221|IGFIR|IGFR|JTK13 insulin-like growth factor 1 receptor|IGF-I receptor|soluble IGF1R variant 1|soluble IGF1R variant 2 87 0.01191 10.67 1 1 +3481 IGF2 insulin like growth factor 2 11 protein-coding C11orf43|GRDF|IGF-II|PP9974 insulin-like growth factor II|T3M-11-derived growth factor|insulin-like growth factor 2 (somatomedin A)|insulin-like growth factor type 2|preptin 27 0.003696 9.99 1 1 +3482 IGF2R insulin like growth factor 2 receptor 6 protein-coding CD222|CI-M6PR|CIMPR|M6P-R|M6P/IGF2R|MPR 300|MPR1|MPR300|MPRI cation-independent mannose-6-phosphate receptor|300 kDa mannose 6-phosphate receptor|CI Man-6-P receptor|IGF-II receptor|M6P/IGF2 receptor|insulin-like growth factor II receptor 164 0.02245 11.7 1 1 +3483 IGFALS insulin like growth factor binding protein acid labile subunit 16 protein-coding ACLSD|ALS insulin-like growth factor-binding protein complex acid labile subunit|insulin-like growth factor binding protein complex acid labile chain 37 0.005064 3.832 1 1 +3484 IGFBP1 insulin like growth factor binding protein 1 7 protein-coding AFBP|IBP1|IGF-BP25|PP12|hIGFBP-1 insulin-like growth factor-binding protein 1|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|placental protein 12 24 0.003285 2.563 1 1 +3485 IGFBP2 insulin like growth factor binding protein 2 2 protein-coding IBP2|IGF-BP53 insulin-like growth factor-binding protein 2|IGF-binding protein 2|insulin-like growth factor binding protein 2, 36kDa 15 0.002053 10.71 1 1 +3486 IGFBP3 insulin like growth factor binding protein 3 7 protein-coding BP-53|IBP3 insulin-like growth factor-binding protein 3|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 28 0.003832 11.63 1 1 +3487 IGFBP4 insulin like growth factor binding protein 4 17 protein-coding BP-4|HT29-IGFBP|IBP4|IGFBP-4 insulin-like growth factor-binding protein 4|IBP-4|IGF-binding protein 4 12 0.001642 12.75 1 1 +3488 IGFBP5 insulin like growth factor binding protein 5 2 protein-coding IBP5 insulin-like growth factor-binding protein 5|IBP-5|IGF-binding protein 5|IGFBP-5 16 0.00219 12.64 1 1 +3489 IGFBP6 insulin like growth factor binding protein 6 12 protein-coding IBP6 insulin-like growth factor-binding protein 6|IBP-6|IGF binding protein 6|IGFBP-6 14 0.001916 8.046 1 1 +3490 IGFBP7 insulin like growth factor binding protein 7 4 protein-coding AGM|FSTL2|IBP-7|IGFBP-7|IGFBP-7v|IGFBPRP1|MAC25|PSF|RAMSVPS|TAF insulin-like growth factor-binding protein 7|IGF-binding protein 7|IGFBP-rP1|PGI2-stimulating factor|angiomodulin|prostacyclin-stimulating factor|tumor-derived adhesion factor 11 0.001506 12.41 1 1 +3491 CYR61 cysteine rich angiogenic inducer 61 1 protein-coding CCN1|GIG1|IGFBP10 protein CYR61|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 16 0.00219 10.78 1 1 +3492 IGH immunoglobulin heavy locus 14 protein-coding IGD1|IGH.1@|IGH@|IGHD@|IGHDY1|IGHJ|IGHJ@|IGHV|IGHV@ D (diversity) region of heavy chains|J (joining) region of heavy chains|immunglobulin heavy chain variable region|immunoglobulin heavy diversity cluster|immunoglobulin heavy diversity group|immunoglobulin heavy diversity locus|immunoglobulin heavy joining cluster|immunoglobulin heavy joining group|immunoglobulin heavy polypeptide, joining region|immunoglobulin heavy variable cluster|immunoglobulin heavy variable group 0 0 1 0 +3493 IGHA1 immunoglobulin heavy constant alpha 1 14 other IgA1 immunoglobulin alpha 1|immunoglobulin heavy chain constant region alpha 1 42 0.005749 1 0 +3494 IGHA2 immunoglobulin heavy constant alpha 2 (A2m marker) 14 other - constant region of heavy chain of IgA2|immunoglobulin alpha 2 (A2M marker) 37 0.005064 1 0 +3495 IGHD immunoglobulin heavy constant delta 14 other - constant region of heavy chain of IgD 33 0.004517 1 0 +3497 IGHE immunoglobulin heavy constant epsilon 14 other IgE constant region of heavy chain of IgE|immunoglobulin epsilon 36 0.004927 1 0 +3500 IGHG1 immunoglobulin heavy constant gamma 1 (G1m marker) 14 other - constant region of heavy chain of IgG1|immunoglobulin gamma 1 (Gm marker) 58 0.007939 1 0 +3501 IGHG2 immunoglobulin heavy constant gamma 2 (G2m marker) 14 other - Constant region of heavy chain of IgG2|immunoglobulin gamma 2 (Gm marker)|immunoglobulin heavy constant gamma 2 (Gm marker) 47 0.006433 1 0 +3502 IGHG3 immunoglobulin heavy constant gamma 3 (G3m marker) 14 other IgG3 C gamma 3|constant region of heavy chain of IgG3|immunoglobulin gamma 3 (Gm marker)|immunoglobulin heavy constant gamma 3 (Gm marker)|secrete-type Ig gamma heavy-chain 41 0.005612 1 0 +3503 IGHG4 immunoglobulin heavy constant gamma 4 (G4m marker) 14 other - immunoglobulin heavy chain constant region gamma 4 39 0.005338 1 0 +3507 IGHM immunoglobulin heavy constant mu 14 other AGM1|MU|VH constant region of heavy chain of IgM|immunoglobulin mu chain 38 0.005201 1 0 +3508 IGHMBP2 immunoglobulin mu binding protein 2 11 protein-coding CATF1|CMT2S|HCSA|HMN6|SMARD1|SMUBP2|ZFAND7 DNA-binding protein SMUBP-2|ATP-dependent helicase IGHMBP2|GF-1|cardiac transcription factor 1|glial factor 1|zinc finger, AN1-type domain 7 70 0.009581 8.649 1 1 +3512 JCHAIN joining chain of multimeric IgA and IgM 4 protein-coding IGCJ|IGJ|JCH immunoglobulin J chain|IgJ chain|J chain|immunoglobulin J polypeptide, linker protein for immunoglobulin alpha and mu polypeptides 17 0.002327 8.506 1 1 +3514 IGKC immunoglobulin kappa constant 2 other HCAK1|IGKCD|Km immunoglobulin kappa (invariant region)|immunoglobulin kappa constant region|immunoglobulin kappa light chain (VJ) 2 0.0002737 1 0 +3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region 4 protein-coding AOS3|CBF1|IGKJRB|IGKJRB1|KBF2|RBP-J|RBPJK|RBPSUH|SUH|csl recombining binding protein suppressor of hairless|CBF-1|H-2K binding factor-2|RBP-J kappa|RBP-JK|immunoglobulin kappa J region recombination signal binding protein 1|renal carcinoma antigen NY-REN-30|suppressor of hairless homolog 32 0.00438 9.29 1 1 +3529 IGKV2OR22-3 immunoglobulin kappa variable 2/OR22-3 (pseudogene) 22 pseudo IGKV2OR223|IGKVP4 IGKV2/OR22-3|immunoglobulin kappa variable region pseudogene 4 1 0.0001369 1 0 +3535 IGL immunoglobulin lambda locus 22 protein-coding IGL@|IGLC6 ig lambda-6 chain C region|immunoglobulin lambda gene cluster 1 0.0001369 1 0 +3538 IGLC2 immunoglobulin lambda constant 2 22 other IGLC C2 segment|Ig light-chain, partial Ke-Oz- polypeptide, C-term|immunoglobulin lambda constant 2 (Kern-Oz- marker)|immunoglobulin lambda constant region 2 (Kern- Oz- marker) 27 0.003696 1 0 +3539 IGLC3 immunoglobulin lambda constant 3 (Kern-Oz+ marker) 22 other IGLC C3 segment|Ig lambda-3 chain C regions|immunoglobulin lambda constant region 3 (Kern- Oz+ marker) 10 0.001369 1 0 +3543 IGLL1 immunoglobulin lambda like polypeptide 1 22 protein-coding 14.1|AGM2|CD179b|IGL1|IGL5|IGLJ14.1|IGLL|IGO|IGVPB|VPREB2 immunoglobulin lambda-like polypeptide 1|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 22 0.003011 0.4521 1 1 +3547 IGSF1 immunoglobulin superfamily member 1 X protein-coding CHTE|IGCD1|IGDC1|INHBP|PGSF2|p120 immunoglobulin superfamily member 1|immunoglobulin-like domain-containing protein 1|inhibin-binding protein|pituitary gland-specific factor 2 150 0.02053 5.02 1 1 +3549 IHH indian hedgehog 2 protein-coding BDA1|HHG2 indian hedgehog protein|Indian hedgehog homolog 28 0.003832 2.933 1 1 +3550 IK IK cytokine, down-regulator of HLA II 5 protein-coding CSA2|RED|RER protein Red|IK factor|RD element|chondrosarcoma-associated protein 2|cytokine IK|prer protein 34 0.004654 10.84 1 1 +3551 IKBKB inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta 8 protein-coding IKK-beta|IKK2|IKKB|IMD15|NFKBIKB inhibitor of nuclear factor kappa-B kinase subunit beta|I-kappa-B kinase 2|I-kappa-B-kinase beta|IKK-B|nuclear factor NF-kappa-B inhibitor kinase beta 68 0.009307 9.923 1 1 +3552 IL1A interleukin 1 alpha 2 protein-coding IL-1A|IL1|IL1-ALPHA|IL1F1 interleukin-1 alpha|IL-1 alpha|hematopoietin-1|preinterleukin 1 alpha|pro-interleukin-1-alpha 18 0.002464 3.365 1 1 +3553 IL1B interleukin 1 beta 2 protein-coding IL-1|IL1-BETA|IL1F2 interleukin-1 beta|IL-1 beta|catabolin|preinterleukin 1 beta|pro-interleukin-1-beta 18 0.002464 6.266 1 1 +3554 IL1R1 interleukin 1 receptor type 1 2 protein-coding CD121A|D2S1473|IL-1R-alpha|IL1R|IL1RA|P80 interleukin-1 receptor type 1|CD121 antigen-like family member A|IL-1R-1|IL-1RT-1|IL-1RT1|interleukin 1 receptor alpha, type I|interleukin-1 receptor alpha|interleukin-1 receptor type I 33 0.004517 10.1 1 1 +3556 IL1RAP interleukin 1 receptor accessory protein 3 protein-coding C3orf13|IL-1RAcP|IL1R3 interleukin-1 receptor accessory protein|IL-1 receptor accessory protein|IL-1R3|interleukin-1 receptor 3|interleukin-1 receptor accessory protein beta 49 0.006707 8.41 1 1 +3557 IL1RN interleukin 1 receptor antagonist 2 protein-coding DIRA|ICIL-1RA|IL-1RN|IL-1ra|IL-1ra3|IL1F3|IL1RA|IRAP|MVCD4 interleukin-1 receptor antagonist protein|IL1 inhibitor|intracellular IL-1 receptor antagonist type II|intracellular interleukin-1 receptor antagonist (icIL-1ra)|type II interleukin-1 receptor antagonist 15 0.002053 7.663 1 1 +3558 IL2 interleukin 2 4 protein-coding IL-2|TCGF|lymphokine interleukin-2|T cell growth factor|aldesleukin|involved in regulation of T-cell clonal expansion 11 0.001506 0.3519 1 1 +3559 IL2RA interleukin 2 receptor subunit alpha 10 protein-coding CD25|IDDM10|IL2R|IMD41|TCGFR|p55 interleukin-2 receptor subunit alpha|IL-2 receptor subunit alpha|IL-2R subunit alpha|TAC antigen|interleukin 2 receptor, alpha 23 0.003148 4.828 1 1 +3560 IL2RB interleukin 2 receptor subunit beta 22 protein-coding CD122|IL15RB|P70-75 interleukin-2 receptor subunit beta|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, beta|p75 41 0.005612 7.493 1 1 +3561 IL2RG interleukin 2 receptor subunit gamma X protein-coding CD132|CIDX|IL-2RG|IMD4|P64|SCIDX|SCIDX1 cytokine receptor common subunit gamma|CD132 antigen|IL-2 receptor subunit gamma|IL-2R subunit gamma|common cytokine receptor gamma chain|gammaC|interleukin 2 receptor, gamma 39 0.005338 8.307 1 1 +3562 IL3 interleukin 3 5 protein-coding IL-3|MCGF|MULTI-CSF interleukin-3|P-cell stimulating factor|colony-stimulating factor, multiple|hematopoietic growth factor|mast-cell growth factor|multilineage-colony-stimulating factor|multipotential colony-stimulating factor 12 0.001642 0.03971 1 1 +3563 IL3RA interleukin 3 receptor subunit alpha X|Y protein-coding CD123|IL3R|IL3RAY|IL3RX|IL3RY|hIL-3Ra interleukin-3 receptor subunit alpha|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, alpha (low affinity) 6.821 0 1 +3565 IL4 interleukin 4 5 protein-coding BCGF-1|BCGF1|BSF-1|BSF1|IL-4 interleukin-4|B cell growth factor 1|B_cell stimulatory factor 1|binetrakin|interleukin 4 variant 2|lymphocyte stimulatory factor 1|pitrakinra 10 0.001369 0.1462 1 1 +3566 IL4R interleukin 4 receptor 16 protein-coding CD124|IL-4RA|IL4RA interleukin-4 receptor subunit alpha|IL-4 receptor subunit alpha|IL4R nirs variant 1|interleukin-4 receptor alpha chain 64 0.00876 10.18 1 1 +3567 IL5 interleukin 5 5 protein-coding EDF|IL-5|TRF interleukin-5|B-cell differentiation factor I|T-cell replacing factor|colony-stimulating factor, eosinophil|eosinophil differentiation factor 7 0.0009581 0.2357 1 1 +3568 IL5RA interleukin 5 receptor subunit alpha 3 protein-coding CD125|CDw125|HSIL5R3|IL5R interleukin-5 receptor subunit alpha|CD125 antigen|IL-5 receptor subunit alpha|IL-5R subunit alpha|interleukin 5 receptor type 3|interleukin 5 receptor, alpha|interleukin-5 receptor alpha chain 50 0.006844 1.23 1 1 +3569 IL6 interleukin 6 7 protein-coding BSF-2|BSF2|CDF|HGF|HSF|IFN-beta-2|IFNB2|IL-6 interleukin-6|B-cell differentiation factor|B-cell stimulatory factor 2|CTL differentiation factor|hybridoma growth factor|interferon beta-2|interleukin BSF-2 24 0.003285 4.804 1 1 +3570 IL6R interleukin 6 receptor 1 protein-coding CD126|IL-6R-1|IL-6RA|IL6Q|IL6RA|IL6RQ|gp80 interleukin-6 receptor subunit alpha|CD126 antigen|IL-6 receptor subunit alpha|IL-6R 1|membrane glycoprotein 80 36 0.004927 7.558 1 1 +3572 IL6ST interleukin 6 signal transducer 5 protein-coding CD130|CDW130|GP130|IL-6RB interleukin-6 receptor subunit beta|CD130 antigen|IL-6 receptor subunit beta|IL-6R subunit beta|gp130 of the rheumatoid arthritis antigenic peptide-bearing soluble form|gp130, oncostatin M receptor|interleukin receptor beta chain|membrane glycoprotein 130|membrane glycoprotein gp130|oncostatin-M receptor subunit alpha 71 0.009718 9.035 1 1 +3574 IL7 interleukin 7 8 protein-coding IL-7 interleukin-7 12 0.001642 4.913 1 1 +3575 IL7R interleukin 7 receptor 5 protein-coding CD127|CDW127|IL-7R-alpha|IL7RA|ILRA interleukin-7 receptor subunit alpha|CD127 antigen|IL-7 receptor subunit alpha|IL-7R subunit alpha|interleukin 7 receptor alpha chain|interleukin 7 receptor isoform H5-6 86 0.01177 5.291 1 1 +3576 CXCL8 C-X-C motif chemokine ligand 8 4 protein-coding GCP-1|GCP1|IL8|LECT|LUCT|LYNAP|MDNCF|MONAP|NAF|NAP-1|NAP1 interleukin-8|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 12 0.001642 7.134 1 1 +3577 CXCR1 C-X-C motif chemokine receptor 1 2 protein-coding C-C|C-C-CKR-1|CD128|CD181|CDw128a|CKR-1|CMKAR1|IL8R1|IL8RA|IL8RBA C-X-C chemokine receptor type 1|CXC-R1|CXCR-1|IL-8 receptor type 1|IL-8R A|chemokine (C-X-C motif) receptor 1|high affinity interleukin-8 receptor A|interleukin 8 receptor, alpha|interleukin-8 receptor type 1|interleukin-8 receptor type A 29 0.003969 2.72 1 1 +3578 IL9 interleukin 9 5 protein-coding HP40|IL-9|P40 interleukin-9|T-cell growth factor p40|cytokine P40|homolog of mouse T cell and mast cell growth factor 40|p40 T-cell and mast cell growth factor|p40 cytokine 8 0.001095 0.03469 1 1 +3579 CXCR2 C-X-C motif chemokine receptor 2 2 protein-coding CD182|CDw128b|CMKAR2|IL8R2|IL8RA|IL8RB 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 (C-X-C motif) receptor 2|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 38 0.005201 3.69 1 1 +3580 CXCR2P1 C-X-C motif chemokine receptor 2 pseudogene 1 2 pseudo CXCR2P|IL8RBP chemokine (C-X-C motif) receptor 2 pseudogene 1|interleukin 8 receptor (IL8RP) pseudogene|interleukin 8 receptor, beta pseudogene|pseudogene for the low affinity IL-8 receptor 27 0.003696 3.562 1 1 +3581 IL9R interleukin 9 receptor X|Y protein-coding CD129|IL-9R interleukin-9 receptor|IL-9 receptor 2.284 0 1 +3586 IL10 interleukin 10 1 protein-coding CSIF|GVHDS|IL-10|IL10A|TGIF interleukin-10|T-cell growth inhibitory factor|cytokine synthesis inhibitory factor 12 0.001642 3.274 1 1 +3587 IL10RA interleukin 10 receptor subunit alpha 11 protein-coding CD210|CD210a|CDW210A|HIL-10R|IL-10R1|IL10R interleukin-10 receptor subunit alpha|IL-10 receptor subunit alpha|IL-10R subunit 1|IL-10R subunit alpha|IL-10RA|interleukin 10 receptor, alpha|interleukin-10 receptor alpha chain|interleukin-10 receptor subunit 1 49 0.006707 8.452 1 1 +3588 IL10RB interleukin 10 receptor subunit beta 21 protein-coding CDW210B|CRF2-4|CRFB4|D21S58|D21S66|IL-10R2 interleukin-10 receptor subunit beta|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, beta|interleukin-10 receptor subunit 2 24 0.003285 9.708 1 1 +3589 IL11 interleukin 11 19 protein-coding AGIF|IL-11 interleukin-11|adipogenesis inhibitory factor|oprelvekin 13 0.001779 3.923 1 1 +3590 IL11RA interleukin 11 receptor subunit alpha 9 protein-coding CRSDA interleukin-11 receptor subunit alpha|IL-11 receptor subunit alpha|IL-11R subunit alpha|interleukin 11 receptor, alpha|interleukin-11 receptor alpha chain 23 0.003148 7.607 1 1 +3592 IL12A interleukin 12A 3 protein-coding CLMF|IL-12A|NFSK|NKSF1|P35 interleukin-12 subunit alpha|CLMF 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 12A (natural killer cell stimulatory factor 1, cytotoxic lymphocyte maturation factor 1, p35)|interleukin-12 alpha chain 19 0.002601 2.888 1 1 +3593 IL12B interleukin 12B 5 protein-coding CLMF|CLMF2|IL-12B|IMD28|IMD29|NKSF|NKSF2 interleukin-12 subunit beta|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 12B (natural killer cell stimulatory factor 2, cytotoxic lymphocyte maturation factor 2, p40)|interleukin-12 beta chain|natural killer cell stimulatory factor, 40 kD subunit 27 0.003696 1.481 1 1 +3594 IL12RB1 interleukin 12 receptor subunit beta 1 19 protein-coding CD212|IL-12R-BETA1|IL12RB|IMD30 interleukin-12 receptor subunit beta-1|IL-12 receptor beta component|IL-12 receptor subunit beta-1|IL-12R subunit beta-1|cluster of differentiation 212|interleukin 12 receptor, beta 1|interleukin-12 receptor beta-1 chain 41 0.005612 5.244 1 1 +3595 IL12RB2 interleukin 12 receptor subunit beta 2 1 protein-coding - interleukin-12 receptor subunit beta-2|IL-12 receptor subunit beta-2|IL-12R subunit beta-2|interleukin 12 receptor, beta 2|interleukin-12 receptor beta-2 chain 70 0.009581 4.197 1 1 +3596 IL13 interleukin 13 5 protein-coding IL-13|P600 interleukin-13 8 0.001095 0.6073 1 1 +3597 IL13RA1 interleukin 13 receptor subunit alpha 1 X protein-coding CD213A1|CT19|IL-13Ra|NR4 interleukin-13 receptor subunit alpha-1|CD213a1 antigen|IL-13 receptor subunit alpha-1|IL-13R subunit alpha-1|IL13 receptor alpha-1 chain|cancer/testis antigen 19|interleukin 13 receptor, alpha 1 28 0.003832 11.23 1 1 +3598 IL13RA2 interleukin 13 receptor subunit alpha 2 X protein-coding CD213A2|CT19|IL-13R|IL13BP interleukin-13 receptor subunit alpha-2|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, alpha 2 38 0.005201 3.49 1 1 +3600 IL15 interleukin 15 4 protein-coding IL-15 interleukin-15 17 0.002327 5.834 1 1 +3601 IL15RA interleukin 15 receptor subunit alpha 10 protein-coding CD215 interleukin-15 receptor subunit alpha|interleukin 15 receptor alpha isoform EM2|interleukin 15 receptor alpha isoform IC2|interleukin 15 receptor alpha isoform IC3|interleukin 15 receptor alpha isoform IC4|interleukin 15 receptor alpha isoform IC5|interleukin 15 receptor alpha isoform IC6|interleukin 15 receptor alpha isoform IC7|interleukin 15 receptor alpha isoform IC8|interleukin 15 receptor, alpha 15 0.002053 7.492 1 1 +3603 IL16 interleukin 16 15 protein-coding LCF|NIL16|PRIL16|prIL-16 pro-interleukin-16|lymphocyte chemoattractant factor|neuronal interleukin 16|prointerleukin 16 108 0.01478 8.176 1 1 +3604 TNFRSF9 TNF receptor superfamily member 9 1 protein-coding 4-1BB|CD137|CDw137|ILA tumor necrosis factor receptor superfamily member 9|4-1BB ligand receptor|CD137 antigen|T cell antigen ILA|T-cell antigen 4-1BB homolog|homolog of mouse 4-1BB|induced by lymphocyte activation (ILA)|interleukin-activated receptor, homolog of mouse Ly63|receptor protein 4-1BB 33 0.004517 3.386 1 1 +3605 IL17A interleukin 17A 6 protein-coding CTLA-8|CTLA8|IL-17|IL-17A|IL17 interleukin-17A|cytotoxic T-lymphocyte-associated antigen 8|cytotoxic T-lymphocyte-associated protein 8|interleukin 17 (cytotoxic T-lymphocyte-associated serine esterase 8) 23 0.003148 0.4671 1 1 +3606 IL18 interleukin 18 11 protein-coding IGIF|IL-18|IL-1g|IL1F4 interleukin-18|IFN-gamma-inducing factor|IL-1 gamma|iboctadekin|interleukin 18 (interferon-gamma-inducing factor)|interleukin-1 gamma 11 0.001506 7.751 1 1 +3607 FOXK2 forkhead box K2 17 protein-coding ILF|ILF-1|ILF1 forkhead box protein K2|FOXK1|cellular transcription factor ILF-1|interleukin enhancer-binding factor 1 37 0.005064 10.58 1 1 +3608 ILF2 interleukin enhancer binding factor 2 1 protein-coding NF45|PRO3063 interleukin enhancer-binding factor 2|interleukin enhancer binding factor 2, 45kD|interleukin enhancer binding factor 2, 45kDa|nuclear factor of activated T-cells, 45-kDa 27 0.003696 11.94 1 1 +3609 ILF3 interleukin enhancer binding factor 3 19 protein-coding CBTF|DRBF|DRBP76|MMP4|MPHOSPH4|MPP4|NF-AT-90|NF110|NF110b|NF90|NF90a|NF90b|NFAR|NFAR-1|NFAR2|TCP110|TCP80 interleukin enhancer-binding factor 3|M-phase phosphoprotein 4|double-stranded RNA-binding protein, 76 kD|dsRNA binding protein NFAR-2/MPP4|interleukin enhancer binding factor 3, 90kD|interleukin enhancer binding factor 3, 90kDa|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 56 0.007665 12.5 1 1 +3611 ILK integrin linked kinase 11 protein-coding HEL-S-28|ILK-1|ILK-2|P59|p59ILK integrin-linked protein kinase|59 kDa serine/threonine-protein kinase|epididymis secretory protein Li 28|integrin-linked kinase-2 27 0.003696 11.17 1 1 +3612 IMPA1 inositol monophosphatase 1 8 protein-coding IMP|IMPA inositol monophosphatase 1|D-galactose 1-phosphate phosphatase|IMP 1|IMPase 1|inositol(myo)-1(or 4)-monophosphatase 1|inositol-1(or 4)-monophosphatase 1|lithium-sensitive myo-inositol monophosphatase A1|myo-inositol monophosphatase 1|testicular tissue protein Li 94 24 0.003285 8.878 1 1 +3613 IMPA2 inositol monophosphatase 2 18 protein-coding - inositol monophosphatase 2|IMP 2|IMPase 2|inosine monophosphatase 2|inositol monophosphatase 2 variant 1|inositol monophosphatase 2 variant 2|inositol(myo)-1(or 4)-monophosphatase 2|myo-inositol monophosphatase 2|myo-inositol monophosphatase A2 20 0.002737 9.115 1 1 +3614 IMPDH1 inosine monophosphate dehydrogenase 1 7 protein-coding IMPD|IMPD1|IMPDH-I|LCA11|RP10|sWSS2608 inosine-5'-monophosphate dehydrogenase 1|IMP (inosine 5'-monophosphate) dehydrogenase 1|IMP (inosine monophosphate) dehydrogenase 1|IMPD 1|IMPDH 1 30 0.004106 9.924 1 1 +3615 IMPDH2 inosine monophosphate dehydrogenase 2 3 protein-coding IMPD2|IMPDH-II inosine-5'-monophosphate dehydrogenase 2|IMP (inosine 5'-monophosphate) dehydrogenase 2|IMP (inosine monophosphate) dehydrogenase 2|IMP oxireductase 2|IMPD 2|IMPDH 2|inosine 5' phosphate dehydrogenase 2|inosine monophosphate dehydrogenase type II 34 0.004654 11.59 1 1 +3617 IMPG1 interphotoreceptor matrix proteoglycan 1 6 protein-coding GP147|IPM150|SPACR|VMD4 interphotoreceptor matrix proteoglycan 1|interphotoreceptor matrix proteoglycan of 150 kDa|sialoprotein associated with cones and rods 115 0.01574 1.928 1 1 +3619 INCENP inner centromere protein 11 protein-coding - inner centromere protein|binds and activates aurora-B and -C in vivo and in vitro|chromosomal passenger protein|inner centromere protein INCENP|inner centromere protein antigens 135/155kDa 51 0.006981 8.695 1 1 +3620 IDO1 indoleamine 2,3-dioxygenase 1 8 protein-coding IDO|IDO-1|INDO indoleamine 2,3-dioxygenase 1|indolamine 2,3 dioxygenase|indole 2,3-dioxygenase|indoleamine-pyrrole 2,3-dioxygenase 35 0.004791 6.539 1 1 +3621 ING1 inhibitor of growth family member 1 13 protein-coding p24ING1c|p33|p33ING1|p33ING1b|p47|p47ING1a inhibitor of growth protein 1|growth inhibitor ING1|growth inhibitory protein ING1|tumor suppressor ING1 44 0.006022 8.551 1 1 +3622 ING2 inhibitor of growth family member 2 4 protein-coding ING1L|p33ING2 inhibitor of growth protein 2|ING1Lp|inhibitor of growth 1-like protein|p32 23 0.003148 7.733 1 1 +3623 INHA inhibin alpha subunit 2 protein-coding - inhibin alpha chain|A-inhibin subunit 28 0.003832 3.624 1 1 +3624 INHBA inhibin beta A subunit 7 protein-coding EDF|FRP inhibin beta A chain|FSH-releasing protein|Inhibin, beta-1|activin beta-A chain|erythroid differentiation factor|erythroid differentiation protein|follicle-stimulating hormone-releasing protein|inhibin, beta A (activin A, activin AB alpha polypeptide) 81 0.01109 6.349 1 1 +3625 INHBB inhibin beta B subunit 2 protein-coding - inhibin beta B chain|Inhibin, beta-2|activin AB beta polypeptide|activin beta-B chain 30 0.004106 8.254 1 1 +3626 INHBC inhibin beta C subunit 12 protein-coding IHBC inhibin beta C chain|activin beta-C chain 25 0.003422 1.837 1 1 +3627 CXCL10 C-X-C motif chemokine ligand 10 4 protein-coding C7|IFI10|INP10|IP-10|SCYB10|crg-2|gIP-10|mob-1 C-X-C motif chemokine 10|10 kDa interferon gamma-induced protein|chemokine (C-X-C motif) ligand 10|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 9 0.001232 7.69 1 1 +3628 INPP1 inositol polyphosphate-1-phosphatase 2 protein-coding - inositol polyphosphate 1-phosphatase|IPP|IPPase 21 0.002874 8.749 1 1 +3630 INS insulin 11 protein-coding IDDM|IDDM1|IDDM2|ILPR|IRDN|MODY10 insulin|preproinsulin|proinsulin 1 0.0001369 0.4596 1 1 +3631 INPP4A inositol polyphosphate-4-phosphatase type I A 2 protein-coding INPP4|TVAS1 type I inositol 3,4-bisphosphate 4-phosphatase|inositol polyphosphate-4-phosphatase, type I, 107kD|inositol polyphosphate-4-phosphatase, type I, 107kDa 57 0.007802 9.279 1 1 +3632 INPP5A inositol polyphosphate-5-phosphatase A 10 protein-coding 5PTASE type I inositol 1,4,5-trisphosphate 5-phosphatase|43 kDa inositol polyphosphate 5-phophatase|CTCL tumor antigen HD-CL-02|InsP3 5-phosphatase|inositol polyphosphate-5-phosphatase, 40kD|inositol polyphosphate-5-phosphatase, 40kDa|inositol trisphosphate-5-phosphatase, 40kD|type I inositol-1,4,5-trisphosphate 5-phophatase 37 0.005064 9.114 1 1 +3633 INPP5B inositol polyphosphate-5-phosphatase B 1 protein-coding 5PTase type II inositol 1,4,5-trisphosphate 5-phosphatase|inositol polyphosphate-5-phosphatase, 75kDa|phosphoinositide 5-phosphatase 66 0.009034 8.688 1 1 +3635 INPP5D inositol polyphosphate-5-phosphatase D 2 protein-coding SHIP|SHIP-1|SHIP1|SIP-145|hp51CN|p150Ship phosphatidylinositol 3,4,5-trisphosphate 5-phosphatase 1|SH2 domain-containing inositol 5'-phosphatase 1|inositol polyphosphate-5-phosphatase, 145kD|inositol polyphosphate-5-phosphatase, 145kDa|signaling inositol polyphosphate 5 phosphatase SIP-145|signaling inositol polyphosphate phosphatase SHIP II 81 0.01109 8.915 1 1 +3636 INPPL1 inositol polyphosphate phosphatase like 1 11 protein-coding OPSMD|SHIP2 phosphatidylinositol 3,4,5-trisphosphate 5-phosphatase 2|51C protein|INPPL-1|SH2 domain-containing inositol-5'-phosphatase 2|SHIP-2|protein 51C 99 0.01355 11.12 1 1 +3638 INSIG1 insulin induced gene 1 7 protein-coding CL-6|CL6 insulin-induced gene 1 protein|INSIG-1 membrane protein 23 0.003148 10.12 1 1 +3640 INSL3 insulin like 3 19 protein-coding RLF|RLNL|ley-I-L insulin-like 3|insulin-like 3 (Leydig cell)|leydig insulin -like hormone|leydig insulin-like peptide|prepro-INSL3|relaxin-like factor b 14 0.001916 2.082 1 1 +3641 INSL4 insulin like 4 9 protein-coding EPIL|PLACENTIN early placenta insulin-like peptide|early placenta insulin-like peptide (EPIL)|insulin-like 4 (placenta)|insulin-like peptide 4 13 0.001779 0.3679 1 1 +3642 INSM1 INSM transcriptional repressor 1 20 protein-coding IA-1|IA1 insulinoma-associated protein 1|insulinoma-associated 1|zinc finger protein IA-1 18 0.002464 3.072 1 1 +3643 INSR insulin receptor 19 protein-coding CD220|HHF5 insulin receptor|IR 91 0.01246 10.66 1 1 +3645 INSRR insulin receptor related receptor 1 protein-coding IRR insulin receptor-related protein|IR-related receptor 117 0.01601 1.661 1 1 +3646 EIF3E eukaryotic translation initiation factor 3 subunit E 8 protein-coding EIF3-P48|EIF3S6|INT6|eIF3-p46 eukaryotic translation initiation factor 3 subunit E|eIF-3 p48|eukaryotic translation initiation factor 3 subunit 6|eukaryotic translation initiation factor 3 subunit E isoform 2 transcript|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 43 0.005886 12.39 1 1 +3651 PDX1 pancreatic and duodenal homeobox 1 13 protein-coding GSF|IDX-1|IPF1|IUF1|MODY4|PAGEN1|PDX-1|STF-1 pancreas/duodenum homeobox protein 1|IPF-1|IUF-1|glucose-sensitive factor|insulin promoter factor 1, homeodomain transcription factor|insulin upstream factor 1|islet/duodenum homeobox-1|pancreatic-duodenal homeobox factor 1|somatostatin transcription factor 1|somatostatin-transactivating factor 1 19 0.002601 1.88 1 1 +3652 IPP intracisternal A particle-promoted polypeptide 1 protein-coding KLHL27 actin-binding protein IPP|kelch-like family member 27|kelch-like protein 27 50 0.006844 7.54 1 1 +3653 IPW imprinted in Prader-Willi syndrome (non-protein coding) 15 ncRNA NCRNA00002 non-protein coding RNA 2 8.178 0 1 +3654 IRAK1 interleukin 1 receptor associated kinase 1 X protein-coding IRAK|pelle interleukin-1 receptor-associated kinase 1|IRAK-1|Pelle homolog 47 0.006433 11.42 1 1 +3655 ITGA6 integrin subunit alpha 6 2 protein-coding CD49f|ITGA6B|VLA-6 integrin alpha-6|CD49 antigen-like family member F|integrin alpha6B|integrin, alpha 6 73 0.009992 11.31 1 1 +3656 IRAK2 interleukin 1 receptor associated kinase 2 3 protein-coding IRAK-2 interleukin-1 receptor-associated kinase-like 2 37 0.005064 7.383 1 1 +3658 IREB2 iron responsive element binding protein 2 15 protein-coding ACO3|IRP2|IRP2AD iron-responsive element-binding protein 2|IRE-BP 2|iron regulatory protein 2 71 0.009718 10.06 1 1 +3659 IRF1 interferon regulatory factor 1 5 protein-coding IRF-1|MAR interferon regulatory factor 1|interferon regulatory factor 1 isoform +I9|interferon regulatory factor 1 isoform d78|interferon regulatory factor 1 isoform d9,10+|interferon regulatory factor 1 isoform delta4|interferon regulatory factor 1 isoform delta7 26 0.003559 10.05 1 1 +3660 IRF2 interferon regulatory factor 2 4 protein-coding IRF-2 interferon regulatory factor 2 50 0.006844 9.609 1 1 +3661 IRF3 interferon regulatory factor 3 19 protein-coding IIAE7 interferon regulatory factor 3 31 0.004243 10.06 1 1 +3662 IRF4 interferon regulatory factor 4 6 protein-coding LSIRF|MUM1|NF-EM5|SHEP8 interferon regulatory factor 4|lymphocyte-specific interferon regulatory factor|multiple myeloma oncogene 1 52 0.007117 5.61 1 1 +3663 IRF5 interferon regulatory factor 5 7 protein-coding SLEB10 interferon regulatory factor 5 105 0.01437 8.118 1 1 +3664 IRF6 interferon regulatory factor 6 1 protein-coding LPS|OFC6|PIT|PPS|PPS1|VWS|VWS1 interferon regulatory factor 6 55 0.007528 8.655 1 1 +3665 IRF7 interferon regulatory factor 7 11 protein-coding IMD39|IRF-7H|IRF7A|IRF7B|IRF7C|IRF7H interferon regulatory factor 7|IRF-7|interferon regulatory factor-7H 22 0.003011 9.03 1 1 +3667 IRS1 insulin receptor substrate 1 2 protein-coding HIRS-1 insulin receptor substrate 1|IRS-1 110 0.01506 9.465 1 1 +3669 ISG20 interferon stimulated exonuclease gene 20 15 protein-coding CD25|HEM45 interferon-stimulated gene 20 kDa protein|estrogen-regulated transcript 45 protein|interferon stimulated exonuclease gene 20kDa|promyelocytic leukemia nuclear body-associated protein ISG20 15 0.002053 8.091 1 1 +3670 ISL1 ISL LIM homeobox 1 5 protein-coding ISLET1|Isl-1 insulin gene enhancer protein ISL-1|ISL1 transcription factor, LIM/homeodomain|islet-1 45 0.006159 2.376 1 1 +3671 ISLR immunoglobulin superfamily containing leucine rich repeat 15 protein-coding HsT17563|Meflin immunoglobulin superfamily containing leucine-rich repeat protein|mesenchymal stromal cell- and fibroblast-expressing Linx paralogue 36 0.004927 9.698 1 1 +3672 ITGA1 integrin subunit alpha 1 5 protein-coding CD49a|VLA1 integrin alpha-1|CD49 antigen-like family member A|VLA-1|laminin and collagen receptor|very late activation protein 1 74 0.01013 9.086 1 1 +3673 ITGA2 integrin subunit alpha 2 5 protein-coding BR|CD49B|GPIa|HPA-5|VLA-2|VLAA2 integrin alpha-2|CD49 antigen-like family member B|alpha 2 subunit of VLA-2 receptor|collagen receptor|human platelet alloantigen system 5|integrin, alpha 2 (CD49B, alpha 2 subunit of VLA-2 receptor)|platelet antigen Br|platelet glycoprotein GPIa|platelet membrane glycoprotein Ia|very late activation protein 2 receptor, alpha-2 subunit 85 0.01163 9.214 1 1 +3674 ITGA2B integrin subunit alpha 2b 17 protein-coding BDPLT16|BDPLT2|CD41|CD41B|GP2B|GPIIb|GT|GTA|HPA3|PPP1R93 integrin alpha-IIb|GPalpha IIb|alphaIIb protein|integrin, alpha 2b (platelet glycoprotein IIb of IIb/IIIa complex, antigen CD41)|platelet fibrinogen receptor, alpha subunit|platelet glycoprotein IIb of IIb/IIIa complex|platelet membrane glycoprotein IIb|platelet-specific antigen BAK|protein phosphatase 1, regulatory subunit 93 72 0.009855 3.318 1 1 +3675 ITGA3 integrin subunit alpha 3 17 protein-coding CD49C|FRP-2|GAP-B3|GAPB3|ILNEB|MSK18|VCA-2|VL3A|VLA3a integrin alpha-3|CD49 antigen-like family member C|alpha 3 subunit of VLA-3 receptor|antigen CD49C|antigen identified by monoclonal antibody J143|galactoprotein B3|integrin alpha 3|integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)|testicular tissue protein Li 96|testicular tissue protein Li 98|very late activation protein 3 receptor, alpha-3 subunit 62 0.008486 11.47 1 1 +3676 ITGA4 integrin subunit alpha 4 2 protein-coding CD49D|IA4 integrin alpha-4|269C wild type|CD49 antigen-like family member D|VLA-4 subunit alpha|alpha 4 subunit of VLA-4 receptor|antigen CD49D, alpha-4 subunit of VLA-4 receptor|integrin alpha-IV|very late activation protein 4 receptor, alpha 4 subunit 125 0.01711 7.662 1 1 +3678 ITGA5 integrin subunit alpha 5 12 protein-coding CD49e|FNRA|VLA-5|VLA5A integrin alpha-5|CD49 antigen-like family member E|fibronectin receptor subunit alpha|fibronectin receptor, alpha polypeptide|fibronectin receptor, alpha subunit|integrin alpha-F|integrin, alpha 5 (fibronectin receptor, alpha polypeptide)|very late activation protein 5, alpha subunit 60 0.008212 10.83 1 1 +3679 ITGA7 integrin subunit alpha 7 12 protein-coding - integrin alpha-7|integrin alpha 7 chain|integrin, alpha 7 90 0.01232 8.341 1 1 +3680 ITGA9 integrin subunit alpha 9 3 protein-coding ALPHA-RLC|ITGA4L|RLC integrin alpha-9|integrin alpha-RLC 60 0.008212 6.763 1 1 +3681 ITGAD integrin subunit alpha D 16 protein-coding ADB2|CD11D integrin alpha-D|CD11 antigen-like family member D|beta-2 integrin alphaD subunit|leukointegrin alpha D 110 0.01506 2.102 1 1 +3682 ITGAE integrin subunit alpha E 17 protein-coding CD103|HUMINAE integrin alpha-E|HML-1 antigen|antigen CD103|antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide|human mucosal lymphocyte antigen 1, alpha polypeptide|integrin alpha-IEL|integrin, alpha E (antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide)|mucosal lymphocyte 1 antigen 75 0.01027 7.946 1 1 +3683 ITGAL integrin subunit alpha L 16 protein-coding CD11A|LFA-1|LFA1A integrin alpha-L|CD11 antigen-like family member A|LFA-1 alpha|LFA-1A|antigen CD11A (p180)|antigen CD11A (p180), lymphocyte function-associated antigen 1, alpha polypeptide|integrin gene promoter|integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide)|leukocyte adhesion glycoprotein LFA-1 alpha chain|leukocyte function-associated molecule 1 alpha chain|lymphocyte function-associated antigen 1|lymphocyte function-associated antigen 1, alpha polypeptide 112 0.01533 8.055 1 1 +3684 ITGAM integrin subunit alpha M 16 protein-coding CD11B|CR3A|MAC-1|MAC1A|MO1A|SLEB6 integrin alpha-M|CD11 antigen-like family member B|CR-3 alpha chain|antigen CD11b (p170)|cell surface glycoprotein MAC-1 subunit alpha|complement component 3 receptor 3 subunit|integrin, alpha M (complement component 3 receptor 3 subunit)|leukocyte adhesion receptor MO1|macrophage antigen alpha polypeptide|neutrophil adherence receptor alpha-M subunit 98 0.01341 7.658 1 1 +3685 ITGAV integrin subunit alpha V 2 protein-coding CD51|MSK8|VNRA|VTNR integrin alpha-V|antigen identified by monoclonal antibody L230|integrin alphaVbeta3|integrin, alpha V (vitronectin receptor, alpha polypeptide, antigen CD51)|vitronectin receptor subunit alpha 84 0.0115 11.59 1 1 +3687 ITGAX integrin subunit alpha X 16 protein-coding CD11C|SLEB6 integrin alpha-X|CD11 antigen-like family member C|complement component 3 receptor 4 subunit|integrin alpha X|integrin, alpha X (antigen CD11C (p150), alpha polypeptide)|integrin, alpha X (complement component 3 receptor 4 subunit)|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 124 0.01697 8.191 1 1 +3688 ITGB1 integrin subunit beta 1 10 protein-coding CD29|FNRB|GPIIA|MDF2|MSK12|VLA-BETA|VLAB integrin beta-1|glycoprotein IIa|integrin VLA-4 beta subunit|integrin beta 1|integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)|very late activation protein, beta polypeptide 57 0.007802 13.13 1 1 +3689 ITGB2 integrin subunit beta 2 21 protein-coding CD18|LAD|LCAMB|LFA-1|MAC-1|MF17|MFI7 integrin beta-2|cell surface adhesion glycoprotein (LFA-1/CR3/P150,959 beta subunit precursor)|complement component 3 receptor 3 and 4 subunit|complement receptor C3 beta-subunit|integrin beta chain, beta 2|integrin, beta 2 (complement component 3 receptor 3 and 4 subunit)|leukocyte cell adhesion molecule CD18|leukocyte-associated antigens CD18/11A, CD18/11B, CD18/11C 66 0.009034 10.27 1 1 +3690 ITGB3 integrin subunit beta 3 17 protein-coding BDPLT16|BDPLT2|CD61|GP3A|GPIIIa|GT integrin beta-3|antigen CD61|integrin beta 3|integrin, beta 3 (platelet glycoprotein IIIa, antigen CD61)|platelet membrane glycoprotein IIIa 68 0.009307 6.887 1 1 +3691 ITGB4 integrin subunit beta 4 17 protein-coding CD104|GP150 integrin beta-4|CD104 antigen 135 0.01848 11.07 1 1 +3692 EIF6 eukaryotic translation initiation factor 6 20 protein-coding CAB|EIF3A|ITGB4BP|b(2)gcn|eIF-6|p27(BBP)|p27BBP eukaryotic translation initiation factor 6|B4 integrin interactor|eIF-6|eukaryotic translation initiation factor 3A|p27 beta-4 integrin-binding protein 25 0.003422 11.53 1 1 +3693 ITGB5 integrin subunit beta 5 3 protein-coding - integrin beta-5|testis secretory sperm-binding protein Li 217p 39 0.005338 11.48 1 1 +3694 ITGB6 integrin subunit beta 6 2 protein-coding AI1H integrin beta-6|integrin, beta 6 71 0.009718 7.325 1 1 +3695 ITGB7 integrin subunit beta 7 12 protein-coding - integrin beta-7|gut homing receptor beta subunit|integrin beta 7 subunit 28 0.003832 7.178 1 1 +3696 ITGB8 integrin subunit beta 8 7 protein-coding - integrin beta-8 69 0.009444 9.074 1 1 +3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 3 protein-coding H1P|IATIH|IGHEP1|ITI-HC1|ITIH|SHAP inter-alpha-trypsin inhibitor heavy chain H1|ITI heavy chain H1|inter-alpha (globulin) inhibitor, H1 polypeptide|inter-alpha-inhibitor heavy chain 1|inter-alpha-trypsin inhibitor complex component III|serum-derived hyaluronan-associated protein 83 0.01136 1.62 1 1 +3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 10 protein-coding H2P|SHAP inter-alpha-trypsin inhibitor heavy chain H2|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|serum-derived hyaluronan-associated protein 87 0.01191 2.671 1 1 +3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 3 protein-coding H3P|ITI-HC3|SHAP inter-alpha-trypsin inhibitor heavy chain H3|ITI heavy chain H3|inter-alpha (globulin) inhibitor H3|inter-alpha (globulin) inhibitor, H3 polypeptide|inter-alpha-inhibitor heavy chain 3|pre-alpha (globulin) inhibitor, H3 polypeptide|serum-derived hyaluronan-associated protein 46 0.006296 3.638 1 1 +3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain family member 4 3 protein-coding GP120|H4P|IHRP|ITI-HC4|ITIHL1|PK-120|PK120 inter-alpha-trypsin inhibitor heavy chain H4|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-like, 1|plasma kallikrein-sensitive glycoprotein 120 61 0.008349 5.929 1 1 +3702 ITK IL2 inducible T-cell kinase 5 protein-coding EMT|LPFS1|LYK|PSCTK2 tyrosine-protein kinase ITK/TSK|IL-2-inducible T-cell kinase|T-cell-specific kinase|homolog of mouse T-cell itk/tsk|interleukin-2-inducible T-cell kinase|kinase EMT|tyrosine-protein kinase LYK 70 0.009581 5.467 1 1 +3703 STT3A STT3A, catalytic subunit of the oligosaccharyltransferase complex 11 protein-coding ITM1|STT3-A|TMC dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3A|B5|STT3, subunit of the oligosaccharyltransferase complex, homolog A|STT3A, cataylic subunit of the oligosaccharyltransferase complex|STT3A, subunit of the oligosaccharyltransferase complex (catalytic)|dolichyl-diphosphooligosaccharide protein glycotransferase|integral membrane protein 1|integral transmembrane protein 1|oligosaccharyl transferase subunit STT3A|transmembrane conserved|transmembrane protein TMC 37 0.005064 11.53 1 1 +3704 ITPA inosine triphosphatase 20 protein-coding C20orf37|HLC14-06-P|ITPase|My049|NTPase|dJ794I6.3 inosine triphosphate pyrophosphatase|inosine triphosphatase (nucleoside triphosphate pyrophosphatase)|inosine triphosphate pyrophosphohydrolase|non-canonical purine NTP pyrophosphatase|non-standard purine NTP pyrophosphatase|nucleoside-triphosphate diphosphatase|putative oncogene protein HLC14-06-P 12 0.001642 9.747 1 1 +3705 ITPK1 inositol-tetrakisphosphate 1-kinase 14 protein-coding ITRPK1 inositol-tetrakisphosphate 1-kinase|inositol 1,3,4-trisphosphate 5/6-kinase|ins(1,3,4)P(3) 5/6-kinase 27 0.003696 10.93 1 1 +3706 ITPKA inositol-trisphosphate 3-kinase A 15 protein-coding IP3-3KA|IP3KA inositol-trisphosphate 3-kinase A|IP3 3-kinase A|IP3K A|inositol 1,4,5-trisphosphate 3-kinase A|insP 3-kinase A 20 0.002737 5.142 1 1 +3707 ITPKB inositol-trisphosphate 3-kinase B 1 protein-coding IP3-3KB|IP3K|IP3K-B|IP3KB|PIG37 inositol-trisphosphate 3-kinase B|IP3 3-kinase B|IP3K B|inositol 1,4,5-trisphosphate 3-kinase B|insP 3-kinase B|proliferation-inducing protein 37 90 0.01232 10.02 1 1 +3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 3 protein-coding ACV|CLA4|INSP3R1|IP3R|IP3R1|PPP1R94|SCA15|SCA16|SCA29 inositol 1,4,5-trisphosphate receptor type 1|IP3 receptor|IP3R 1|inositol 1,4,5-triphosphate receptor, type 1|protein phosphatase 1, regulatory subunit 94|type 1 InsP3 receptor|type 1 inositol 1,4,5-trisphosphate receptor 169 0.02313 8.986 1 1 +3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 12 protein-coding ANHD|CFAP48|INSP3R2|IP3R2 inositol 1,4,5-trisphosphate receptor type 2|IP3 receptor|IP3R 2|cilia and flagella associated protein 48|type 2 InsP3 receptor 211 0.02888 9.97 1 1 +3710 ITPR3 inositol 1,4,5-trisphosphate receptor type 3 6 protein-coding IP3R|IP3R3 inositol 1,4,5-trisphosphate receptor type 3|IP3 receptor|inositol 1,4,5-triphosphate receptor, type 3|insP3R3|type 3 InsP3 receptor 147 0.02012 10.68 1 1 +3712 IVD isovaleryl-CoA dehydrogenase 15 protein-coding ACAD2 isovaleryl-CoA dehydrogenase, mitochondrial|isovaleryl Coenzyme A dehydrogenase 26 0.003559 10.67 1 1 +3713 IVL involucrin 1 protein-coding - involucrin 78 0.01068 3.232 1 1 +3714 JAG2 jagged 2 14 protein-coding HJ2|SER2 protein jagged-2 59 0.008076 9.206 1 1 +3716 JAK1 Janus kinase 1 1 protein-coding JAK1A|JAK1B|JTK3 tyrosine-protein kinase JAK1 98 0.01341 11.73 1 1 +3717 JAK2 Janus kinase 2 9 protein-coding JTK10|THCYT3 tyrosine-protein kinase JAK2|JAK-2|Janus kinase 2 (a protein tyrosine kinase) 84 0.0115 8.204 1 1 +3718 JAK3 Janus kinase 3 19 protein-coding JAK-3|JAK3_HUMAN|JAKL|L-JAK|LJAK tyrosine-protein kinase JAK3|Janus kinase 3 (a protein tyrosine kinase, leukocyte)|leukocyte Janus kinase 99 0.01355 7.951 1 1 +3720 JARID2 jumonji and AT-rich interaction domain containing 2 6 protein-coding JMJ protein Jumonji|jumonji homolog|jumonji, AT rich interactive domain 2|jumonji-like protein|jumonji/ARID domain-containing protein 2 116 0.01588 9.187 1 1 +3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit 1 protein-coding AP-1|AP1|c-Jun transcription factor AP-1|Jun activation domain binding protein|activator protein 1|enhancer-binding protein AP1|jun oncogene|jun proto-oncogene|p39|proto-oncogene c-Jun|v-jun avian sarcoma virus 17 oncogene homolog|v-jun sarcoma virus 17 oncogene homolog 25 0.003422 11.99 1 1 +3726 JUNB JunB proto-oncogene, AP-1 transcription factor subunit 19 protein-coding AP-1 transcription factor jun-B|activator protein 1|jun B proto-oncogene 19 0.002601 11.7 1 1 +3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit 19 protein-coding AP-1 transcription factor jun-D|JunD-FL isoform|activator protein 1|jun D proto-oncogene 13 0.001779 11.48 1 1 +3728 JUP junction plakoglobin 17 protein-coding ARVD12|CTNNG|DP3|DPIII|PDGB|PKGB junction plakoglobin|catenin (cadherin-associated protein), gamma 80kDa|desmoplakin III|desmoplakin-3 74 0.01013 12.67 1 1 +3730 ANOS1 anosmin 1 X protein-coding ADMLX|HH1|HHA|KAL|KAL1|KALIG-1|KMS|WFDC19 anosmin-1|Kallmann syndrome interval gene 1|Kallmann syndrome-1 sequence (anosmin-1)|WAP four-disulfide core domain 19|adhesion molecule-like X-linked|kallmann syndrome protein 62 0.008486 7.916 1 1 +3732 CD82 CD82 molecule 11 protein-coding 4F9|C33|GR15|IA4|KAI1|R2|SAR2|ST6|TSPAN27 CD82 antigen|C33 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 18 0.002464 10.01 1 1 +3735 KARS lysyl-tRNA synthetase 16 protein-coding CMTRIB|DFNB89|KARS1|KARS2|KRS lysine--tRNA ligase|lysRS|lysine tRNA ligase 43 0.005886 11.5 1 1 +3736 KCNA1 potassium voltage-gated channel subfamily A member 1 12 protein-coding AEMK|EA1|HBK1|HUK1|KV1.1|MBK1|MK1|RBK1 potassium voltage-gated channel subfamily A member 1|potassium channel, voltage gated shaker related subfamily A, member 1|potassium voltage-gated channel, shaker-related subfamily, member 1 (episodic ataxia with myokymia)|voltage-gated K(+) channel HuKI|voltage-gated potassium channel HBK1|voltage-gated potassium channel subunit Kv1.1 91 0.01246 1.872 1 1 +3737 KCNA2 potassium voltage-gated channel subfamily A member 2 1 protein-coding EIEE32|HBK5|HK4|HUKIV|KV1.2|MK2|NGK1|RBK2 potassium voltage-gated channel subfamily A member 2|potassium channel, voltage gated shaker related subfamily A, member 2|potassium voltage-gated channel, shaker-related subfamily, 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 47 0.006433 1.834 1 1 +3738 KCNA3 potassium voltage-gated channel subfamily A member 3 1 protein-coding HGK5|HLK3|HPCN3|HUKIII|KV1.3|MK3|PCN3 potassium voltage-gated channel subfamily A member 3|potassium channel 3|potassium channel, voltage gated shaker related subfamily A, member 3|potassium voltage-gated channel, shaker-related subfamily, 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 68 0.009307 3.927 1 1 +3739 KCNA4 potassium voltage-gated channel subfamily A member 4 11 protein-coding HBK4|HK1|HPCN2|HUKII|KCNA4L|KCNA8|KV1.4|PCN2 potassium voltage-gated channel subfamily A member 4|cardiac potassium channel|fetal skeletal muscle potassium channel|potassium channel 2|potassium channel, voltage gated shaker related 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 117 0.01601 1.057 1 1 +3741 KCNA5 potassium voltage-gated channel subfamily A member 5 12 protein-coding ATFB7|HCK1|HK2|HPCN1|KV1.5|PCN1 potassium voltage-gated channel subfamily A member 5|cardiac potassium channel|insulinoma and islet potassium channel|potassium channel 1|potassium channel, voltage gated shaker related subfamily A, member 5|potassium voltage-gated channel, shaker-related subfamily, member 5|voltage-gated potassium channel HK2|voltage-gated potassium channel protein Kv1.5|voltage-gated potassium channel subunit Kv1.5 116 0.01588 3.379 1 1 +3742 KCNA6 potassium voltage-gated channel subfamily A member 6 12 protein-coding HBK2|KV1.6|PPP1R96 potassium voltage-gated channel subfamily A member 6|human brain potassium channel-2|potassium channel, voltage gated shaker related subfamily A, member 6|potassium voltage-gated channel, shaker-related subfamily, member 6|protein phosphatase 1, regulatory subunit 96|voltage-gated potassium channel HBK2|voltage-gated potassium channel protein Kv1.6|voltage-gated potassium channel subunit Kv1.6 78 0.01068 3.873 1 1 +3743 KCNA7 potassium voltage-gated channel subfamily A member 7 19 protein-coding HAK6|KV1.7 potassium voltage-gated channel subfamily A member 7|potassium channel, voltage gated shaker related subfamily A, member 7|potassium voltage-gated channel, shaker-related subfamily, member 7|voltage-dependent potassium channel Kv1.7|voltage-gated potassium channel KCNA7|voltage-gated potassium channel subunit Kv1.7 26 0.003559 1.052 1 1 +3744 KCNA10 potassium voltage-gated channel subfamily A member 10 1 protein-coding Kcn1|Kv1.8 potassium voltage-gated channel subfamily A member 10|cyclic GMP gated potassium channel|potassium channel, voltage gated shaker related subfamily A, member 10|potassium voltage-gated channel, shaker-related subfamily, member 10|voltage-gated potassium channel subunit Kv1.8 55 0.007528 0.2294 1 1 +3745 KCNB1 potassium voltage-gated channel subfamily B member 1 20 protein-coding DRK1|Kv2.1 potassium voltage-gated channel subfamily B member 1|delayed rectifier potassium channel 1|potassium voltage-gated channel, Shab-related subfamily, member 1|voltage-gated potassium channel subunit Kv2.1 105 0.01437 2.97 1 1 +3746 KCNC1 potassium voltage-gated channel subfamily C member 1 11 protein-coding EPM7|KV3.1|KV4|NGK2 potassium voltage-gated channel subfamily C member 1|potassium channel, voltage gated Shaw related subfamily C, member 1|voltage-gated potassium channel protein KV3.1|voltage-gated potassium channel subunit Kv4 43 0.005886 2.724 1 1 +3747 KCNC2 potassium voltage-gated channel subfamily C member 2 12 protein-coding KV3.2 potassium voltage-gated channel subfamily C member 2|potassium channel, voltage gated Shaw related subfamily C, member 2|potassium voltage-gated channel, Shaw-related subfamily, member 2|shaw-like potassium channel|voltage-gated potassium channel Kv3.2 78 0.01068 1.58 1 1 +3748 KCNC3 potassium voltage-gated channel subfamily C member 3 19 protein-coding KSHIIID|KV3.3|SCA13 potassium voltage-gated channel subfamily C member 3|Shaw-related voltage-gated potassium channel protein 3|potassium channel, voltage gated Shaw related subfamily C, member 3|potassium voltage-gated channel, Shaw-related subfamily, member 3|voltage-gated potassium channel protein KV3.3|voltage-gated potassium channel subunit Kv3.3 42 0.005749 7.035 1 1 +3749 KCNC4 potassium voltage-gated channel subfamily C member 4 1 protein-coding C1orf30|HKSHIIIC|KSHIIIC|KV3.4 potassium voltage-gated channel subfamily C member 4|K+ channel subunit|potassium channel, voltage gated Shaw related subfamily C, member 4|potassium voltage-gated channel, Shaw-related subfamily, member 4|voltage-gated potassium channel subunit KV3.4 55 0.007528 7.26 1 1 +3750 KCND1 potassium voltage-gated channel subfamily D member 1 X protein-coding KV4.1 potassium voltage-gated channel subfamily D member 1|Shal-type potassium channel|potassium channel, voltage gated Shal related subfamily D, member 1|potassium voltage-gated channel, Shal-related subfamily, member 1|voltage-gated potassium channel subunit Kv4.1 39 0.005338 6.216 1 1 +3751 KCND2 potassium voltage-gated channel subfamily D member 2 7 protein-coding KV4.2|RK5 potassium voltage-gated channel subfamily D member 2|potassium channel, voltage gated Shal related subfamily D, member 2|voltage-gated potassium channel subunit Kv4.2|voltage-sensitive potassium channel 110 0.01506 4.68 1 1 +3752 KCND3 potassium voltage-gated channel subfamily D member 3 1 protein-coding BRGDA9|KCND3L|KCND3S|KSHIVB|KV4.3|SCA19|SCA22 potassium voltage-gated channel subfamily D member 3|potassium channel, voltage gated Shal related subfamily D, member 3|potassium ionic channel Kv4.3|potassium voltage-gated channel long|potassium voltage-gated channel, Shal-related subfamily, member 3|sha1-related potassium channel Kv4.3|voltage-gated K+ channel|voltage-gated potassium channel subunit Kv4.3 67 0.009171 4.139 1 1 +3753 KCNE1 potassium voltage-gated channel subfamily E regulatory subunit 1 21 protein-coding ISK|JLNS|JLNS2|LQT2/5|LQT5|MinK potassium voltage-gated channel subfamily E member 1|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 channel, voltage gated subfamily E regulatory beta subunit 1|potassium voltage-gated channel, Isk-related family, member 1|potassium voltage-gated channel, Isk-related subfamily, member 1|voltage gated potassiun channel accessory subunit 13 0.001779 2.6 1 1 +3754 KCNF1 potassium voltage-gated channel modifier subfamily F member 1 2 protein-coding IK8|KCNF|KV5.1|kH1 potassium voltage-gated channel subfamily F member 1|potassium channel KH1|voltage-gated potassium channel subunit Kv5.1 56 0.007665 3.983 1 1 +3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 20 protein-coding K13|KCNG|KV6.1|kH2 potassium voltage-gated channel subfamily G member 1|potassium channel KH2|potassium channel Kv6.1|potassium channel, voltage gated modifier subfamily G, member 1|potassium voltage-gated channel, subfamily G, member 1|voltage-gated potassium channel subunit Kv6.1 58 0.007939 4.914 1 1 +3756 KCNH1 potassium voltage-gated channel subfamily H member 1 1 protein-coding EAG|EAG1|Kv10.1|TMBTS|ZLS1|h-eag|hEAG1 potassium voltage-gated channel subfamily H member 1|EAG channel 1|ether-a-go-go potassium channel 1|ether-a-go-go, Drosophila, homolog of|potassium channel, voltage gated eag related subfamily H, member 1|potassium voltage-gated channel, subfamily H (eag-related), member 1|voltage-gated potassium channel subunit Kv10.1 135 0.01848 4.042 1 1 +3757 KCNH2 potassium voltage-gated channel subfamily H member 2 7 protein-coding ERG-1|ERG1|H-ERG|HERG|HERG1|Kv11.1|LQT2|SQT1 potassium voltage-gated channel subfamily H member 2|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|potassium channel, voltage gated eag related subfamily H, member 2|potassium voltage-gated channel, subfamily H (eag-related), member 2|voltage-gated potassium channel subunit Kv11.1 99 0.01355 6.139 1 1 +3758 KCNJ1 potassium voltage-gated channel subfamily J member 1 11 protein-coding KIR1.1|ROMK|ROMK1 ATP-sensitive inward rectifier potassium channel 1|ATP-regulated potassium channel ROM-K|inward rectifier K(+) channel Kir1.1|inwardly rectifying K+ channel|potassium channel, inwardly rectifying subfamily J member 1|potassium inwardly-rectifying channel, subfamily J, member 1 42 0.005749 1.648 1 1 +3759 KCNJ2 potassium voltage-gated channel subfamily J member 2 17 protein-coding ATFB9|HHBIRK1|HHIRK1|IRK1|KIR2.1|LQT7|SQT3 inward rectifier potassium channel 2|IRK-1|cardiac inward rectifier potassium channel|hIRK1|inward rectifier K+ channel KIR2.1|potassium channel, inwardly rectifying subfamily J, member 2|potassium inwardly-rectifying channel, subfamily J, member 2 62 0.008486 6.809 1 1 +3760 KCNJ3 potassium voltage-gated channel subfamily J member 3 2 protein-coding GIRK1|KGA|KIR3.1 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|potassium inwardly-rectifying channel, subfamily J, member 3 92 0.01259 2.713 1 1 +3761 KCNJ4 potassium voltage-gated channel subfamily J member 4 22 protein-coding HIR|HIRK2|HRK1|IRK-3|IRK3|Kir2.3 inward rectifier potassium channel 4|hippocampal inward rectifier potassium channel|inward rectifier K(+) channel Kir2.3|potassium channel, inwardly rectifying subfamily J, member 4|potassium inwardly-rectifying channel, subfamily J, member 4 46 0.006296 2.034 1 1 +3762 KCNJ5 potassium voltage-gated channel subfamily J member 5 11 protein-coding CIR|GIRK4|KATP1|KIR3.4|LQT13 G protein-activated inward rectifier potassium channel 4|IRK-4|cardiac ATP-sensitive potassium channel|heart KATP channel|inward rectifier K+ channel KIR3.4|potassium channel, inwardly rectifying subfamily J, member 5|potassium inwardly-rectifying channel, subfamily J, member 5 40 0.005475 5.135 1 1 +3763 KCNJ6 potassium voltage-gated channel subfamily J member 6 21 protein-coding BIR1|GIRK-2|GIRK2|KATP-2|KATP2|KCNJ7|KIR3.2|KPLBS|hiGIRK2 G protein-activated inward rectifier potassium channel 2|inward rectifier K(+) channel Kir3.2|inward rectifier potassium channel KIR3.2|potassium channel, inwardly rectifying subfamily J, member 6 62 0.008486 1.401 1 1 +3764 KCNJ8 potassium voltage-gated channel subfamily J member 8 12 protein-coding KIR6.1|uKATP-1 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|potassium inwardly-rectifying channel, subfamily J, member 8 54 0.007391 7.443 1 1 +3765 KCNJ9 potassium voltage-gated channel subfamily J member 9 1 protein-coding GIRK3|KIR3.3 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|potassium inwardly-rectifying channel, subfamily J, member 9 20 0.002737 1.495 1 1 +3766 KCNJ10 potassium voltage-gated channel subfamily J member 10 1 protein-coding BIRK-10|KCNJ13-PEN|KIR1.2|KIR4.1|SESAME ATP-sensitive inward rectifier potassium channel 10|ATP-dependent inwardly rectifying potassium channel Kir4.1|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|potassium inwardly-rectifying channel, subfamily J, member 10 39 0.005338 4.464 1 1 +3767 KCNJ11 potassium voltage-gated channel subfamily J member 11 11 protein-coding BIR|HHF2|IKATP|KIR6.2|MODY13|PHHI|TNDM3 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|potassium inwardly-rectifying channel, subfamily J, member 11 26 0.003559 6.223 1 1 +3768 KCNJ12 potassium voltage-gated channel subfamily J member 12 17 protein-coding IRK-2|IRK2|KCNJN1|Kir2.2|Kir2.2v|hIRK|hIRK1|hkir2.2x|kcnj12x ATP-sensitive inward rectifier potassium channel 12|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 94 0.01287 5.269 1 1 +3769 KCNJ13 potassium voltage-gated channel subfamily J member 13 2 protein-coding KIR1.4|KIR7.1|LCA16|SVD inward rectifier potassium channel 13|inward rectifier K(+) channel Kir7.1|potassium channel, inwardly rectifying subfamily J, member 13|potassium inwardly-rectifying channel, subfamily J, member 13 23 0.003148 1.957 1 1 +3770 KCNJ14 potassium voltage-gated channel subfamily J member 14 19 protein-coding IRK4|KIR2.4 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|potassium inwardly-rectifying channel, subfamily J, member 14 27 0.003696 5 1 1 +3772 KCNJ15 potassium voltage-gated channel subfamily J member 15 21 protein-coding IRKK|KIR1.3|KIR4.2 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|potassium inwardly-rectifying channel, subfamily J, member 15 49 0.006707 6.253 1 1 +3773 KCNJ16 potassium voltage-gated channel subfamily J member 16 17 protein-coding BIR9|KIR5.1 inward rectifier potassium channel 16|inward rectifier K(+) channel Kir5.1|inward rectifier K+ channel KIR5.1|potassium channel, inwardly rectifying subfamily J member 16|potassium inwardly-rectifying channel, subfamily J, member 16 48 0.00657 4.116 1 1 +3775 KCNK1 potassium two pore domain channel subfamily K member 1 1 protein-coding DPK|HOHO|K2P1|K2p1.1|KCNO1|TWIK-1|TWIK1 potassium channel subfamily K member 1|inward rectifying potassium channel protein TWIK-1|potassium channel K2P1|potassium channel KCNO1|potassium channel, two pore domain subfamily K, member 1|potassium inwardly-rectifying channel, subfamily K, member 1|tandem of P domains in a weak inward rectifying K+ channel 1 28 0.003832 8.223 1 1 +3776 KCNK2 potassium two pore domain channel subfamily K member 2 1 protein-coding K2p2.1|TPKC1|TREK|TREK-1|TREK1|hTREK-1c|hTREK-1e potassium channel subfamily K member 2|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 variant 1|potassium channel subfamily k member 2 variant 2|potassium channel, two pore domain 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 69 0.009444 4.149 1 1 +3777 KCNK3 potassium two pore domain channel subfamily K member 3 2 protein-coding K2p3.1|OAT1|PPH4|TASK|TASK-1|TBAK1 potassium channel subfamily K member 3|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, two pore domain 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 26 0.003559 5.505 1 1 +3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 10 protein-coding BKTM|KCa1.1|MaxiK|SAKCA|SLO|SLO-ALPHA|SLO1|bA205K10.1|hSlo|mSLO1 calcium-activated potassium channel subunit alpha-1|uncharacterized protein|BK channel alpha subunit|BKCA alpha subunit|big potassium channel alpha subunit|calcium-activated potassium channel, subfamily M subunit alpha-1|k(VCA)alpha|maxi-K channel HSLO|potassium channel, calcium activated large conductance subfamily M alpha, member 1|potassium large conductance calcium-activated channel, subfamily M, alpha member 1|slo homolog|slowpoke homolog|stretch-activated Kca channel 115 0.01574 8.106 1 1 +3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 5 protein-coding BKbeta1|K(VCA)beta|SLO-BETA|hbeta1|hslo-beta|k(VCA)beta-1|slo-beta-1 calcium-activated potassium channel subunit beta-1|BK channel beta subunit 1|BK channel subunit beta-1|MaxiK channel beta-subunit 1|big potassium channel beta subunit 1|calcium-activated potassium channel, subfamily M subunit beta-1|charybdotoxin receptor subunit beta-1|large conductance Ca2+-activated K+ channel beta 1 subunit|maxi K channel subunit beta-1|potassium channel subfamily M regulatory beta subunit 1|potassium large conductance calcium-activated channel, subfamily M, beta member 1 28 0.003832 6.155 1 1 +3780 KCNN1 potassium calcium-activated channel subfamily N member 1 19 protein-coding KCa2.1|SK1|SKCA1|hSK1 small conductance calcium-activated potassium channel protein 1|potassium channel, calcium activated intermediate/small conductance subfamily N alpha, member 1|potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1|small conductance calcium-activated potassium channel 1 24 0.003285 3.171 1 1 +3781 KCNN2 potassium calcium-activated channel subfamily N member 2 5 protein-coding KCa2.2|SK2|SKCA2|SKCa 2|hSK2 small conductance calcium-activated potassium channel protein 2|apamin-sensitive small-conductance Ca2+-activated potassium channel|potassium channel, calcium activated intermediate/small conductance subfamily N alpha, member 2|potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2|small conductance calcium-activated potassium channel 2 88 0.01204 4.515 1 1 +3782 KCNN3 potassium calcium-activated channel subfamily N member 3 1 protein-coding KCa2.3|SK3|SKCA3|hSK3 small conductance calcium-activated potassium channel protein 3|SKCa 3|potassium channel, calcium activated intermediate/small conductance subfamily N alpha, member 3|potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3|small conductance calcium-activated potassium channel 3 148 0.02026 5.24 1 1 +3783 KCNN4 potassium calcium-activated channel subfamily N member 4 19 protein-coding DHS2|IK|IK1|IKCA1|KCA4|KCa3.1|SK4|hIKCa1|hKCa4|hSK4 intermediate conductance calcium-activated potassium channel protein 4|SKCa 4|SKCa4|potassium channel, calcium activated intermediate/small conductance subfamily N alpha, member 4|potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4|putative Gardos channel|putative erythrocyte intermediate conductance calcium-activated potassium Gardos channel|small conductance calcium-activated potassium channel 4 31 0.004243 7.556 1 1 +3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 11 protein-coding ATFB1|ATFB3|JLNS1|KCNA8|KCNA9|KVLQT1|Kv1.9|Kv7.1|LQT|LQT1|RWS|SQT2|WRS potassium voltage-gated channel subfamily KQT member 1|IKs producing slow voltage-gated potassium channel subunit alpha KvLQT1|kidney and cardiac voltage dependend K+ channel|potassium channel, voltage gated KQT-like subfamily Q, member 1|potassium voltage-gated channel, KQT-like subfamily, member 1|slow delayed rectifier channel subunit|voltage-gated potassium channel subunit Kv7.1 36 0.004927 8.135 1 1 +3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 20 protein-coding BFNC|EBN|EBN1|ENB1|HNSPC|KCNA11|KV7.2 potassium voltage-gated channel subfamily KQT member 2|neuroblastoma-specific potassium channel subunit alpha KvLQT2|potassium channel, voltage gated KQT-like subfamily Q, member 2|voltage-gated potassium channel subunit Kv7.2 110 0.01506 2.227 1 1 +3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 8 protein-coding BFNC2|EBN2|KV7.3 potassium voltage-gated channel subfamily KQT member 3|potassium channel subunit alpha KvLQT3|potassium channel, voltage gated KQT-like subfamily Q, member 3|potassium channel, voltage-gated, subfamily Q, member 3|potassium voltage-gated channel, KQT-like subfamily, member 3|voltage-gated potassium channel subunit Kv7.3 115 0.01574 3.661 1 1 +3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 20 protein-coding Kv9.1 potassium voltage-gated channel subfamily S member 1|delayed-rectifier K(+) channel alpha subunit 1|potassium voltage-gated channel, delayed-rectifier, subfamily S, member 1|voltage-gated potassium channel subunit Kv9.1 33 0.004517 3.619 1 1 +3788 KCNS2 potassium voltage-gated channel modifier subfamily S member 2 8 protein-coding KV9.2 potassium voltage-gated channel subfamily S member 2|delayed-rectifier K(+) channel alpha subunit 2|potassium voltage-gated channel, delayed-rectifier, subfamily S, member 2|voltage-gated potassium channel subunit Kv9.2 59 0.008076 1.557 1 1 +3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 2 protein-coding KV9.3 potassium voltage-gated channel subfamily S member 3|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, delayed-rectifier, subfamily S, member 3|voltage-gated potassium channel protein Kv9.3|voltage-gated potassium channel subunit Kv9.3 60 0.008212 7.814 1 1 +3791 KDR kinase insert domain receptor 4 protein-coding CD309|FLK1|VEGFR|VEGFR2 vascular endothelial growth factor receptor 2|fetal liver kinase-1|kinase insert domain receptor (a type III receptor tyrosine kinase)|protein-tyrosine kinase receptor Flk-1|soluble VEGFR2|tyrosine kinase growth factor receptor 169 0.02313 9.12 1 1 +3792 KEL Kell blood group, metallo-endopeptidase 7 protein-coding CD238|ECE3 kell blood group glycoprotein|kell blood group antigen 103 0.0141 2.536 1 1 +3795 KHK ketohexokinase 2 protein-coding - ketohexokinase|fructokinase|hepatic fructokinase|ketohexokinase (fructokinase)|testicular tissue protein Li 102 33 0.004517 7.474 1 1 +3796 KIF2A kinesin family member 2A 5 protein-coding CDCBM3|HK2|KIF2 kinesin-like protein KIF2A|Kinesin, heavy chain, 2|kinesin heavy chain member 2A|kinesin-2 44 0.006022 8.933 1 1 +3797 KIF3C kinesin family member 3C 2 protein-coding - kinesin-like protein KIF3C|KIF3C variant protein 54 0.007391 8.689 1 1 +3798 KIF5A kinesin family member 5A 12 protein-coding D12S1889|MY050|NKHC|SPG10 kinesin heavy chain isoform 5A|KIF5A variant protein|kinesin heavy chain neuron-specific 1|kinesin, heavy chain, neuron-specific|neuronal kinesin heavy chain 89 0.01218 3.478 1 1 +3799 KIF5B kinesin family member 5B 10 protein-coding HEL-S-61|KINH|KNS|KNS1|UKHC kinesin-1 heavy chain|conventional kinesin heavy chain|epididymis secretory protein Li 61|kinesin 1 (110-120kD)|kinesin heavy chain|ubiquitous kinesin heavy chain 65 0.008897 11.87 1 1 +3800 KIF5C kinesin family member 5C 2 protein-coding CDCBM2|KINN|NKHC|NKHC-2|NKHC2 kinesin heavy chain isoform 5C|kinesin heavy chain neuron-specific 2 77 0.01054 6.896 1 1 +3801 KIFC3 kinesin family member C3 16 protein-coding - kinesin-like protein KIFC3 41 0.005612 9.443 1 1 +3802 KIR2DL1 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 1 19 protein-coding CD158A|KIR-K64|KIR221|KIR2DS1|KIR2DS5|NKAT|NKAT-1|NKAT1|p58.1 killer cell immunoglobulin-like receptor 2DL1|CD158 antigen-like family member A|MHC class I NK cell receptor|killer Ig receptor|killer cell immunoglobulin-like receptor two domains short cytoplasmic tail 1|killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 1|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 48 0.00657 0.7186 1 1 +3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 19 protein-coding CD158B2|CD158b|GL183|KIR-023GB|KIR-K7b|KIR-K7c|KIR2DS3|KIR2DS5|KIRCL23|NKAT|NKAT2|NKAT2A|NKAT2B|p58 killer cell immunoglobulin-like receptor 2DL3|CD158 antigen-like family member B2|MHC class I NK cell receptor|NK-receptor|NKAT-2|killer Ig-like inhibitory receptor|killer cell immunoglobulin-like receptor two domains long cytoplasmic tail 3|killer cell immunoglobulin-like receptor two domains short cytoplasmic tail 3|killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 5|killer inhibitory receptor cl 2-3|natural killer associated transcript 2|natural killer cell inhibitory receptor KIR2DL3|p58 NK receptor CL-6|p58 natural killer cell receptor clone CL-6|p58.2 MHC class-I specific NK receptor 31 0.004243 0.9324 1 1 +3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 19 protein-coding CD158D|G9P|KIR|KIR-103AS|KIR-2DL4|KIR103|KIR103AS killer cell immunoglobulin-like receptor 2DL4|CD158 antigen-like family member D|MHC class I NK cell receptor KIR103AS|NK cell receptor|killer Ig receptor|killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 4|killer cell inhibitory receptor 103AS|killer-cell immunoglobulin-like receptor|natural killer cell inhibitory receptor 15 0.002053 1.959 1 1 +3809 KIR2DS4 killer cell immunoglobulin like receptor, two Ig domains and short cytoplasmic tail 4 19 protein-coding CD158I|KIR-2DS4|KIR1D|KIR2DS1|KIR412|KKA3|NKAT-8|NKAT8 killer cell immunoglobulin-like receptor 2DS4|CD158 antigen-like family member I|KIR antigen 2DS4|MHC class I NK cell receptor|P58 natural killer cell receptor clones CL-39/CL-17|killer Ig receptor|killer cell immunoglobulin-like receptor two domains short cytoplasmic tail 1|killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 4|killer inhibitory receptor 4-1-2|killer-cell immunoglobulin-like receptor|natural killer cell inhibitory receptor|natural killer-associated transcript 8|p50 killer cell activating receptor KAR-K1d|p58 NK receptor CL-39/CL-17 6 0.0008212 0.9732 1 1 +3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 19 protein-coding CD158E1|KIR|KIR3DL1/S1|KIR3DL2|NKAT-3|NKAT3|NKB1|NKB1B killer cell immunoglobulin-like receptor 3DL1|CD158 antigen-like family member E|HLA-BW4-specific inhibitory NK cell receptor|KIR antigen 3DL1|MHC class I NK cell receptor|NK-receptor|killer Ig receptor|killer cell immunoglobulin-like receptor three domains long cytoplasmic tail 2|killer cell immunoglobulin-like receptor three domains short cytoplasmic tail 1|killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1|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 52 0.007117 0.898 1 1 +3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 19 protein-coding 3DL2|CD158K|KIR-3DL2|NKAT-4|NKAT4|NKAT4B|p140 killer cell immunoglobulin-like receptor 3DL2|CD158 antigen-like family member K|KIR antigen 3DL2|MHC class I NK cell receptor|killer Ig receptor|killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2|killer-cell immunoglobulin-like receptor|natural killer-associated transcript 4|p70 NK receptor CL-5|p70 killer cell inhibitory receptor|p70 natural killer cell receptor clone CL-5 42 0.005749 1.137 1 1 +3814 KISS1 KiSS-1 metastasis-suppressor 1 protein-coding HH13|KiSS-1 metastasis-suppressor KiSS-1|kisspeptin-1|malignant melanoma metastasis-suppressor|metastin|prepro-kisspeptin 12 0.001642 2.014 1 1 +3815 KIT KIT proto-oncogene receptor tyrosine kinase 4 protein-coding C-Kit|CD117|PBT|SCFR mast/stem cell growth factor receptor Kit|c-Kit protooncogene|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 homolog|v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene-like protein 133 0.0182 7.596 1 1 +3816 KLK1 kallikrein 1 19 protein-coding KLKR|Klk6|hK1 kallikrein-1|glandular kallikrein 1|kallikrein 1, renal/pancreas/salivary|kallikrein serine protease 1|kidney/pancreas/salivary gland kallikrein|tissue kallikrein 51 0.006981 3.284 1 1 +3817 KLK2 kallikrein related peptidase 2 19 protein-coding KLK2A2|hGK-1|hK2 kallikrein-2|glandular kallikrein 2|glandular kallikrein-1|kallikrein 2, prostatic|tissue kallikrein-2 29 0.003969 2.048 1 1 +3818 KLKB1 kallikrein B1 4 protein-coding KLK3|PKK|PKKD|PPK plasma kallikrein|kallikrein B, plasma (Fletcher factor) 1|kininogenin|plasma prekallikrein 66 0.009034 3.081 1 1 +3820 KLRB1 killer cell lectin like receptor B1 12 protein-coding CD161|CLEC5B|NKR|NKR-P1|NKR-P1A|NKRP1A|hNKR-P1A killer cell lectin-like receptor subfamily B member 1|C-type lectin domain family 5 member B|killer cell lectin-like receptor subfamily B, member 1|natural killer cell surface protein P1A 21 0.002874 4.591 1 1 +3821 KLRC1 killer cell lectin like receptor C1 12 protein-coding CD159A|NKG2|NKG2A NKG2-A/NKG2-B type II integral membrane protein|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|killer cell lectin-like receptor subfamily C, member 1|natural killer cell lectin|natural killer group protein 2 23 0.003148 2.449 1 1 +3822 KLRC2 killer cell lectin like receptor C2 12 protein-coding CD159c|NKG2-C|NKG2C NKG2-C type II integral membrane protein|CD159 antigen-like family member C|NK cell receptor C|NKG2-C-activating NK receptor|killer cell lectin-like receptor subfamily C, member 2 26 0.003559 2.717 1 1 +3823 KLRC3 killer cell lectin like receptor C3 12 protein-coding NKG2-E|NKG2E NKG2-E type II integral membrane protein|NK cell receptor E|NKG2-E-activating NK receptor|killer cell lectin-like receptor subfamily C, member 3 19 0.002601 2.343 1 1 +3824 KLRD1 killer cell lectin like receptor D1 12 protein-coding CD94 natural killer cells antigen CD94|CD94 antigen|KP43|NK cell receptor|killer cell lectin-like receptor subfamily D, member 1 21 0.002874 4.098 1 1 +3827 KNG1 kininogen 1 3 protein-coding BDK|BK|KNG kininogen-1|HMWK|alpha-2-thiol proteinase inhibitor|bradykinin|fitzgerald factor|high molecular weight kininogen|williams-Fitzgerald-Flaujeac factor 60 0.008212 1.557 1 1 +3831 KLC1 kinesin light chain 1 14 protein-coding KLC|KNS2|KNS2A kinesin light chain 1|kinesin 2 60/70kDa|medulloblastoma antigen MU-MB-2.50 39 0.005338 10.55 1 1 +3832 KIF11 kinesin family member 11 10 protein-coding EG5|HKSP|KNSL1|MCLMR|TRIP5 kinesin-like protein KIF11|TR-interacting protein 5|TRIP-5|kinesin-like protein 1|kinesin-like spindle protein HKSP|kinesin-related motor protein Eg5|thyroid receptor-interacting protein 5 46 0.006296 8.705 1 1 +3833 KIFC1 kinesin family member C1 6 protein-coding HSET|KNSL2 kinesin-like protein KIFC1|kinesin-like 2|kinesin-like protein 2|kinesin-related protein HSET 63 0.008623 8.454 1 1 +3834 KIF25 kinesin family member 25 6 protein-coding KNSL3 kinesin-like protein KIF25|kinesin-like 3|kinesin-like protein 3 41 0.005612 1.641 1 1 +3835 KIF22 kinesin family member 22 16 protein-coding A-328A3.2|KID|KNSL4|OBP|OBP-1|OBP-2|SEMDJL2 kinesin-like protein KIF22|kinesin-like DNA-binding protein pseudogene|kinesin-like protein 4|oriP binding protein|origin of plasmid DNA replication-binding protein 37 0.005064 10.37 1 1 +3836 KPNA1 karyopherin subunit alpha 1 3 protein-coding IPOA5|NPI-1|RCH2|SRP1 importin subunit alpha-5|RAG cohort protein 2|SRP1-beta|importin alpha 5|importin subunit alpha-1|importin-alpha-S1|karyopherin alpha 1 (importin alpha 5)|nucleoprotein interactor 1|recombination activating gene cohort 2 37 0.005064 10.64 1 1 +3837 KPNB1 karyopherin subunit beta 1 17 protein-coding IMB1|IPO1|IPOB|Impnb|NTF97 importin subunit beta-1|PTAC97|importin 1|importin 90|importin beta-1 subunit|karyopherin (importin) beta 1|nuclear factor p97|pore targeting complex 97 kDa subunit 58 0.007939 12.21 1 1 +3838 KPNA2 karyopherin subunit alpha 2 17 protein-coding IPOA1|QIP2|RCH1|SRP1-alpha|SRP1alpha importin subunit alpha-1|RAG cohort protein 1|importin subunit alpha-2|importin-alpha-P1|karyopherin alpha 2 (RAG cohort 1, importin alpha 1)|pendulin 37 0.005064 10.88 1 1 +3839 KPNA3 karyopherin subunit alpha 3 13 protein-coding IPOA4|SRP1|SRP1gamma|SRP4|hSRP1 importin subunit alpha-4|SRP1-gamma|importin alpha 4|importin alpha Q2|importin alpha-3|importin subunit alpha-3|karyopherin alpha 3 (importin alpha 4)|qip2 39 0.005338 9.916 1 1 +3840 KPNA4 karyopherin subunit alpha 4 3 protein-coding IPOA3|QIP1|SRP3 importin subunit alpha-3|importin alpha Q1|importin subunit alpha-4|karyopherin alpha 4 (importin alpha 3) 28 0.003832 10.78 1 1 +3841 KPNA5 karyopherin subunit alpha 5 6 protein-coding IPOA6|SRP6 importin subunit alpha-6|importin alpha 6|karyopherin alpha 5 (importin alpha 6) 37 0.005064 5.714 1 1 +3842 TNPO1 transportin 1 5 protein-coding IPO2|KPNB2|MIP|MIP1|TRN transportin-1|M9 region interaction protein|importin 2|importin beta 2|karyopherin (importin) beta 2|karyopherin beta-2 66 0.009034 11.2 1 1 +3843 IPO5 importin 5 13 protein-coding IMB3|KPNB3|Pse1|RANBP5|imp5 importin-5|RAN binding protein 5|Ran_GTP binding protein 5|importin beta-3 subunit|importin subunit beta-3|karyopherin (importin) beta 3|karyopherin beta-3|ran-binding protein 5 55 0.007528 11.63 1 1 +3845 KRAS KRAS proto-oncogene, GTPase 12 protein-coding C-K-RAS|CFC2|K-RAS2A|K-RAS2B|K-RAS4A|K-RAS4B|KI-RAS|KRAS1|KRAS2|NS|NS3|RALD|RASK2|c-Ki-ras2 GTPase KRas|K-Ras 2|K-ras p21 protein|Kirsten rat sarcoma viral oncogene homolog|PR310 c-K-ras oncogene|c-Ki-ras|c-Kirsten-ras protein|cellular c-Ki-ras2 proto-oncogene|cellular transforming proto-oncogene|oncogene KRAS2|transforming protein p21|v-Ki-ras2 Kirsten rat sarcoma 2 viral oncogene homolog 527 0.07213 10.03 1 1 +3846 KRTAP5-9 keratin associated protein 5-9 11 protein-coding KRN1|KRTAP5-1|KRTAP5.9 keratin-associated protein 5-9|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|ultrahigh sulfur keratin-associated protein 5.9 16 0.00219 1.95 1 1 +3848 KRT1 keratin 1 12 protein-coding CK1|EHK|EHK1|EPPK|K1|KRT1A|NEPPK keratin, type II cytoskeletal 1|67 kDa cytokeratin|CK-1|cytokeratin 1|epidermolytic hyperkeratosis 1|hair alpha protein|keratin 1, type II|type-II keratin Kb1 107 0.01465 2.513 1 1 +3849 KRT2 keratin 2 12 protein-coding CK-2e|K2e|KRT2A|KRT2E|KRTE keratin, type II cytoskeletal 2 epidermal|cytokeratin-2e|epithelial keratin-2e|keratin 2, type II|keratin-2 epidermis|keratin-2e|type-II keratin Kb2 74 0.01013 1.171 1 1 +3850 KRT3 keratin 3 12 protein-coding CK3|K3 keratin, type II cytoskeletal 3|65 kDa cytokeratin|CK-3|cytokeratin 3|keratin 3, type II|type-II keratin Kb3 58 0.007939 0.7774 1 1 +3851 KRT4 keratin 4 12 protein-coding CK-4|CK4|CYK4|K4|WSN1 keratin, type II cytoskeletal 4|cytokeratin 4|keratin 4, type II|type-II keratin Kb4 67 0.009171 2.946 1 1 +3852 KRT5 keratin 5 12 protein-coding CK5|DDD|DDD1|EBS2|K5|KRT5A keratin, type II cytoskeletal 5|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 5, type II|type-II keratin Kb5 60 0.008212 7.216 1 1 +3853 KRT6A keratin 6A 12 protein-coding CK-6C|CK-6E|CK6A|CK6C|CK6D|K6A|K6C|K6D|KRT6C|KRT6D|PC3 keratin, type II cytoskeletal 6C|cytokeratin 6A|cytokeratin 6C|cytokeratin 6D|keratin 6A, , type II|keratin 6A, type II|keratin, epidermal type II, K6A|keratin, type II cytoskeletal 6A|type-II keratin Kb6 57 0.007802 5.508 1 1 +3854 KRT6B keratin 6B 12 protein-coding CK-6B|CK6B|K6B|KRTL1|PC2|PC4 keratin, type II cytoskeletal 6B|cytokeratin 6B|keratin 6B, type II|keratin, epidermal, type II, K6B|keratin-like 1 (a type II keratin sequence)|type-II keratin Kb10 50 0.006844 5.112 1 1 +3855 KRT7 keratin 7 12 protein-coding CK7|K2C7|K7|SCL keratin, type II cytoskeletal 7|CK-7|cytokeratin 7|keratin 7, type II|keratin, 55K type II cytoskeletal|keratin, simple epithelial type I, K7|sarcolectin|type II mesothelial keratin K7|type-II keratin Kb7 33 0.004517 9.347 1 1 +3856 KRT8 keratin 8 12 protein-coding CARD2|CK-8|CK8|CYK8|K2C8|K8|KO keratin, type II cytoskeletal 8|cytokeratin-8|keratin 8, type II|type-II keratin Kb8 76 0.0104 12.08 1 1 +3857 KRT9 keratin 9 17 protein-coding CK-9|EPPK|K9 keratin, type I cytoskeletal 9|cytokeratin 9|keratin 9, type I|type I cytoskeletal 9 43 0.005886 1.342 1 1 +3858 KRT10 keratin 10 17 protein-coding BCIE|BIE|CK10|EHK|K10|KPP keratin, type I cytoskeletal 10|CK-10|cytokeratin 10|keratin 10, type I 58 0.007939 9.218 1 1 +3859 KRT12 keratin 12 17 protein-coding K12 keratin, type I cytoskeletal 12|CK-12|cytokeratin-12|keratin 12, type I 42 0.005749 0.7533 1 1 +3860 KRT13 keratin 13 17 protein-coding CK13|K13|WSN2 keratin, type I cytoskeletal 13|CK-13|cytokeratin 13|keratin 13, type I 43 0.005886 4.161 1 1 +3861 KRT14 keratin 14 17 protein-coding CK14|EBS3|EBS4|K14|NFJ keratin, type I cytoskeletal 14|cytokeratin 14|keratin 14, type I 50 0.006844 5.85 1 1 +3866 KRT15 keratin 15 17 protein-coding CK15|K15|K1CO keratin, type I cytoskeletal 15|CK-15|cytokeratin 15|keratin 15, type I|keratin-15, basic|keratin-15, beta|type I cytoskeletal 15 40 0.005475 6.662 1 1 +3868 KRT16 keratin 16 17 protein-coding CK16|FNEPPK|K16|K1CP|KRT16A|NEPPK|PC1 keratin, type I cytoskeletal 16|cytokeratin 16|focal non-epidermolytic palmoplantar keratoderma|keratin 16, type I 43 0.005886 5.428 1 1 +3872 KRT17 keratin 17 17 protein-coding 39.1|CK-17|K17|PC|PC2|PCHC1 keratin, type I cytoskeletal 17|cytokeratin-17|keratin 17, type I 30 0.004106 8.672 1 1 +3875 KRT18 keratin 18 12 protein-coding CK-18|CYK18|K18 keratin, type I cytoskeletal 18|cell proliferation-inducing gene 46 protein|cytokeratin 18|keratin 18, type I 23 0.003148 11.9 1 1 +3880 KRT19 keratin 19 17 protein-coding CK19|K19|K1CS keratin, type I cytoskeletal 19|40-kDa keratin intermediate filament|CK-19|cytokeratin 19|keratin 19, type I|keratin, type I, 40-kd 37 0.005064 10.92 1 1 +3881 KRT31 keratin 31 17 protein-coding HA1|Ha-1|KRTHA1|hHa1 keratin, type I cuticular Ha1|K31|hair keratin, type I Ha1|hard keratin, type I, 1|keratin 31, type I|keratin, hair, acidic,1 51 0.006981 1.464 1 1 +3882 KRT32 keratin 32 17 protein-coding HA2|HKA2|KRTHA2|hHa2 keratin, type I cuticular Ha2|K32|hair keratin, type I Ha2|hard keratin, type I, 2|keratin 32, type I|keratin, hair, acidic, 2|type I cuticular hair keratin 40 0.005475 1.007 1 1 +3883 KRT33A keratin 33A 17 protein-coding HA3I|Ha-3I|K33A|KRTHA3A|Krt1-3|hHa3-I keratin, type I cuticular Ha3-I|hair keratin, type I Ha3-I|hard keratin, type I,3I|keratin 33A, type I|keratin, hair, acidic, 3A 42 0.005749 0.5797 1 1 +3884 KRT33B keratin 33B 17 protein-coding HA3II|Ha-3II|K33B|KRTHA3A|KRTHA3B|hHa3-II keratin, type I cuticular Ha3-II|hair keratin, type I Ha3-II|hard keratin, type I, 3II|keratin 33B, type I|keratin, hair, acidic, 3B|type I hair keratin 3B 47 0.006433 0.6657 1 1 +3885 KRT34 keratin 34 17 protein-coding HA4|Ha-4|KRTHA4|hHa4 keratin, type I cuticular Ha4|K34|hair keratin, type I Ha4|hard keratin, type I, 4|keratin 34, type I|keratin, hair, acidic, 4 52 0.007117 0.9529 1 1 +3886 KRT35 keratin 35 17 protein-coding HA5|Ha-5|KRTHA5|hHa5 keratin, type I cuticular Ha5|HHa5 hair keratin type I intermediate filament|K35|hair keratin, type I Ha5|hard keratin, type I, 5|keratin 35, type I|keratin, hair, acidic, 5 44 0.006022 0.1324 1 1 +3887 KRT81 keratin 81 12 protein-coding HB1|Hb-1|KRTHB1|MLN137|ghHkb1|hHAKB2-1 keratin, type II cuticular Hb1|K81|MLN 137|ghHb1|hair keratin K2.9|hard keratin, type II, 1|keratin 81, type II|keratin, hair, basic, 1|metastatic lymph node 137 gene protein|type II hair keratin Hb1|type-II keratin Kb21 26 0.003559 4.013 1 1 +3888 KRT82 keratin 82 12 protein-coding HB2|Hb-2|KRTHB2 keratin, type II cuticular Hb2|K82|hard keratin, type II, 2|keratin 82, type II|keratin, hair, basic, 2|type II hair keratin Hb2|type-II keratin Kb22 41 0.005612 0.2988 1 1 +3889 KRT83 keratin 83 12 protein-coding HB3|Hb-3|KRTHB3 keratin, type II cuticular Hb3|K83|hHb3|hair keratin K2.10|hard keratin, type II, 3|keratin 83, type II|keratin, hair, basic, 3|type II hair keratin Hb3|type-II keratin Kb23 52 0.007117 1.438 1 1 +3890 KRT84 keratin 84 12 protein-coding HB4|KRTHB4 keratin, type II cuticular Hb4|K84|hard keratin, type II, 4|keratin 84, type II|keratin, hair, basic, 4|type II hair keratin 4|type II hair keratin Hb4|type-II keratin Kb24 54 0.007391 0.4459 1 1 +3891 KRT85 keratin 85 12 protein-coding ECTD4|HB5|Hb-5|K85|KRTHB5|hHb5 keratin, type II cuticular Hb5|hair keratin K2.12|hard keratin, type II, 5|keratin 85, type II|keratin, hair, basic, 5|type II hair keratin Hb5|type-II keratin Kb25 54 0.007391 0.5244 1 1 +3892 KRT86 keratin 86 12 protein-coding HB6|Hb1|K86|KRTHB1|KRTHB6|MNX keratin, type II cuticular Hb6|hair keratin K2.11|hard keratin, type II, 6|keratin 86, type II|keratin protein HB6|keratin, hair, basic, 6 (monilethrix)|type II hair keratin Hb6|type-II keratin Kb26 27 0.003696 3.78 1 1 +3895 KTN1 kinectin 1 14 protein-coding CG1|KNT|MU-RMS-40.19 kinectin|CG-1 antigen|kinectin 1 (kinesin receptor)|kinesin receptor 80 0.01095 12 1 1 +3897 L1CAM L1 cell adhesion molecule X protein-coding CAML1|CD171|HSAS|HSAS1|MASA|MIC5|N-CAM-L1|N-CAML1|NCAM-L1|S10|SPG1 neural cell adhesion molecule L1|antigen identified by monoclonal antibody R1 129 0.01766 6.311 1 1 +3898 LAD1 ladinin 1 1 protein-coding LadA ladinin-1|lad-1|linear IgA bullous dermatosis antigen|linear IgA disease antigen homolog 41 0.005612 8.99 1 1 +3899 AFF3 AF4/FMR2 family member 3 2 protein-coding LAF4|MLLT2-like AF4/FMR2 family member 3|MLLT2-related protein|lymphoid nuclear protein 4|lymphoid nuclear protein related to AF4|protein LAF-4 143 0.01957 6.789 1 1 +3902 LAG3 lymphocyte activating 3 12 protein-coding CD223 lymphocyte activation gene 3 protein|lymphocyte-activation gene 3 25 0.003422 5.9 1 1 +3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 19 protein-coding CD305|LAIR-1 leukocyte-associated immunoglobulin-like receptor 1|immunoglobulin heavy chain variable region|leukocyte-associated Ig-like receptor 1 33 0.004517 8.241 1 1 +3904 LAIR2 leukocyte associated immunoglobulin like receptor 2 19 protein-coding CD306 leukocyte-associated immunoglobulin-like receptor 2|LAIR-2|leukocyte-associated Ig-like receptor-2 31 0.004243 1.667 1 1 +3906 LALBA lactalbumin alpha 12 protein-coding LYZG alpha-lactalbumin|lactose synthase B protein|lysozyme G|lysozyme-like protein 7 8 0.001095 0.1183 1 1 +3908 LAMA2 laminin subunit alpha 2 6 protein-coding LAMM laminin subunit alpha-2|laminin M chain|laminin, alpha 2|laminin-12 subunit alpha|laminin-2 subunit alpha|laminin-4 subunit alpha|merosin heavy chain 275 0.03764 7.775 1 1 +3909 LAMA3 laminin subunit alpha 3 18 protein-coding BM600|E170|LAMNA|LOCS laminin subunit alpha-3|BM600 150kD subunit|LAM3, alpha-3 subunit|epiligrin 170 kda subunit|epiligrin alpha 3 subunit|kalinin 165kD subunit|kalinin subunit alpha|laminin 5, alpha-3 subunit|laminin A3|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 215 0.02943 8.903 1 1 +3910 LAMA4 laminin subunit alpha 4 6 protein-coding CMD1JJ|LAMA3|LAMA4*-1 laminin subunit alpha-4|laminin alpha 4 chain|laminin, alpha 4 188 0.02573 10.2 1 1 +3911 LAMA5 laminin subunit alpha 5 20 protein-coding - laminin subunit alpha-5|laminin alpha-5 chain|laminin-10 subunit alpha|laminin-11 subunit alpha|laminin-15 subunit alpha 238 0.03258 11.48 1 1 +3912 LAMB1 laminin subunit beta 1 7 protein-coding CLM|LIS5 laminin subunit beta-1|laminin B1 chain|laminin, beta 1 140 0.01916 11.47 1 1 +3913 LAMB2 laminin subunit beta 2 3 protein-coding LAMS|NPHS5 laminin subunit beta-2|S-LAM beta|S-laminin subunit beta|laminin B1s chain|laminin S|laminin, beta 2 (laminin S) 105 0.01437 11.88 1 1 +3914 LAMB3 laminin subunit beta 3 1 protein-coding AI1A|BM600-125KDA|LAM5|LAMNB1 laminin subunit beta-3|epiligrin subunit bata|kalinin B1 chain|kalinin subunit beta|kalinin-140kDa|laminin B1k chain|laminin S B3 chain|laminin beta 3|laminin, beta 3 (nicein (125kD), kalinin (140kD), BM600 (125kD))|laminin-5 subunit beta|nicein subunit beta|nicein-125kDa 99 0.01355 10.1 1 1 +3915 LAMC1 laminin subunit gamma 1 1 protein-coding LAMB2 laminin subunit gamma-1|S-LAM gamma|S-laminin subunit gamma|laminin B2 chain|laminin, gamma 1 (formerly LAMB2)|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 123 0.01684 12.01 1 1 +3916 LAMP1 lysosomal associated membrane protein 1 13 protein-coding CD107a|LAMPA|LGP120 lysosome-associated membrane glycoprotein 1|CD107 antigen-like family member A|LAMP-1|lysosome-associated membrane protein 1 27 0.003696 12.8 1 1 +3918 LAMC2 laminin subunit gamma 2 1 protein-coding B2T|BM600|CSF|EBR2|EBR2A|LAMB2T|LAMNB2 laminin subunit gamma-2|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, gamma 2|large adhesive scatter factor 140 kDa subunit|nicein subunit gamma 83 0.01136 9.399 1 1 +3920 LAMP2 lysosomal associated membrane protein 2 X protein-coding CD107b|LAMP-2|LAMPB|LGP110 lysosome-associated membrane glycoprotein 2|CD107 antigen-like family member B 27 0.003696 12.26 1 1 +3921 RPSA ribosomal protein SA 3 protein-coding 37LRP|67LR|ICAS|LAMBR|LAMR1|LBP|LBP/p40|LRP|LRP/LR|NEM/1CHD4|SA|lamR|p40 40S ribosomal protein SA|37 kDa laminin receptor|37/67 kDa laminin receptor|67 kDa laminin receptor|colon carcinoma laminin-binding protein|laminin receptor 1 (67kD, ribosomal protein SA)|laminin-binding protein precursor p40|multidrug resistance-associated protein MGr1-Ag 11 0.001506 12.4 1 1 +3925 STMN1 stathmin 1 1 protein-coding C1orf215|LAP18|Lag|OP18|PP17|PP19|PR22|SMN stathmin|leukemia-associated phosphoprotein p18|metablastin|oncoprotein 18|phosphoprotein 19|phosphoprotein p19|prosolin|stathmin 1/oncoprotein 18|testicular tissue protein Li 189|transmembrane protein C1orf215 13 0.001779 11.64 1 1 +3927 LASP1 LIM and SH3 protein 1 17 protein-coding Lasp-1|MLN50 LIM and SH3 domain protein 1|metastatic lymph node gene 50 protein 19 0.002601 12.48 1 1 +3929 LBP lipopolysaccharide binding protein 20 protein-coding BPIFD2 lipopolysaccharide-binding protein|BPI fold containing family D, member 2|LPS-binding protein 39 0.005338 2.801 1 1 +3930 LBR lamin B receptor 1 protein-coding DHCR14B|LMN2R|PHA|TDRD18 lamin-B receptor|integral nuclear envelope inner membrane protein|tudor domain containing 18 52 0.007117 10.09 1 1 +3931 LCAT lecithin-cholesterol acyltransferase 16 protein-coding - phosphatidylcholine-sterol acyltransferase|phosphatidylcholine--sterol O-acyltransferase|phospholipid-cholesterol acyltransferase|testicular secretory protein Li 24 25 0.003422 6.751 1 1 +3932 LCK LCK proto-oncogene, Src family tyrosine kinase 1 protein-coding IMD22|LSK|YT16|p56lck|pp58lck tyrosine-protein kinase Lck|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 41 0.005612 6.693 1 1 +3933 LCN1 lipocalin 1 9 protein-coding PMFA|TLC|TP|VEGP lipocalin-1|VEG protein|Von Ebner gland protein|lipocalin 1 (tear prealbumin)|protein migrating faster than albumin|tear prealbumin 16 0.00219 0.4504 1 1 +3934 LCN2 lipocalin 2 9 protein-coding 24p3|MSFI|NGAL|p25 neutrophil gelatinase-associated lipocalin|25 kDa alpha-2-microglobulin-related subunit of MMP-9|migration-stimulating factor inhibitor|oncogene 24p3|siderocalin LCN2 19 0.002601 7.415 1 1 +3936 LCP1 lymphocyte cytosolic protein 1 13 protein-coding CP64|HEL-S-37|L-PLASTIN|LC64P|LPL|PLS2 plastin-2|L-plastin (Lymphocyte cytosolic protein 1) (LCP-1) (LC64P)|LCP-1|Lymphocyte cytosolic protein-1 (plasmin)|bA139H14.1 (lymphocyte cytosolic protein 1 (L-plastin))|epididymis secretory protein Li 37|lymphocyte cytosolic protein 1 (L-plastin) 55 0.007528 10.89 1 1 +3937 LCP2 lymphocyte cytosolic protein 2 5 protein-coding SLP-76|SLP76 lymphocyte cytosolic protein 2|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 (SH2 domain containing leukocyte protein of 76kDa) 53 0.007254 8.175 1 1 +3938 LCT lactase 2 protein-coding LAC|LPH|LPH1 lactase-phlorizin hydrolase|lactase-glycosylceramidase|lactase-phlorizin hydrolase-1 182 0.02491 1.122 1 1 +3939 LDHA lactate dehydrogenase A 11 protein-coding GSD11|HEL-S-133P|LDHM|PIG19 L-lactate dehydrogenase A chain|LDH muscle subunit|LDH-A|LDH-M|cell proliferation-inducing gene 19 protein|epididymis secretory sperm binding protein Li 133P|lactate dehydrogenase M|proliferation-inducing gene 19|renal carcinoma antigen NY-REN-59 24 0.003285 13.56 1 1 +3945 LDHB lactate dehydrogenase B 12 protein-coding HEL-S-281|LDH-B|LDH-H|LDHBD|TRG-5 L-lactate dehydrogenase B chain|LDH heart subunit|epididymis secretory protein Li 281|lactate dehydrogenase H chain|renal carcinoma antigen NY-REN-46|testicular secretory protein Li 25 26 0.003559 12.42 1 1 +3948 LDHC lactate dehydrogenase C 11 protein-coding CT32|LDH3|LDHX 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|lactate dehydrogenase c variant 5|testis secretory sperm-binding protein Li 234P 33 0.004517 1.978 1 1 +3949 LDLR low density lipoprotein receptor 19 protein-coding FH|FHC|LDLCQ2 low-density lipoprotein receptor|LDL receptor|low-density lipoprotein receptor class A domain-containing protein 3 70 0.009581 10.04 1 1 +3950 LECT2 leukocyte cell derived chemotaxin 2 5 protein-coding chm-II|chm2 leukocyte cell-derived chemotaxin-2|chondromodulin-II 15 0.002053 0.6375 1 1 +3952 LEP leptin 7 protein-coding LEPD|OB|OBS leptin|leptin (murine obesity homolog)|leptin (obesity homolog, mouse)|obese protein|obese, mouse, homolog of|obesity factor 12 0.001642 1.765 1 1 +3953 LEPR leptin receptor 1 protein-coding CD295|LEP-R|LEPRD|OB-R|OBR leptin receptor|OB receptor|huB219 133 0.0182 7.689 1 1 +3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 4 protein-coding - LETM1 and EF-hand domain-containing protein 1, mitochondrial|Mdm38 homolog|leucine zipper-EF-hand containing transmembrane protein 1 59 0.008076 10.31 1 1 +3955 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 7 protein-coding SCDO3 beta-1,3-N-acetylglucosaminyltransferase lunatic fringe 25 0.003422 9.067 1 1 +3956 LGALS1 galectin 1 22 protein-coding GAL1|GBP galectin-1|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|lactose-binding lectin 1|lectin, galactoside-binding, soluble, 1|putative MAPK-activating protein PM12 10 0.001369 11.88 1 1 +3957 LGALS2 galectin 2 22 protein-coding HL14 galectin-2|S-Lac lectin 2|beta-galactoside-binding lectin L-14-II|gal-2|lactose-binding lectin 2|lectin, galactoside-binding, soluble, 2 14 0.001916 4.088 1 1 +3958 LGALS3 galectin 3 14 protein-coding CBP35|GAL3|GALBP|GALIG|L31|LGALS2|MAC2 galectin-3|35 kDa lectin|IgE-binding protein|MAC-2 antigen|advanced glycation end-product receptor 3|carbohydrate-binding protein 35|galactose-specific lectin 3|laminin-binding protein|lectin L-29|lectin, galactoside-binding, soluble, 3 13 0.001779 11.5 1 1 +3959 LGALS3BP galectin 3 binding protein 17 protein-coding 90K|BTBD17B|CyCAP|M2BP|MAC-2-BP|TANGO10B|gp90 galectin-3-binding protein|L3 antigen|MAC2BP|Mac-2-binding protein|basement membrane autoantigen p105|lectin galactoside-binding soluble 3-binding protein|mac-2 BP|serum protein 90K|transport and golgi organization 10 homolog B|tumor-associated antigen 90K 30 0.004106 13.54 1 1 +3960 LGALS4 galectin 4 19 protein-coding GAL4|L36LBP galectin-4|L-36 lactose-binding protein|antigen NY-CO-27|gal-4|lactose-binding lectin 4|lectin, galactoside-binding, soluble, 4 24 0.003285 4.36 1 1 +3963 LGALS7 galectin 7 19 protein-coding GAL7|LGALS7A galectin-7|lectin, galactoside-binding, soluble, 7 3 0.0004106 3.156 1 1 +3964 LGALS8 galectin 8 1 protein-coding Gal-8|PCTA-1|PCTA1|Po66-CBP galectin-8|Po66 carbohydrate binding protein|galectin-8g|lectin, galactoside-binding, soluble, 8|po66 carbohydrate-binding protein|prostate carcinoma tumor antigen 1 19 0.002601 9.596 1 1 +3965 LGALS9 galectin 9 17 protein-coding HUAT|LGALS9A galectin-9|ecalectin|gal-9|lectin, galactoside-binding, soluble, 9|tumor antigen HOM-HD-21|urate transporter/channel protein 31 0.004243 9.943 1 1 +3972 LHB luteinizing hormone beta polypeptide 19 protein-coding CGB4|HH23|LSH-B|LSH-beta lutropin subunit beta|interstitial cell stimulating hormone, beta chain|luteinizing hormone beta subunit|lutropin beta chain 14 0.001916 1.225 1 1 +3973 LHCGR luteinizing hormone/choriogonadotropin receptor 2 protein-coding HHG|LCGR|LGR2|LH/CG-R|LH/CGR|LHR|LHRHR|LSH-R|ULG5 lutropin-choriogonadotropic hormone receptor|hypergonadotropic hypogonadism|lutropin/choriogonadotropin receptor 101 0.01382 0.6016 1 1 +3975 LHX1 LIM homeobox 1 17 protein-coding LIM-1|LIM1 LIM/homeobox protein Lhx1|LIM homeobox protein 1|homeobox protein Lim-1 42 0.005749 1.248 1 1 +3976 LIF leukemia inhibitory factor 22 protein-coding CDF|DIA|HILDA|MLPLI leukemia inhibitory factor|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 17 0.002327 7.282 1 1 +3977 LIFR leukemia inhibitory factor receptor alpha 5 protein-coding CD118|LIF-R|SJS2|STWS|SWS leukemia inhibitory factor receptor|CD118 antigen|LIF receptor 106 0.01451 8.976 1 1 +3978 LIG1 DNA ligase 1 19 protein-coding - DNA ligase 1|ligase I, DNA, ATP-dependent|polydeoxyribonucleotide synthase [ATP] 1 66 0.009034 9.566 1 1 +3980 LIG3 DNA ligase 3 17 protein-coding LIG2 DNA ligase 3|ligase II, DNA, ATP-dependent|ligase III, DNA, ATP-dependent|polydeoxyribonucleotide synthase [ATP] 3 67 0.009171 9.21 1 1 +3981 LIG4 DNA ligase 4 13 protein-coding LIG4S DNA ligase 4|DNA joinase|DNA ligase IV|DNA repair enzyme|ligase IV, DNA, ATP-dependent|polydeoxyribonucleotide synthase [ATP] 4|polynucleotide ligase|sealase 71 0.009718 8.077 1 1 +3982 LIM2 lens intrinsic membrane protein 2 19 protein-coding CTRCT19|MP17|MP19 lens fiber membrane intrinsic protein|MP18|MP20|lens intrinsic membrane protein 2, 19kDa 25 0.003422 0.3271 1 1 +3983 ABLIM1 actin binding LIM protein 1 10 protein-coding ABLIM|LIMAB1|LIMATIN|abLIM-1 actin-binding LIM protein 1|actin-binding LIM protein family member 1|actin-binding double-zinc-finger protein 57 0.007802 11.3 1 1 +3984 LIMK1 LIM domain kinase 1 7 protein-coding LIMK|LIMK-1 LIM domain kinase 1|LIM motif-containing protein kinase 49 0.006707 10.26 1 1 +3985 LIMK2 LIM domain kinase 2 22 protein-coding - LIM domain kinase 2 48 0.00657 10.37 1 1 +3987 LIMS1 LIM zinc finger domain containing 1 2 protein-coding PINCH|PINCH-1|PINCH1 LIM and senescent cell antigen-like-containing domain protein 1|LIM and senescent cell antigen-like domains 1|LIM-type zinc finger domains 1|particularly interesting new Cys-His protein 1|renal carcinoma antigen NY-REN-48|senescent cell antigen 14 0.001916 8.106 1 1 +3988 LIPA lipase A, lysosomal acid type 10 protein-coding CESD|LAL lysosomal acid lipase/cholesteryl ester hydrolase|acid cholesteryl ester hydrolase|cholesterol ester hydrolase|cholesteryl esterase|lipase A, lysosomal acid, cholesterol esterase|lysosomal acid lipase|sterol esterase 22 0.003011 10.84 1 1 +3990 LIPC lipase C, hepatic type 15 protein-coding HDLCQ12|HL|HTGL|LIPH hepatic triacylglycerol lipase|Triacylglycerol lipase|hepatic lipase|lipase member C|lipase, hepatic 42 0.005749 3.709 1 1 +3991 LIPE lipase E, hormone sensitive type 19 protein-coding AOMS4|FPLD6|HSL|LHS hormone-sensitive lipase|hormone-sensitive lipase testicular isoform|lipase, hormone-sensitive 66 0.009034 7.068 1 1 +3992 FADS1 fatty acid desaturase 1 11 protein-coding D5D|FADS6|FADSD5|LLCDL1|TU12 fatty acid desaturase 1|delta(5) desaturase|delta-5 fatty acid desaturase|linoleoyl-CoA desaturase (delta-6-desaturase)-like 1 24 0.003285 9.628 1 1 +3993 LLGL2 LLGL2, scribble cell polarity complex component 17 protein-coding HGL|Hugl-2|LGL2 lethal(2) giant larvae protein homolog 2|human giant larvae homolog|lethal giant larvae homolog 2|lethal giant larvae homolog 2, scribble cell polarity complex component 73 0.009992 9.819 1 1 +3995 FADS3 fatty acid desaturase 3 11 protein-coding CYB5RP|LLCDL3 fatty acid desaturase 3|cytochrome b5-related protein|delta-9 fatty acid desaturase|delta-9-desaturase|linoleoyl-CoA desaturase (delta-9-desaturase)-like 3 25 0.003422 8.609 1 1 +3996 LLGL1 LLGL1, scribble cell polarity complex component 17 protein-coding DLG4|HUGL|HUGL-1|HUGL1|LLGL|Lgl1|Mgl1 lethal(2) giant larvae protein homolog 1|human homolog to the D-lgl gene protein|lethal giant larvae homolog 1|lethal giant larvae homolog 1, scribble cell polarity complex component 42 0.005749 9.727 1 1 +3998 LMAN1 lectin, mannose binding 1 18 protein-coding ERGIC-53|ERGIC53|F5F8D|FMFD1|MCFD1|MR60|gp58 protein ERGIC-53|ER-Golgi intermediate compartment 53 kDa protein|endoplasmic reticulum-golgi intermediate compartment protein 53|intracellular mannose-specific lectin MR60 56 0.007665 11.59 1 1 +4000 LMNA lamin A/C 1 protein-coding CDCD1|CDDC|CMD1A|CMT2B1|EMD2|FPL|FPLD|FPLD2|HGPS|IDC|LDP1|LFP|LGMD1B|LMN1|LMNC|LMNL1|PRO1 lamin|70 kDa lamin|lamin A/C-like 1|prelamin-A/C|renal carcinoma antigen NY-REN-32 35 0.004791 12.94 1 1 +4001 LMNB1 lamin B1 5 protein-coding ADLD|LMN|LMN2|LMNB lamin-B1 32 0.00438 9.512 1 1 +4004 LMO1 LIM domain only 1 11 protein-coding RBTN1|RHOM1|TTG1 rhombotin-1|LIM domain only 1 (rhombotin 1)|LIM domain only protein 1|LMO-1|T-cell translocation gene 1|T-cell translocation protein 1|cysteine-rich protein TTG-1 8 0.001095 2.207 1 1 +4005 LMO2 LIM domain only 2 11 protein-coding RBTN2|RBTNL1|RHOM2|TTG2 rhombotin-2|LIM domain only 2 (rhombotin-like 1)|LIM domain only protein 2|LMO-2|T-cell translocation gene 2|T-cell translocation protein 2|cysteine-rich protein TTG-2|rhombotin-like 1 17 0.002327 8.068 1 1 +4007 PRICKLE3 prickle planar cell polarity protein 3 X protein-coding LMO6 prickle-like protein 3|LIM domain only protein 6|LMO-6|prickle homolog 3|triple LIM domain protein 6 38 0.005201 7.366 1 1 +4008 LMO7 LIM domain 7 13 protein-coding FBX20|FBXO20|LOMP LIM domain only protein 7|F-box only protein 20|F-box protein Fbx20|LIM domain only 7 protein|LMO-7|zinc-finger domain-containing protein 123 0.01684 10.13 1 1 +4009 LMX1A LIM homeobox transcription factor 1 alpha 1 protein-coding LMX1|LMX1.1 LIM homeobox transcription factor 1-alpha|LIM/homeobox protein 1.1 49 0.006707 0.9938 1 1 +4010 LMX1B LIM homeobox transcription factor 1 beta 9 protein-coding LMX1.2|NPS1 LIM homeobox transcription factor 1-beta|LIM/homeobox protein 1.2|LMX-1.2 35 0.004791 3.926 1 1 +4012 LNPEP leucyl and cystinyl aminopeptidase 5 protein-coding CAP|IRAP|P-LAP|PLAP leucyl-cystinyl aminopeptidase|AT (4) receptor|angiotensin IV receptor|cystinyl aminopeptidase|insulin-regulated aminopeptidase|insulin-regulated membrane aminopeptidase|insulin-responsive aminopeptidase|otase|oxytocinase|placental leucine aminopeptidase|vasopressinase 60 0.008212 7.38 1 1 +4013 VWA5A von Willebrand factor A domain containing 5A 11 protein-coding BCSC-1|BCSC1|LOH11CR2A von Willebrand factor A domain-containing protein 5A|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 58 0.007939 8.84 1 1 +4014 LOR loricrin 1 protein-coding - loricrin 15 0.002053 0.7497 1 1 +4015 LOX lysyl oxidase 5 protein-coding - protein-lysine 6-oxidase 36 0.004927 8.456 1 1 +4016 LOXL1 lysyl oxidase like 1 15 protein-coding LOL|LOXL lysyl oxidase homolog 1|lysyl oxidase-like protein 1 31 0.004243 8.483 1 1 +4017 LOXL2 lysyl oxidase like 2 8 protein-coding LOR2|WS9-14 lysyl oxidase homolog 2|lysyl oxidase related 2|lysyl oxidase-like 2 delta e13|lysyl oxidase-like 2 protein|lysyl oxidase-like protein 2|lysyl oxidase-related protein 2|lysyl oxidase-related protein WS9-14 57 0.007802 9.537 1 1 +4018 LPA lipoprotein(a) 6 protein-coding AK38|APOA|LP apolipoprotein(a)|antiangiogenic AK38 protein|apo(a)|lipoprotein, Lp(a)|lp(a) 181 0.02477 1.273 1 1 +4023 LPL lipoprotein lipase 8 protein-coding HDLCQ11|LIPD lipoprotein lipase 45 0.006159 7.848 1 1 +4025 LPO lactoperoxidase 17 protein-coding SPO lactoperoxidase|salivary peroxidase 50 0.006844 1.357 1 1 +4026 LPP LIM domain containing preferred translocation partner in lipoma 3 protein-coding - lipoma-preferred partner|LIM protein|lipoma preferred partner 69 0.009444 8.045 1 1 +4033 LRMP lymphoid restricted membrane protein 12 protein-coding JAW1 lymphoid-restricted membrane protein|protein Jaw1 37 0.005064 6.318 1 1 +4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 7 protein-coding LRN|LRRN1|LRRN4|PP14183 leucine-rich repeat and calponin homology domain-containing protein 4|leucine rich repeat neuronal 4|leucine-rich neuronal protein|leucine-rich repeats and calponin homology (CH) domain containing 4 37 0.005064 10.01 1 1 +4035 LRP1 LDL receptor related protein 1 12 protein-coding A2MR|APOER|APR|CD91|IGFBP3R|LRP|LRP1A|TGFBR5 prolow-density lipoprotein receptor-related protein 1|TbetaR-V/LRP-1/IGFBP-3 receptor|alpha-2-macroglobulin receptor|apolipoprotein E receptor|low density lipoprotein receptor-related protein 1|type V tgf-beta receptor 289 0.03956 12.76 1 1 +4036 LRP2 LDL receptor related protein 2 2 protein-coding DBS|GP330 low-density lipoprotein receptor-related protein 2|Heymann nephritis antigen homolog|LRP-2|calcium sensor protein|glycoprotein 330|megalin 425 0.05817 5.169 1 1 +4037 LRP3 LDL receptor related protein 3 19 protein-coding - low-density lipoprotein receptor-related protein 3|105 kDa low-density lipoprotein receptor-related protein|CTD-2540B15.13|LRP-3|hLRp105 41 0.005612 9.665 1 1 +4038 LRP4 LDL receptor related protein 4 11 protein-coding CLSS|CMS17|LRP-4|LRP10|MEGF7|SOST2 low-density lipoprotein receptor-related protein 4|multiple epidermal growth factor-like domains 7 149 0.02039 8.136 1 1 +4040 LRP6 LDL receptor related protein 6 12 protein-coding ADCAD2|STHAG7 low-density lipoprotein receptor-related protein 6|LRP-6 109 0.01492 9.686 1 1 +4041 LRP5 LDL receptor related protein 5 11 protein-coding BMND1|EVR1|EVR4|HBM|LR3|LRP-5|LRP7|OPPG|OPS|OPTA1|VBCH2 low-density lipoprotein receptor-related protein 5|low density lipoprotein receptor-related protein 5|low density lipoprotein receptor-related protein 7 105 0.01437 10.73 1 1 +4043 LRPAP1 LDL receptor related protein associated protein 1 4 protein-coding A2MRAP|A2RAP|HBP44|MRAP|MYP23|RAP|alpha-2-MRAP alpha-2-macroglobulin receptor-associated protein|39 kDa 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) 15 0.002053 11.43 1 1 +4045 LSAMP limbic system-associated membrane protein 3 protein-coding IGLON3|LAMP limbic system-associated membrane protein|IgLON family member 3 50 0.006844 5.452 1 1 +4046 LSP1 lymphocyte-specific protein 1 11 protein-coding WP34|pp52 lymphocyte-specific protein 1|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 35 0.004791 9.456 1 1 +4047 LSS lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) 21 protein-coding CTRCT44|OSC lanosterol synthase|2,3-epoxysqualene-lanosterol cyclase|hOSC|oxidosqualene--lanosterol cyclase 58 0.007939 10.28 1 1 +4048 LTA4H leukotriene A4 hydrolase 12 protein-coding - leukotriene A-4 hydrolase|LTA-4 hydrolase|testicular secretory protein Li 27 26 0.003559 10.86 1 1 +4049 LTA lymphotoxin alpha 6 protein-coding LT|TNFB|TNFSF1|TNLG1E lymphotoxin-alpha|LT-alpha|TNF superfamily, member 1|TNF-beta|tumor necrosis factor beta|tumor necrosis factor ligand 1E|tumor necrosis factor ligand superfamily member 1 20 0.002737 3.246 1 1 +4050 LTB lymphotoxin beta 6 protein-coding TNFC|TNFSF3|TNLG1C|p33 lymphotoxin-beta|LT-beta|TNF superfamily member 3|TNF-C|lymphotoxin beta (TNF superfamily, member 3)|tumor necrosis factor C|tumor necrosis factor ligand 1C|tumor necrosis factor ligand superfamily member 3 17 0.002327 6.475 1 1 +4051 CYP4F3 cytochrome P450 family 4 subfamily F member 3 19 protein-coding CPF3|CYP4F|LTB4H docosahexaenoic acid omega-hydroxylase CYP4F3|20-HETE synthase|20-hydroxyeicosatetraenoic acid synthase|CYPIVF3|cytochrome P-450|cytochrome P450 4F3|cytochrome P450, family 4, subfamily F, polypeptide 3|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 55 0.007528 3.921 1 1 +4052 LTBP1 latent transforming growth factor beta binding protein 1 2 protein-coding - latent-transforming growth factor beta-binding protein 1|LTBP-1|TGF-beta1-BP-1|transforming growth factor beta-1-binding protein 1 191 0.02614 10.07 1 1 +4053 LTBP2 latent transforming growth factor beta binding protein 2 14 protein-coding C14orf141|GLC3D|LTBP3|MSPKA|MSTP031|WMS3 latent-transforming growth factor beta-binding protein 2|LTBP-2 134 0.01834 10.54 1 1 +4054 LTBP3 latent transforming growth factor beta binding protein 3 11 protein-coding DASS|LTBP-3|LTBP2|STHAG6|pp6425 latent-transforming growth factor beta-binding protein 3|latent TGF beta binding protein 3 75 0.01027 11.35 1 1 +4055 LTBR lymphotoxin beta receptor 12 protein-coding CD18|D12S370|LT-BETA-R|TNF-R-III|TNFCR|TNFR-RP|TNFR2-RP|TNFR3|TNFRSF3 tumor necrosis factor receptor superfamily member 3|lymphotoxin B receptor|lymphotoxin beta receptor (TNFR superfamily, member 3)|tumor necrosis factor C receptor|tumor necrosis factor receptor 2-related protein|tumor necrosis factor receptor type III 27 0.003696 10.96 1 1 +4056 LTC4S leukotriene C4 synthase 5 protein-coding - leukotriene C4 synthase|LTC4 synthase 2 0.0002737 4.306 1 1 +4057 LTF lactotransferrin 3 protein-coding GIG12|HEL110|HLF2|LF lactotransferrin|epididymis luminal protein 110|growth-inhibiting protein 12|kaliocin-1|lactoferricin|lactoferroxin|neutrophil lactoferrin|talalactoferrin 62 0.008486 7.195 1 1 +4058 LTK leukocyte receptor tyrosine kinase 15 protein-coding TYK1 leukocyte tyrosine kinase receptor|protein tyrosine kinase 1 58 0.007939 3.865 1 1 +4059 BCAM basal cell adhesion molecule (Lutheran blood group) 19 protein-coding AU|CD239|LU|MSK19 basal cell adhesion molecule|Auberger b antigen|B-CAM cell surface glycoprotein|B-cell adhesion molecule|F8/G253 antigen|Lutheran blood group variant LUGA|basal cell adhesion molecule (Lu and Au blood groups) 47 0.006433 11.5 1 1 +4060 LUM lumican 12 protein-coding LDC|SLRR2D lumican|KSPG lumican|keratan sulfate proteoglycan lumican|lumican proteoglycan 50 0.006844 10.88 1 1 +4061 LY6E lymphocyte antigen 6 complex, locus E 8 protein-coding RIG-E|RIGE|SCA-2|SCA2|TSA-1 lymphocyte antigen 6E|ly-6E|retinoic acid induced gene E|retinoic acid-induced gene E protein|stem cell antigen 2|thymic shared antigen 1 6 0.0008212 12 1 1 +4062 LY6H lymphocyte antigen 6 complex, locus H 8 protein-coding NMLY6 lymphocyte antigen 6H|ly-6H 11 0.001506 3.512 1 1 +4063 LY9 lymphocyte antigen 9 1 protein-coding CD229|SLAMF3|hly9|mLY9 T-lymphocyte surface antigen Ly-9|SLAM family member 3|cell surface molecule Ly-9|signaling lymphocytic activation molecule 3 69 0.009444 4.345 1 1 +4064 CD180 CD180 molecule 5 protein-coding LY64|Ly78|RP105 CD180 antigen|lymphocyte antigen 64|lymphocyte antigen-64, radioprotective, 105kDa|radioprotective 105 kDa protein 52 0.007117 6.003 1 1 +4065 LY75 lymphocyte antigen 75 2 protein-coding CD205|CLEC13B|DEC-205|GP200-MR6|LY-75 lymphocyte antigen 75|C-type lectin domain family 13 member B 83 0.01136 8.344 1 1 +4066 LYL1 LYL1, basic helix-loop-helix family member 19 protein-coding bHLHa18 protein lyl-1|class A basic helix-loop-helix protein 18|lymphoblastic leukemia associated hematopoiesis regulator 1|lymphoblastic leukemia derived sequence 1 9 0.001232 6.283 1 1 +4067 LYN LYN proto-oncogene, Src family tyrosine kinase 8 protein-coding JTK8|p53Lyn|p56Lyn tyrosine-protein kinase Lyn|lck/Yes-related novel protein tyrosine kinase|v-yes-1 Yamaguchi sarcoma viral related oncogene homolog 48 0.00657 9.681 1 1 +4068 SH2D1A SH2 domain containing 1A X protein-coding DSHP|EBVS|IMD5|LYP|MTCP1|SAP|SAP/SH2D1A|XLP|XLPD|XLPD1 SH2 domain-containing protein 1A|Duncan disease SH2-protein|SLAM associated protein/SH2 domain protein 1A|SLAM-associated protein|T cell signal transduction molecule SAP|signaling lymphocyte activation molecule-associated protein|signaling lymphocytic activation molecule-associated protein 16 0.00219 4.611 1 1 +4069 LYZ lysozyme 12 protein-coding LYZF1|LZM lysozyme C|1,4-beta-N-acetylmuramidase C|c-type lysozyme|lysozyme F1 15 0.002053 10.94 1 1 +4070 TACSTD2 tumor-associated calcium signal transducer 2 1 protein-coding EGP-1|EGP1|GA733-1|GA7331|GP50|M1S1|TROP2 tumor-associated calcium signal transducer 2|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|pancreatic carcinoma marker protein GA733-1|pancreatic carcinoma marker protein GA7331|truncated TACSTD2 17 0.002327 9.845 1 1 +4071 TM4SF1 transmembrane 4 L six family member 1 3 protein-coding H-L6|L6|M3S1|TAAL6 transmembrane 4 L6 family member 1|membrane component, chromosome 3, surface marker 1|transmembrane 4 superfamily member 1|tumor-associated antigen L6 19 0.002601 11.21 1 1 +4072 EPCAM epithelial cell adhesion molecule 2 protein-coding DIAR5|EGP-2|EGP314|EGP40|ESA|HNPCC8|KS1/4|KSA|M4S1|MIC18|MK-1|TACSTD1|TROP1 epithelial cell adhesion molecule|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 17 0.002327 10.1 1 1 +4074 M6PR mannose-6-phosphate receptor, cation dependent 12 protein-coding CD-M6PR|CD-MPR|MPR 46|MPR-46|MPR46|SMPR cation-dependent mannose-6-phosphate receptor|46-kDa mannose 6-phosphate receptor|CD Man-6-P receptor|Mr 46,000 Man6PR|small mannose 6-phosphate receptor 10 0.001369 11.49 1 1 +4076 CAPRIN1 cell cycle associated protein 1 11 protein-coding GPIAP1|GPIP137|GRIP137|M11S1|RNG105|p137GPI caprin-1|GPI-anchored membrane protein 1|GPI-anchored protein p137|GPI-p137|RNA granule protein 105|activation/proliferation-associated protein 1|caprin 1|cytoplasmic activation- and proliferation-associated protein 1|cytoplasmic activation/proliferation-associated protein-1|membrane component chromosome 11 surface marker 1 51 0.006981 12.38 1 1 +4077 NBR1 NBR1, autophagy cargo receptor 17 protein-coding 1A1-3B|IAI3B|M17S2|MIG19 next to BRCA1 gene 1 protein|B-box protein|cell migration-inducing gene 19 protein|membrane component, chromosome 17, surface marker 2 (ovarian carcinoma antigen CA125)|migration-inducing protein 19|neighbor of BRCA1 gene 1 51 0.006981 11.72 1 1 +4081 MAB21L1 mab-21 like 1 13 protein-coding CAGR1|Nbla00126 protein mab-21-like 1|mab-21-like protein 1 52 0.007117 2.686 1 1 +4082 MARCKS myristoylated alanine rich protein kinase C substrate 6 protein-coding 80K-L|MACS|PKCSL|PRKCSL 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 25 0.003422 11.87 1 1 +4084 MXD1 MAX dimerization protein 1 2 protein-coding BHLHC58|MAD|MAD1 max dimerization protein 1|MAX-binding protein|antagonizer of myc transcriptional activity|max dimerizer 1 22 0.003011 9.093 1 1 +4085 MAD2L1 MAD2 mitotic arrest deficient-like 1 (yeast) 4 protein-coding HSMAD2|MAD2 mitotic spindle assembly checkpoint protein MAD2A|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 20 0.002737 8.142 1 1 +4086 SMAD1 SMAD family member 1 4 protein-coding BSP-1|BSP1|JV4-1|JV41|MADH1|MADR1 mothers against decapentaplegic 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|transforming growth factor-beta signaling protein 1 34 0.004654 9.232 1 1 +4087 SMAD2 SMAD family member 2 18 protein-coding JV18|JV18-1|MADH2|MADR2|hMAD-2|hSMAD2 mothers against decapentaplegic homolog 2|MAD homolog 2|SMAD, mothers against DPP homolog 2|Sma- and Mad-related protein 2|mother against DPP homolog 2 48 0.00657 10.66 1 1 +4088 SMAD3 SMAD family member 3 15 protein-coding HSPC193|HsT17436|JV15-2|LDS1C|LDS3|MADH3 mothers against decapentaplegic homolog 3|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 49 0.006707 10.52 1 1 +4089 SMAD4 SMAD family member 4 18 protein-coding DPC4|JIP|MADH4|MYHRS mothers against decapentaplegic homolog 4|MAD homolog 4|SMAD, mothers against DPP homolog 4|deleted in pancreatic carcinoma locus 4|deletion target in pancreatic carcinoma 4|mothers against decapentaplegic, Drosophila, homolog of, 4 185 0.02532 10.44 1 1 +4090 SMAD5 SMAD family member 5 5 protein-coding DWFC|JV5-1|MADH5 mothers against decapentaplegic homolog 5|MAD, mothers against decapentaplegic homolog 5|SMA- and MAD-related protein 5|SMAD, mothers against DPP homolog 5|mothers against decapentaplegic, drosophila, homolog of, 5 13 0.001779 10.29 1 1 +4091 SMAD6 SMAD family member 6 15 protein-coding AOVD2|HsT17432|MADH6|MADH7 mothers against decapentaplegic homolog 6|MAD homolog 6|SMAD, mothers against DPP homolog 6|mothers against decapentaplegic, drosophila, homolog of, 6 19 0.002601 6.834 1 1 +4092 SMAD7 SMAD family member 7 18 protein-coding CRCS3|MADH7|MADH8 mothers against decapentaplegic homolog 7|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 23 0.003148 8.896 1 1 +4093 SMAD9 SMAD family member 9 13 protein-coding MADH6|MADH9|PPH2|SMAD8|SMAD8/9|SMAD8A|SMAD8B mothers against decapentaplegic homolog 9|MAD homolog 9|Mothers against decapentaplegic, drosophila, homolog of, 9|SMAD, mothers against DPP homolog 9 44 0.006022 4.897 1 1 +4094 MAF MAF bZIP transcription factor 16 protein-coding AYGRP|CCA4|CTRCT21|c-MAF transcription factor Maf|Avian musculoaponeurotic fibrosarcoma (MAF) protooncogene|T lymphocyte c-maf long form|c-maf proto-oncogene|proto-oncogene c-Maf|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog 22 0.003011 9.836 1 1 +4097 MAFG MAF bZIP transcription factor G 17 protein-coding hMAF transcription factor MafG|basic leucine zipper transcription factor MafG|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog G 4 0.0005475 9.569 1 1 +4099 MAG myelin associated glycoprotein 19 protein-coding GMA|S-MAG|SIGLEC-4A|SIGLEC4A|SPG75 myelin-associated glycoprotein|sialic acid binding Ig-like lectin 4A|sialic acid-binding immunoglobulin-like lectin 4A 62 0.008486 2.785 1 1 +4100 MAGEA1 MAGE family member A1 X protein-coding CT1.1|MAGE1 melanoma-associated antigen 1|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 antigen family A, 1 (directs expression of antigen MZ2-E)|melanoma antigen family A1|melanoma-associated antigen MZ2-E 25 0.003422 1.352 1 1 +4101 MAGEA2 MAGE family member A2 X protein-coding CT1.2|MAGE2|MAGEA2A melanoma-associated antigen 2|MAGE-2 antigen|cancer/testis antigen 1.2|cancer/testis antigen family 1, member 2|melanoma antigen 2|melanoma antigen family A, 2|melanoma antigen family A2 1.466 0 1 +4102 MAGEA3 MAGE family member A3 X protein-coding CT1.3|HIP8|HYPD|MAGE3|MAGEA6 melanoma-associated antigen 3|MAGE-3 antigen|antigen MZ2-D|cancer/testis antigen 1.3|cancer/testis antigen family 1, member 3|melanoma antigen family A, 3|melanoma antigen family A3 35 0.004791 1.959 1 1 +4103 MAGEA4 MAGE family member A4 X protein-coding CT1.4|MAGE-41|MAGE-X2|MAGE4|MAGE4A|MAGE4B melanoma-associated antigen 4|MAGE-4 antigen|MAGE-41 antigen|MAGE-X2 antigen|cancer/testis antigen 1.4|cancer/testis antigen family 1, member 4|melanoma antigen family A, 4|melanoma antigen family A4 46 0.006296 1.66 1 1 +4104 MAGEA5 MAGE family member A5 X protein-coding CT1.5|MAGE5|MAGEA4 melanoma-associated antigen 5|MAGE-5 antigen|MAGE-5a antigen|MAGE-5b antigen|cancer/testis antigen 1.5|cancer/testis antigen family 1, member 5|melanoma antigen family A, 5|melanoma antigen family A5 2 0.0002737 0.5539 1 1 +4105 MAGEA6 MAGE family member A6 X protein-coding CT1.6|MAGE-3b|MAGE3B|MAGE6 melanoma-associated antigen 6|MAGE-6 antigen|MAGE3B antigen|cancer/testis antigen 1.6|cancer/testis antigen family 1, member 6|melanoma antigen family A, 6|melanoma antigen family A6 47 0.006433 2.155 1 1 +4107 MAGEA8 MAGE family member A8 X protein-coding CT1.8|MAGE8 melanoma-associated antigen 8|MAGE-8 antigen|cancer/testis antigen 1.8|cancer/testis antigen family 1, member 8|melanoma antigen family A, 8|melanoma antigen family A8 31 0.004243 0.8282 1 1 +4109 MAGEA10 MAGE family member A10 X protein-coding CT1.10|MAGE10 melanoma-associated antigen 10|MAGE-10 antigen|cancer/testis antigen 1.10|cancer/testis antigen family 1, member 10|melanoma antigen family A, 10|melanoma antigen family A10 53 0.007254 0.7715 1 1 +4110 MAGEA11 MAGE family member A11 X protein-coding CT1.11|MAGE-11|MAGE11|MAGEA-11 melanoma-associated antigen 11|MAGE-11 antigen|cancer/testis antigen 1.11|cancer/testis antigen family 1, member 11|melanoma antigen family A, 11|melanoma antigen family A11 56 0.007665 1.187 1 1 +4111 MAGEA12 MAGE family member A12 X protein-coding CT1.12|MAGE12 melanoma-associated antigen 12|MAGE12F antigen|cancer/testis antigen 1.12|cancer/testis antigen family 1, member 12|melanoma antigen family A, 12|melanoma antigen family A12 46 0.006296 1.635 1 1 +4112 MAGEB1 MAGE family member B1 X protein-coding CT3.1|DAM10|MAGE-Xp|MAGEL1 melanoma-associated antigen B1|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 antigen family B, 1|melanoma antigen family B1 55 0.007528 0.5183 1 1 +4113 MAGEB2 MAGE family member B2 X protein-coding CT3.2|DAM6|MAGE-XP-2 melanoma-associated antigen B2|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 antigen family B, 2|melanoma antigen family B2 59 0.008076 1.051 1 1 +4114 MAGEB3 MAGE family member B3 X protein-coding CT3.5 melanoma-associated antigen B3|MAGE-B3 antigen|cancer/testis antigen family 3, member 5|melanoma antigen family B, 3|melanoma antigen family B3 50 0.006844 0.1616 1 1 +4115 MAGEB4 MAGE family member B4 X protein-coding CT3.6 melanoma-associated antigen B4|MAGE-B4 antigen|cancer/testis antigen family 3, member 6|melanoma antigen family B, 4|melanoma antigen family B4 54 0.007391 0.1726 1 1 +4116 MAGOH mago homolog, exon junction complex core component 1 protein-coding MAGOH1|MAGOHA protein mago nashi homolog|mago-nashi homolog, proliferation-associated 15 0.002053 9.056 1 1 +4117 MAK male germ cell associated kinase 6 protein-coding RP62 serine/threonine-protein kinase MAK|male germ cell-associated kinase retinal-enriched isoform|serine/threonine protein kinase MAK|testicular secretory protein Li 28 41 0.005612 3.137 1 1 +4118 MAL mal, T-cell differentiation protein 2 protein-coding - myelin and lymphocyte protein|MyD88-adapter-like|T-lymphocyte maturation-associated protein 18 0.002464 5.938 1 1 +4121 MAN1A1 mannosidase alpha class 1A member 1 6 protein-coding HUMM3|HUMM9|MAN9 mannosyl-oligosaccharide 1,2-alpha-mannosidase IA|Man9-mannosidase|alpha-1,2-mannosidase IA|man(9)-alpha-mannosidase|processing alpha-1,2-mannosidase IA 44 0.006022 9.157 1 1 +4122 MAN2A2 mannosidase alpha class 2A member 2 15 protein-coding MANA2X alpha-mannosidase 2x|MAN IIx|alpha-mannosidase IIx|mannosidase, alpha type II-X|mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase|manosidase, alpha-, type II, isozyme X 57 0.007802 10.22 1 1 +4123 MAN2C1 mannosidase alpha class 2C member 1 15 protein-coding MAN6A8|MANA|MANA1 alpha-mannosidase 2C1|alpha mannosidase 6A8B|alpha-D-mannoside mannohydrolase|mannosidase, alpha 6A8|mannosidase, alpha A, cytoplasmic|testicular tissue protein Li 115 69 0.009444 10.04 1 1 +4124 MAN2A1 mannosidase alpha class 2A member 1 5 protein-coding AMan II|GOLIM7|MANA2|MANII alpha-mannosidase 2|Golgi alpha-mannosidase II|golgi integral membrane protein 7|mannosidase, alpha type II|mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase 81 0.01109 8.769 1 1 +4125 MAN2B1 mannosidase alpha class 2B member 1 19 protein-coding LAMAN|MANB lysosomal alpha-mannosidase|lysosomal acid alpha-mannosidase|mannosidase alpha-B|mannosidase, alpha B, lysosomal 62 0.008486 11.2 1 1 +4126 MANBA mannosidase beta 4 protein-coding MANB1 beta-mannosidase|beta-mannosidase A|lysosomal beta A mannosidase|mannanase|mannase|mannosidase, beta A, lysosomal 50 0.006844 9.545 1 1 +4128 MAOA monoamine oxidase A X protein-coding BRNRS|MAO-A amine oxidase [flavin-containing] A|monoamine oxidase type A 27 0.003696 9.769 1 1 +4129 MAOB monoamine oxidase B X protein-coding - amine oxidase [flavin-containing] B|MAO, brain|MAO, platelet|MAO-B|adrenalin oxidase|monoamine oxidase type B|tyramine oxidase 38 0.005201 8.381 1 1 +4130 MAP1A microtubule associated protein 1A 15 protein-coding MAP1L|MTAP1A microtubule-associated protein 1A|MAP-1A|proliferation-related protein p80 164 0.02245 8.858 1 1 +4131 MAP1B microtubule associated protein 1B 5 protein-coding FUTSCH|MAP5|PPP1R102 microtubule-associated protein 1B|protein phosphatase 1, regulatory subunit 102 166 0.02272 10.09 1 1 +4133 MAP2 microtubule associated protein 2 2 protein-coding MAP2A|MAP2B|MAP2C microtubule-associated protein 2|MAP-2 212 0.02902 8.44 1 1 +4134 MAP4 microtubule associated protein 4 3 protein-coding - microtubule-associated protein 4|MAP-4 74 0.01013 12.61 1 1 +4135 MAP6 microtubule associated protein 6 11 protein-coding MAP6-N|MTAP6|N-STOP|STOP microtubule-associated protein 6|CTD-2530H12.7|MAP-6|stable tubule-only polypeptide 43 0.005886 6.371 1 1 +4137 MAPT microtubule associated protein tau 17 protein-coding DDPAC|FTDP-17|MAPTL|MSTD|MTBT1|MTBT2|PPND|PPP1R103|TAU microtubule-associated protein tau|G protein beta1/gamma2 subunit-interacting factor 1|PHF-tau|neurofibrillary tangle protein|paired helical filament-tau|protein phosphatase 1, regulatory subunit 103 65 0.008897 7.36 1 1 +4139 MARK1 microtubule affinity regulating kinase 1 1 protein-coding MARK|Par-1c|Par1c serine/threonine-protein kinase MARK1|MAP/microtubule affinity-regulating kinase 1|PAR1 homolog c 84 0.0115 7.311 1 1 +4140 MARK3 microtubule affinity regulating kinase 3 14 protein-coding CTAK1|KP78|PAR1A|Par-1a MAP/microtubule affinity-regulating kinase 3|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 43 0.005886 10.29 1 1 +4141 MARS methionyl-tRNA synthetase 12 protein-coding CMT2U|ILFS2|ILLD|METRS|MRS|MTRNS|SPG70 methionine--tRNA ligase, cytoplasmic|cytosolic methionyl-tRNA synthetase 51 0.006981 11.05 1 1 +4142 MAS1 MAS1 proto-oncogene, G protein-coupled receptor 6 protein-coding MAS|MGRA proto-oncogene Mas|MAS1 oncogene|Mas-related G protein-coupled receptor A 27 0.003696 0.1821 1 1 +4143 MAT1A methionine adenosyltransferase 1A 10 protein-coding MAT|MATA1|SAMS|SAMS1 S-adenosylmethionine synthase isoform type-1|MAT 1|MAT-I/III|S-adenosylmethionine synthetase isoform type-1|adoMet synthase 1|adoMet synthetase 1|methionine adenosyltransferase 1|methionine adenosyltransferase I, alpha|methionine adenosyltransferase I/III 30 0.004106 3.911 1 1 +4144 MAT2A methionine adenosyltransferase 2A 2 protein-coding MATA2|MATII|SAMS2 S-adenosylmethionine synthase isoform type-2|MAT 2|MAT-II|adoMet synthase 2|adoMet synthetase 2|methionine adenosyltransferase 2|methionine adenosyltransferase II, alpha|testicular tissue protein Li 121 19 0.002601 12.02 1 1 +4145 MATK megakaryocyte-associated tyrosine kinase 19 protein-coding CHK|CTK|HHYLTK|HYL|HYLTK|Lsk megakaryocyte-associated tyrosine-protein kinase|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|protein kinase HYL|tyrosine kinase MATK|tyrosine-protein kinase CTK|tyrosylprotein kinase 56 0.007665 5.683 1 1 +4146 MATN1 matrilin 1, cartilage matrix protein 1 protein-coding CMP|CRTM cartilage matrix protein 31 0.004243 1.745 1 1 +4147 MATN2 matrilin 2 8 protein-coding - matrilin-2|testis tissue sperm-binding protein Li 94mP 71 0.009718 9.443 1 1 +4148 MATN3 matrilin 3 2 protein-coding DIPOA|EDM5|HOA|OADIP|OS2 matrilin-3 28 0.003832 5.851 1 1 +4149 MAX MYC associated factor X 14 protein-coding bHLHd4 protein max|class D basic helix-loop-helix protein 4 30 0.004106 10.35 1 1 +4150 MAZ MYC associated zinc finger protein 16 protein-coding PUR1|Pur-1|SAF-1|SAF-2|SAF-3|ZF87|ZNF801|Zif87 myc-associated zinc finger protein|MAZI|MYC-associated zinc finger protein (purine-binding transcription factor)|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 48 0.00657 12.2 1 1 +4151 MB myoglobin 22 protein-coding PVALB|myoglobgin myoglobin 10 0.001369 4.909 1 1 +4152 MBD1 methyl-CpG binding domain protein 1 18 protein-coding CXXC3|PCM1|RFT methyl-CpG-binding domain protein 1|CXXC-type zinc finger protein 3|methyl-CpG binding domain protein 1 isoform PCM1|protein containing methyl-CpG-binding domain 1|the regulator of fibroblast growth factor 2 (FGF-2) transcription 67 0.009171 10.03 1 1 +4153 MBL2 mannose binding lectin 2 10 protein-coding COLEC1|HSMBPC|MBL|MBL2D|MBP|MBP-C|MBP1|MBPD mannose-binding protein C|collectin-1|mannan-binding lectin|mannose-binding lectin (protein C) 2, soluble (opsonic defect)|mannose-binding lectin 2, soluble (opsonic defect) 38 0.005201 0.754 1 1 +4154 MBNL1 muscleblind like splicing regulator 1 3 protein-coding EXP|MBNL muscleblind-like protein 1|triplet-expansion RNA-binding protein 32 0.00438 11.29 1 1 +4155 MBP myelin basic protein 18 protein-coding - myelin basic protein|Golli-MBP|myelin A1 protein|myelin membrane encephalitogenic protein 28 0.003832 10.1 1 1 +4157 MC1R melanocortin 1 receptor 16 protein-coding CMM5|MSH-R|SHEP2 melanocyte-stimulating hormone receptor|MC1-R|alpha melanocyte stimulating hormone receptor|melanocortin 1 receptor (alpha melanocyte stimulating hormone receptor)|melanotropin receptor 28 0.003832 7.087 1 1 +4158 MC2R melanocortin 2 receptor 18 protein-coding ACTHR adrenocorticotropic hormone receptor|ACTH receptor|MC2 receptor|adrenocorticotropin receptor|corticotropin receptor|melanocortin 2 receptor (adrenocorticotropic hormone) 38 0.005201 0.4067 1 1 +4159 MC3R melanocortin 3 receptor 20 protein-coding BMIQ9|MC3|MC3-R|OB20|OQTL melanocortin receptor 3|obesity quantitative trait locus 56 0.007665 0.1385 1 1 +4160 MC4R melanocortin 4 receptor 18 protein-coding - melanocortin receptor 4|MC4-R 32 0.00438 0.8782 1 1 +4161 MC5R melanocortin 5 receptor 18 protein-coding MC2 melanocortin receptor 5 48 0.00657 0.6141 1 1 +4162 MCAM melanoma cell adhesion molecule 11 protein-coding CD146|MUC18 cell surface glycoprotein MUC18|Gicerin|S-endo 1 endothelial-associated antigen|cell surface glycoprotein P1H12|melanoma adhesion molecule|melanoma-associated antigen A32|melanoma-associated antigen MUC18 38 0.005201 10.83 1 1 +4163 MCC mutated in colorectal cancers 5 protein-coding MCC1 colorectal mutant cancer protein 115 0.01574 8.877 1 1 +4166 CHST6 carbohydrate sulfotransferase 6 16 protein-coding MCDC1 carbohydrate sulfotransferase 6|C-GlcNAc6ST|GST4-beta|N-acetylglucosamine 6-O-sulfotransferase 5|carbohydrate (N-acetylglucosamine 6-O) 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 49 0.006707 5.391 1 1 +4168 MCF2 MCF.2 cell line derived transforming sequence X protein-coding ARHGEF21|DBL proto-oncogene DBL|Oncogene MCF2 (oncogene DBL)|proto-oncogene MCF-2 116 0.01588 2.026 1 1 +4170 MCL1 BCL2 family apoptosis regulator 1 protein-coding BCL2L3|EAT|MCL1-ES|MCL1L|MCL1S|Mcl-1|TM|bcl2-L-3|mcl1/EAT induced myeloid leukemia cell differentiation protein Mcl-1|bcl-2-like protein 3|bcl-2-related protein EAT/mcl1|myeloid cell leukemia 1|myeloid cell leukemia ES|myeloid cell leukemia sequence 1 (BCL2-related) 20 0.002737 12.92 1 1 +4171 MCM2 minichromosome maintenance complex component 2 3 protein-coding BM28|CCNL1|CDCL1|D3S3194|DFNA70|MITOTIN|cdc19 DNA replication licensing factor MCM2|cell devision cycle-like 1|cyclin-like 1|minichromosome maintenance deficient 2 (mitotin)|minichromosome maintenance protein 2 homolog|nuclear protein BM28 52 0.007117 10.11 1 1 +4172 MCM3 minichromosome maintenance complex component 3 6 protein-coding HCC5|P1-MCM3|P1.h|RLFB DNA replication licensing factor MCM3|DNA polymerase alpha holoenzyme-associated protein P1|DNA replication 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 41 0.005612 11.06 1 1 +4173 MCM4 minichromosome maintenance complex component 4 8 protein-coding CDC21|CDC54|NKCD|NKGCD|P1-CDC21|hCdc21 DNA replication licensing factor MCM4|CDC21 homolog|homolog of S. pombe cell devision cycle 21|minichromosome maintenance deficient 4 68 0.009307 10.34 1 1 +4174 MCM5 minichromosome maintenance complex component 5 22 protein-coding CDC46|P1-CDC46 DNA replication licensing factor MCM5|CDC46 homolog|MCM5 minichromosome maintenance deficient 5, cell division cycle 46|minichromosome maintenance deficient 5 (cell division cycle 46) 48 0.00657 10.3 1 1 +4175 MCM6 minichromosome maintenance complex component 6 2 protein-coding MCG40308|Mis5|P105MCM DNA replication licensing factor MCM6|MCM6 minichromosome maintenance deficient 6 (MIS5 homolog, S. pombe)|minichromosome maintenance deficient (mis5, S. pombe) 6 59 0.008076 9.967 1 1 +4176 MCM7 minichromosome maintenance complex component 7 7 protein-coding CDC47|MCM2|P1.1-MCM3|P1CDC47|P85MCM|PNAS146|PPP1R104 DNA replication licensing factor MCM7|CDC47 homolog|homolog of S. cerevisiae Cdc47|minichromosome maintenance deficient 7|protein phosphatase 1, regulatory subunit 104 71 0.009718 11.32 1 1 +4179 CD46 CD46 molecule 1 protein-coding AHUS2|MCP|MIC10|TLX|TRA2.10 membrane cofactor protein|CD46 antigen, complement regulatory protein|CD46 molecule, complement regulatory protein|antigen identified by monoclonal antibody TRA-2-10|complement membrane cofactor protein|measles virus receptor|membrane cofactor protein (CD46, trophoblast-lymphocyte cross-reactive antigen)|trophoblast leucocyte common antigen|trophoblast leukocyte common antigen|trophoblast-lymphocyte cross-reactive antigen 44 0.006022 12.06 1 1 +4184 SMCP sperm mitochondria associated cysteine rich protein 1 protein-coding HSMCSGEN1|MCS|MCSP sperm mitochondrial-associated cysteine-rich protein|mitochondrial capsule selenoprotein|testicular tissue protein Li 119|testicular tissue protein Li 161 12 0.001642 0.3781 1 1 +4185 ADAM11 ADAM metallopeptidase domain 11 17 protein-coding MDC disintegrin and metalloproteinase domain-containing protein 11|ADAM 11|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 53 0.007254 4.004 1 1 +4188 MDFI MyoD family inhibitor 6 protein-coding I-MF|I-mfa myoD family inhibitor|inhibitor of MyoD family a|myogenic repressor I-mf 10 0.001369 8.112 1 1 +4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 7 protein-coding ERdj4|MDG-1|MDG1|MST049|MSTP049 dnaJ homolog subfamily B member 9|DnaJ (Hsp40) homolog, subfamily B, member 9|ER-resident protein ERdj4|endoplasmic reticulum DNA J domain-containing protein 4|endoplasmic reticulum DnaJ homolog 4|microvascular endothelial differentiation gene 1 protein 22 0.003011 9.749 1 1 +4190 MDH1 malate dehydrogenase 1 2 protein-coding HEL-S-32|MDH-s|MDHA|MGC:1375|MOR2 malate dehydrogenase, cytoplasmic|malate dehydrogenase, peroxisomal|cytosolic malate dehydrogenase|diiodophenylpyruvate reductase|epididymis secretory protein Li 32|malate dehydrogenase 1, NAD (soluble)|soluble malate dehydrogenase 19 0.002601 11.44 1 1 +4191 MDH2 malate dehydrogenase 2 7 protein-coding M-MDH|MDH|MGC:3559|MOR1 malate dehydrogenase, mitochondrial|malate dehydrogenase 2, NAD (mitochondrial)|testicular tissue protein Li 120 20 0.002737 12.06 1 1 +4192 MDK midkine (neurite growth-promoting factor 2) 11 protein-coding ARAP|MK|NEGF2 midkine|amphiregulin-associated protein|midgestation and kidney protein|neurite outgrowth-promoting factor 2|retinoic acid inducible factor 10 0.001369 11.35 1 1 +4193 MDM2 MDM2 proto-oncogene 12 protein-coding ACTFS|HDMX|hdm2 E3 ubiquitin-protein ligase Mdm2|MDM2 oncogene, E3 ubiquitin protein ligase|MDM2 proto-oncogene, E3 ubiquitin protein ligase|Mdm2, p53 E3 ubiquitin protein ligase homolog|Mdm2, transformed 3T3 cell double minute 2, p53 binding protein|double minute 2, human homolog of; p53-binding protein|oncoprotein Mdm2 44 0.006022 10.85 1 1 +4194 MDM4 MDM4, p53 regulator 1 protein-coding HDMX|MDMX|MRP1 protein Mdm4|MDM4 protein variant G|MDM4 protein variant Y|MDM4-related protein 1|Mdm4 p53 binding protein homolog|double minute 4, human homolog of; p53-binding protein|mdm2-like p53-binding protein|protein Mdmx 21 0.002874 9.544 1 1 +4199 ME1 malic enzyme 1 6 protein-coding HUMNDME|MES NADP-dependent malic enzyme|Malic enzyme, cytoplasmic|NADP-ME|malate dehydrogenase|malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))|malic enzyme 1, NADP(+)-dependent, cytosolic|malic enzyme 1, soluble|pyruvic-malic carboxylase 33 0.004517 8.075 1 1 +4200 ME2 malic enzyme 2 18 protein-coding ODS1 NAD-dependent malic enzyme, mitochondrial|NAD-ME|malate dehydrogenase|malate dehydrogenase (oxaloacetate-decarboxylating)|malic enzyme 2, NAD(+)-dependent, mitochondrial|pyruvic-malic carboxylase 42 0.005749 9.508 1 1 +4201 MEA1 male-enhanced antigen 1 6 protein-coding HYS|MEA male-enhanced antigen 1|Male-enhanced antigen (H-Y structural gene) 13 0.001779 10.37 1 1 +4204 MECP2 methyl-CpG binding protein 2 X protein-coding AUTSX3|MRX16|MRX79|MRXS13|MRXSL|PPMX|RS|RTS|RTT methyl-CpG-binding protein 2|meCp-2 protein|testis tissue sperm-binding protein Li 41a 50 0.006844 10.4 1 1 +4205 MEF2A myocyte enhancer factor 2A 15 protein-coding ADCAD1|RSRFC4|RSRFC9|mef2 myocyte-specific enhancer factor 2A|MADS box transcription enhancer factor 2, polypeptide A (myocyte enhancer factor 2A)|serum response factor-like protein 1 54 0.007391 10.16 1 1 +4207 BORCS8-MEF2B BORCS8-MEF2B readthrough 19 protein-coding LOC729991-MEF2B|MEF2B|MEF2BNB-MEF2B myocyte enhancer factor 2B|LOC729991-MEF2B readthrough|MEF2BNB-MEF2B readthrough 4 0.0005475 5.717 1 1 +4208 MEF2C myocyte enhancer factor 2C 5 protein-coding C5DELq14.3|DEL5q14.3 myocyte-specific enhancer factor 2C|MADS box transcription enhancer factor 2, polypeptide C 60 0.008212 8.904 1 1 +4209 MEF2D myocyte enhancer factor 2D 1 protein-coding - myocyte-specific enhancer factor 2D|MADS box transcription enhancer factor 2, polypeptide D 39 0.005338 10.66 1 1 +4210 MEFV Mediterranean fever 16 protein-coding FMF|MEF|TRIM20 pyrin|marenostrin 107 0.01465 3.403 1 1 +4211 MEIS1 Meis homeobox 1 2 protein-coding - homeobox protein Meis1|Meis1, myeloid ecotropic viral integration site 1 homolog|WUGSC:H_NH0444B04.1|leukemogenic homolog protein 48 0.00657 7.728 1 1 +4212 MEIS2 Meis homeobox 2 15 protein-coding HsT18361|MRG1 homeobox protein Meis2|Meis homolog 2|Meis1, myeloid ecotropic viral integration site 1 homolog 2|Meis1-related gene 1|TALE homeobox protein Meis2|meis1-related protein 1 65 0.008897 7.704 1 1 +4213 MEIS3P1 Meis homeobox 3 pseudogene 1 17 pseudo MEIS3|MEIS4|MRG2 CTD-3157E16.2|Meis homolog 3|Meis1 homolog 3 pseudogene 1|Meis1, myeloid ecotropic viral integration site 1 homolog 3|Meis1, myeloid ecotropic viral integration site 1 homolog 4|Putative homeobox protein Meis3-like 1 7.887 0 1 +4214 MAP3K1 mitogen-activated protein kinase kinase kinase 1 5 protein-coding MAPKKK1|MEKK|MEKK 1|MEKK1|SRXY6 mitogen-activated protein kinase kinase kinase 1|MAP/ERK kinase kinase 1|MAPK/ERK kinase kinase 1|MEK kinase 1|mitogen-activated protein kinase kinase kinase 1, E3 ubiquitin protein ligase 142 0.01944 9.521 1 1 +4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 17 protein-coding MAPKKK3|MEKK3 mitogen-activated protein kinase kinase kinase 3|MAP/ERK kinase kinase 3|MAPK/ERK kinase kinase 3|MEK kinase 3|MEKK 3 39 0.005338 9.512 1 1 +4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 6 protein-coding MAPKKK4|MEKK 4|MEKK4|MTK1|PRO0412 mitogen-activated protein kinase kinase kinase 4|MAP three kinase 1|MAP/ERK kinase kinase 4|MAPK/ERK kinase kinase 4|MEK kinase 4|SSK2/SSK22 MAP kinase kinase kinase, yeast, homolog of|dJ473J16.1 (mitogen-activated protein kinase kinase kinase 4)|predicted protein of HQ0412 128 0.01752 9.211 1 1 +4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 6 protein-coding ASK1|MAPKKK5|MEKK5 mitogen-activated protein kinase kinase kinase 5|ASK-1|MAP/ERK kinase kinase 5|MAPK/ERK kinase kinase 5|MEK kinase 5|MEKK 5|apoptosis signal-regulating kinase 1 92 0.01259 9.287 1 1 +4218 RAB8A RAB8A, member RAS oncogene family 19 protein-coding MEL|RAB8 ras-related protein Rab-8A|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 16 0.00219 10.67 1 1 +4221 MEN1 menin 1 11 protein-coding MEAI|SCG2 menin|multiple endocrine neoplasia I 57 0.007802 9.961 1 1 +4222 MEOX1 mesenchyme homeobox 1 17 protein-coding KFS2|MOX1 homeobox protein MOX-1 30 0.004106 4.455 1 1 +4223 MEOX2 mesenchyme homeobox 2 7 protein-coding GAX|MOX2 homeobox protein MOX-2|growth arrest-specific homeobox 49 0.006707 4.532 1 1 +4224 MEP1A meprin A subunit alpha 6 protein-coding PPHA meprin A subunit alpha|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, alpha (PABA peptide hydrolase) 78 0.01068 2.119 1 1 +4225 MEP1B meprin A subunit beta 18 protein-coding - meprin A subunit beta|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, beta|meprin B 43 0.005886 0.5962 1 1 +4232 MEST mesoderm specific transcript 7 protein-coding PEG1 mesoderm-specific transcript homolog protein|paternally-expressed gene 1 protein 20 0.002737 9.67 1 1 +4233 MET MET proto-oncogene, receptor tyrosine kinase 7 protein-coding AUTS9|DFNB97|HGFR|RCCP2|c-Met hepatocyte growth factor receptor|HGF receptor|HGF/SF receptor|SF receptor|proto-oncogene c-Met|scatter factor receptor|tyrosine-protein kinase Met 114 0.0156 10.01 1 1 +4234 METTL1 methyltransferase like 1 12 protein-coding C12orf1|TRM8|TRMT8|YDL201w tRNA (guanine-N(7)-)-methyltransferase|D1075-like gene product|methyltransferase-like protein 1|tRNA (guanine(46)-N(7))-methyltransferase|tRNA(m7G46)-methyltransferase 18 0.002464 8.575 1 1 +4236 MFAP1 microfibrillar associated protein 1 15 protein-coding - microfibrillar-associated protein 1 40 0.005475 9.63 1 1 +4237 MFAP2 microfibrillar associated protein 2 1 protein-coding MAGP|MAGP-1|MAGP1 microfibrillar-associated protein 2|microfibril-associated glycoprotein 1 11 0.001506 8.272 1 1 +4238 MFAP3 microfibrillar associated protein 3 5 protein-coding - microfibril-associated glycoprotein 3 20 0.002737 9.573 1 1 +4239 MFAP4 microfibrillar associated protein 4 17 protein-coding - microfibril-associated glycoprotein 4 27 0.003696 8.92 1 1 +4240 MFGE8 milk fat globule-EGF factor 8 protein 15 protein-coding BA46|EDIL1|HMFG|HsT19888|MFG-E8|MFGM|OAcGD3S|SED1|SPAG10|hP47 lactadherin|O-acetyl disialoganglioside synthase|breast epithelial antigen BA46|medin|sperm associated antigen 10|sperm surface protein hP47 33 0.004517 10.89 1 1 +4241 MELTF melanotransferrin 3 protein-coding CD228|MAP97|MFI2|MTF1|MTf melanotransferrin|antigen p97 (melanoma associated) identified by monoclonal antibodies 133.2 and 96.5|melanoma-associated antigen p97|membrane-bound transferrin-like protein 59 0.008076 7.33 1 1 +4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 22 protein-coding - beta-1,3-N-acetylglucosaminyltransferase manic fringe|O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 11 0.001506 7.518 1 1 +4245 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 5 protein-coding GLCNAC-TI|GLCT1|GLYT1|GNT-1|GNT-I|GnTI|MGAT alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase I|glcNAc-T I 36 0.004927 11.74 1 1 +4246 SCGB2A1 secretoglobin family 2A member 1 11 protein-coding LPHC|LPNC|MGB2|UGB3 mammaglobin-B|lacryglobin|lipophilin C|mammaglobin-2 9 0.001232 2.604 1 1 +4247 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 14 protein-coding CDG2A|CDGS2|GLCNACTII|GNT-II|GNT2 alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase|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|glcNAc-T II|mannoside acetylglucosaminyltransferase 2 20 0.002737 9.698 1 1 +4248 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase 22 protein-coding GNT-III|GNT3 beta-1,4-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase|GlcNAc-T III|N-acetylglucosaminyltransferase III|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase III 64 0.00876 7.069 1 1 +4249 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase 2 protein-coding GNT-V|GNT-VA alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase A|N-acetylglucosaminyl-transferase V|alpha-mannoside beta-1,6-N-acetylglucosaminyltransferase|glcNAc-T V|mannoside acetylglucosaminyltransferase 5 64 0.00876 7.216 1 1 +4250 SCGB2A2 secretoglobin family 2A member 2 11 protein-coding MGB1|UGB2 mammaglobin-A|mammaglobin 1 4 0.0005475 1.525 1 1 +4253 MIA2 melanoma inhibitory activity 2 14 protein-coding CTAGE5|MEA6|MGEA|MGEA11|MGEA6 cTAGE family member 5|melanoma inhibitory activity protein 2|CTAGE family member 5, ER export factor|CTAGE family, member 5|cutaneous T-cell lymphoma-associated antigen 5|meningioma expressed antigen 6 (coiled-coil proline-rich)|meningioma-expressed antigen 6/11|protein cTAGE-5 31 0.004243 9.69 1 1 +4254 KITLG KIT ligand 12 protein-coding DCUA|DFNA69|FPH2|FPHH|KL-1|Kitl|MGF|SCF|SF|SHEP7 kit ligand|c-Kit ligand|familial progressive hyperpigmentation 2|mast cell growth factor|steel factor|stem cell factor 30 0.004106 8.967 1 1 +4255 MGMT O-6-methylguanine-DNA methyltransferase 10 protein-coding - methylated-DNA--protein-cysteine methyltransferase|6-O-methylguanine-DNA methyltransferase|O-6-methylguanine-DNA-alkyltransferase|O6-methylguanine-DNA methyltransferase|methylguanine-DNA methyltransferase 26 0.003559 8.365 1 1 +4256 MGP matrix Gla protein 12 protein-coding GIG36|MGLAP|NTI matrix Gla protein|cell growth-inhibiting gene 36 protein 8 0.001095 11.01 1 1 +4257 MGST1 microsomal glutathione S-transferase 1 12 protein-coding GST12|MGST|MGST-I microsomal glutathione S-transferase 1|glutathione S-transferase 12|microsomal GST-1|microsomal GST-I 12 0.001642 10.31 1 1 +4258 MGST2 microsomal glutathione S-transferase 2 4 protein-coding GST2|MGST-II microsomal glutathione S-transferase 2|microsomal GST-2|microsomal GST-II 8 0.001095 9.561 1 1 +4259 MGST3 microsomal glutathione S-transferase 3 1 protein-coding GST-III microsomal glutathione S-transferase 3|microsomal GST-3|microsomal GST-III|microsomal glutathione S-transferase III 13 0.001779 10.66 1 1 +4261 CIITA class II major histocompatibility complex transactivator 16 protein-coding C2TA|CIITAIV|MHC2TA|NLRA MHC class II transactivator|MHC class II transactivator type I|MHC class II transactivator type III|NLR family, acid domain containing|nucleotide-binding oligomerization domain, leucine rich repeat and acid domain containing 89 0.01218 7.692 1 1 +4267 CD99 CD99 molecule X|Y protein-coding HBA71|MIC2|MIC2X|MIC2Y|MSK5X 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|cell surface antigen 12E7|cell surface antigen HBA-71|cell surface antigen O13|surface antigen MIC2 11.39 0 1 +4276 8.049 0 1 +4277 MICB MHC class I polypeptide-related sequence B 6 protein-coding PERB11.2 MHC class I polypeptide-related sequence B|MHC class I chain-related protein B|MHC class I mic-B antigen|MHC class I-like molecule PERB11.2-IMX|stress inducible class I homolog 23 0.003148 6.67 1 1 +4281 MID1 midline 1 X protein-coding BBBG1|FXY|GBBB1|MIDIN|OGS1|OS|OSX|RNF59|TRIM18|XPRF|ZNFXY E3 ubiquitin-protein ligase Midline-1|Opitz/BBB syndrome|RING finger protein 59|RING finger protein Midline-1|midline 1 RING finger protein|putative transcription factor XPRF|tripartite motif protein TRIM18|tripartite motif-containing protein 18|zinc finger on X and Y, mouse, homolog of 45 0.006159 8.71 1 1 +4282 MIF macrophage migration inhibitory factor (glycosylation-inhibiting factor) 22 protein-coding GIF|GLIF|MMIF macrophage migration inhibitory factor|L-dopachrome isomerase|L-dopachrome tautomerase|phenylpyruvate tautomerase 4 0.0005475 12.52 1 1 +4283 CXCL9 C-X-C motif chemokine ligand 9 4 protein-coding CMK|Humig|MIG|SCYB9|crg-10 C-X-C motif chemokine 9|chemokine (C-X-C motif) ligand 9|gamma-interferon-induced monokine|monokine induced by gamma interferon|monokine induced by interferon-gamma|small-inducible cytokine B9 21 0.002874 8.284 1 1 +4284 MIP major intrinsic protein of lens fiber 12 protein-coding AQP0|CTRCT15|LIM1|MIP26|MP26 lens fiber major intrinsic protein|aquaporin 0 27 0.003696 1.205 1 1 +4285 MIPEP mitochondrial intermediate peptidase 13 protein-coding HMIP|MIP mitochondrial intermediate peptidase 42 0.005749 8.56 1 1 +4286 MITF melanogenesis associated transcription factor 3 protein-coding CMM8|MI|WS2|WS2A|bHLHe32 microphthalmia-associated transcription factor|class E basic helix-loop-helix protein 32|microphtalmia-associated transcription factor 47 0.006433 7.796 1 1 +4287 ATXN3 ataxin 3 14 protein-coding AT3|ATX3|JOS|MJD|MJD1|SCA3 ataxin-3|Machado-Joseph disease (spinocerebellar ataxia 3, olivopontocerebellar ataxia 3, autosomal dominant, ataxin 3)|Machado-Joseph disease protein 1|ataxin 3 variant an|ataxin 3 variant ao|ataxin 3 variant at|ataxin 3 variant e|ataxin 3 variant h|ataxin 3 variant m|ataxin 3 variant r|ataxin 3 variant ref|ataxin 3 variant y|josephin|olivopontocerebellar ataxia 3|spinocerebellar ataxia type 3 protein 41 0.005612 8.487 1 1 +4288 MKI67 marker of proliferation Ki-67 10 protein-coding KIA|MIB-|MIB-1|PPP1R105 antigen KI-67|antigen identified by monoclonal antibody Ki-67|proliferation-related Ki-67 antigen|protein phosphatase 1, regulatory subunit 105 231 0.03162 10.06 1 1 +4289 MKLN1 muskelin 1 7 protein-coding TWA2 muskelin|muskelin 1, intracellular mediator containing kelch motifs 45 0.006159 10.5 1 1 +4291 MLF1 myeloid leukemia factor 1 3 protein-coding - myeloid leukemia factor 1|myelodysplasia-myeloid leukemia factor 1|testis tissue sperm-binding protein Li 49e 22 0.003011 8.03 1 1 +4292 MLH1 mutL homolog 1 3 protein-coding COCA2|FCC2|HNPCC|HNPCC2|hMLH1 DNA mismatch repair protein Mlh1|mutL homolog 1, colon cancer, nonpolyposis type 2 66 0.009034 9.388 1 1 +4293 MAP3K9 mitogen-activated protein kinase kinase kinase 9 14 protein-coding MEKK9|MLK1|PRKE1 mitogen-activated protein kinase kinase kinase 9|mixed lineage kinase 1 (tyr and ser/thr specificity) 111 0.01519 6.348 1 1 +4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 19 protein-coding MEKK10|MLK2|MST mitogen-activated protein kinase kinase kinase 10|MKN28 derived nonreceptor_type serine/threonine kinase|MKN28 kinase|mixed lineage kinase 2|protein kinase MST 49 0.006707 8.161 1 1 +4295 MLN motilin 6 protein-coding - promotilin|prepromotilin 5 0.0006844 0.1813 1 1 +4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 11 protein-coding MEKK11|MLK-3|MLK3|PTK1|SPRK mitogen-activated protein kinase kinase kinase 11|SH3 domain-containing proline-rich kinase|mixed lineage kinase 3|protein-tyrosine kinase PTK1|src-homology 3 domain-containing proline-rich kinase 54 0.007391 10.9 1 1 +4297 KMT2A lysine methyltransferase 2A 11 protein-coding ALL-1|CXXC7|HRX|HTRX1|MLL|MLL-AF9|MLL/GAS7|MLL1|MLL1A|TET1-MLL|TRX1|WDSTS histone-lysine N-methyltransferase 2A|CDK6/MLL fusion protein|CXXC-type zinc finger protein 7|MLL-AF4 der(11) fusion protein|MLL/ENL fusion protein|MLL/GAS7 fusion protein|MLL/GMPS fusion protein|MLL/hCDCrel fusion protein|lysine (K)-specific methyltransferase 2A|lysine N-methyltransferase 2A|mixed lineage leukemia 1|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila)|rearranged MLL protein|trithorax-like protein|zinc finger protein HRX 236 0.0323 10.57 1 1 +4298 MLLT1 MLLT1, super elongation complex subunit 19 protein-coding ENL|LTG19|YEATS1 protein ENL|CTC-503J8.6|ENL/MLL fusion|MLL/ENL fusion protein|MLLT1/MLL fusion|YEATS domain-containing protein 1|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog); translocated to, 1|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1|myeloid/lymphoid or mixed-lineage leukemia; translocated to, 1 33 0.004517 10.82 1 1 +4299 AFF1 AF4/FMR2 family member 1 4 protein-coding AF4|MLLT2|PBM1 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|proto-oncogene AF4 87 0.01191 10.7 1 1 +4300 MLLT3 MLLT3, super elongation complex subunit 9 protein-coding AF9|YEATS3 protein AF-9|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 (trithorax homolog, Drosophila); translocated to, 3|myeloid/lymphoid or mixed-lineage leukemia translocated to chromosome 3 protein|myeloid/lymphoid or mixed-lineage leukemia; translocated to 3 51 0.006981 8.121 1 1 +4301 AFDN afadin, adherens junction formation factor 6 protein-coding AF6|MLL-AF6|MLLT4 afadin|ALL1-fused gene from chromosome 6 protein|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4|myeloid/lymphoid or mixed-lineage leukemia; translocated to, 4|protein AF-6 127 0.01738 10.89 1 1 +4302 MLLT6 MLLT6, PHD finger domain containing 17 protein-coding AF17 protein AF-17|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|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6|myeloid/lymphoid or mixed-lineage leukemia; translocated to, 6|trithorax homolog 60 0.008212 11.65 1 1 +4303 FOXO4 forkhead box O4 X protein-coding AFX|AFX1|MLLT7 forkhead box protein O4|fork head domain transcription factor AFX1|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 7 50 0.006844 8.798 1 1 +4306 NR3C2 nuclear receptor subfamily 3 group C member 2 4 protein-coding MCR|MLR|MR|NR3C2VIT mineralocorticoid receptor|aldosterone receptor|mineralocorticoid receptor 1|mineralocorticoid receptor 2|mineralocorticoid receptor delta|nuclear receptor subfamily 3, group C, member 2 variant 3 73 0.009992 7.163 1 1 +4308 TRPM1 transient receptor potential cation channel subfamily M member 1 15 protein-coding CSNB1C|LTRPC1|MLSN1 transient receptor potential cation channel subfamily M member 1|long transient receptor potential channel 1|melastatin-1|transient receptor potential melastatin family 136 0.01861 0.7996 1 1 +4311 MME membrane metalloendopeptidase 3 protein-coding CALLA|CD10|CMT2T|NEP|SCA43|SFE neprilysin|atriopeptidase|common acute lymphocytic leukemia antigen|membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase, CALLA, CD10)|membrane metallo-endopeptidase variant 1|membrane metallo-endopeptidase variant 2|neprilysin-390|neprilysin-411|neutral endopeptidase 24.11|skin fibroblast elastase 105 0.01437 7.342 1 1 +4312 MMP1 matrix metallopeptidase 1 11 protein-coding CLG|CLGN interstitial collagenase|fibroblast collagenase|matrix metallopeptidase 1 (interstitial collagenase)|matrix metalloprotease 1|matrix metalloproteinase 1 40 0.005475 6.481 1 1 +4313 MMP2 matrix metallopeptidase 2 16 protein-coding CLG4|CLG4A|MMP-2|MMP-II|MONA|TBE-1 72 kDa type IV collagenase|collagenase type IV-A|matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)|matrix metalloproteinase-2|matrix metalloproteinase-II|neutrophil gelatinase 73 0.009992 11.58 1 1 +4314 MMP3 matrix metallopeptidase 3 11 protein-coding CHDS6|MMP-3|SL-1|STMY|STMY1|STR1 stromelysin-1|matrix metalloproteinase 3 (stromelysin 1, progelatinase)|proteoglycanase|transin-1 46 0.006296 4.162 1 1 +4316 MMP7 matrix metallopeptidase 7 11 protein-coding MMP-7|MPSL1|PUMP-1 matrilysin|matrin|matrix metallopeptidase 7 (matrilysin, uterine)|matrix metalloproteinase 7 (matrilysin, uterine)|matrix metalloproteinase-7|pump-1 protease|uterine matrilysin|uterine metalloproteinase 20 0.002737 7.218 1 1 +4317 MMP8 matrix metallopeptidase 8 11 protein-coding CLG1|HNC|MMP-8|PMNL-CL neutrophil collagenase|PMN leukocyte collagenase|PMNL collagenase|collagenase 2|matrix metalloproteinase 8 (neutrophil collagenase)|matrix metalloproteinase-8 44 0.006022 1.379 1 1 +4318 MMP9 matrix metallopeptidase 9 20 protein-coding CLG4B|GELB|MANDP2|MMP-9 matrix metalloproteinase-9|macrophage gelatinase|matrix metallopeptidase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase)|matrix metalloproteinase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase)|type V collagenase 63 0.008623 8.716 1 1 +4319 MMP10 matrix metallopeptidase 10 11 protein-coding SL-2|STMY2 stromelysin-2|MMP-10|matrix metalloprotease 10|matrix metalloproteinase 10 (stromelysin 2)|matrix metalloproteinase-10|transin 2 46 0.006296 4.049 1 1 +4320 MMP11 matrix metallopeptidase 11 22 protein-coding SL-3|ST3|STMY3 stromelysin-3|matrix metallopeptidase 11 (stromelysin 3)|stromelysin III 41 0.005612 9.513 1 1 +4321 MMP12 matrix metallopeptidase 12 11 protein-coding HME|ME|MME|MMP-12 macrophage metalloelastase|matrix metallopeptidase 12 (macrophage elastase)|matrix metalloproteinase 12 (macrophage elastase) 86 0.01177 5.027 1 1 +4322 MMP13 matrix metallopeptidase 13 11 protein-coding CLG3|MANDP1|MDST|MMP-13 collagenase 3|matrix metalloproteinase 13 (collagenase 3) 58 0.007939 4.155 1 1 +4323 MMP14 matrix metallopeptidase 14 14 protein-coding MMP-14|MMP-X1|MT-MMP|MT-MMP 1|MT1-MMP|MT1MMP|MTMMP1|WNCHRS matrix metalloproteinase-14|matrix metallopeptidase 14 (membrane-inserted)|membrane type 1 metalloprotease|membrane-type-1 matrix metalloproteinase 36 0.004927 12.25 1 1 +4324 MMP15 matrix metallopeptidase 15 16 protein-coding MMP-15|MT2-MMP|MT2MMP|MTMMP2|SMCP-2 matrix metalloproteinase-15|MT-MMP 2|matrix metallopeptidase 15 (membrane-inserted)|matrix metalloproteinase 15 (membrane-inserted)|membrane-type matrix metalloproteinase 2|membrane-type-2 matrix metalloproteinase 42 0.005749 10.09 1 1 +4325 MMP16 matrix metallopeptidase 16 8 protein-coding C8orf57|MMP-X2|MT-MMP2|MT-MMP3|MT3-MMP matrix metalloproteinase-16|MMP-16|MT-MMP 3|MT3MMP|MTMMP3|Putative transmembrane protein C8orf57|matrix metallopeptidase 16 (membrane-inserted)|membrane-type matrix metalloproteinase 3|membrane-type-3 matrix metalloproteinase 141 0.0193 5.081 1 1 +4326 MMP17 matrix metallopeptidase 17 12 protein-coding MMP-17|MT4-MMP|MT4MMP|MTMMP4 matrix metalloproteinase-17|MT-MMP 4|matrix metallopeptidase 17 (membrane-inserted)|matrix metalloproteinase 17 (membrane-inserted)|membrane-type matrix metalloproteinase 4|membrane-type-4 matrix metalloproteinase 49 0.006707 5.763 1 1 +4327 MMP19 matrix metallopeptidase 19 12 protein-coding CODA|MMP18|RASI-1 matrix metalloproteinase-19|matrix metalloproteinase RASI|matrix metalloproteinase-18|matrix metalloproteinase-beta19 44 0.006022 8.509 1 1 +4329 ALDH6A1 aldehyde dehydrogenase 6 family member A1 14 protein-coding MMSADHA|MMSDH methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial|malonate-semialdehyde dehydrogenase|mitochondrial acylating methylmalonate-semialdehyde dehydrogenase|testicular tissue protein Li 122 31 0.004243 8.31 1 1 +4330 MN1 MN1 proto-oncogene, transcriptional regulator 22 protein-coding MGCR|MGCR1|MGCR1-PEN|dJ353E16.2 transcriptional activator MN1|meningioma (disrupted in balanced translocation) 1|meningioma (translocation balanced)|meningioma chromosome region 1|probable tumor suppressor protein MN1 111 0.01519 7.375 1 1 +4331 MNAT1 MNAT1, CDK activating kinase assembly factor 14 protein-coding CAP35|MAT1|RNF66|TFB3 CDK-activating kinase assembly factor MAT1|CDK7/cyclin-H assembly factor|MNAT CDK-activating kinase assembly factor 1|RING finger protein 66|RING finger protein MAT1|cyclin G1 interacting protein|menage a trois 1 (CAK assembly factor)|menage a trois homolog 1, cyclin H assembly factor|menage a trois-like protein 1 cyclin H assembly factor 17 0.002327 7.862 1 1 +4332 MNDA myeloid cell nuclear differentiation antigen 1 protein-coding PYHIN3 myeloid cell nuclear differentiation antigen 74 0.01013 6.884 1 1 +4335 MNT MAX network transcriptional repressor 17 protein-coding MAD6|MXD6|ROX|bHLHd3 max-binding protein MNT|MAX binding protein|MNT, MAX dimerization protein|Max-interacting protein|class D basic helix-loop-helix protein 3|myc antagonist MNT 25 0.003422 9.363 1 1 +4336 MOBP myelin-associated oligodendrocyte basic protein 3 protein-coding - myelin-associated oligodendrocyte basic protein 10 0.001369 1.996 1 1 +4337 MOCS1 molybdenum cofactor synthesis 1 6 protein-coding MIG11|MOCOD|MOCODA molybdenum cofactor biosynthesis protein 1|MOCS1A enzyme|cell migration-inducing gene 11 protein|migration-inducing gene 11 protein|molybdenum cofactor biosynthesis protein A|molybdenum cofactor synthesis-step 1 protein A-B 48 0.00657 8.602 1 1 +4338 MOCS2 molybdenum cofactor synthesis 2 5 protein-coding MCBPE|MOCO1|MOCODB|MPTS molybdopterin synthase catalytic subunit|molybdopterin synthase sulfur carrier subunit|molybdenum cofactor biosynthesis protein E 32 0.00438 9.47 1 1 +4340 MOG myelin oligodendrocyte glycoprotein 6 protein-coding BTN6|BTNL11|MOGIG2|NRCLP7 myelin-oligodendrocyte glycoprotein|MOG AluA|MOG AluB|MOG Ig-AluB|MOG alpha-5 40 0.005475 1.289 1 1 +4342 MOS v-mos Moloney murine sarcoma viral oncogene homolog 8 protein-coding MSV proto-oncogene serine/threonine-protein kinase mos|c-mos|oncogene MOS, Moloney murine sarcoma virus|oocyte maturation factor mos|proto-oncogene c-Mos 47 0.006433 0.08644 1 1 +4343 MOV10 Mov10 RISC complex RNA helicase 1 protein-coding fSAP113|gb110 putative helicase MOV-10|Mov10, Moloney leukemia virus 10, homolog|armitage homolog|functional spliceosome-associated protein 113|moloney leukemia virus 10 protein 60 0.008212 10.18 1 1 +4345 CD200 CD200 molecule 3 protein-coding MOX1|MOX2|MRC|OX-2 OX-2 membrane glycoprotein|CD200 antigen|antigen identified by monoclonal antibody MRC OX-2 17 0.002327 7.867 1 1 +4350 MPG N-methylpurine DNA glycosylase 16 protein-coding AAG|ADPG|APNG|CRA36.1|MDG|Mid1|PIG11|PIG16|anpg DNA-3-methyladenine glycosylase|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)|N-methylpurine-DNA glycosylase, MPG|proliferation-inducing protein 11|proliferation-inducing protein 16 22 0.003011 9.924 1 1 +4351 MPI mannose phosphate isomerase 15 protein-coding CDG1B|PMI|PMI1 mannose-6-phosphate isomerase|phosphohexomutase|phosphomannose isomerase 1 24 0.003285 9.556 1 1 +4352 MPL MPL proto-oncogene, thrombopoietin receptor 1 protein-coding C-MPL|CD110|MPLV|THCYT2|TPOR thrombopoietin receptor|TPO-R|myeloproliferative leukemia protein|myeloproliferative leukemia virus oncogene|proto-oncogene c-Mpl 36 0.004927 3.733 1 1 +4353 MPO myeloperoxidase 17 protein-coding - myeloperoxidase 73 0.009992 2.212 1 1 +4354 MPP1 membrane palmitoylated protein 1 X protein-coding AAG12|DXS552E|EMP55|MRG1|PEMP 55 kDa erythrocyte membrane protein|aging-associated gene 12|erythrocyte membrane protein p55|membrane protein, palmitoylated 1|membrane protein, palmitoylated 1, 55kDa|migration-related gene 1|p55|palmitoylated erythrocyte membrane protein 35 0.004791 8.861 1 1 +4355 MPP2 membrane palmitoylated protein 2 17 protein-coding DLG2 MAGUK p55 subfamily member 2|discs large, homolog 2|membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) 48 0.00657 6.516 1 1 +4356 MPP3 membrane palmitoylated protein 3 17 protein-coding DLG3 MAGUK p55 subfamily member 3|discs, large homolog 3|membrane protein palmitoylated 3|membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) 33 0.004517 5.866 1 1 +4357 MPST mercaptopyruvate sulfurtransferase 22 protein-coding MST|TST2|TUM1 3-mercaptopyruvate sulfurtransferase|human liver rhodanese|tRNA thiouridin modification protein 1|testicular tissue protein Li 200 12 0.001642 10.08 1 1 +4358 MPV17 MPV17, mitochondrial inner membrane protein 2 protein-coding MTDPS6|SYM1 protein Mpv17|MpV17 mitochondrial inner membrane protein|Mpv17, human homolog of glomerulosclerosis and nephrotic syndrome 16 0.00219 9.803 1 1 +4359 MPZ myelin protein zero 1 protein-coding CHM|CMT1|CMT1B|CMT2I|CMT2J|CMT4E|CMTDI3|CMTDID|DSS|HMSNIB|MPP|P0 myelin protein P0|Charcot-Marie-Tooth neuropathy 1B|myelin peripheral protein 17 0.002327 4.785 1 1 +4360 MRC1 mannose receptor, C type 1 10 protein-coding CD206|CLEC13D|CLEC13DL|MMR|MRC1L1|bA541I19.1|hMR macrophage mannose receptor 1|C-type lectin domain family 13 member D|human mannose receptor|macrophage mannose receptor 1-like protein 1|mannose receptor, C type 1-like 1 42 0.005749 7.547 1 1 +4361 MRE11 MRE11 homolog, double strand break repair nuclease 11 protein-coding ATLD|HNGS1|MRE11A|MRE11B double-strand break repair protein MRE11A|AT-like disease|DNA recombination and repair protein|MRE11 double strand break repair nuclease A|MRE11 homolog 1|MRE11 homolog A|MRE11 homolog A, double strand break repair nuclease|MRE11 homolog, double strand break repair nuclease A|MRE11 meiotic recombination 11 homolog A|MRE11 meiotic recombination 11-like protein A|endo/exonuclease Mre11|meiotic recombination 11 homolog 1|meiotic recombination 11 homolog A 43 0.005886 8.474 1 1 +4363 ABCC1 ATP binding cassette subfamily C member 1 16 protein-coding ABC29|ABCC|GS-X|MRP|MRP1 multidrug resistance-associated protein 1|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|ATP-binding cassette, sub-family C (CFTR/MRP), member 1|LTC4 transporter|leukotriene C(4) transporter 90 0.01232 10.4 1 1 +4430 MYO1B myosin IB 2 protein-coding MMI-alpha|MMIa|MYH-1c|myr1 unconventional myosin-Ib|MYO1B variant protein|myosin-I alpha 73 0.009992 10.69 1 1 +4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 X protein-coding MSG1 cbp/p300-interacting transactivator 1|melanocyte-specific gene 1|melanocyte-specific protein 1 10 0.001369 4.416 1 1 +4436 MSH2 mutS homolog 2 2 protein-coding COCA1|FCC1|HNPCC|HNPCC1|LCFS2 DNA mismatch repair protein Msh2|hMSH2|mutS homolog 2, colon cancer, nonpolyposis type 1 68 0.009307 9.498 1 1 +4437 MSH3 mutS homolog 3 5 protein-coding DUP|FAP4|MRP1 DNA mismatch repair protein Msh3|divergent upstream protein|hMSH3|mismatch repair protein 1 94 0.01287 8.596 1 1 +4438 MSH4 mutS homolog 4 1 protein-coding - mutS protein homolog 4|hMSH4 91 0.01246 1.107 1 1 +4439 MSH5 mutS homolog 5 6 protein-coding G7|MUTSH5|NG23 mutS protein homolog 5 22 0.003011 7.602 1 1 +4440 MSI1 musashi RNA binding protein 1 12 protein-coding - RNA-binding protein Musashi homolog 1|musashi-1|musashi1 39 0.005338 5.578 1 1 +4477 MSMB microseminoprotein beta 10 protein-coding HPC13|IGBF|MSP|MSPB|PN44|PRPS|PSP|PSP-94|PSP57|PSP94 beta-microseminoprotein|immunoglobulin binding factor|prostate secreted seminal plasma protein|prostate secretory protein of 94 amino acids|seminal plasma beta-inhibin 10 0.001369 2.87 1 1 +4478 MSN moesin X protein-coding HEL70 moesin|epididymis luminal protein 70|membrane-organizing extension spike protein 76 0.0104 12.85 1 1 +4479 MSNP1 moesin pseudogene 1 5 pseudo MSNL1 moesin-like 1 2 0.0002737 1 0 +4481 MSR1 macrophage scavenger receptor 1 8 protein-coding CD204|SCARA1|SR-A|SRA|phSR1|phSR2 macrophage scavenger receptor types I and II|macrophage acetylated LDL receptor I and II|macrophage scavenger receptor type III|scavenger receptor class A member 1 76 0.0104 8.387 1 1 +4482 MSRA methionine sulfoxide reductase A 8 protein-coding PMSR mitochondrial peptide methionine sulfoxide reductase|cytosolic methionine-S-sulfoxide reductase|peptide Met(O) reductase|peptide met (O) reductase|peptide-methionine (S)-S-oxide reductase 19 0.002601 7.503 1 1 +4485 MST1 macrophage stimulating 1 3 protein-coding D3F15S2|DNF15S2|HGFL|MSP|NF15S2 hepatocyte growth factor-like protein|hepatocyte growth factor-like protein homolog|macrophage stimulating 1 (hepatocyte growth factor-like)|macrophage-stimulating protein 78 0.01068 6.894 1 1 +4486 MST1R macrophage stimulating 1 receptor 3 protein-coding CD136|CDw136|NPCA3|PTK8|RON macrophage-stimulating protein receptor|MSP receptor|PTK8 protein tyrosine kinase 8|c-met-related tyrosine kinase|p185-Ron 91 0.01246 7.092 1 1 +4487 MSX1 msh homeobox 1 4 protein-coding ECTD3|HOX7|HYD1|STHAG1 homeobox protein MSX-1|homeobox 7|homeobox protein Hox-7|msh homeo box 1|msh homeobox 1-like protein|msh homeobox homolog 1 21 0.002874 6.142 1 1 +4488 MSX2 msh homeobox 2 5 protein-coding CRS2|FPP|HOX8|MSH|PFM|PFM1 homeobox protein MSX-2|homeobox protein Hox-8|msh homeo box 2|msh homeobox homolog 2 12 0.001642 5.414 1 1 +4489 MT1A metallothionein 1A 16 protein-coding MT1|MT1S|MTC metallothionein-1A|MT-1A|MT-IA|metallothionein 1A (functional)|metallothionein 1S|metallothionein-IA 5 0.0006844 3.198 1 1 +4490 MT1B metallothionein 1B 16 protein-coding MT-1B|MT-IB|MT1|MT1Q|MTP metallothionein-1B|metallothionein 1B (functional)|metallothionein 1Q|metallothionein-IB 3 0.0004106 0.1094 1 1 +4493 MT1E metallothionein 1E 16 protein-coding MT-1E|MT-IE|MT1|MTD metallothionein-1E|metallothionein 1E (functional)|metallothionein D|metallothionein-IE 8 0.001095 8.995 1 1 +4494 MT1F metallothionein 1F 16 protein-coding MT1 metallothionein-1F|MT-1F|MT-IF|metallothionein 1F (functional)|metallothionein-IF 0 0 7.222 1 1 +4495 MT1G metallothionein 1G 16 protein-coding MT1|MT1K metallothionein-1G|MT-1G|MT-1K|MT-IG|metallothionein-1K|metallothionein-IG 4 0.0005475 6.665 1 1 +4496 MT1H metallothionein 1H 16 protein-coding MT-0|MT-1H|MT-IH|MT1 metallothionein-1H|metallothionein-0|metallothionein-IH|testicular tissue protein Li 123 12 0.001642 3.116 1 1 +4498 MT1JP metallothionein 1J, pseudogene 16 pseudo MT1|MT1J|MT1NP|MTB metallothionein 1M pseudogene|metallothionein 1N, pseudogene|metallothionein B 17 0.002327 1 0 +4499 MT1M metallothionein 1M 16 protein-coding MT-1M|MT-IM|MT1|MT1K metallothionein-1M|metallothionein 1K|metallothionein 1Y 10 0.001369 5.031 1 1 +4500 MT1L metallothionein 1L (gene/pseudogene) 16 pseudo MT1|MT1R|MTF metallothionein 1L (pseudogene)|metallothionein 1R 4 0.0005475 4.801 1 1 +4501 MT1X metallothionein 1X 16 protein-coding MT-1l|MT1 metallothionein-1X|MT-1X|MT-IX|metallothionein-IX|testicular tissue protein Li 124 1 0.0001369 9.45 1 1 +4502 MT2A metallothionein 2A 16 protein-coding MT2 metallothionein-2|MT-2|MT-II|metallothionein-II 3 0.0004106 11.32 1 1 +4504 MT3 metallothionein 3 16 protein-coding GIF|GIFB|GRIF|ZnMT3 metallothionein-3|MT-3|MT-III|growth inhibitory factor|metallothionein 3 (growth inhibitory factor (neurotrophic))|metallothionein-III 4 0.0005475 3.269 1 1 +4507 MTAP methylthioadenosine phosphorylase 9 protein-coding BDMF|DMSFH|DMSMFH|HEL-249|LGMBF|MSAP|c86fus S-methyl-5'-thioadenosine phosphorylase|5'-methylthioadenosine phosphorylase|MTA phosphorylase|MTAPase|MeSAdo phosphorylase|epididymis luminal protein 249 14 0.001916 9.028 1 1 +4508 ATP6 ATP synthase F0 subunit 6 MT protein-coding ATPase6|MTATP6 - 5 0.0006844 1 0 +4509 ATP8 ATP synthase F0 subunit 8 MT protein-coding ATPase8|MTATP8 - 2 0.0002737 1 0 +4512 COX1 cytochrome c oxidase subunit I MT protein-coding COI|MTCO1 - 17 0.002327 1 0 +4513 COX2 cytochrome c oxidase subunit II MT protein-coding COII|MTCO2 - 11 0.001506 1 0 +4514 COX3 cytochrome c oxidase III MT protein-coding COIII|MTCO3 cytochrome c oxidase III|cytochrome c oxidase subunit III 11 0.001506 1 0 +4515 MTCP1 mature T-cell proliferation 1 X protein-coding P13MTCP1|p8MTCP1 protein p13 MTCP-1|MTCP-1 type B1|mature T-cell proliferation 1 isoform p13|mature T-cell proliferation-1 type B1 6 0.0008212 4.818 1 1 +4519 CYTB cytochrome b MT protein-coding MTCYB - 30 0.004106 1 0 +4520 MTF1 metal regulatory transcription factor 1 1 protein-coding MTF-1|ZRF metal regulatory transcription factor 1|MRE-binding transcription factor|MRE-binding transcription factor-1|metal-responsive transcription factor 1|transcription factor MTF-1|zinc regulatory factor 51 0.006981 8.8 1 1 +4521 NUDT1 nudix hydrolase 1 7 protein-coding MTH1 7,8-dihydro-8-oxoguanine triphosphatase|2-hydroxy-dATP diphosphatase|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 (nucleoside diphosphate linked moiety X)-type motif 1|nudix motif 1 20 0.002737 8.16 1 1 +4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 14 protein-coding MTHFC|MTHFD C-1-tetrahydrofolate synthase, cytoplasmic|5,10-methylenetetrahydrofolate dehydrogenase, 5,10-methylenetetrahydrofolate cyclohydrolase, 10-formyltetrahydrofolate synthetase|C1-THF synthase|cytoplasmic C-1-tetrahydrofolate synthase|methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase 58 0.007939 10.72 1 1 +4524 MTHFR methylenetetrahydrofolate reductase 1 protein-coding - methylenetetrahydrofolate reductase|5,10-methylenetetrahydrofolate reductase (NADPH)|methylenetetrahydrofolate reductase (NAD(P)H) 51 0.006981 9.478 1 1 +4528 MTIF2 mitochondrial translational initiation factor 2 2 protein-coding - translation initiation factor IF-2, mitochondrial|IF-2mt 56 0.007665 9.522 1 1 +4534 MTM1 myotubularin 1 X protein-coding CNM|MTMX|XLMTM myotubularin|phosphatidylinositol-3,5-bisphosphate 3-phosphatase|phosphatidylinositol-3-phosphate phosphatase 55 0.007528 8.369 1 1 +4535 ND1 NADH dehydrogenase, subunit 1 (complex I) MT protein-coding MTND1 NADH dehydrogenase, subunit 1 (complex I)|NADH dehydrogenase subunit 1 11 0.001506 1 0 +4536 ND2 MTND2 MT protein-coding MTND2 MTND2|NADH dehydrogenase subunit 2 8 0.001095 1 0 +4537 ND3 NADH dehydrogenase, subunit 3 (complex I) MT protein-coding MTND3 NADH dehydrogenase, subunit 3 (complex I)|NADH dehydrogenase subunit 3 10 0.001369 1 0 +4538 ND4 NADH dehydrogenase, subunit 4 (complex I) MT protein-coding MTND4 NADH dehydrogenase, subunit 4 (complex I)|NADH dehydrogenase subunit 4 17 0.002327 1 0 +4539 ND4L NADH dehydrogenase, subunit 4L (complex I) MT protein-coding MTND4L NADH dehydrogenase, subunit 4L (complex I)|NADH dehydrogenase subunit 4L 2 0.0002737 1 0 +4540 ND5 NADH dehydrogenase, subunit 5 (complex I) MT protein-coding MTND5 NADH dehydrogenase, subunit 5 (complex I)|NADH dehydrogenase subunit 5 42 0.005749 1 0 +4541 ND6 NADH dehydrogenase, subunit 6 (complex I) MT protein-coding MTND6 NADH dehydrogenase, subunit 6 (complex I)|NADH dehydrogenase subunit 6 16 0.00219 1 0 +4542 MYO1F myosin IF 19 protein-coding - unconventional myosin-If|myosin-ID|myosin-Ie 114 0.0156 8.255 1 1 +4543 MTNR1A melatonin receptor 1A 4 protein-coding MEL-1A-R|MT1 melatonin receptor type 1A|mel1a receptor 38 0.005201 0.6949 1 1 +4544 MTNR1B melatonin receptor 1B 11 protein-coding FGQTL2|MEL-1B-R|MT2 melatonin receptor type 1B|mel1b receptor|melatonin receptor 1B variant b|melatonin receptor MEL1B 58 0.007939 0.2044 1 1 +4547 MTTP microsomal triglyceride transfer protein 4 protein-coding ABL|MTP microsomal triglyceride transfer protein large subunit|microsomal triglyceride transfer protein (large polypeptide, 88kDa) 82 0.01122 3.057 1 1 +4548 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase 1 protein-coding HMAG|MS|cblG methionine synthase|5-methyltetrahydrofolate-homocysteine methyltransferase 1|cobalamin-dependent methionine synthase|vitamin-B12 dependent methionine synthase 87 0.01191 9.969 1 1 +4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase 5 protein-coding MSR|cblE methionine synthase reductase|[methionine synthase]-cobalamin methyltransferase (cob(II)alamin reducing)|methionine synthase reductase, mitochondrial 54 0.007391 9.198 1 1 +4580 MTX1 metaxin 1 1 protein-coding MTX|MTXN metaxin-1|mitochondrial outer membrane import complex protein 1 29 0.003969 9.617 1 1 +4582 MUC1 mucin 1, cell surface associated 1 protein-coding ADMCKD|ADMCKD1|CA 15-3|CD227|EMA|H23AG|KL-6|MAM6|MCD|MCKD|MCKD1|MUC-1|MUC-1/SEC|MUC-1/X|MUC1/ZD|PEM|PEMT|PUM mucin-1|H23 antigen|breast carcinoma-associated antigen DF3|cancer antigen 15-3|carcinoma-associated mucin|episialin|krebs von den Lungen-6|mucin 1, transmembrane|peanut-reactive urinary mucin|polymorphic epithelial mucin|tumor associated epithelial mucin|tumor-associated epithelial membrane antigen 28 0.003832 9.907 1 1 +4583 MUC2 mucin 2, oligomeric mucus/gel-forming 11 protein-coding MLP|MUC-2|SMUC mucin-2|intestinal mucin-2|mucin 2, intestinal/tracheal 229 0.03134 2.294 1 1 +4584 MUC3A mucin 3A, cell surface associated 7 protein-coding MUC-3A|MUC3 mucin-3A|intestinal mucin|mucin 3, intestinal 80 0.01095 1 0 +4585 MUC4 mucin 4, cell surface associated 3 protein-coding ASGP|HSA276359|MUC-4 mucin-4|ascites sialoglycoprotein|mucin 4, tracheobronchial|pancreatic adenocarcinoma mucin|testis mucin|tracheobronchial mucin 508 0.06953 5.507 1 1 +4586 MUC5AC mucin 5AC, oligomeric mucus/gel-forming 11 protein-coding MUC5|TBM|leB|mucin mucin-5AC|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|tracheobronchial mucin 43 0.005886 1 0 +4588 MUC6 mucin 6, oligomeric mucus/gel-forming 11 protein-coding MUC-6 mucin-6|gastric mucin-6 205 0.02806 3.437 1 1 +4589 MUC7 mucin 7, secreted 4 protein-coding MG2 mucin-7|MUC-7|apo-MG2|mucin 7, salivary|salivary mucin-7 78 0.01068 0.5112 1 1 +4591 TRIM37 tripartite motif containing 37 17 protein-coding MUL|POB1|TEF3 E3 ubiquitin-protein ligase TRIM37|RING-B-box-coiled-coil protein|mulibrey nanism protein 77 0.01054 9.447 1 1 +4593 MUSK muscle associated receptor tyrosine kinase 9 protein-coding CMS9|FADS muscle, skeletal receptor tyrosine-protein kinase|muscle, skeletal, receptor tyrosine kinase|muscle-specific kinase receptor|muscle-specific tyrosine-protein kinase receptor 93 0.01273 0.8403 1 1 +4594 MUT methylmalonyl-CoA mutase 6 protein-coding MCM methylmalonyl-CoA mutase, mitochondrial|methylmalonyl Coenzyme A mutase|methylmalonyl-CoA isomerase|mutant methylmalonyl CoA mutase|truncated methylmalonyl CoA mutase 55 0.007528 9.622 1 1 +4595 MUTYH mutY DNA glycosylase 1 protein-coding MYH adenine DNA glycosylase|A/G-specific adenine DNA glycosylase|mutY homolog|mutY-like protein 37 0.005064 7.755 1 1 +4597 MVD mevalonate diphosphate decarboxylase 16 protein-coding FP17780|MDDase|MPD|POROK7 diphosphomevalonate decarboxylase|mevalonate (diphospho) decarboxylase|mevalonate pyrophosphate decarboxylase 27 0.003696 9.327 1 1 +4598 MVK mevalonate kinase 12 protein-coding LRBP|MK|MVLK|POROK3 mevalonate kinase|LH receptor mRNA-binding protein|mevalonate kinase 1 30 0.004106 8.902 1 1 +4599 MX1 MX dynamin like GTPase 1 21 protein-coding IFI-78K|IFI78|MX|MxA interferon-induced GTP-binding protein Mx1|interferon-induced protein p78|interferon-inducible protein p78|interferon-regulated resistance GTP-binding protein MxA|myxoma resistance protein 1|myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 47 0.006433 10.65 1 1 +4600 MX2 MX dynamin like GTPase 2 21 protein-coding MXB interferon-induced GTP-binding protein Mx2|interferon-regulated resistance GTP-binding protein MXB|myxovirus (influenza virus) resistance 2|myxovirus resistance protein 2|p78-related protein|second interferon-induced protein p78 47 0.006433 8.417 1 1 +4601 MXI1 MAX interactor 1, dimerization protein 10 protein-coding MAD2|MXD2|MXI|bHLHc11 max-interacting protein 1|MAX dimerization protein 2|Max-related transcription factor|class C basic helix-loop-helix protein 11 12 0.001642 9.807 1 1 +4602 MYB MYB proto-oncogene, transcription factor 6 protein-coding Cmyb|c-myb|c-myb_CDS|efg transcriptional activator Myb|oncogene AMV|proto-oncogene c-Myb|v-myb avian myeloblastosis viral oncogene homolog 70 0.009581 6.152 1 1 +4603 MYBL1 MYB proto-oncogene like 1 8 protein-coding A-MYB|AMYB myb-related protein A|myb-like protein 1|v-myb avian myeloblastosis viral oncogene homolog-like 1 46 0.006296 6.672 1 1 +4604 MYBPC1 myosin binding protein C, slow type 12 protein-coding LCCS4|MYBPCC|MYBPCS myosin-binding protein C, slow-type|C-protein, skeletal muscle slow isoform|skeletal muscle C-protein|slow MyBP-C 92 0.01259 3.449 1 1 +4605 MYBL2 MYB proto-oncogene like 2 20 protein-coding B-MYB|BMYB myb-related protein B|myb-like protein 2|v-myb avian myeloblastosis viral oncogene homolog-like 2|v-myb myeloblastosis viral oncogene homolog-like 2 50 0.006844 8.859 1 1 +4606 MYBPC2 myosin binding protein C, fast type 19 protein-coding MYBPC|MYBPCF myosin-binding protein C, fast-type|C-protein, skeletal muscle fast isoform|fast MyBP-C|fast-type muscle myosin-binding-protein C|testicular tissue protein Li 126 97 0.01328 2.318 1 1 +4607 MYBPC3 myosin binding protein C, cardiac 11 protein-coding CMD1MM|CMH4|FHC|LVNC10|MYBP-C myosin-binding protein C, cardiac-type|C-protein, cardiac muscle isoform|myosin-binding protein C|truncated cardiac myosin-binding protein C 71 0.009718 1.262 1 1 +4608 MYBPH myosin binding protein H 1 protein-coding - myosin-binding protein H|H-protein|myBP-H 34 0.004654 1.924 1 1 +4609 MYC v-myc avian myelocytomatosis viral oncogene homolog 8 protein-coding MRTL|MYCC|bHLHe39|c-Myc myc proto-oncogene protein|avian myelocytomatosis viral oncogene homolog|class E basic helix-loop-helix protein 39|myc-related translation/localization regulatory factor|proto-oncogene c-Myc|transcription factor p64|v-myc myelocytomatosis viral oncogene homolog 37 0.005064 10.52 1 1 +4610 MYCL v-myc avian myelocytomatosis viral oncogene lung carcinoma derived homolog 1 protein-coding L-Myc|LMYC|MYCL1|bHLHe38 protein L-Myc|class E basic helix-loop-helix protein 38|l-myc-1 proto-oncogene|myc-related gene from lung cancer|protein L-Myc-1|v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived 25 0.003422 7.759 1 1 +4613 MYCN v-myc avian myelocytomatosis viral oncogene neuroblastoma derived homolog 2 protein-coding MODED|N-myc|NMYC|ODED|bHLHe37 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 34 0.004654 5.085 1 1 +4615 MYD88 myeloid differentiation primary response 88 3 protein-coding MYD88D myeloid differentiation primary response protein MyD88|mutant myeloid differentiation primary response 88|myeloid differentiation primary response gene (88) 21 0.002874 10.18 1 1 +4616 GADD45B growth arrest and DNA damage inducible beta 19 protein-coding GADD45BETA|MYD118 growth arrest and DNA damage-inducible protein GADD45 beta|myeloid differentiation primary response protein MyD118|negative growth regulatory protein MyD118 5 0.0006844 9.758 1 1 +4617 MYF5 myogenic factor 5 12 protein-coding bHLHc2 myogenic factor 5|class C basic helix-loop-helix protein 2|myf-5 56 0.007665 0.1778 1 1 +4618 MYF6 myogenic factor 6 12 protein-coding CNM3|MRF4|bHLHc4|myf-6 myogenic factor 6|class C basic helix-loop-helix protein 4|muscle-specific regulatory factor 4|myogenic factor 6 (herculin) 48 0.00657 0.5682 1 1 +4619 MYH1 myosin heavy chain 1 17 protein-coding HEL71|MYHSA1|MYHa|MyHC-2X/D|MyHC-2x myosin-1|epididymis luminal protein 71|myHC-IIx/d|myosin heavy chain 2x|myosin heavy chain IIx/d|myosin heavy chain, skeletal muscle, adult 1|myosin, heavy chain 1, skeletal muscle, adult|myosin, heavy polypeptide 1, skeletal muscle, adult 223 0.03052 0.8861 1 1 +4620 MYH2 myosin heavy chain 2 17 protein-coding IBM3|MYH2A|MYHSA2|MYHas8|MYPOP|MyHC-2A|MyHC-IIa myosin-2|fast 2a myosin heavy chain|inclusion body myopathy 3, autosomal dominant|myosin heavy chain 2a|myosin heavy chain IIa|myosin heavy chain, skeletal muscle, adult 2|myosin, heavy chain 2, skeletal muscle, adult|myosin, heavy polypeptide 2, skeletal muscle, adult|type IIA myosin heavy chain 266 0.03641 0.8771 1 1 +4621 MYH3 myosin heavy chain 3 17 protein-coding DA2A|DA2B|DA8|HEMHC|MYHC-EMB|MYHSE1|SMHCE myosin-3|myosin heavy chain, fast skeletal muscle, embryonic|myosin, heavy chain 3, skeletal muscle, embryonic|myosin, heavy polypeptide 3, skeletal muscle, embryonic|myosin, skeletal, heavy chain, embryonic 1 152 0.0208 5.063 1 1 +4622 MYH4 myosin heavy chain 4 17 protein-coding MYH2B|MyHC-2B|MyHC-IIb myosin-4|myosin heavy chain 2b|myosin heavy chain IIb|myosin heavy chain, skeletal muscle, fetal|myosin, heavy chain 4, skeletal muscle|myosin, heavy polypeptide 4, skeletal muscle 211 0.02888 0.7491 1 1 +4624 MYH6 myosin heavy chain 6 14 protein-coding ASD3|CMD1EE|CMH14|MYHC|MYHCA|SSS3|alpha-MHC myosin-6|myHC-alpha|myosin heavy chain, cardiac muscle alpha isoform|myosin, heavy polypeptide 6, cardiac muscle, alpha (cardiomyopathy, hypertrophic 1) 191 0.02614 1.398 1 1 +4625 MYH7 myosin heavy chain 7 14 protein-coding CMD1S|CMH1|MPD1|MYHCB|SPMD|SPMM myosin-7|cardiac muscle myosin heavy chain 7 beta|myHC-beta|myhc-slow|myopathy, distal 1|myosin 7|myosin heavy chain beta-subunit|myosin heavy chain slow isoform|myosin heavy chain, cardiac muscle beta isoform|myosin, heavy chain 7, cardiac muscle, beta|myosin, heavy polypeptide 7, cardiac muscle, beta|rhabdomyosarcoma antigen MU-RMS-40.7A 224 0.03066 2.043 1 1 +4626 MYH8 myosin heavy chain 8 17 protein-coding DA7|MyHC-peri|MyHC-pn|gtMHC-F myosin-8|fetal-myosin heavy chain|myHC-perinatal|myosin heavy chain, skeletal muscle, perinatal|myosin, heavy chain 8, skeletal muscle, perinatal|myosin, heavy polypeptide 8, skeletal muscle, perinatal 236 0.0323 0.8494 1 1 +4627 MYH9 myosin heavy chain 9 22 protein-coding BDPLT6|DFNA17|EPSTS|FTNS|MHA|NMHC-II-A|NMMHC-IIA|NMMHCA myosin-9|cellular myosin heavy chain, type A|myosin, heavy chain 9, non-muscle|non-muscle myosin heavy chain 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 186 0.02546 14.32 1 1 +4628 MYH10 myosin heavy chain 10 17 protein-coding NMMHC-IIB|NMMHCB myosin-10|cellular myosin heavy chain, type B|myosin heavy chain, nonmuscle type B|myosin, heavy chain 10, non-muscle|myosin, heavy polypeptide 10, non-muscle|nonmuscle myosin II heavy chain-B|nonmuscle myosin heavy chain IIB 149 0.02039 10.75 1 1 +4629 MYH11 myosin heavy chain 11 16 protein-coding AAT4|FAA4|SMHC|SMMHC myosin-11|myosin heavy chain, smooth muscle isoform|myosin, heavy chain 11, smooth muscle|myosin, heavy polypeptide 11, smooth muscle 151 0.02067 9.525 1 1 +4632 MYL1 myosin light chain 1 2 protein-coding MLC1F|MLC3F myosin light chain 1/3, skeletal muscle isoform|A1 catalytic|A2 catalytic|MLC1/MLC3|MLC1F/MLC3F|myosin light chain A1/A2|myosin light chain alkali 1/2|myosin, light chain 1, alkali; skeletal, fast|myosin, light polypeptide 1, alkali; skeletal, fast 30 0.004106 0.554 1 1 +4633 MYL2 myosin light chain 2 12 protein-coding CMH10|MLC-2s/v|MLC2 myosin regulatory light chain 2, ventricular/cardiac muscle isoform|MLC-2|MLC-2v|RLC of myosin|cardiac myosin light chain 2|cardiac ventricular myosin light chain 2|myosin light chain 2, slow skeletal/ventricular muscle isoform|myosin, light chain 2, regulatory, cardiac, slow|myosin, light polypeptide 2, regulatory, cardiac, slow|regulatory light chain of myosin|slow cardiac myosin regulatory light chain 2|ventricular myosin light chain 2 23 0.003148 0.7623 1 1 +4634 MYL3 myosin light chain 3 3 protein-coding CMH8|MLC-lV/sb|MLC1SB|MLC1V|VLC1|VLCl myosin light chain 3|CMLC1|cardiac myosin light chain 1|myosin light chain 1, slow-twitch muscle B/ventricular isoform|myosin, light chain 3, alkali; ventricular, skeletal, slow|myosin, light polypeptide 3, alkali; ventricular, skeletal, slow|ventricular myosin alkali light chain|ventricular myosin light chain 1|ventricular/slow twitch myosin alkali light chain 12 0.001642 2.07 1 1 +4635 MYL4 myosin light chain 4 17 protein-coding ALC1|AMLC|GT1|PRO1957 myosin light chain 4|myosin light chain 1, embryonic muscle/atrial isoform|myosin light chain alkali GT-1 isoform|myosin, atrial/fetal muscle, light chain|myosin, light chain 4, alkali; atrial, embryonic|myosin, light polypeptide 4, alkali; atrial, embryonic 12 0.001642 2.219 1 1 +4636 MYL5 myosin light chain 5 4 protein-coding - myosin light chain 5|MYLC2|myLC-2|myosin regulatory light chain 5|myosin, light chain 5, regulatory|myosin, light polypeptide 5, regulatory|superfast myosin regulatory light chain 2 13 0.001779 7.066 1 1 +4637 MYL6 myosin light chain 6 12 protein-coding ESMLC|LC17|LC17-GI|LC17-NM|LC17A|LC17B|MLC-3|MLC1SM|MLC3NM|MLC3SM myosin light polypeptide 6|17 kDa myosin light chain|myosin light chain A3|myosin light chain alkali 3|myosin, light chain 6, alkali, smooth muscle and non-muscle|myosin, light polypeptide 6, alkali, smooth muscle and non-muscle 20 0.002737 13.75 1 1 +4638 MYLK myosin light chain kinase 3 protein-coding AAT7|KRP|MLCK|MLCK1|MLCK108|MLCK210|MSTP083|MYLK1|smMLCK myosin light chain kinase, smooth muscle|kinase-related protein|myosin, light polypeptide kinase|smooth muscle myosin light chain kinase|telokin 152 0.0208 10.46 1 1 +4640 MYO1A myosin IA 12 protein-coding BBMI|DFNA48|MIHC|MYHL unconventional myosin-Ia|brush border myosin I|myosin I heavy chain|myosin, heavy polypeptide-like (100kD) 71 0.009718 2.689 1 1 +4641 MYO1C myosin IC 17 protein-coding MMI-beta|MMIb|NMI|myr2 unconventional myosin-Ic|myosin-I beta|myosin-Ic|nuclear myosin I 55 0.007528 11.88 1 1 +4642 MYO1D myosin ID 17 protein-coding PPP1R108|myr4 unconventional myosin-Id|myosin-I gamma|protein phosphatase 1, regulatory subunit 108 66 0.009034 10.95 1 1 +4643 MYO1E myosin IE 15 protein-coding FSGS6|HuncM-IC|MYO1C unconventional myosin-Ie|MYO1E variant protein|myosin-IC|unconventional myosin 1E 62 0.008486 10.16 1 1 +4644 MYO5A myosin VA 15 protein-coding GS1|MYH12|MYO5|MYR12 unconventional myosin-Va|dilute myosin heavy chain, non-muscle|myosin V|myosin VA (heavy chain 12, myoxin)|myosin, heavy polypeptide kinase|myosin-12|myosin-Va|myoxin 114 0.0156 9.668 1 1 +4645 MYO5B myosin VB 18 protein-coding - unconventional myosin-Vb|MYO5B variant protein|myosin-Vb 125 0.01711 9.601 1 1 +4646 MYO6 myosin VI 6 protein-coding DFNA22|DFNB37 unconventional myosin-VI|unconventional myosin-6 93 0.01273 10.8 1 1 +4647 MYO7A myosin VIIA 11 protein-coding DFNA11|DFNB2|MYOVIIA|MYU7A|NSRD2|USH1B unconventional myosin-VIIa|myosin VIIA (Usher syndrome 1B (autosomal recessive, severe)) 149 0.02039 7.29 1 1 +4648 MYO7B myosin VIIB 2 protein-coding - unconventional myosin-VIIb|myosin-VIIb 160 0.0219 4.738 1 1 +4649 MYO9A myosin IXA 15 protein-coding - unconventional myosin-IXa|myosin-IXa|unconventional myosin-9a 154 0.02108 7.958 1 1 +4650 MYO9B myosin IXB 19 protein-coding CELIAC4|MYR5 unconventional myosin-IXb|myosin-IXb|unconventional myosin-9b 128 0.01752 11.04 1 1 +4651 MYO10 myosin X 5 protein-coding - unconventional myosin-X|unconventional myosin-10|unconventionnal myosin-X 132 0.01807 10.69 1 1 +4653 MYOC myocilin 1 protein-coding GLC1A|GPOA|JOAG|JOAG1|TIGR myocilin|juvenile-onset open-angle glaucoma 1|mutated trabecular meshwork-induced glucocorticoid response protein|myocilin 55 kDa subunit|myocilin trabecular meshwork inducible glucocorticoid response|myocilin trabecular meshwork inducible glucocorticoid response protein|trabecular meshwork inducible glucocorticoid response protein 47 0.006433 1.784 1 1 +4654 MYOD1 myogenic differentiation 1 11 protein-coding MYF3|MYOD|PUM|bHLHc1 myoblast determination protein 1|class C basic helix-loop-helix protein 1|myf-3|myogenic factor 3 18 0.002464 0.6762 1 1 +4656 MYOG myogenin 1 protein-coding MYF4|bHLHc3|myf-4 myogenin|class C basic helix-loop-helix protein 3|myogenic factor 4|myogenin (myogenic factor 4) 18 0.002464 0.7285 1 1 +4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A 12 protein-coding M130|MBS|MYPT1 protein phosphatase 1 regulatory subunit 12A|myosin binding subunit|myosin phosphatase, target subunit 1|myosin phosphatase-targeting subunit 1|protein phosphatase 1, regulatory (inhibitor) subunit 12A|protein phosphatase myosin-binding subunit 51 0.006981 10.25 1 1 +4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B 1 protein-coding MYPT2|PP1bp55 protein phosphatase 1 regulatory subunit 12B|myosin phosphatase target subunit 2|myosin phosphatase-targeting subunit 2|protein phosphatase 1, regulatory (inhibitor) subunit 12B 76 0.0104 9.812 1 1 +4661 MYT1 myelin transcription factor 1 20 protein-coding C20orf36|MTF1|MYTI|NZF2|PLPB1|ZC2H2C1|ZC2HC4A myelin transcription factor 1|myelin transcription factor I|neural zinc finger transcription factor 2|proteolipid protein binding protein 118 0.01615 3.563 1 1 +4664 NAB1 NGFI-A binding protein 1 2 protein-coding - NGFI-A-binding protein 1|EGR-1-binding protein 1|EGR1 binding protein 1|NGFI-A binding protein 1 (EGR1 binding protein 1)|transcriptional regulatory protein p54 25 0.003422 9.995 1 1 +4665 NAB2 NGFI-A binding protein 2 12 protein-coding MADER NGFI-A-binding protein 2|EGR1 binding protein 2|NGFI-A binding protein 2 (EGR1 binding protein 2)|melanoma-associated delayed early response protein 34 0.004654 9.58 1 1 +4666 NACA nascent polypeptide-associated complex alpha subunit 12 protein-coding HSD48|NAC-alpha|NACA1|skNAC nascent polypeptide-associated complex subunit alpha|alpha-NAC, muscle-specific form|nascent-polypeptide-associated complex alpha polypeptide 103 0.0141 13.67 1 1 +4668 NAGA alpha-N-acetylgalactosaminidase 22 protein-coding D22S674|GALB alpha-N-acetylgalactosaminidase|Acetylgalactosaminidase, alpha-N- (alpha-galactosidase B)|N-acetylgalactosaminidase, alpha-|alpha-galactosidase B 24 0.003285 10.12 1 1 +4669 NAGLU N-acetyl-alpha-glucosaminidase 17 protein-coding CMT2V|MPS-IIIB|MPS3B|NAG|UFHSD alpha-N-acetylglucosaminidase|N-acetylglucosaminidase, alpha|testicular tissue protein Li 18 42 0.005749 9.915 1 1 +4670 HNRNPM heterogeneous nuclear ribonucleoprotein M 19 protein-coding CEAR|HNRNPM4|HNRPM|HNRPM4|HTGR1|NAGR1|hnRNP M heterogeneous nuclear ribonucleoprotein M|CEA receptor|N-acetylglucosamine receptor 1|heterogenous nuclear ribonucleoprotein M4|hnRNA-binding protein M4 59 0.008076 12.05 1 1 +4671 NAIP NLR family apoptosis inhibitory protein 5 protein-coding BIRC1|NLRB1|psiNAIP 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 27 0.003696 5.433 1 1 +4673 NAP1L1 nucleosome assembly protein 1 like 1 12 protein-coding NAP1|NAP1L|NRP nucleosome assembly protein 1-like 1|HSP22-like protein interacting protein|NAP-1-related protein 38 0.005201 12.73 1 1 +4674 NAP1L2 nucleosome assembly protein 1 like 2 X protein-coding BPX nucleosome assembly protein 1-like 2|brain specific gene BPX|brain-specific protein, X-linked 69 0.009444 5.603 1 1 +4675 NAP1L3 nucleosome assembly protein 1 like 3 X protein-coding MB20|NPL3 nucleosome assembly protein 1-like 3 73 0.009992 5.911 1 1 +4676 NAP1L4 nucleosome assembly protein 1 like 4 11 protein-coding NAP1L4b|NAP2|NAP2L|hNAP2 nucleosome assembly protein 1-like 4|NAP-2|nucleosome assembly protein 1-like 4b|nucleosome assembly protein 2 28 0.003832 11.38 1 1 +4677 NARS asparaginyl-tRNA synthetase 18 protein-coding ASNRS|NARS1 asparagine--tRNA ligase, cytoplasmic|asparagine tRNA ligase 1, cytoplasmic|asparaginyl-tRNA synthetase, cytoplasmic 23 0.003148 11.6 1 1 +4678 NASP nuclear autoantigenic sperm protein 1 protein-coding FLB7527|HMDRA1|PRO1999 nuclear autoantigenic sperm protein|NASP histone chaperone|histone H1-binding protein|nuclear autoantigenic sperm protein (histone-binding) 55 0.007528 10.97 1 1 +4680 CEACAM6 carcinoembryonic antigen related cell adhesion molecule 6 19 protein-coding CD66c|CEAL|NCA carcinoembryonic antigen-related cell adhesion molecule 6|Cluster of Differentiation 66c|carcinoembryonic antigen-related cell adhesion molecule 6 (non-specific cross reacting antigen)|normal cross-reacting antigen 27 0.003696 6.766 1 1 +4681 NBL1 neuroblastoma 1, DAN family BMP antagonist 1 protein-coding D1S1733E|DAN|DAND1|NB|NO3 neuroblastoma suppressor of tumorigenicity 1|DAN domain family member 1|differential screening-selected gene aberrant in neuroblastoma|neuroblastoma candidate region, suppression of tumorigenicity 1 12 0.001642 11.22 1 1 +4682 NUBP1 nucleotide binding protein 1 16 protein-coding NBP|NBP1|NBP35 cytosolic Fe-S cluster assembly factor NUBP1|NBP 1|nucleotide binding protein (e.coli MinD like)|nucleotide binding protein 1 (E.coli MinD like)|nucleotide binding protein 1 (MinD homolog, E. coli) 14 0.001916 8.91 1 1 +4683 NBN nibrin 8 protein-coding AT-V1|AT-V2|ATV|NBS|NBS1|P95 nibrin|Nijmegen breakage syndrome 1 (nibrin)|cell cycle regulatory protein p95|p95 protein of the MRE11/RAD50 complex 68 0.009307 10.3 1 1 +4684 NCAM1 neural cell adhesion molecule 1 11 protein-coding CD56|MSK39|NCAM neural cell adhesion molecule 1|antigen recognized by monoclonal antibody 5.1H11|neural cell adhesion molecule, NCAM 108 0.01478 7.061 1 1 +4685 NCAM2 neural cell adhesion molecule 2 21 protein-coding NCAM21 neural cell adhesion molecule 2|N-CAM-2|NCAM-2 139 0.01903 4.922 1 1 +4686 NCBP1 nuclear cap binding protein subunit 1 9 protein-coding CBP80|NCBP|Sto1 nuclear cap-binding protein subunit 1|80 kDa nuclear cap-binding protein|NCBP 80 kDa subunit|nuclear cap binding protein subunit 1, 80kD|nuclear cap binding protein subunit 1, 80kDa 34 0.004654 9.81 1 1 +4688 NCF2 neutrophil cytosolic factor 2 1 protein-coding NCF-2|NOXA2|P67-PHOX|P67PHOX neutrophil cytosol factor 2|67 kDa neutrophil oxidase factor|NADPH oxidase activator 2|chronic granulomatous disease, autosomal 2|neutrophil NADPH oxidase factor 2|neutrophil cytosolic factor 2 (65kD, chronic granulomatous disease, autosomal 2) 58 0.007939 7.823 1 1 +4689 NCF4 neutrophil cytosolic factor 4 22 protein-coding CGD3|NCF|P40PHOX|SH3PXD4 neutrophil cytosol factor 4|NCF-4|SH3 and PX domain-containing protein 4|neutrophil NADPH oxidase factor 4|neutrophil cytosolic factor 4, 40kDa|p40-phox 29 0.003969 7.166 1 1 +4690 NCK1 NCK adaptor protein 1 3 protein-coding NCK|NCKalpha|nck-1 cytoplasmic protein NCK1|NCK tyrosine kinase|SH2/SH3 adaptor protein NCK-alpha|melanoma NCK protein|non-catalytic region of tyrosine kinase 31 0.004243 9.142 1 1 +4691 NCL nucleolin 2 protein-coding C23 nucleolin 52 0.007117 13.55 1 1 +4692 NDN necdin, MAGE family member 15 protein-coding HsT16328|PWCR necdin|Prader-Willi syndrome chromosome region|necdin homolog|necdin, melanoma antigen (MAGE) family member|necdin-like protein 61 0.008349 8.41 1 1 +4693 NDP NDP, norrin cystine knot growth factor X protein-coding EVR2|FEVR|ND norrin|Norrie disease (pseudoglioma)|X-linked exudative vitreoretinopathy 2 protein|norrie disease protein 8 0.001095 3.649 1 1 +4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 X protein-coding CI-MWFE|MWFE|ZNF183 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 1, 7.5kDa|NADH oxidoreductase subunit MWFE|NADH-ubiquinone oxidoreductase MWFE subunit|NADH:ubiquinone oxidoreductase (complex 1)|complex I MWFE subunit|complex I-MWFE|type I dehydrogenase 11 0.001506 10.7 1 1 +4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 5 protein-coding B8|CD14|CIB8 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 2, 8kDa|NADH-ubiquinone oxidoreductase subunit CI-B8|complex I B8 subunit 4 0.0005475 10.06 1 1 +4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 19 protein-coding B9|CI-B9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa|NADH-ubiquinone oxidoreductase B9 subunit|complex I B9 subunit|complex I-B9 10 0.001369 9.644 1 1 +4697 NDUFA4 NDUFA4, mitochondrial complex associated 7 protein-coding CI-9k|CI-MLRQ|MLRQ cytochrome c oxidase subunit NDUFA4|Complex I 9kDa subunit|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4|NADH-ubiquinone oxidoreductase MLRQ subunit|complex I-MLRQ 9 0.001232 11.68 1 1 +4698 NDUFA5 NADH:ubiquinone oxidoreductase subunit A5 7 protein-coding B13|CI-13KD-B|CI-13kB|NUFM|UQOR13 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa|NADH-ubiquinone oxidoreductase 13 kDa-B subunit|complex I 13kDa subunit B|complex I subunit B13|type I dehydrogenase|ubiquinone reductase 9 0.001232 10.47 1 1 +4700 NDUFA6 NADH:ubiquinone oxidoreductase subunit A6 22 protein-coding B14|CI-B14|LYRM6|NADHB14 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6|Complex I-B14|LYR motif-containing protein 6|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 6, 14kDa|NADH-ubiquinone oxidoreductase 1 alpha subcomplex, 6|NADH-ubiquinone oxidoreductase B14 subunit|complex I B14 subunit 6 0.0008212 10.22 1 1 +4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 19 protein-coding B14.5a|CI-B14.5a NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 7, 14.5kDa|NADH-ubiquinone oxidoreductase subunit B14.5a|complex I B14.5a subunit 12 0.001642 9.536 1 1 +4702 NDUFA8 NADH:ubiquinone oxidoreductase subunit A8 9 protein-coding CI-19KD|CI-PGIV|PGIV NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 8, 19kDa|NADH-ubiquinone oxidoreductase 19 kDa subunit|NADH:ubiquinone oxidoreductase PGIV subunit|complex I-19kD|complex I-PGIV 17 0.002327 9.863 1 1 +4703 NEB nebulin 2 protein-coding NEB177D|NEM2 nebulin|nemaline myopathy type 2 405 0.05543 5.516 1 1 +4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 12 protein-coding CC6|CI-39k|CI39k|NDUFS2L|SDR22E1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial|CI-39kD|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, 39kDa|NADH dehydrogenase (ubiquinone) Fe-S protein 2-like (NADH-coenzyme Q reductase)|NADH-ubiquinone oxidoreductase 39 kDa subunit|complex I 39kDa subunit|short chain dehydrogenase/reductase family 22E, member 1 33 0.004517 10.47 1 1 +4705 NDUFA10 NADH:ubiquinone oxidoreductase subunit A10 2 protein-coding CI-42KD|CI-42k NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial|NADH-ubiquinone oxidoreductase 42 kDa subunit|complex I 42kDa subunit 53 0.007254 10.8 1 1 +4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 16 protein-coding ACP|FASN2A|SDAP acyl carrier protein, mitochondrial|CI-SDAP|NADH dehydrogenase (ubiquinone) 1, alpha/beta subcomplex, 1, 8kDa|NADH-ubiquinone oxidoreductase 9.6 kDa subunit|NADH:ubiquinone oxidoreductase SDAP subunit|complex I SDAP subunit|mitochondrial acyl carrier protein 7 0.0009581 10.07 1 1 +4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 14 protein-coding CI-MNLL|CI-SGDH|MNLL NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1, 7kDa|NADH-ubiquinone oxidoreductase MNLL subunit|complex I MNLL subunit|complex I-MNLL 6 0.0008212 9.453 1 1 +4708 NDUFB2 NADH:ubiquinone oxidoreductase subunit B2 7 protein-coding AGGG|CI-AGGG NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 2, mitochondrial|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 2, 8kDa|NADH-ubiquinone oxidoreductase AGGG subunit|complex I AGGG subunit|complex I-AGGG 11 0.001506 10.64 1 1 +4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 2 protein-coding B12|CI-B12 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa|NADH-ubiquinone oxidoreductase B12 subunit|complex I-B12 8 0.001095 9.471 1 1 +4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 3 protein-coding B15|CI-B15 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa|NADH-ubiquinone oxidoreductase B15 subunit|complex I B15 subunit|complex I-B15 8 0.001095 10.89 1 1 +4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 3 protein-coding CISGDH|SGDH NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa|NADH-ubiquinone oxidoreductase SGDH subunit|complex I SGDH subunit|complex I-SGDH 24 0.003285 10.48 1 1 +4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 9 protein-coding B17|CI NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 6|CI-B17|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 6, 17kDa|NADH-ubiquinone oxidoreductase B17 subunit|NADH-ubiquinone oxidoreductase beta subunit, 6|complex I, mitochondrial respiratory chain, B17 subunit|complex I-B17 10 0.001369 9.559 1 1 +4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 19 protein-coding B18|CI-B18 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 7, 18kDa|NADH-ubiquinone oxidoreductase B18 subunit|cell adhesion protein SQM1|complex I B18 subunit|complex I-B18 9 0.001232 10.55 1 1 +4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 10 protein-coding ASHI|CI-ASHI NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, 19kDa|NADH:ubiquinone oxidoreductase ASHI subunit|complex I ASHI subunit|complex I-ASHI 15 0.002053 10.63 1 1 +4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 8 protein-coding B22|CI-B22|LYRM3|UQOR22 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9|LYR motif-containing protein 3|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa|NADH-ubiquinone oxidoreductase B22 subunit|complex I B22 subunit 15 0.002053 11.52 1 1 +4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 16 protein-coding PDSW NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10|CI-PDSW|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa|NADH ubiquinone oxidoreductase PDSW subunit (RH 16p13.3)|NADH-ubiquinone oxidoreductase PDSW subunit|complex I PDSW subunit|complex I-PDSW 13 0.001779 10.61 1 1 +4717 NDUFC1 NADH:ubiquinone oxidoreductase subunit C1 4 protein-coding KFYI NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial|CI-KFYI|NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 1, 6kDa|NADH-ubiquinone oxidoreductase KFYI subunit|complex I KFYI subunit|complex I-KFYI 5 0.0006844 9.611 1 1 +4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 11 protein-coding B14.5b|CI-B14.5b|HLC-1|NADHDH2 NADH dehydrogenase [ubiquinone] 1 subunit C2|NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 2, 14.5kDa|NADH-ubiquinone oxidoreductase subunit B14.5b|complex I subunit B14.5b|complex I-B14.5b|human lung cancer oncogene 1 protein 11 0.001506 11.14 1 1 +4719 NDUFS1 NADH:ubiquinone oxidoreductase core subunit S1 2 protein-coding CI-75Kd|CI-75k|PRO1304 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial|NADH dehydrogenase (ubiquinone) Fe-S protein 1, 75kDa (NADH-coenzyme Q reductase)|complex I 75kDa subunit|complex I, mitochondrial respiratory chain, 75-kD subunit|mitochondrial NADH-ubiquinone oxidoreductase 75 kDa subunit 56 0.007665 10.33 1 1 +4720 NDUFS2 NADH:ubiquinone oxidoreductase core subunit S2 1 protein-coding CI-49 NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial|CI-49kD|NADH dehydrogenase (ubiquinone) Fe-S protein 2, 49kDa (NADH-coenzyme Q reductase)|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 36 0.004927 11.14 1 1 +4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 11 protein-coding CI-30 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial|CI-30kD|NADH dehydrogenase (ubiquinone) Fe-S protein 3, 30kDa (NADH-coenzyme Q reductase)|NADH dehydrogenase-ubiquinone 30 kDa subunit|NADH-ubiquinone oxidoreductase 30 kDa subunit|complex I 30kDa subunit|complex I-30kD 17 0.002327 10.55 1 1 +4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 11 protein-coding CI-51K|CI51KD|UQOR1 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial|NADH dehydrogenase (ubiquinone) flavoprotein 1, 51kDa|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 32 0.00438 11.36 1 1 +4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 5 protein-coding AQDQ|CI-18|CI-18 kDa|CI-AQDQ NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial|NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18kDa (NADH-coenzyme Q reductase)|NADH-ubiquinone oxidoreductase 18 kDa subunit|complex I 18kDa subunit|complex I-AQDQ|mitochondrial respiratory chain complex I (18-KD subunit) 14 0.001916 9.275 1 1 +4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 1 protein-coding CI-15k|CI15K NADH dehydrogenase [ubiquinone] iron-sulfur protein 5|CI-15 kDa|NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase)|NADH:ubiquinone oxidoreductase 15 kDa IP subunit|complex I-15 kDa 12 0.001642 11.24 1 1 +4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 5 protein-coding CI-13kA|CI-13kD-A|CI13KDA NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial|NADH dehydrogenase (ubiquinone) Fe-S protein 6, 13kDa (NADH-coenzyme Q reductase)|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 13 0.001779 10.22 1 1 +4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 11 protein-coding CI-23k|CI23KD|TYKY NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial|NADH dehydrogenase (ubiquinone) Fe-S protein 8, 23kDa (NADH-coenzyme Q reductase)|NADH-ubiquinone oxidoreductase 23 kDa subunit|complex I 23kDa subunit|complex I-23kD 12 0.001642 10.66 1 1 +4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 18 protein-coding CI-24k NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial|NADH dehydrogenase (ubiquinone) flavoprotein 2, 24kDa|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 15 0.002053 10.56 1 1 +4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 21 protein-coding CI-10k|CI-9KD NADH dehydrogenase [ubiquinone] flavoprotein 3, mitochondrial|NADH dehydrogenase (ubiquinone) flavoprotein 3, 10kDa|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 32 0.00438 9.504 1 1 +4733 DRG1 developmentally regulated GTP binding protein 1 22 protein-coding NEDD3 developmentally-regulated GTP-binding protein 1|DRG-1|NEDD-3|neural precursor cell expressed developmentally down-regulated protein 3|neural precursor cell expressed, developmentally down-regulated 3 19 0.002601 10.13 1 1 +4734 NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase 15 protein-coding NEDD4-1|RPF1 E3 ubiquitin-protein ligase NEDD4|cell proliferation-inducing gene 53 protein|receptor-potentiating factor 1 71 0.009718 8.487 1 1 +4735 SEPT2 septin 2 2 protein-coding DIFF6|NEDD-5|NEDD5|Pnutl3|hNedd5 septin-2|neural precursor cell expressed developmentally down-regulated protein 5|neural precursor cell expressed, developmentally down-regulated 5 26 0.003559 12.96 1 1 +4736 RPL10A ribosomal protein L10a 6 protein-coding CSA19|Csa-19|L10A|NEDD6 60S ribosomal protein L10a|NEDD-6|neural precursor cell expressed developmentally down-regulated protein 6 23 0.003148 13.24 1 1 +4738 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 14 protein-coding NEDD-8 NEDD8|neddylin|ubiquitin-like protein Nedd8 10 0.001369 10.96 1 1 +4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 6 protein-coding CAS-L|CAS2|CASL|CASS2|HEF1 enhancer of filamentation 1|Cas scaffolding protein family member 2|Crk-associated substrate related protein Cas-L|Enhancer of filamentation 1 p55|cas-like docking|neural precursor cell expressed developmentally down-regulated protein 9|p130Cas-related protein|renal carcinoma antigen NY-REN-12 60 0.008212 10 1 1 +4741 NEFM neurofilament, medium polypeptide 8 protein-coding NEF3|NF-M|NFM neurofilament medium polypeptide|160 kDa neurofilament protein|neurofilament 3|neurofilament triplet M protein|neurofilament, medium polypeptide 150kDa|neurofilament-3 (150 kD medium) 81 0.01109 3.575 1 1 +4744 NEFH neurofilament heavy polypeptide 22 protein-coding CMT2CC|NFH neurofilament heavy polypeptide|200 kDa neurofilament protein|NF-H|neurofilament triplet H protein|neurofilament, heavy polypeptide 200kDa 190 0.02601 5.632 1 1 +4745 NELL1 neural EGFL like 1 11 protein-coding IDH3GL|NRP1 protein kinase C-binding protein NELL1|nel-related protein 1|neural epidermal growth factor-like 1 136 0.01861 2.275 1 1 +4747 NEFL neurofilament, light polypeptide 8 protein-coding CMT1F|CMT2E|NF-L|NF68|NFL|PPP1R110 neurofilament light polypeptide|light molecular weight neurofilament protein|neurofilament protein, light chain|neurofilament subunit NF-L|neurofilament triplet L protein|neurofilament, light polypeptide 68kDa|protein phosphatase 1, regulatory subunit 110 46 0.006296 4.639 1 1 +4750 NEK1 NIMA related kinase 1 4 protein-coding NY-REN-55|SRPS2|SRPS2A|SRTD6 serine/threonine-protein kinase Nek1|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 60 0.008212 8.269 1 1 +4751 NEK2 NIMA related kinase 2 1 protein-coding HsPK21|NEK2A|NLK1|PPP1R111|RP67 serine/threonine-protein kinase Nek2|NIMA (never in mitosis gene a)-related kinase 2|nimA-like protein kinase 1|nimA-related protein kinase 2|protein phosphatase 1, regulatory subunit 111 21 0.002874 7.287 1 1 +4752 NEK3 NIMA related kinase 3 13 protein-coding HSPK36 serine/threonine-protein kinase Nek3|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 27 0.003696 7.357 1 1 +4753 NELL2 neural EGFL like 2 12 protein-coding NRP2 protein kinase C-binding protein NELL2|NEL-like protein 2|NEL-related protein 2|neural epidermal growth factor-like 2 100 0.01369 7.027 1 1 +4756 NEO1 neogenin 1 15 protein-coding IGDCC2|NGN|NTN1R2 neogenin|immunoglobulin superfamily DCC subclass member 2|neogenin homolog 1 84 0.0115 10.48 1 1 +4758 NEU1 neuraminidase 1 6 protein-coding NANH|NEU|SIAL1 sialidase-1|G9 sialidase|N-acetyl-alpha-neuraminidase 1|acetylneuraminyl hydrolase|exo-alpha-sialidase|lysosomal sialidase|neuraminidase 1 (lysosomal sialidase)|sialidase 1 (lysosomal sialidase) 24 0.003285 10.82 1 1 +4759 NEU2 neuraminidase 2 2 protein-coding SIAL2 sialidase-2|N-acetyl-alpha-neuraminidase 2|cytosolic sialidase|neuraminidase 2 (cytosolic sialidase)|sialidase 2 (cytosolic sialidase) 40 0.005475 0.1815 1 1 +4760 NEUROD1 neuronal differentiation 1 2 protein-coding BETA2|BHF-1|MODY6|NEUROD|bHLHa3 neurogenic differentiation factor 1|basic helix-loop-helix transcription factor|beta-cell E-box transactivator 2|class A basic helix-loop-helix protein 3|neurogenic helix-loop-helix protein NEUROD 65 0.008897 1.095 1 1 +4761 NEUROD2 neuronal differentiation 2 17 protein-coding NDRF|bHLHa1 neurogenic differentiation factor 2|class A basic helix-loop-helix protein 1|neuroD-related factor|neurogenic basic-helix-loop-helix protein|neurogenic differentiation 2 16 0.00219 1.028 1 1 +4762 NEUROG1 neurogenin 1 5 protein-coding AKA|Math4C|NEUROD3|bHLHa6|ngn1 neurogenin-1|NGN-1|class A basic helix-loop-helix protein 6|neurogenic basic-helix-loop-helix protein|neurogenic differentiation 3|neurogenic differentiation factor 3 17 0.002327 0.1939 1 1 +4763 NF1 neurofibromin 1 17 protein-coding NFNS|VRNF|WSS neurofibromin|neurofibromatosis 1|neurofibromatosis-related protein NF-1 316 0.04325 10.73 1 1 +4768 NF1P5 neurofibromin 1 pseudogene 5 18 pseudo NF1L5 Putative neurofibromin 1-like protein 5|neurofibromin 1-like 5 0 0 1 0 +4771 NF2 neurofibromin 2 22 protein-coding ACN|BANF|SCH merlin|moesin-ezrin-radixin like|moesin-ezrin-radixin-like protein|moesin-ezrin-radizin-like protein|neurofibromin 2 (bilateral acoustic neuroma)|neurofibromin 2 (merlin)|schwannomerlin|schwannomin 79 0.01081 9.955 1 1 +4772 NFATC1 nuclear factor of activated T-cells 1 18 protein-coding NF-ATC|NF-ATc1.2|NFAT2|NFATc nuclear factor of activated T-cells, cytoplasmic 1|NFAT transcription complex cytosolic component|nuclear factor of activated T-cells 'c'|nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 1 83 0.01136 8.138 1 1 +4773 NFATC2 nuclear factor of activated T-cells 2 20 protein-coding NFAT1|NFATP nuclear factor of activated T-cells, cytoplasmic 2|NF-ATc2|NFAT pre-existing subunit|NFAT transcription complex, preexisting component|T cell transcription factor NFAT1|nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2|nuclear factor of activated T-cells, preexisting component|preexisting nuclear factor of activated T-cells 2 106 0.01451 5.237 1 1 +4774 NFIA nuclear factor I A 1 protein-coding CTF|NF-I/A|NF1-A|NFI-A|NFI-L nuclear factor 1 A-type|CCAAT-box-binding transcription factor|TGGCA-binding protein 37 0.005064 10.01 1 1 +4775 NFATC3 nuclear factor of activated T-cells 3 16 protein-coding NFAT4|NFATX nuclear factor of activated T-cells, cytoplasmic 3|NF-ATc3|T cell transcription factor NFAT4|nuclear factor of activated T-cells c3 isoform IE-Xa|nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3 76 0.0104 9.226 1 1 +4776 NFATC4 nuclear factor of activated T-cells 4 14 protein-coding NF-AT3|NF-ATC4|NFAT3 nuclear factor of activated T-cells, cytoplasmic 4|T-cell transcription factor NFAT3|nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 4 79 0.01081 8.731 1 1 +4778 NFE2 nuclear factor, erythroid 2 12 protein-coding NF-E2|p45 transcription factor NF-E2 45 kDa subunit|leucine zipper protein NF-E2|nuclear factor (erythroid-derived 2), 45kD|nuclear factor (erythroid-derived 2), 45kDa|nuclear factor, erythroid-derived 2 45 kDa subunit|p45 NF-E2 30 0.004106 3.772 1 1 +4779 NFE2L1 nuclear factor, erythroid 2 like 1 17 protein-coding LCR-F1|NRF1|TCF11 nuclear factor erythroid 2-related factor 1|NF-E2-related factor 1|NFE2-related factor 1|TCF-11|locus control region-factor 1|nuclear factor, erythroid derived 2, like 1|transcription factor 11 (basic leucine zipper type)|transcription factor HBZ17|transcription factor LCR-F1 42 0.005749 12.81 1 1 +4780 NFE2L2 nuclear factor, erythroid 2 like 2 2 protein-coding HEBP1|NRF2 nuclear factor erythroid 2-related factor 2|nuclear factor erythroid-derived 2-like 2 154 0.02108 11.38 1 1 +4781 NFIB nuclear factor I B 9 protein-coding CTF|HMGIC/NFIB|NF-I/B|NF1-B|NFI-B|NFI-RED|NFIB2|NFIB3 nuclear factor 1 B-type|CCAAT-box-binding transcription factor|TGGCA-binding protein|nuclear factor 1/B 42 0.005749 10.31 1 1 +4782 NFIC nuclear factor I C 19 protein-coding CTF|CTF5|NF-I|NFI nuclear factor 1 C-type|CCAAT-box-binding transcription factor|NF-I/C|NF1-C|TGGCA-binding protein|nuclear factor I/C (CCAAT-binding transcription factor) 44 0.006022 9.363 1 1 +4783 NFIL3 nuclear factor, interleukin 3 regulated 9 protein-coding E4BP4|IL3BP1|NF-IL3A|NFIL3A nuclear factor interleukin-3-regulated protein|E4 promoter-binding protein 4|interleukin-3 promoter transcriptional activator|interleukin-3-binding protein 1|transcriptional activator NF-IL3A 26 0.003559 9.149 1 1 +4784 NFIX nuclear factor I X 19 protein-coding CTF|MRSHSS|NF-I/X|NF1-X|NF1A|SOTOS2 nuclear factor 1 X-type|CCAAT-binding transcription factor|CCAAT-box-binding transcription factor|TGGCA-binding protein|nuclear factor 1/X|nuclear factor I/X (CCAAT-binding transcription factor) 30 0.004106 11.01 1 1 +4790 NFKB1 nuclear factor kappa B subunit 1 4 protein-coding CVID12|EBP-1|KBF1|NF-kB1|NF-kappa-B|NF-kappaB|NFKB-p105|NFKB-p50|NFkappaB|p105|p50 nuclear factor NF-kappa-B p105 subunit|DNA-binding factor KBF1|NF-kappabeta|nuclear factor NF-kappa-B p50 subunit|nuclear factor kappa-B DNA binding subunit|nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 43 0.005886 10.17 1 1 +4791 NFKB2 nuclear factor kappa B subunit 2 10 protein-coding CVID10|H2TF1|LYT-10|LYT10|NF-kB2|p100|p49/p100|p52 nuclear factor NF-kappa-B p100 subunit|DNA-binding factor KBF2|NFKB, p52/p100 subunit|lymphocyte translocation chromosome 10 protein|nuclear factor Kappa-B, subunit 2|nuclear factor NF-kappa-B p52 subunit|nuclear factor of Kappa light chain gene enhancer in B cells 2|nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100)|oncogene Lyt-10|transcription factor NFKB2 46 0.006296 10.06 1 1 +4792 NFKBIA NFKB inhibitor alpha 14 protein-coding IKBA|MAD-3|NFKBI NF-kappa-B inhibitor alpha|I-kappa-B-alpha|IkappaBalpha|ikB-alpha|major histocompatibility complex enhancer-binding protein MAD3|nuclear factor of kappa light chain gene enhancer in B-cells|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha 28 0.003832 11.28 1 1 +4793 NFKBIB NFKB inhibitor beta 19 protein-coding IKBB|TRIP9 NF-kappa-B inhibitor beta|I-kappa-B-beta|NF-kappa-BIB|TR-interacting protein 9|TRIP-9|ikB-B|ikB-beta|ikappaBbeta|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, beta|thyroid receptor-interacting protein 9 22 0.003011 9.123 1 1 +4794 NFKBIE NFKB inhibitor epsilon 6 protein-coding IKBE NF-kappa-B inhibitor epsilon|I-kappa-B-epsilon|NF-kappa-BIE|ikB-E|ikB-epsilon|ikappaBepsilon|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, epsilon 23 0.003148 8.777 1 1 +4795 NFKBIL1 NFKB inhibitor like 1 6 protein-coding IKBL|LST1|NFKBIL NF-kappa-B inhibitor-like protein 1|I-kappa-B-like protein|ikappaBL|inhibitor of kappa B-like protein|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 1 19 0.002601 8.978 1 1 +4796 TONSL tonsoku-like, DNA repair protein 8 protein-coding IKBR|NFKBIL2 tonsoku-like protein|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 74 0.01013 8.358 1 1 +4798 NFRKB nuclear factor related to kappaB binding protein 11 protein-coding INO80G nuclear factor related to kappa-B-binding protein|DNA-binding protein R kappa B|INO80 complex subunit G 64 0.00876 9.395 1 1 +4799 NFX1 nuclear transcription factor, X-box binding 1 9 protein-coding NFX2|TEG-42|Tex42 transcriptional repressor NF-X1|nuclear transcription factor, X box-binding protein 1 51 0.006981 9.95 1 1 +4800 NFYA nuclear transcription factor Y subunit alpha 6 protein-coding CBF-A|CBF-B|HAP2|NF-YA nuclear transcription factor Y subunit alpha|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, alpha 18 0.002464 9.704 1 1 +4801 NFYB nuclear transcription factor Y subunit beta 12 protein-coding CBF-A|CBF-B|HAP3|NF-YB nuclear transcription factor Y subunit beta|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, beta 8 0.001095 9.369 1 1 +4802 NFYC nuclear transcription factor Y subunit gamma 1 protein-coding CBF-C|CBFC|H1TF2A|HAP5|HSM|NF-YC nuclear transcription factor Y subunit gamma|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, gamma|transactivator HSM-1|transactivator HSM-1/2|transcription factor NF-Y, C subunit 28 0.003832 10.07 1 1 +4803 NGF nerve growth factor 1 protein-coding Beta-NGF|HSAN5|NGFB beta-nerve growth factor|nerve growth factor (beta polypeptide)|nerve growth factor, beta subunit 37 0.005064 3.533 1 1 +4804 NGFR nerve growth factor receptor 17 protein-coding CD271|Gp80-LNGFR|TNFRSF16|p75(NTR)|p75NTR tumor necrosis factor receptor superfamily member 16|NGF receptor|TNFR superfamily, member 16|low affinity neurotrophin receptor p75NTR|low-affinity nerve growth factor receptor|p75 ICD 38 0.005201 7.333 1 1 +4807 NHLH1 nescient helix-loop-helix 1 1 protein-coding HEN1|NSCL|NSCL1|bHLHa35 helix-loop-helix protein 1|HEN-1|NSCL-1|class A basic helix-loop-helix protein 35 11 0.001506 2.453 1 1 +4808 NHLH2 nescient helix-loop-helix 2 1 protein-coding HEN2|NSCL2|bHLHa34 helix-loop-helix protein 2|HEN-2|NSCL-2|class A basic helix-loop-helix protein 34 15 0.002053 1.399 1 1 +4809 SNU13 SNU13 homolog, small nuclear ribonucleoprotein (U4/U6.U5) 22 protein-coding 15.5K|FA-1|FA1|NHP2L1|NHPX|OTK27|SNRNP15-5|SPAG12|SSFA1 NHP2-like protein 1|NHP2 non-histone chromosome protein 2-like 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|sperm specific antigen 1 10 0.001369 11.32 1 1 +4810 NHS NHS actin remodeling regulator X protein-coding CTRCT40|CXN|SCML1 Nance-Horan syndrome protein|Nance-Horan syndrome (congenital cataracts and dental anomalies)|congenital cataracts and dental anomalies protein 125 0.01711 7.24 1 1 +4811 NID1 nidogen 1 1 protein-coding NID nidogen-1|NID-1|enactin|entactin 120 0.01642 10.64 1 1 +4814 NINJ1 ninjurin 1 9 protein-coding NIN1|NINJURIN ninjurin-1|nerve injury-induced protein-1 12 0.001642 10.49 1 1 +4815 NINJ2 ninjurin 2 12 protein-coding - ninjurin-2|nerve injury-induced protein 2 13 0.001779 6.008 1 1 +4817 NIT1 nitrilase 1 1 protein-coding - nitrilase homolog 1 18 0.002464 9.375 1 1 +4818 NKG7 natural killer cell granule protein 7 19 protein-coding GIG1|GMP-17|p15-TIA-1 protein NKG7|G-CSF-induced gene 1 protein|GIG-1 protein|granule membrane protein 17|granule membrane protein of 17 kDa|natural killer cell group 7 sequence|natural killer cell protein 7 20 0.002737 6.287 1 1 +4820 NKTR natural killer cell triggering receptor 3 protein-coding p104 NK-tumor recognition protein|NK-TR protein|natural killer triggering receptor|natural killer-tumor recognition sequence|natural-killer cells cyclophilin-related protein 99 0.01355 10.18 1 1 +4821 NKX2-2 NK2 homeobox 2 20 protein-coding NKX2.2|NKX2B homeobox protein Nkx-2.2|NK2 transcription factor related, locus 2|NK2 transcription factor-like protein B|homeobox protein NK-2 homolog B 56 0.007665 1.913 1 1 +4824 NKX3-1 NK3 homeobox 1 8 protein-coding BAPX2|NKX3|NKX3.1|NKX3A homeobox protein Nkx-3.1|NK homeobox, family 3, A|NK3 transcription factor homolog A|NK3 transcription factor related, locus 1|homeobox protein NK-3 homolog A 18 0.002464 6.225 1 1 +4825 NKX6-1 NK6 homeobox 1 4 protein-coding NKX6.1|NKX6A homeobox protein Nkx-6.1|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 26 0.003559 2.18 1 1 +4826 NNAT neuronatin 20 protein-coding Peg5 neuronatin 4 0.0005475 4.183 1 1 +4828 NMB neuromedin B 15 protein-coding - neuromedin-B|Neuromedin-B-32|neuromedin-beta 8 0.001095 7.5 1 1 +4829 NMBR neuromedin B receptor 6 protein-coding BB1|BB1R|NMB-R neuromedin-B receptor|bombesin receptor 1|epididymis secretory sperm binding protein Li 185a|epididymis tissue protein Li 185a|neuromedin-B-preferring bombesin receptor 33 0.004517 0.5988 1 1 +4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 17 protein-coding AWD|GAAD|NB|NBS|NDKA|NDPK-A|NDPKA|NM23|NM23-H1 nucleoside diphosphate kinase A|NDP kinase A|granzyme A-activated DNase|metastasis inhibition factor nm23|non-metastatic cells 1, protein (NM23A) expressed in|tumor metastatic process-associated protein 8 0.001095 10.83 1 1 +4831 NME2 NME/NM23 nucleoside diphosphate kinase 2 17 protein-coding NDKB|NDPK-B|NDPKB|NM23-H2|NM23B|PUF nucleoside diphosphate kinase B|HEL-S-155an|NDP kinase B|c-myc purine-binding transcription factor PUF|c-myc transcription factor|epididymis secretory sperm binding protein Li 155an|histidine protein kinase NDKB|non-metastatic cells 2, protein (NM23) expressed in|non-metastatic cells 2, protein (NM23B) expressed in|nucleotide diphosphate kinase B 6 0.0008212 12.75 1 1 +4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 16 protein-coding DR-nm23|NDPK-C|NDPKC|NM23-H3|NM23H3|c371H6.2 nucleoside diphosphate kinase 3|NDK 3|NDP kinase 3|NDP kinase C|non-metastatic cells 3, protein expressed in|nucleoside diphosphate kinase C 5 0.0006844 9.403 1 1 +4833 NME4 NME/NM23 nucleoside diphosphate kinase 4 16 protein-coding NDPK-D|NM23H4|nm23-H4 nucleoside diphosphate kinase, mitochondrial|NDK|NDP kinase D|NDP kinase, mitochondrial|NDPKD|non-metastatic cells 4, protein expressed in|nucleoside diphosphate kinase D 9 0.001232 10.63 1 1 +4835 NQO2 NAD(P)H quinone dehydrogenase 2 6 protein-coding DHQV|DIA6|NMOR2|QR2 ribosyldihydronicotinamide dehydrogenase [quinone]|NAD(P)H dehydrogenase, quinone 2|NAD(P)H menadione oxidoreductase-1, dioxin-inducible-2|NRH:quinone oxidoreductase 2|quinone reductase 2|ribosyldihydronicotinamide dehydrogenase 17 0.002327 8.878 1 1 +4836 NMT1 N-myristoyltransferase 1 17 protein-coding NMT glycylpeptide N-tetradecanoyltransferase 1|alternative, short form NMT-S|long form, NMT-L|myristoyl-CoA:protein N-myristoyltransferase 1|type I N-myristoyltransferase 40 0.005475 11.34 1 1 +4837 NNMT nicotinamide N-methyltransferase 11 protein-coding - nicotinamide N-methyltransferase 18 0.002464 9.649 1 1 +4838 NODAL nodal growth differentiation factor 10 protein-coding HTX5 nodal homolog 22 0.003011 2.565 1 1 +4839 NOP2 NOP2 nucleolar protein 12 protein-coding NOL1|NOP120|NSUN1|p120 probable 28S rRNA (cytosine(4447)-C(5))-methyltransferase|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 54 0.007391 9.842 1 1 +4841 NONO non-POU domain containing, octamer-binding X protein-coding MRXS34|NMT55|NRB54|P54|P54NRB|PPP1R114 non-POU domain-containing octamer-binding protein|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|p54(nrb)|protein phosphatase 1, regulatory subunit 114 50 0.006844 12.85 1 1 +4842 NOS1 nitric oxide synthase 1 12 protein-coding IHPS1|N-NOS|NC-NOS|NOS|bNOS|nNOS nitric oxide synthase, brain|NOS type I|constitutive NOS|neuronal NOS|nitric oxide synthase 1 (neuronal)|peptidyl-cysteine S-nitrosylase NOS1 171 0.02341 1.872 1 1 +4843 NOS2 nitric oxide synthase 2 17 protein-coding HEP-NOS|INOS|NOS|NOS2A nitric oxide synthase, inducible|NOS, type II|hepatocyte NOS|inducible NO synthase|inducible NOS|nitric oxide synthase 2, inducible|nitric oxide synthase 2A (inducible, hepatocytes)|nitric oxide synthase, macrophage|peptidyl-cysteine S-nitrosylase NOS2 93 0.01273 4.604 1 1 +4846 NOS3 nitric oxide synthase 3 7 protein-coding ECNOS|eNOS nitric oxide synthase, endothelial|EC-NOS|NOS type III|NOSIII|cNOS|constitutive NOS|endothelial NOS|nitric oxide synthase 3 (endothelial cell)|nitric oxide synthase 3 transcript variant eNOS-delta20|nitric oxide synthase 3 transcript variant eNOS-delta20-21|nitric oxide synthase 3 transcript variant eNOS-delta21 99 0.01355 7.753 1 1 +4848 CNOT2 CCR4-NOT transcription complex subunit 2 12 protein-coding CDC36|HSPC131|NOT2|NOT2H CCR4-NOT transcription complex subunit 2|CCR4-associated factor 2|negative regulator of transcription 2 50 0.006844 10.32 1 1 +4849 CNOT3 CCR4-NOT transcription complex subunit 3 19 protein-coding LENG2|NOT3|NOT3H CCR4-NOT transcription complex subunit 3|CCR4-associated factor 3|NOT3 (negative regulator of transcription 3, yeast) homolog|leukocyte receptor cluster member 2 75 0.01027 10.18 1 1 +4850 CNOT4 CCR4-NOT transcription complex subunit 4 7 protein-coding CLONE243|NOT4|NOT4H 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 60 0.008212 8.933 1 1 +4851 NOTCH1 notch 1 9 protein-coding AOS5|AOVD1|TAN1|hN1 neurogenic locus notch homolog protein 1|Notch homolog 1, translocation-associated|translocation-associated notch protein TAN-1 259 0.03545 10.43 1 1 +4852 NPY neuropeptide Y 7 protein-coding PYY4 pro-neuropeptide Y|prepro-neuropeptide Y 18 0.002464 2.222 1 1 +4853 NOTCH2 notch 2 1 protein-coding AGS2|HJCYS|hN2 neurogenic locus notch homolog protein 2|Notch homolog 2 207 0.02833 11.53 1 1 +4854 NOTCH3 notch 3 19 protein-coding CADASIL|CADASIL1|CASIL|IMF2|LMNS neurogenic locus notch homolog protein 3|Notch homolog 3 159 0.02176 11.49 1 1 +4855 NOTCH4 notch 4 6 protein-coding INT3 neurogenic locus notch homolog protein 4|Notch homolog 4 162 0.02217 8.707 1 1 +4856 NOV nephroblastoma overexpressed 8 protein-coding CCN3|IBP-9|IGFBP-9|IGFBP9|NOVh protein NOV homolog|CCN family member 3|IGF-binding protein 9|insulin-like growth factor-binding protein 9|nephroblastoma-overexpressed gene protein homolog 35 0.004791 7.094 1 1 +4857 NOVA1 NOVA alternative splicing regulator 1 14 protein-coding Nova-1 RNA-binding protein Nova-1|neuro-oncological ventral antigen 1|onconeural ventral antigen 1|paraneoplastic Ri antigen|ventral neuron-specific protein 1 86 0.01177 5.705 1 1 +4858 NOVA2 NOVA alternative splicing regulator 2 19 protein-coding ANOVA|NOVA3 RNA-binding protein Nova-2|astrocytic NOVA1-like RNA-binding protein|neuro-oncological ventral antigen 2|neuro-oncological ventral antigen 3 36 0.004927 5.282 1 1 +4860 PNP purine nucleoside phosphorylase 14 protein-coding NP|PRO1837|PUNP purine nucleoside phosphorylase|HEL-S-156an|epididymis secretory sperm binding protein Li 156an|inosine phosphorylase|inosine-guanosine phosphorylase|purine-nucleoside:orthophosphate ribosyltransferase 18 0.002464 10.06 1 1 +4861 NPAS1 neuronal PAS domain protein 1 19 protein-coding MOP5|PASD5|bHLHe11 neuronal PAS domain-containing protein 1|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 PAS1 19 0.002601 3.876 1 1 +4862 NPAS2 neuronal PAS domain protein 2 2 protein-coding MOP4|PASD4|bHLHe9 neuronal PAS domain-containing protein 2|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 PAS2 62 0.008486 8.7 1 1 +4863 NPAT nuclear protein, coactivator of histone transcription 11 protein-coding E14|E14/NPAT|p220 protein NPAT|nuclear protein of the ATM locus|nuclear protein of the ataxia telangiectasia mutated locus|nuclear protein, ataxia-telangiectasia locus|nuclear protein, co-activator of histone transcription 78 0.01068 8.596 1 1 +4864 NPC1 NPC intracellular cholesterol transporter 1 18 protein-coding NPC Niemann-Pick C1 protein|Niemann-Pick disease, type C1|truncated Niemann-Pick C1 77 0.01054 10.08 1 1 +4867 NPHP1 nephrocystin 1 2 protein-coding JBTS4|NPH1|SLSN1 nephrocystin-1|juvenile nephronophthisis 1 protein|nephronophthisis 1 (juvenile) 63 0.008623 6.328 1 1 +4868 NPHS1 NPHS1, nephrin 19 protein-coding CNF|NPHN|nephrin nephrin|nephrosis 1, congenital, Finnish type (nephrin)|renal glomerulus-specific cell adhesion receptor|truncated NPHS1 99 0.01355 1.466 1 1 +4869 NPM1 nucleophosmin 5 protein-coding B23|NPM nucleophosmin|nucleolar protein NO38|nucleophosmin (nucleolar phosphoprotein B23, numatrin)|nucleophosmin/nucleoplasmin family, member 1|testicular tissue protein Li 128 16 0.00219 12.96 1 1 +4878 NPPA natriuretic peptide A 1 protein-coding ANF|ANP|ATFB6|ATRST2|CDD|CDD-ANF|CDP|PND natriuretic peptides A|atriopeptin|cardiodilatin-related peptide|cardionatrin|natriuretic peptide precursor A variant 1|prepronatriodilatin 14 0.001916 1.784 1 1 +4879 NPPB natriuretic peptide B 1 protein-coding BNP natriuretic peptides B|brain type natriuretic peptide|gamma-brain natriuretic peptide|natriuretic peptide precursor B|natriuretic protein 15 0.002053 0.4604 1 1 +4880 NPPC natriuretic peptide C 2 protein-coding CNP|CNP2 C-type natriuretic peptide|natriuretic peptide precursor type C 7 0.0009581 0.9013 1 1 +4881 NPR1 natriuretic peptide receptor 1 1 protein-coding ANPRA|ANPa|GUC2A|GUCY2A|NPRA atrial natriuretic peptide receptor 1|ANP-A|ANPR-A|GC-A|NPR-A|atrial natriuretic peptide receptor type A|atrionatriuretic peptide receptor A|guanylate cyclase A|natriuretic peptide A type receptor|natriuretic peptide receptor A|natriuretic peptide receptor A/guanylate cyclase A (atrionatriuretic peptide receptor A)|testicular tissue protein Li 20 69 0.009444 7.177 1 1 +4882 NPR2 natriuretic peptide receptor 2 9 protein-coding AMDM|ANPRB|ANPb|ECDM|GUC2B|GUCY2B|NPRB|NPRBi|SNSK atrial natriuretic peptide receptor 2|ANP-B|ANPR-B|GC-B|NPR-B|atrial natriuretic peptide B-type receptor|atrial natriuretic peptide receptor type B|guanylate cyclase 2B|guanylate cyclase B|natriuretic peptide receptor B/guanylate cyclase B (atrionatriuretic peptide receptor B) 68 0.009307 7.54 1 1 +4883 NPR3 natriuretic peptide receptor 3 5 protein-coding ANP-C|ANPR-C|ANPRC|C5orf23|GUCY2B|NPR-C|NPRC atrial natriuretic peptide receptor 3|atrial natriuretic peptide clearance receptor|atrial natriuretic peptide receptor type C|atrionatriuretic peptide receptor C|guanylate cyclase C|natriuretic peptide receptor C/guanylate cyclase C (atrionatriuretic peptide receptor C) 75 0.01027 4.409 1 1 +4884 NPTX1 neuronal pentraxin 1 17 protein-coding NP1 neuronal pentraxin-1|NP-I|neuronal pentraxin I 40 0.005475 4.577 1 1 +4885 NPTX2 neuronal pentraxin 2 7 protein-coding NARP|NP-II|NP2 neuronal pentraxin-2|apexin|neuronal activity-regulated pentaxin|neuronal pentraxin II 44 0.006022 6.135 1 1 +4886 NPY1R neuropeptide Y receptor Y1 4 protein-coding NPY1-R|NPYR neuropeptide Y receptor type 1 53 0.007254 5.155 1 1 +4887 NPY2R neuropeptide Y receptor Y2 4 protein-coding NPY2-R neuropeptide Y receptor type 2|NPY-Y2 receptor 68 0.009307 0.9275 1 1 +4888 NPY6R neuropeptide Y receptor Y6 (pseudogene) 5 pseudo NPY1RL|NPY6RP|PP2|Y2B - 5 0.0006844 1.663 1 1 +4889 NPY5R neuropeptide Y receptor Y5 4 protein-coding NPY5-R|NPYR5|NPYY5-R neuropeptide Y receptor type 5|NPY-Y5 receptor|Y5 receptor 61 0.008349 1.49 1 1 +4891 SLC11A2 solute carrier family 11 member 2 12 protein-coding AHMIO1|DCT1|DMT1|NRAMP2 natural resistance-associated macrophage protein 2|DMT-1|NRAMP 2|divalent cation transporter 1|solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2|solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 32 0.00438 10.41 1 1 +4892 NRAP nebulin related anchoring protein 10 protein-coding N-RAP nebulin-related-anchoring protein 137 0.01875 1.464 1 1 +4893 NRAS neuroblastoma RAS viral oncogene homolog 1 protein-coding ALPS4|CMNS|N-ras|NCMS|NRAS1|NS6 GTPase NRas|N-ras protein part 4|neuroblastoma RAS viral (v-ras) oncogene homolog|transforming protein N-Ras|v-ras neuroblastoma RAS viral oncogene homolog 117 0.01601 10.37 1 1 +4897 NRCAM neuronal cell adhesion molecule 7 protein-coding - neuronal cell adhesion molecule|NgCAM-related cell adhesion molecule|neuronal surface protein Bravo 137 0.01875 7.942 1 1 +4898 NRDC nardilysin convertase 1 protein-coding NRD1|hNRD1|hNRD2 nardilysin|NRD convertase|nardilysin (N-arginine dibasic convertase) 106 0.01451 11.41 1 1 +4899 NRF1 nuclear respiratory factor 1 7 protein-coding ALPHA-PAL nuclear respiratory factor 1|alpha palindromic-binding protein 33 0.004517 8.592 1 1 +4900 NRGN neurogranin 11 protein-coding RC3|hng neurogranin|calmodulin-binding protein|neurogranin (protein kinase C substrate, RC3)|ng|protein kinase C substrate 4 0.0005475 6.96 1 1 +4901 NRL neural retina leucine zipper 14 protein-coding D14S46E|NRL-MAF|RP27 neural retina-specific leucine zipper protein|neural retinal-specific leucine zipper 11 0.001506 5.081 1 1 +4902 NRTN neurturin 19 protein-coding NTN neurturin|prepro-neurturin 6 0.0008212 3.937 1 1 +4904 YBX1 Y-box binding protein 1 1 protein-coding BP-8|CBF-A|CSDA2|CSDB|DBPB|EFI-A|MDR-NF1|NSEP-1|NSEP1|YB-1|YB1 nuclease-sensitive element-binding protein 1|CCAAT-binding transcription factor I subunit A|DNA-binding protein B|Y-box transcription factor|enhancer factor I subunit A|major histocompatibility complex, class II, Y box-binding protein I 20 0.002737 12.82 1 1 +4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase 17 protein-coding SKD2 vesicle-fusing ATPase|N-ethylmaleimide sensitive factor|N-ethylmaleimide-sensitive factor-like protein|N-ethylmaleimide-sensitive fusion protein|NEM-sensitive fusion protein|vesicular-fusion protein NSF 19 0.002601 10.34 1 1 +4907 NT5E 5'-nucleotidase ecto 6 protein-coding CALJA|CD73|E5NT|NT|NT5|NTE|eN|eNT 5'-nucleotidase|5'-NT|5'-nucleotidase, ecto (CD73)|Purine 5-Prime-Nucleotidase|ecto-5'-nucleotidase 34 0.004654 9.043 1 1 +4908 NTF3 neurotrophin 3 12 protein-coding HDNF|NGF-2|NGF2|NT-3|NT3 neurotrophin-3|nerve growth factor 2|neurotrophic factor 29 0.003969 3.009 1 1 +4909 NTF4 neurotrophin 4 19 protein-coding GLC10|GLC1O|NT-4|NT-4/5|NT-5|NT4|NT5|NTF5 neurotrophin-4|neurotrophic factor 4|neurotrophic factor 5|neurotrophin 5 (neurotrophin 4/5)|neurotrophin-5|neutrophic factor 4 11 0.001506 2.869 1 1 +4911 NTF6B neurotrophin 6 beta (pseudogene) 19 pseudo - NT6-beta|acidic neurotrophin 6 beta 0 0 1 0 +4913 NTHL1 nth like DNA glycosylase 1 16 protein-coding FAP3|NTH1|OCTS3|hNTH1 endonuclease III-like protein 1|DNA glycoslyase/AP lyase|bifunctional DNA N-glycoslyase/DNA-(apurinic or apyrimidinic site) lyase|nth endonuclease III-like 1 27 0.003696 8.349 1 1 +4914 NTRK1 neurotrophic receptor tyrosine kinase 1 1 protein-coding MTC|TRK|TRK1|TRKA|Trk-A|p140-TrkA high affinity nerve growth factor receptor|Oncogene TRK|TRK1-transforming tyrosine kinase protein|gp140trk|neurotrophic tyrosine kinase, receptor, type 1|tropomyosin-related kinase A|tyrosine kinase receptor A 84 0.0115 2.765 1 1 +4915 NTRK2 neurotrophic receptor tyrosine kinase 2 9 protein-coding GP145-TrkB|TRKB|trk-B BDNF/NT-3 growth factors receptor|BDNF-tropomyosine receptor kinase B|neurotrophic tyrosine kinase receptor type 2|tropomyosin-related kinase B|tyrosine kinase receptor B 73 0.009992 8.241 1 1 +4916 NTRK3 neurotrophic receptor tyrosine kinase 3 15 protein-coding GP145-TrkC|TRKC|gp145(trkC) NT-3 growth factor receptor|ETS related protein-neurotrophic receptor tyrosine kinase fusion protein|ETV6-NTRK3 fusion|neurotrophic tyrosine kinase, receptor, type 3|tyrosine kinase receptor C 126 0.01725 4.425 1 1 +4917 NTN3 netrin 3 16 protein-coding NTN2L netrin-3|Netrin-2, chicken, homolog of, like|netrin-2-like protein 20 0.002737 1.447 1 1 +4919 ROR1 receptor tyrosine kinase like orphan receptor 1 1 protein-coding NTRKR1|dJ537F10.1 inactive tyrosine-protein kinase transmembrane receptor ROR1|neurotrophic tyrosine kinase, receptor-related 1 69 0.009444 4.862 1 1 +4920 ROR2 receptor tyrosine kinase like orphan receptor 2 9 protein-coding BDB|BDB1|NTRKR2 tyrosine-protein kinase transmembrane receptor ROR2|neurotrophic tyrosine kinase receptor-related 2 112 0.01533 7.13 1 1 +4921 DDR2 discoidin domain receptor tyrosine kinase 2 1 protein-coding MIG20a|NTRKR3|TKT|TYRO10 discoidin domain-containing receptor 2|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 tyrosine kinase 2|hydroxyaryl-protein kinase|migration-inducing gene 16 protein|neurotrophic tyrosine kinase receptor related 3|receptor protein-tyrosine kinase TKT|tyrosine-protein kinase TYRO10|tyrosylprotein kinase 85 0.01163 6.466 1 1 +4922 NTS neurotensin 12 protein-coding NMN-125|NN|NT|NT/N|NTS1 neurotensin/neuromedin N|pro-neurotensin/neuromedin 18 0.002464 2.706 1 1 +4923 NTSR1 neurotensin receptor 1 20 protein-coding NTR neurotensin receptor type 1|NT-R-1|NTR1|NTRH|high-affinity levocabastine-insensitive neurotensin receptor|neurotensin receptor 1 (high affinity) 45 0.006159 2.369 1 1 +4924 NUCB1 nucleobindin 1 19 protein-coding CALNUC|NUC nucleobindin-1 27 0.003696 12.69 1 1 +4925 NUCB2 nucleobindin 2 11 protein-coding HEL-S-109|NEFA nucleobindin-2|DNA-binding protein NEFA|epididymis secretory protein Li 109|gastric cancer antigen Zg4|nesfatin 1|nucleobinding 2|prepronefastin|prepronesfatin 23 0.003148 10.23 1 1 +4926 NUMA1 nuclear mitotic apparatus protein 1 11 protein-coding NMP-22|NUMA nuclear mitotic apparatus protein 1|SP-H antigen|centrophilin stabilizes mitotic spindle in mitotic cells|nuclear matrix protein-22|structural nuclear protein 127 0.01738 12.9 1 1 +4927 NUP88 nucleoporin 88 17 protein-coding - nuclear pore complex protein Nup88|karyoporin|nuclear pore complex protein 88|nucleoporin 88kDa|nucleoporin Nup88 45 0.006159 9.503 1 1 +4928 NUP98 nucleoporin 98 11 protein-coding ADIR2|NUP196|NUP96 nuclear pore complex protein Nup98-Nup96|nuclear pore complex protein Nup98|GLFG-repeat containing nucleoporin|NUP98/PHF23 fusion 2 protein|Nup98-Nup96|nucleoporin 98kD|nucleoporin 98kDa 103 0.0141 11.03 1 1 +4929 NR4A2 nuclear receptor subfamily 4 group A member 2 2 protein-coding HZF-3|NOT|NURR1|RNR1|TINUR nuclear receptor subfamily 4 group A member 2|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|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 71 0.009718 7.711 1 1 +4931 NVL nuclear VCP-like 1 protein-coding NVL2 nuclear valosin-containing protein-like|NVLp 52 0.007117 8.94 1 1 +4935 GPR143 G protein-coupled receptor 143 X protein-coding NYS6|OA1 G-protein coupled receptor 143|ocular albinism 1|ocular albinism type 1 protein 22 0.003011 5.54 1 1 +4938 OAS1 2'-5'-oligoadenylate synthetase 1 12 protein-coding E18/E16|IFI-4|OIAS|OIASI 2'-5'-oligoadenylate synthase 1|(2-5')oligo(A) synthase 1|2',5'-oligo A synthetase 1|2'-5'-oligoadenylate synthetase 1, 40/46kDa|2'-5'-oligoisoadenylate synthetase 1|2-5A synthase 1|2-5A synthetase 1|E16 (2'-5') oligo A synthetase 45 0.006159 9.528 1 1 +4939 OAS2 2'-5'-oligoadenylate synthetase 2 12 protein-coding - 2'-5'-oligoadenylate synthase 2|(2'-5')oligo(A) synthetase 2|2'-5'-oligoadenylate synthetase 2, 69/71kDa|2-5A synthase 2|p69 OAS / p71 OAS 67 0.009171 9.892 1 1 +4940 OAS3 2'-5'-oligoadenylate synthetase 3 12 protein-coding p100|p100OAS 2'-5'-oligoadenylate synthase 3|(2-5')oligo(A) synthase 3|(2-5')oligo(A) synthetase 3|2'-5'-oligoadenylate synthetase 3, 100kDa|2'-5'oligoadenylate synthetase p100|2-5A synthase 3|2-5A synthetase 3|p100 OAS 71 0.009718 10.5 1 1 +4942 OAT ornithine aminotransferase 10 protein-coding GACR|HOGA|OATASE|OKT ornithine aminotransferase, mitochondrial|gyrate atrophy|ornithine delta-aminotransferase|ornithine-oxo-acid aminotransferase|testicular tissue protein Li 130 20 0.002737 10.7 1 1 +4943 TBC1D25 TBC1 domain family member 25 X protein-coding MG81|OATL1 TBC1 domain family member 25|5SN3 snoRNA|ornithine aminotransferase-like 1 51 0.006981 8.846 1 1 +4946 OAZ1 ornithine decarboxylase antizyme 1 19 protein-coding AZI|OAZ ornithine decarboxylase antizyme 1|ODC-Az|antizyme 1 14 0.001916 13.29 1 1 +4947 OAZ2 ornithine decarboxylase antizyme 2 15 protein-coding AZ2 ornithine decarboxylase antizyme 2|ODC-Az 2 4 0.0005475 10.82 1 1 +4948 OCA2 OCA2 melanosomal transmembrane protein 15 protein-coding BEY|BEY1|BEY2|BOCA|D15S12|EYCL|EYCL2|EYCL3|HCL3|P|PED|SHEP1 P protein|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 111 0.01519 2.588 1 1 +4950 7.672 0 1 +4951 OCM2 oncomodulin 2 7 protein-coding OCM putative oncomodulin-2|OM|parvalbumin beta 14 0.001916 0.06009 1 1 +4952 OCRL OCRL, inositol polyphosphate-5-phosphatase X protein-coding INPP5F|LOCR|NPHL2|OCRL-1|OCRL1 inositol polyphosphate 5-phosphatase OCRL-1|Lowe oculocerebrorenal syndrome protein|oculocerebrorenal syndrome of Lowe|phosphatidylinositol polyphosphate 5-phosphatase 67 0.009171 10.02 1 1 +4953 ODC1 ornithine decarboxylase 1 2 protein-coding ODC ornithine decarboxylase 28 0.003832 11.21 1 1 +4956 ODF1 outer dense fiber of sperm tails 1 8 protein-coding CT133|HSPB10|ODF|ODF2|ODF27|ODFP|ODFPG|ODFPGA|ODFPGB|RT7|SODF outer dense fiber protein 1|cancer/testis antigen 133|heat shock protein beta-10|outer dense fiber of sperm tails, 27-kD 52 0.007117 0.1806 1 1 +4957 ODF2 outer dense fiber of sperm tails 2 9 protein-coding CT134|ODF2/1|ODF2/2|ODF84 outer dense fiber protein 2|cancer/testis antigen 134|cenexin 1|outer dense fiber of sperm tails, 84-kD|sperm tail structural protein|testis tissue sperm-binding protein Li 51e 75 0.01027 9.81 1 1 +4958 OMD osteomodulin 9 protein-coding OSAD|SLRR2C osteomodulin|KSPG osteomodulin|keratan sulfate proteoglycan osteomodulin|osteoadherin proteoglycan 25 0.003422 4.589 1 1 +4967 OGDH oxoglutarate dehydrogenase 7 protein-coding AKGDH|E1k|OGDC 2-oxoglutarate dehydrogenase, mitochondrial|2-oxoglutarate dehydrogenase complex component E1|OGDC-E1|oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide)|oxoglutarate decarboxylase|oxoglutarate dehydrogenase (succinyl-transferring)|testicular tissue protein Li 131 81 0.01109 11.69 1 1 +4968 OGG1 8-oxoguanine DNA glycosylase 3 protein-coding HMMH|HOGG1|MUTM|OGH1 N-glycosylase/DNA lyase|8-hydroxyguanine DNA glycosylase|AP lyase|DNA-apurinic or apyrimidinic site lyase|OGG1 type 1f 36 0.004927 8.471 1 1 +4969 OGN osteoglycin 9 protein-coding OG|OIF|SLRR3A mimecan|corneal keratan sulfate proteoglycan|mimecan proteoglycan|osteoinductive factor 26 0.003559 5.335 1 1 +4973 OLR1 oxidized low density lipoprotein receptor 1 12 protein-coding CLEC8A|LOX1|LOXIN|SCARE1|SLOX1 oxidized low-density lipoprotein receptor 1|C-type lectin domain family 8 member A|hLOX-1|lectin-type oxidized LDL receptor 1|ox LDL receptor 1|oxidized low density lipoprotein (lectin-like) receptor 1|oxidized low-density lipoprotein receptor 1, soluble form|scavenger receptor class E, member 1 19 0.002601 6.827 1 1 +4974 OMG oligodendrocyte myelin glycoprotein 17 protein-coding OMGP oligodendrocyte-myelin glycoprotein 12 0.001642 2.382 1 1 +4975 OMP olfactory marker protein 11 protein-coding - olfactory marker protein|olfactory neuronal-specific protein 17 0.002327 0.6927 1 1 +4976 OPA1 OPA1, mitochondrial dynamin like GTPase 3 protein-coding BERHS|MGM1|MTDPS14|NPG|NTG|largeG dynamin-like 120 kDa protein, mitochondrial|dynamin-like guanosine triphosphatase|mitochondrial dynamin-like GTPase|optic atrophy 1 (autosomal dominant)|optic atrophy protein 1 75 0.01027 10.62 1 1 +4978 OPCML opioid binding protein/cell adhesion molecule like 11 protein-coding IGLON1|OBCAM|OPCM opioid-binding protein/cell adhesion molecule|IgLON family member 1|opioid binding protein/cell adhesion molecule-like preprotein 77 0.01054 3.133 1 1 +4982 TNFRSF11B TNF receptor superfamily member 11b 8 protein-coding OCIF|OPG|PDB5|TR1 tumor necrosis factor receptor superfamily member 11B|osteoclastogenesis inhibitory factor|osteoprotegerin|tumor necrosis factor receptor superfamily, member 11b 31 0.004243 6.114 1 1 +4983 OPHN1 oligophrenin 1 X protein-coding ARHGAP41|MRX60|OPN1 oligophrenin-1|mental retardation, X-linked 60|oligophrenin-1, Rho-GTPase activating protein 57 0.007802 7.693 1 1 +4985 OPRD1 opioid receptor delta 1 1 protein-coding OPRD delta-type opioid receptor|D-OR-1|DOR-1|delta opioid receptor 1 55 0.007528 0.572 1 1 +4986 OPRK1 opioid receptor kappa 1 8 protein-coding K-OR-1|KOR|KOR-1|OPRK kappa-type opioid receptor|Opiate receptor, kappa-1|kappa opioid receptor 46 0.006296 1.981 1 1 +4987 OPRL1 opioid related nociceptin receptor 1 20 protein-coding KOR-3|NOCIR|NOP|NOPr|OOR|ORL1 nociceptin receptor|kappa-type 3 opioid receptor|kappa3-related opioid receptor|nociceptin/orphanin FQ receptor|opiate receptor-like 1|orphanin FQ receptor 46 0.006296 5.778 1 1 +4988 OPRM1 opioid receptor mu 1 6 protein-coding LMOR|M-OR-1|MOP|MOR|MOR1|OPRM mu-type opioid receptor|mu opiate receptor|mu opioid receptor hMOR-1a 77 0.01054 0.2903 1 1 +4990 SIX6 SIX homeobox 6 14 protein-coding MCOPCT2|ODRMD|OPTX2|Six9 homeobox protein SIX6|homeodomain protein OPTX2|optic homeobox 2|sine oculis homeobox homolog 6|sine oculis homeobox protein 6|sine oculis homeobox-like protein 6 30 0.004106 0.4966 1 1 +4991 OR1D2 olfactory receptor family 1 subfamily D member 2 17 protein-coding OLFR1|OR17-4 olfactory receptor 1D2|olfactory receptor 17-4|olfactory receptor OR17-6|olfactory receptor-like protein HGMP07E 38 0.005201 0.02243 1 1 +4992 OR1F1 olfactory receptor family 1 subfamily F member 1 16 protein-coding OLFMF|OR16-36|OR16-37|OR16-88|OR16-89|OR16-90|OR1F10|OR1F13P|OR1F4|OR1F5|OR1F6|OR1F7|OR1F8|OR1F9|OR3-145|ORL1023 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 27 0.003696 0.4946 1 1 +4993 OR2C1 olfactory receptor family 2 subfamily C member 1 16 protein-coding OLFmf3|OR2C2P olfactory receptor 2C1|olfactory receptor 2C2|olfactory receptor OR16-1|olfactory receptor OR16-2|olfactory receptor, family 2, subfamily C, member 2 pseudogene 24 0.003285 0.752 1 1 +4994 OR3A1 olfactory receptor family 3 subfamily A member 1 17 protein-coding OLFRA03|OR17-40|OR17-82|OR40 olfactory receptor 3A1|olfactory receptor 17-40|olfactory receptor OR17-15 37 0.005064 0.2588 1 1 +4995 OR3A2 olfactory receptor family 3 subfamily A member 2 17 protein-coding OLFRA04|OR17-14|OR17-228|OR228 olfactory receptor 3A2|olfactory receptor 17-228|olfactory receptor OR17-14 26 0.003559 0.6701 1 1 +4998 ORC1 origin recognition complex subunit 1 1 protein-coding HSORC1|ORC1L|PARC1 origin recognition complex subunit 1|origin recognition complex, subunit 1 homolog|replication control protein 1 49 0.006707 6.507 1 1 +4999 ORC2 origin recognition complex subunit 2 2 protein-coding ORC2L origin recognition complex subunit 2|origin recognition complex protein 2 homolog|origin recognition complex, subunit 2 homolog 42 0.005749 8.61 1 1 +5000 ORC4 origin recognition complex subunit 4 2 protein-coding ORC4L|ORC4P origin recognition complex subunit 4|origin recognition complex, subunit 4 homolog 25 0.003422 9.103 1 1 +5001 ORC5 origin recognition complex subunit 5 7 protein-coding ORC5L|ORC5P|ORC5T|PPP1R117 origin recognition complex subunit 5|protein phosphatase 1, regulatory subunit 117 27 0.003696 8.622 1 1 +5002 SLC22A18 solute carrier family 22 member 18 11 protein-coding BWR1A|BWSCR1A|HET|IMPT1|ITM|ORCTL2|SLC22A1L|TSSC5|p45-BWR1A solute carrier family 22 member 18|beckwith-Wiedemann syndrome chromosomal region 1 candidate gene A protein|efflux transporter-like protein|imprinted multi-membrane-spanning polyspecific transporter-related protein 1|organic cation transporter-like protein 2|p45 Beckwith-Wiedemann region 1A|tumor-suppressing STF cDNA 5 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 5 protein 13 0.001779 8.478 1 1 +5003 SLC22A18AS solute carrier family 22 member 18 antisense 11 protein-coding BWR1B|BWSCR1B|ORCTL2S|SLC22A1LS|p27-BWR1B beckwith-Wiedemann syndrome chromosomal region 1 candidate gene B protein|Beckwith-Wiedemann region 1B|Beckwith-Wiedemann syndrome chromosome region 1, candidate b|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 (organic cation transporter), member 18 antisense|solute carrier family 22 member 1-like antisense protein|solute carrier family 22 member 18 antisense protein 9 0.001232 4.145 1 1 +5004 ORM1 orosomucoid 1 9 protein-coding AGP-A|AGP1|HEL-S-153w|ORM alpha-1-acid glycoprotein 1|AGP 1|OMD 1|epididymis secretory sperm binding protein Li 153w 20 0.002737 3.222 1 1 +5005 ORM2 orosomucoid 2 9 protein-coding AGP-B|AGP-B'|AGP2 alpha-1-acid glycoprotein 2|AGP 2|OMD 2|alpha-1-acid glycoprotein, type 2 17 0.002327 2.373 1 1 +5007 OSBP oxysterol binding protein 11 protein-coding OSBP1 oxysterol-binding protein 1 49 0.006707 10.87 1 1 +5008 OSM oncostatin M 22 protein-coding - oncostatin-M 25 0.003422 5.118 1 1 +5009 OTC ornithine carbamoyltransferase X protein-coding OCTD ornithine carbamoyltransferase, mitochondrial|OTCase|ornithine transcarbamylase 49 0.006707 1.299 1 1 +5010 CLDN11 claudin 11 3 protein-coding OSP|OTM claudin-11|oligodendrocyte transmembrane protein|oligodendrocyte-specific protein 16 0.00219 6.093 1 1 +5013 OTX1 orthodenticle homeobox 1 2 protein-coding - homeobox protein OTX1|orthodenticle homolog 1 29 0.003969 4.1 1 1 +5015 OTX2 orthodenticle homeobox 2 14 protein-coding CPHD6|MCOPS5 homeobox protein OTX2|orthodenticle homolog 2 49 0.006707 0.5544 1 1 +5016 OVGP1 oviductal glycoprotein 1 1 protein-coding CHIT5|EGP|MUC9|OGP oviduct-specific glycoprotein|estrogen-dependent oviduct protein|mucin 9|oviduct glycoprotein|oviductal glycoprotein 1, 120kDa|oviductin 95 0.013 5.507 1 1 +5017 OVOL1 ovo like transcriptional repressor 1 11 protein-coding HOVO1 putative transcription factor Ovo-like 1|ovo homolog-like 1|ovo like zinc finger 1|ovo-like 1(Drosophila) 16 0.00219 6.356 1 1 +5018 OXA1L OXA1L, mitochondrial inner membrane protein 14 protein-coding OXA1 mitochondrial inner membrane protein OXA1L|OXA1-like protein|oxidase (cytochrome c) assembly 1-like 26 0.003559 11.1 1 1 +5019 OXCT1 3-oxoacid CoA-transferase 1 5 protein-coding OXCT|SCOT succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial|3-oxoacid CoA transferase|SCOT-s|somatic-type succinyl-CoA:3-oxoacid CoA-transferase|succinyl CoA:3-oxoacid CoA transferase|succinyl-CoA:3-ketoacid-CoA transferase 38 0.005201 9.273 1 1 +5020 OXT oxytocin/neurophysin I prepropeptide 20 protein-coding OT|OT-NPI|OXT-NPI oxytocin-neurophysin 1|neurophysin I|oxytocin, prepro- (neurophysin I)|oxytocin, prepropeptide|oxytocin-neurophysin I, preproprotein 7 0.0009581 0.9304 1 1 +5021 OXTR oxytocin receptor 3 protein-coding OT-R oxytocin receptor 26 0.003559 5.636 1 1 +5023 P2RX1 purinergic receptor P2X 1 17 protein-coding P2X1 P2X purinoceptor 1|ATP receptor|P2X receptor, subunit 1|P2X1 receptor|purinergic receptor P2X, ligand gated ion channel, 1|purinergic receptor P2X1 30 0.004106 4.288 1 1 +5024 P2RX3 purinergic receptor P2X 3 11 protein-coding P2X3 P2X purinoceptor 3|ATP receptor|P2X receptor, subunit 3|purinergic receptor P2X, ligand gated ion channel, 3|purinergic receptor P2X3|purinoceptor P2X3 38 0.005201 0.4484 1 1 +5025 P2RX4 purinergic receptor P2X 4 12 protein-coding P2X4|P2X4R P2X purinoceptor 4|ATP receptor|ATP-gated cation channel protein|P2X receptor, subunit 4|purinergic receptor P2X, ligand gated ion channel, 4|purinergic receptor P2X4|purinoceptor P2X4 19 0.002601 9.085 1 1 +5026 P2RX5 purinergic receptor P2X 5 17 protein-coding LRH-1|P2X5|P2X5R P2X purinoceptor 5|ATP receptor subunit|ionotropic ATP receptor P2X5|lymphoid-restricted histocompatibility antigen-1|purinergic receptor P2X, ligand gated ion channel, 5 14 0.001916 5.727 1 1 +5027 P2RX7 purinergic receptor P2X 7 12 protein-coding P2X7 P2X purinoceptor 7|ATP receptor|P2X7 receptor|P2Z receptor|purinergic receptor P2X, ligand gated ion channel, 7|purinergic receptor P2X7 variant A 29 0.003969 5.81 1 1 +5028 P2RY1 purinergic receptor P2Y1 3 protein-coding P2Y1 P2Y purinoceptor 1|ATP receptor|P2 purinoceptor subtype Y1|platelet ADP receptor|purinergic receptor P2Y, G-protein coupled, 1 35 0.004791 5.056 1 1 +5029 P2RY2 purinergic receptor P2Y2 11 protein-coding HP2U|P2RU1|P2U|P2U1|P2UR|P2Y2|P2Y2R P2Y purinoceptor 2|ATP receptor|P2U nucleotide receptor|P2U purinoceptor 1|P2U receptor 1|purinergic receptor P2Y, G-protein coupled, 2|purinoceptor P2Y2 34 0.004654 5.944 1 1 +5030 P2RY4 pyrimidinergic receptor P2Y4 X protein-coding NRU|P2P|P2Y4|UNR P2Y purinoceptor 4|pyrimidinergic receptor P2Y, G-protein coupled, 4|uridine nucleotide receptor 23 0.003148 0.958 1 1 +5031 P2RY6 pyrimidinergic receptor P2Y6 11 protein-coding P2Y6 P2Y purinoceptor 6|G-coupled nucleotide receptor|P2 purinoceptor|P2Y6 receptor|pyrimidinergic receptor P2Y, G-protein coupled, 6 31 0.004243 6.2 1 1 +5032 P2RY11 purinergic receptor P2Y11 19 protein-coding P2Y11 P2Y purinoceptor 11|purinergic receptor P2Y, G-protein coupled, 11 3 0.0004106 6.989 1 1 +5033 P4HA1 prolyl 4-hydroxylase subunit alpha 1 10 protein-coding P4HA prolyl 4-hydroxylase subunit alpha-1|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, alpha polypeptide I 44 0.006022 10.28 1 1 +5034 P4HB prolyl 4-hydroxylase subunit beta 17 protein-coding CLCRP1|DSI|ERBA2L|GIT|P4Hbeta|PDI|PDIA1|PHDB|PO4DB|PO4HB|PROHB protein disulfide-isomerase|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, beta polypeptide|protein disulfide isomerase family A, member 1|protein disulfide isomerase-associated 1|protein disulfide isomerase/oxidoreductase|protocollagen hydroxylase|testicular secretory protein Li 32|thyroid hormone-binding protein p55 38 0.005201 14.35 1 1 +5036 PA2G4 proliferation-associated 2G4 12 protein-coding EBP1|HG4-1|p38-2G4 proliferation-associated protein 2G4|ErbB-3 binding protein 1|ErbB3-binding protein Ebp1|cell cycle protein p38-2G4 homolog|erbB3-binding protein 1|proliferation-associated 2G4, 38kD|proliferation-associated 2G4, 38kDa 32 0.00438 11.74 1 1 +5037 PEBP1 phosphatidylethanolamine binding protein 1 12 protein-coding HCNP|HCNPpp|HEL-210|HEL-S-34|HEL-S-96|PBP|PEBP|PEBP-1|RKIP phosphatidylethanolamine-binding protein 1|Raf kinase inhibitory protein|epididymis luminal protein 210|epididymis secretory protein Li 34|epididymis secretory protein Li 96|hippocampal cholinergic neurostimulating peptide|neuropolypeptide h3|prostatic binding protein|raf kinase inhibitor protein 12 0.001642 12.89 1 1 +5042 PABPC3 poly(A) binding protein cytoplasmic 3 13 protein-coding PABP3|PABPL3|tPABP polyadenylate-binding protein 3|PABP-3|poly(A)-binding protein 3|poly(A)-binding protein-like 3|testis PABP|testis-specific poly(A)-binding protein (PABP)|testis-specific poly(A)-binding protein 3 89 0.01218 8.424 1 1 +5045 FURIN furin, paired basic amino acid cleaving enzyme 15 protein-coding FUR|PACE|PCSK3|SPC1 furin|FES upstream region|dibasic processing enzyme|furin, membrane associated receptor protein|paired basic amino acid residue-cleaving enzyme|proprotein convertase subtilisin/kexin type 3 48 0.00657 11.61 1 1 +5046 PCSK6 proprotein convertase subtilisin/kexin type 6 15 protein-coding PACE4|SPC4 proprotein convertase subtilisin/kexin type 6|paired basic amino acid cleaving enzyme 4|paired basic amino acid cleaving system 4|subtilisin-like proprotein convertase 4|subtilisin/kexin-like protease PACE4 68 0.009307 8.4 1 1 +5047 PAEP progestagen associated endometrial protein 9 protein-coding GD|GdA|GdF|GdS|PAEG|PEP|PP14 glycodelin|PEG|PP14 protein (placental protein 14)|alpha uterine protein|glycodelin-A|glycodelin-F|glycodelin-S|placental protein 14|pregnancy-associated endometrial alpha-2 globulin|progestagen-associated endometrial protein (placental protein 14, pregnancy-associated endometrial a|progesterone-associated endometrial protein 8 0.001095 1.97 1 1 +5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 17 protein-coding LIS1|LIS2|MDCR|MDS|NudF|PAFAH platelet-activating factor acetylhydrolase IB subunit alpha|lissencephaly 1 protein|platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 (45kDa)|platelet-activating factor acetylhydrolase, isoform Ib, alpha subunit (45kD)|platelet-activating factor acetylhydrolase, isoform Ib, subunit 1 (45kDa) 33 0.004517 11.5 1 1 +5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 11 protein-coding HEL-S-303 platelet-activating factor acetylhydrolase IB subunit beta|PAF acetylhydrolase 30 kDa subunit|PAF-AH 30 kDa subunit|PAF-AH subunit beta|PAF-AH1b alpha 2 subunit|PAFAH subunit beta|epididymis secretory protein Li 303|intracellular platelet-activating factor acetylhydrolase alpha 2 subunit|platelet-activating factor acetylhydrolase 1b, catalytic subunit 2 (30kDa)|platelet-activating factor acetylhydrolase, isoform Ib, subunit 2 (30kDa) 11 0.001506 8.534 1 1 +5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 19 protein-coding PAFAHG platelet-activating factor acetylhydrolase IB subunit gamma|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 1b, catalytic subunit 3 (29kDa)|platelet-activating factor acetylhydrolase, isoform Ib, subunit 3 (29kDa) 9 0.001232 9.434 1 1 +5051 PAFAH2 platelet activating factor acetylhydrolase 2 1 protein-coding HSD-PLA2 platelet-activating factor acetylhydrolase 2, cytoplasmic|SD-PLA2|platelet-activating factor acetylhydrolase 2, 40kDa|serine-dependent phospholipase A2 24 0.003285 8.826 1 1 +5052 PRDX1 peroxiredoxin 1 1 protein-coding MSP23|NKEF-A|NKEFA|PAG|PAGA|PAGB|PRX1|PRXI|TDPX2 peroxiredoxin-1|natural killer cell-enhancing factor A|natural killer-enhancing factor A|proliferation-associated gene A|proliferation-associated gene protein|thioredoxin peroxidase 2|thioredoxin-dependent peroxide reductase 2 25 0.003422 12.88 1 1 +5053 PAH phenylalanine hydroxylase 12 protein-coding PH|PKU|PKU1 phenylalanine-4-hydroxylase|phe-4-monooxygenase|phenylalanine 4-monooxygenase 67 0.009171 3.309 1 1 +5054 SERPINE1 serpin family E member 1 7 protein-coding PAI|PAI-1|PAI1|PLANH1 plasminogen activator inhibitor 1|endothelial plasminogen activator inhibitor|serine (or cysteine) proteinase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1|serpin E1|serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 47 0.006433 10.18 1 1 +5055 SERPINB2 serpin family B member 2 18 protein-coding HsT1201|PAI|PAI-2|PAI2|PLANH2 plasminogen activator inhibitor 2|monocyte Arg-serpin|placental plasminogen activator inhibitor|plasminogen activator inhibitor, type II (arginine-serpin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 2|serpin B2|serpin peptidase inhibitor, clade B (ovalbumin), member 2|urokinase inhibitor 51 0.006981 3.239 1 1 +5058 PAK1 p21 (RAC1) activated kinase 1 11 protein-coding PAKalpha serine/threonine-protein kinase PAK 1|STE20 homolog, yeast|alpha-PAK|p21 protein (Cdc42/Rac)-activated kinase 1|p21/Cdc42/Rac1-activated kinase 1 (STE20 homolog, yeast)|p21/Cdc42/Rac1-activated kinase 1 (yeast Ste20-related)|p65-PAK 37 0.005064 10.39 1 1 +5062 PAK2 p21 (RAC1) activated kinase 2 3 protein-coding PAK65|PAKgamma serine/threonine-protein kinase PAK 2|PAK-2|S6/H4 kinase|gamma-PAK|p21 (CDKN1A)-activated kinase 2|p21 protein (Cdc42/Rac)-activated kinase 2|p21-activated kinase 2|p58 43 0.005886 11.32 1 1 +5063 PAK3 p21 (RAC1) activated kinase 3 X protein-coding ARA|MRX30|MRX47|OPHN3|PAK-3|PAK3beta|bPAK|beta-PAK serine/threonine-protein kinase PAK 3|adriamycin resistance-associated|oligophrenin-3|p21 (CDKN1A)-activated kinase 3|p21 protein (Cdc42/Rac)-activated kinase 3 67 0.009171 2.63 1 1 +5064 PALM paralemmin 19 protein-coding - paralemmin-1 28 0.003832 8.74 1 1 +5066 PAM peptidylglycine alpha-amidating monooxygenase 5 protein-coding PAL|PHM peptidyl-glycine alpha-amidating monooxygenase|pancreatic peptidylglycine alpha-amidating monooxygenase|peptidyl alpha-amidating enzyme|peptidyl-alpha-hydroxyglycine alpha-amidating lyase|peptidylamidoglycolate lyase|peptidylglycine 2-hydroxylase|peptidylglycine alpha-hydroxylating monooxygenase 61 0.008349 11.31 1 1 +5067 CNTN3 contactin 3 3 protein-coding BIG-1|PANG|PCS contactin-3|brain-derived immunoglobulin superfamily protein 1|contactin 3 (plasmacytoma associated)|plasmacytoma-associated neuronal glycoprotein 144 0.01971 4.471 1 1 +5068 REG3A regenerating family member 3 alpha 2 protein-coding HIP|HIP/PAP|INGAP|PAP|PAP-H|PAP1|PBCGF|REG-III|REG3 regenerating islet-derived protein 3-alpha|PAP homologous protein|REG-3-alpha|hepatocarcinoma-intestine-pancreas|hepatointestinal pancreatic protein|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 3 alpha|regenerating islet-derived protein III-alpha 67 0.009171 1.134 1 1 +5069 PAPPA pappalysin 1 9 protein-coding ASBABP2|DIPLA1|IGFBP-4ase|PAPA|PAPP-A|PAPPA1 pappalysin-1|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|pregnacy-associated plasma protein A|pregnancy-associated plasma protein A, pappalysin 1 155 0.02122 6.073 1 1 +5071 PARK2 parkin RBR E3 ubiquitin protein ligase 6 protein-coding AR-JP|LPRS2|PDJ|PRKN E3 ubiquitin-protein ligase parkin|Parkinson disease (autosomal recessive, juvenile) 2, parkin|parkinson juvenile disease protein 2|parkinson protein 2 E3 ubiquitin protein ligase|parkinson protein 2, E3 ubiquitin protein ligase (parkin) 66 0.009034 5.293 1 1 +5073 PARN poly(A)-specific ribonuclease 16 protein-coding DAN|DKCB6|PFBMFT4 poly(A)-specific ribonuclease PARN|deadenylating nuclease|deadenylation nuclease|polyadenylate-specific ribonuclease 30 0.004106 10.18 1 1 +5074 PAWR pro-apoptotic WT1 regulator 12 protein-coding PAR4|Par-4 PRKC apoptosis WT1 regulator protein|PRKC, apoptosis, WT1, regulator|WT1-interacting protein|prostate apoptosis response 4 protein|prostate apoptosis response protein 4|prostate apoptosis response protein PAR-4|prostate apoptosis response-4|transcriptional repressor PAR4 19 0.002601 7.731 1 1 +5075 PAX1 paired box 1 20 protein-coding HUP48|OFC2 paired box protein Pax-1|paired box gene 1|paired domain gene HuP48 74 0.01013 1.73 1 1 +5076 PAX2 paired box 2 10 protein-coding FSGS7|PAPRS paired box protein Pax-2|paired box homeotic gene 2 50 0.006844 2.21 1 1 +5077 PAX3 paired box 3 2 protein-coding CDHS|HUP2|WS1|WS3 paired box protein Pax-3|paired box homeotic gene 3|paired domain gene 3|paired domain gene HuP2 70 0.009581 1.41 1 1 +5078 PAX4 paired box 4 7 protein-coding KPD|MODY9 paired box protein Pax-4|paired box gene 4|paired domain gene 4 59 0.008076 0.2304 1 1 +5079 PAX5 paired box 5 9 protein-coding ALL3|BSAP paired box protein Pax-5|B-cell lineage specific activator|paired box homeotic gene 5|paired domain gene 5|transcription factor PAX 5 49 0.006707 2.355 1 1 +5080 PAX6 paired box 6 11 protein-coding AN|AN2|D11S812E|FVH1|MGDA|WAGR paired box protein Pax-6|aniridia type II protein|oculorhombin|paired box homeotic gene-6 65 0.008897 5.921 1 1 +5081 PAX7 paired box 7 1 protein-coding HUP1|PAX7B|RMS2 paired box protein Pax-7|PAX7 transcriptional factor|paired box homeotic gene 7|paired domain gene 7 45 0.006159 1.343 1 1 +5082 PDCL phosducin like 9 protein-coding PhLP phosducin-like protein 25 0.003422 8.822 1 1 +5083 PAX9 paired box 9 14 protein-coding STHAG3 paired box protein Pax-9|paired domain gene 9 35 0.004791 5.064 1 1 +5087 PBX1 PBX homeobox 1 1 protein-coding - pre-B-cell leukemia transcription factor 1|homeobox protein PBX1|homeobox protein PRL|pre-B-cell leukemia homeobox 1 52 0.007117 10.47 1 1 +5088 PBX2P1 PBX homeobox 2 pseudogene 1 3 pseudo PBX2|PBXP1 pre-B-cell leukemia homeobox 2 pseudogene 1|pre-B-cell leukemia transcription factor pseudogene 1 35 0.004791 1 0 +5089 PBX2 PBX homeobox 2 6 protein-coding G17|HOX12|PBX2MHC pre-B-cell leukemia transcription factor 2|XXbac-BPG300A18.13|homeobox 12|homeobox protein PBX2|pre-B-cell leukemia homeobox 2 52 0.007117 10.3 1 1 +5090 PBX3 PBX homeobox 3 9 protein-coding - pre-B-cell leukemia transcription factor 3|homeobox protein PBX3|pre-B-cell leukemia homeobox 3 34 0.004654 8.947 1 1 +5091 PC pyruvate carboxylase 11 protein-coding PCB pyruvate carboxylase, mitochondrial|pyruvic carboxylase 90 0.01232 9.43 1 1 +5092 PCBD1 pterin-4 alpha-carbinolamine dehydratase 1 10 protein-coding DCOH|PCBD|PCD|PHS pterin-4-alpha-carbinolamine dehydratase|4-alpha-hydroxy-tetrahydropterin dehydratase|6-pyruvoyl-tetrahydropterin synthase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1)|dimerizing cofactor for HNF1|phenylalanine hydroxylase-stimulating protein|pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha 3 0.0004106 10.22 1 1 +5093 PCBP1 poly(rC) binding protein 1 2 protein-coding HEL-S-85|HNRPE1|HNRPX|hnRNP-E1|hnRNP-X poly(rC)-binding protein 1|alpha-CP1|epididymis secretory protein Li 85|heterogeneous nuclear ribonucleoprotein E1|heterogenous nuclear ribonucleoprotein E1|heterogenous nuclear ribonucleoprotein X|nucleic acid-binding protein SUB2.3 41 0.005612 12.87 1 1 +5094 PCBP2 poly(rC) binding protein 2 12 protein-coding HNRNPE2|HNRPE2|hnRNP-E2 poly(rC)-binding protein 2|alpha-CP2|heterogeneous nuclear ribonucleoprotein E2|heterogenous nuclear ribonucleoprotein E2|hnRNP E2 44 0.006022 13.24 1 1 +5095 PCCA propionyl-CoA carboxylase alpha subunit 13 protein-coding - propionyl-CoA carboxylase alpha chain, mitochondrial|PCCase alpha subunit|pccA complementation group|propanoyl-CoA:carbon dioxide ligase alpha subunit|propionyl CoA carboxylase, alpha polypeptide|propionyl Coenzyme A carboxylase, alpha polypeptide 51 0.006981 8.533 1 1 +5096 PCCB propionyl-CoA carboxylase beta subunit 3 protein-coding - propionyl-CoA carboxylase beta chain, mitochondrial|PCCase subunit beta|propanoyl-CoA:carbon dioxide ligase subunit beta|propionyl CoA carboxylase, beta polypeptide|propionyl Coenzyme A carboxylase, beta polypeptide 33 0.004517 10.39 1 1 +5097 PCDH1 protocadherin 1 5 protein-coding PC42|PCDH42 protocadherin-1|cadherin-like 1|cadherin-like protein 1|protocadherin 42 104 0.01423 10.19 1 1 +5098 PCDHGC3 protocadherin gamma subfamily C, 3 5 protein-coding PC43|PCDH-GAMMA-C3|PCDH2 protocadherin gamma-C3|cadherin-like 2|protocadherin 43|protocadherin-2 55 0.007528 11.23 1 1 +5099 PCDH7 protocadherin 7 4 protein-coding BH-Pcdh|BHPCDH|PPP1R120 protocadherin-7|BH-protocadherin (brain-heart)|brain-heart protocadherin|protein phosphatase 1, regulatory subunit 120 134 0.01834 8.101 1 1 +5100 PCDH8 protocadherin 8 13 protein-coding ARCADLIN|PAPC protocadherin-8 98 0.01341 2.153 1 1 +5101 PCDH9 protocadherin 9 13 protein-coding - protocadherin-9|cadherin superfamily protein VR4-11 156 0.02135 4.564 1 1 +5104 SERPINA5 serpin family A member 5 14 protein-coding PAI-3|PAI3|PCI|PCI-B|PLANH3|PROCI plasma serine protease inhibitor|acrosomal 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 peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 56 0.007665 5.525 1 1 +5105 PCK1 phosphoenolpyruvate carboxykinase 1 20 protein-coding PEPCK-C|PEPCK1|PEPCKC phosphoenolpyruvate carboxykinase, cytosolic [GTP]|PEP carboxykinase|phosphoenolpyruvate carboxykinase 1 (soluble)|phosphoenolpyruvate carboxykinase, cytosolic|phosphoenolpyruvate carboxylase|phosphopyruvate carboxylase 74 0.01013 3.616 1 1 +5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial 14 protein-coding PEPCK|PEPCK-M|PEPCK2 phosphoenolpyruvate carboxykinase [GTP], mitochondrial|PEP carboxykinase|phosphopyruvate carboxylase 37 0.005064 9.719 1 1 +5108 PCM1 pericentriolar material 1 8 protein-coding PTC4|RET/PCM-1 pericentriolar material 1 protein|PCM-1|hPCM-1|pericentriolar material 1, PCM1 79 0.01081 11.13 1 1 +5110 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase 6 protein-coding PIMT protein-L-isoaspartate(D-aspartate) O-methyltransferase|L-isoaspartyl protein carboxyl methyltransferase|protein L-isoaspartyl/D-aspartyl methyltransferase|protein-beta-aspartate methyltransferase 15 0.002053 10.43 1 1 +5111 PCNA proliferating cell nuclear antigen 20 protein-coding ATLD2 proliferating cell nuclear antigen|DNA polymerase delta auxiliary protein|cyclin 12 0.001642 11.02 1 1 +5116 PCNT pericentrin 21 protein-coding KEN|MOPD2|PCN|PCNT2|PCNTB|PCTN2|SCKL4 pericentrin|kendrin|pericentrin-2|pericentrin-380|pericentrin-B 215 0.02943 9.652 1 1 +5118 PCOLCE procollagen C-endopeptidase enhancer 7 protein-coding PCPE|PCPE-1|PCPE1 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 46 0.006296 9.79 1 1 +5119 CHMP1A charged multivesicular body protein 1A 16 protein-coding CHMP1|PCH8|PCOLN3|PRSM1|VPS46-1|VPS46A charged multivesicular body protein 1a|charged multivesicular body protein 1/chromatin modifying protein 1|chromatin modifying protein 1A|procollagen (type III) N-endopeptidase|protease, metallo, 1, 33kD|vacuolar protein sorting-associated protein 46-1 17 0.002327 11.15 1 1 +5121 PCP4 Purkinje cell protein 4 21 protein-coding PEP-19 Purkinje cell protein 4|brain specific polypeptide PEP19|brain-specific antigen PCP-4|brain-specific polypeptide PEP-19 10 0.001369 4.061 1 1 +5122 PCSK1 proprotein convertase subtilisin/kexin type 1 5 protein-coding BMIQ12|NEC1|PC1|PC3|SPC3 neuroendocrine convertase 1|prohormone convertase 1|prohormone convertase 3 65 0.008897 4.356 1 1 +5125 PCSK5 proprotein convertase subtilisin/kexin type 5 9 protein-coding PC5|PC6|PC6A|SPC6 proprotein convertase subtilisin/kexin type 5|prohormone convertase 5|proprotein convertase 6|protease PC6|subtilase|subtilisin/kexin-like protease PC5 153 0.02094 6.37 1 1 +5126 PCSK2 proprotein convertase subtilisin/kexin type 2 20 protein-coding NEC 2|NEC-2|NEC2|PC2|SPC2 neuroendocrine convertase 2|KEX2-like endoprotease 2|prohormone convertase 2 72 0.009855 3.534 1 1 +5127 CDK16 cyclin dependent kinase 16 X protein-coding PCTAIRE|PCTAIRE1|PCTGAIRE|PCTK1 cyclin-dependent kinase 16|PCTAIRE-motif protein kinase 1|cell division protein kinase 16|serine/threonine-protein kinase PCTAIRE-1|testis secretory sperm-binding protein Li 224n 28 0.003832 11.15 1 1 +5128 CDK17 cyclin dependent kinase 17 12 protein-coding PCTAIRE2|PCTK2 cyclin-dependent kinase 17|PCTAIRE-motif protein kinase 2|cell division protein kinase 17|protein kinase cdc2-related PCTAIRE-2|serine/threonine-protein kinase PCTAIRE-2 38 0.005201 9.255 1 1 +5129 CDK18 cyclin dependent kinase 18 1 protein-coding PCTAIRE|PCTAIRE3|PCTK3 cyclin-dependent kinase 18|PCTAIRE protein kinase 3|PCTAIRE-motif protein kinase 3|cell division protein kinase 18|serine/threonine-protein kinase PCTAIRE-3 35 0.004791 9.216 1 1 +5130 PCYT1A phosphate cytidylyltransferase 1, choline, alpha 3 protein-coding CCTA|CT|CTA|CTPCT|PCYT1|SMDCRD choline-phosphate cytidylyltransferase A|CCT A|CCT-alpha|CT A|CTP:phosphocholine cytidylyltransferase A|phosphorylcholine transferase A 31 0.004243 8.574 1 1 +5132 PDC phosducin 1 protein-coding MEKA|PHD|PhLOP|PhLP phosducin|33 kDa phototransducing protein|G beta gamma binding protein|phosducin-like orphan protein 12 0.001642 0.5282 1 1 +5133 PDCD1 programmed cell death 1 2 protein-coding CD279|PD-1|PD1|SLEB2|hPD-1|hPD-l|hSLE1 programmed cell death protein 1|programmed cell death 1 protein|protein PD-1|systemic lupus erythematosus susceptibility 2 24 0.003285 4.58 1 1 +5134 PDCD2 programmed cell death 2 6 protein-coding RP8|ZMYND7 programmed cell death protein 2|zinc finger MYND domain-containing protein 7|zinc finger protein Rp-8 12 0.001642 9.438 1 1 +5136 PDE1A phosphodiesterase 1A 2 protein-coding CAM-PDE-1A|HCAM-1|HCAM1|HSPDE1A calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1A|61 kDa Cam-PDE|calcium/calmodulin-stimulated cyclic nucleotide phosphodiesterase|cam-PDE 1A|phosphodiesterase 1A, calmodulin-dependent 66 0.009034 5.958 1 1 +5137 PDE1C phosphodiesterase 1C 7 protein-coding Hcam3|cam-PDE 1C|hCam-3 calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1C|Human 3',5' cyclic nucleotide phosphodiesterase (HSPDE1C1A)|phosphodiesterase 1C, calmodulin-dependent 70kDa 125 0.01711 3.593 1 1 +5138 PDE2A phosphodiesterase 2A 11 protein-coding CGS-PDE|PDE2A1|PED2A4|cGSPDE cGMP-dependent 3',5'-cyclic phosphodiesterase|cGMP-stimulated phosphodiesterase 1|cGMP-stimulated phosphodiesterase 2|cGMP-stimulated phosphodiesterase 4|cyclic GMP-stimulated phosphodiesterase|phosphodiesterase 2A, cGMP-stimulated 73 0.009992 7.235 1 1 +5139 PDE3A phosphodiesterase 3A 12 protein-coding CGI-PDE|CGI-PDE A|CGI-PDE-A|HTNB cGMP-inhibited 3',5'-cyclic phosphodiesterase A|cAMP phosphodiesterase, myocardial cGMP-inhibited|cyclic GMP-inhibited phosphodiesterase A|phosphodiesterase 3A, cGMP-inhibited 151 0.02067 5.526 1 1 +5140 PDE3B phosphodiesterase 3B 11 protein-coding HcGIP1|cGIPDE1 cGMP-inhibited 3',5'-cyclic phosphodiesterase B|CGI-PDE B|CGIP1|cyclic GMP-inhibited phosphodiesterase B|cyclic nucleotide phosphodiesterase|phosphodiesterase 3B, cGMP-inhibited 73 0.009992 7.117 1 1 +5141 PDE4A phosphodiesterase 4A 19 protein-coding DPDE2|PDE4|PDE46 cAMP-specific 3',5'-cyclic phosphodiesterase 4A|phosphodiesterase 4A, cAMP-specific (dunce|phosphodiesterase E2 dunce homolog, Drosophila|phosphodiesterase isozyme 4 62 0.008486 8.686 1 1 +5142 PDE4B phosphodiesterase 4B 1 protein-coding DPDE4|PDEIVB cAMP-specific 3',5'-cyclic phosphodiesterase 4B|dunce-like phosphodiesterase E4|phosphodiesterase 4B, cAMP-specific (phosphodiesterase E4 dunce homolog, Drosophila) 76 0.0104 8.544 1 1 +5143 PDE4C phosphodiesterase 4C 19 protein-coding DPDE1|PDE21 cAMP-specific 3',5'-cyclic phosphodiesterase 4C|dunce-like phosphodiesterase E1|phosphodiesterase 4C, cAMP-specific (phosphodiesterase E1 dunce homolog, Drosophila) 57 0.007802 4.587 1 1 +5144 PDE4D phosphodiesterase 4D 5 protein-coding ACRDYS2|DPDE3|HSPDE4D|PDE43|PDE4DN2|STRK1 cAMP-specific 3',5'-cyclic phosphodiesterase 4D|cAMP-specific phosphodiesterase PDE4D6|phosphodiesterase 4D, cAMP-specific (phosphodiesterase E3 dunce homolog, Drosophila)|testicular tissue protein Li 136 65 0.008897 8.383 1 1 +5145 PDE6A phosphodiesterase 6A 5 protein-coding CGPR-A|PDEA|RP43 rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha|GMP-PDE alpha|PDE V-B1|cGMP phosphodiesterase alpha subunit|phosphodiesterase 6A, cGMP-specific, rod, alpha|rod photoreceptor cGMP phosphodiesterase alpha subunit 71 0.009718 1.994 1 1 +5146 PDE6C phosphodiesterase 6C 10 protein-coding ACHM5|COD4|PDEA2 cone cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha'|cGMP phosphodiesterase 6C|phosphodiesterase 6C, cGMP-specific, cone, alpha prime 53 0.007254 0.2697 1 1 +5147 PDE6D phosphodiesterase 6D 2 protein-coding JBTS22|PDED retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit delta|GMP-PDE delta|phosphodiesterase 6D, cGMP-specific, rod, delta|protein p17 5 0.0006844 8.587 1 1 +5148 PDE6G phosphodiesterase 6G 17 protein-coding PDEG|RP57 retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma|GMP-PDE gamma|phosphodiesterase 6G, cGMP-specific, rod, gamma|rod cG-PDE G 5 0.0006844 3.702 1 1 +5149 PDE6H phosphodiesterase 6H 12 protein-coding ACHM6|RCD3 retinal cone rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma|GMP-PDE gamma|phosphodiesterase 6H, cGMP-specific, cone, gamma 4 0.0005475 0.2931 1 1 +5150 PDE7A phosphodiesterase 7A 8 protein-coding HCP1|PDE7 high affinity cAMP-specific 3',5'-cyclic phosphodiesterase 7A|TM22|phosphodiesterase isozyme 7 29 0.003969 9.104 1 1 +5151 PDE8A phosphodiesterase 8A 15 protein-coding HsT19550 high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8A|cAMP-specific cyclic nucleotide phosphodiesterase 8A 49 0.006707 9.148 1 1 +5152 PDE9A phosphodiesterase 9A 21 protein-coding HSPDE9A2 high affinity cGMP-specific 3',5'-cyclic phosphodiesterase 9A|CGMP-specific 3',5'-cyclic phosphodiesterase type 9|phosphodiesterase PDE9A21 56 0.007665 7.637 1 1 +5153 PDE1B phosphodiesterase 1B 12 protein-coding HEL-S-79p|PDE1B1|PDES1B calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1B|63 kDa Cam-PDE|calcium/calmodulin-stimulated cyclic nucleotide phosphodiesterase|calmodulin-stimulated phosphodiesterase PDE1B1|cam-PDE 1B|epididymis secretory sperm binding protein Li 79p|phosphodiesterase 1B, calmodulin-dependent|presumed 63kDa form of the type 1 cyclic nucleotide phosphodiesterase family known as PDE1B 65 0.008897 6.282 1 1 +5154 PDGFA platelet derived growth factor subunit A 7 protein-coding PDGF-A|PDGF1 platelet-derived growth factor subunit A|PDGF A-chain|PDGF subunit A|platelet-derived growth factor A-chain|platelet-derived growth factor alpha chain|platelet-derived growth factor alpha polypeptide 16 0.00219 8.824 1 1 +5155 PDGFB platelet derived growth factor subunit B 22 protein-coding IBGC5|PDGF-2|PDGF2|SIS|SSV|c-sis platelet-derived growth factor subunit B|PDGF subunit B|PDGF, B chain|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, beta polypeptide (oncogene SIS)|proto-oncogene c-Sis 18 0.002464 8.873 1 1 +5156 PDGFRA platelet derived growth factor receptor alpha 4 protein-coding CD140A|GAS9|PDGFR-2|PDGFR2|RHEPDGFRA platelet-derived growth factor receptor alpha|CD140 antigen-like family member A|CD140a antigen|PDGF-R-alpha|PDGFRA/BCR fusion|alpha-type platelet-derived growth factor receptor|platelet-derived growth factor receptor 2|platelet-derived growth factor receptor, alpha polypeptide|rearranged-in-hypereosinophilia-platelet derived growth factor receptor alpha fusion protein 138 0.01889 8.922 1 1 +5157 PDGFRL platelet derived growth factor receptor like 8 protein-coding PDGRL|PRLTS platelet-derived growth factor receptor-like protein|PDGF receptor beta-like tumor suppressor|PDGFR-like protein|platelet-derived growth factor-beta-like tumor suppressor 16 0.00219 6.697 1 1 +5158 PDE6B phosphodiesterase 6B 4 protein-coding CSNB3|CSNBAD2|PDEB|RP40|rd1 rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit beta|GMP-PDE beta|phosphodiesterase 6B, cGMP-specific, rod, beta|rod cGMP-phosphodiesterase beta-subunit 74 0.01013 5.727 1 1 +5159 PDGFRB platelet derived growth factor receptor beta 5 protein-coding CD140B|IBGC4|IMF1|JTK12|KOGS|PDGFR|PDGFR-1|PDGFR1|PENTT platelet-derived growth factor receptor beta|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 polypeptide 91 0.01246 10.9 1 1 +5160 PDHA1 pyruvate dehydrogenase (lipoamide) alpha 1 X protein-coding PDHA|PDHAD|PDHCE1A|PHE1A pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial|PDHE1-A type I|pyruvate dehydrogenase E1 subunit|pyruvate dehydrogenase complex, E1-alpha polypeptide 1 26 0.003559 10.66 1 1 +5161 PDHA2 pyruvate dehydrogenase (lipoamide) alpha 2 4 protein-coding PDHAL pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial|PDHE1-A type II|pyruvate dehydrogenase, E1-alpha polypeptide, testis specific 92 0.01259 0.0717 1 1 +5162 PDHB pyruvate dehydrogenase (lipoamide) beta 3 protein-coding PDHBD|PDHE1-B|PHE1B pyruvate dehydrogenase E1 component subunit beta, mitochondrial|pyruvate dehydrogenase, E1 beta polypeptide 12 0.001642 10.24 1 1 +5163 PDK1 pyruvate dehydrogenase kinase 1 2 protein-coding - [Pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 1, mitochondrial|PDH kinase 1|mitochondrial pyruvate dehydrogenase, lipoamide, kinase isoenzyme 1|pyruvate dehydrogenase kinase, isoenzyme 1 25 0.003422 8.553 1 1 +5164 PDK2 pyruvate dehydrogenase kinase 2 17 protein-coding PDHK2|PDKII pyruvate dehydrogenase kinase, isozyme 2|PDH kinase 2|[Pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 2, mitochondrial|pyruvate dehydrogenase kinase, isoenzyme 2|pyruvate dehydrogenase, lipoamide, kinase isozyme 2, mitochondrial 19 0.002601 9.888 1 1 +5165 PDK3 pyruvate dehydrogenase kinase 3 X protein-coding CMTX6|GS1-358P8.4 pyruvate dehydrogenase kinase, isozyme 3|[Pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 3, mitochondrial|pyruvate dehydrogenase kinase, isoenzyme 3|pyruvate dehydrogenase, lipoamide, kinase isozyme 3, mitochondrial 32 0.00438 7.322 1 1 +5166 PDK4 pyruvate dehydrogenase kinase 4 7 protein-coding - pyruvate dehydrogenase kinase, isozyme 4|[Pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 4, mitochondrial|[Pyruvate dehydrogenase [lipoamide]] kinase isozyme 4, mitochondrial|pyruvate dehydrogenase kinase, isoenzyme 4|pyruvate dehydrogenase, lipoamide, kinase isozyme 4, mitochondrial 30 0.004106 9.193 1 1 +5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 6 protein-coding ARHR2|COLED|M6S1|NPP1|NPPS|PC-1|PCA1|PDNP1 ectonucleotide pyrophosphatase/phosphodiesterase family member 1|E-NPP 1|Ly-41 antigen|alkaline phosphodiesterase 1|membrane component, chromosome 6, surface marker 1|phosphodiesterase I/nucleotide pyrophosphatase 1|plasma-cell membrane glycoprotein 1|plasma-cell membrane glycoprotein PC-1 80 0.01095 7.772 1 1 +5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 8 protein-coding ATX|ATX-X|AUTOTAXIN|LysoPLD|NPP2|PD-IALPHA|PDNP2 ectonucleotide pyrophosphatase/phosphodiesterase family member 2|E-NPP 2|autotaxin-t|extracellular lysophospholipase D|phosphodiesterase I/nucleotide pyrophosphatase 2|plasma lysophospholipase D 97 0.01328 9.168 1 1 +5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 6 protein-coding B10|CD203c|NPP3|PD-IBETA|PDNP3 ectonucleotide pyrophosphatase/phosphodiesterase family member 3|dJ1005H11.3 (phosphodiesterase I/nucleotide pyrophosphatase 3)|dJ914N13.3 (phosphodiesterase I/nucleotide pyrophosphatase 3)|gp130RB13-6|phosphodiesterase I/nucleotide pyrophosphatase 3|phosphodiesterase-I beta 75 0.01027 3.897 1 1 +5170 PDPK1 3-phosphoinositide dependent protein kinase 1 16 protein-coding PDK1|PDPK2|PDPK2P|PRO0461 3-phosphoinositide-dependent protein kinase 1|3-phosphoinositide-dependent protein kinase 2 pseudogene|PkB kinase like gene 1 22 0.003011 10.24 1 1 +5172 SLC26A4 solute carrier family 26 member 4 7 protein-coding DFNB4|EVA|PDS|TDH2B pendrin|sodium-independent chloride/iodide transporter|solute carrier family 26 (anion exchanger), member 4|truncated solute carrier family 26 63 0.008623 4.086 1 1 +5173 PDYN prodynorphin 20 protein-coding ADCA|PENKB|SCA23 proenkephalin-B|beta-neoendorphin-dynorphin|leu-enkephalin|leumorphin|neoendorphin-dynorphin-enkephalin prepropeptide|preprodynorphin|preproenkephalin B|rimorphin 61 0.008349 0.8941 1 1 +5174 PDZK1 PDZ domain containing 1 1 protein-coding CAP70|CLAMP|NHERF-3|NHERF3|PDZD1 Na(+)/H(+) exchange regulatory cofactor NHE-RF3|CFTR-associated protein of 70 kDa|PDZ-containing kidney protein 1|na/Pi cotransporter C-terminal-associated protein 1|naPi-Cap1|sodium-hydrogen exchanger regulatory factor 3 16 0.00219 4.843 1 1 +5175 PECAM1 platelet and endothelial cell adhesion molecule 1 17 protein-coding CD31|CD31/EndoCAM|GPIIA'|PECA1|PECAM-1|endoCAM platelet endothelial cell adhesion molecule|CD31 antigen|platelet endothelial cell adhesion molecule-1 1 0.0001369 9.638 1 1 +5176 SERPINF1 serpin family F member 1 17 protein-coding EPC-1|OI12|OI6|PEDF|PIG35 pigment epithelium-derived factor|cell proliferation-inducing gene 35 protein|serine (or cysteine) proteinase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1|serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1|testis tissue sperm-binding protein Li 70n 35 0.004791 10.5 1 1 +5178 PEG3 paternally expressed 3 19 protein-coding PW1|ZKSCAN22|ZNF904|ZSCAN24 paternally-expressed gene 3 protein|Kruppel-type zinc finger protein|zinc finger and SCAN domain-containing protein 24 287 0.03928 6.567 1 1 +5179 PENK proenkephalin 8 protein-coding PE|PENK-A proenkephalin-A|enkephalin A|peptide F|preproenkephalin 48 0.00657 2.971 1 1 +5184 PEPD peptidase D 19 protein-coding PROLIDASE xaa-Pro dipeptidase|X-Pro dipeptidase|aminoacyl-L-proline hydrolase|imidodipeptidase|proline dipeptidase|testicular tissue protein Li 138 27 0.003696 10.49 1 1 +5187 PER1 period circadian clock 1 17 protein-coding PER|RIGUI|hPER period circadian protein homolog 1|Period, drosophila, homolog of|circadian clock protein PERIOD 1|circadian pacemaker protein RIGUI|hPER1|period homolog 1 73 0.009992 10.29 1 1 +5188 GATB glutamyl-tRNA amidotransferase subunit B 4 protein-coding HSPC199|PET112|PET112L glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial|PET112 homolog|cytochrome c oxidase assembly factor PET112 homolog|cytochrome oxidase assembly factor PET112 homolog|glu-AdT subunit B|glutamyl-tRNA(Gln) amidotransferase, subunit B 35 0.004791 8.691 1 1 +5189 PEX1 peroxisomal biogenesis factor 1 7 protein-coding HMLR1|PBD1A|PBD1B|ZWS|ZWS1 peroxisome biogenesis factor 1|Zellweger syndrome|peroxin-1|peroxisome biogenesis disorder protein 1 82 0.01122 8.803 1 1 +5190 PEX6 peroxisomal biogenesis factor 6 6 protein-coding HMLR2|PAF-2|PAF2|PBD4A|PDB4B|PXAAA1 peroxisome biogenesis factor 6|peroxin-6|peroxisomal AAA-type ATPase 1|peroxisomal-type ATPase 1|peroxisome assembly factor 2 43 0.005886 9.618 1 1 +5191 PEX7 peroxisomal biogenesis factor 7 6 protein-coding PBD9B|PTS2R|RCDP1|RD peroxisomal biogenesis factor 7|PTS2 receptor|peroxin-7|peroxisomal PTS2 receptor|peroxisomal targeting signal 2 receptor|peroxisome targeting signal 2 receptor 19 0.002601 7.44 1 1 +5192 PEX10 peroxisomal biogenesis factor 10 1 protein-coding NALD|PBD6A|PBD6B|RNF69 peroxisome biogenesis factor 10|RING finger protein 69|peroxin 10|peroxisome assembly protein 10 16 0.00219 9.072 1 1 +5193 PEX12 peroxisomal biogenesis factor 12 17 protein-coding PAF-3|PBD3A peroxisome assembly protein 12|peroxin 12|peroxisome assembly factor 3 28 0.003832 7.783 1 1 +5194 PEX13 peroxisomal biogenesis factor 13 2 protein-coding NALD|PBD11A|PBD11B|ZWS peroxisome biogenesis factor 13|peroxin-13|peroxisomal membrane protein PEX13 28 0.003832 9.619 1 1 +5195 PEX14 peroxisomal biogenesis factor 14 1 protein-coding NAPP2|PBD13A|Pex14p|dJ734G22.2 peroxisomal membrane protein PEX14|NF-E2 associated polypeptide 2|PTS1 receptor docking protein|peroxin-14|peroxisomal membrane anchor protein PEX14|peroxisomal membrane anchor protein Pex14p 20 0.002737 8.956 1 1 +5196 PF4 platelet factor 4 4 protein-coding CXCL4|PF-4|SCYB4 platelet factor 4|C-X-C motif chemokine 4|chemokine (C-X-C motif) ligand 4|iroplact|oncostatin-A 9 0.001232 0.9887 1 1 +5197 PF4V1 platelet factor 4 variant 1 4 protein-coding CXCL4L1|CXCL4V1|PF4-ALT|PF4A|SCYB4V1 platelet factor 4 variant|C-X-C motif chemokine 4|PF4alt|PF4var1|platelet factor 4, variant 1 (PF4-like) 12 0.001642 0.9823 1 1 +5198 PFAS phosphoribosylformylglycinamidine synthase 17 protein-coding FGAMS|FGAR-AT|FGARAT|PURL phosphoribosylformylglycinamidine synthase|FGAM synthase|FGAR amidotransferase|formylglycinamide ribonucleotide amidotransferase|formylglycinamide ribotide amidotransferase|formylglycinamide ribotide synthetase 74 0.01013 9.081 1 1 +5199 CFP complement factor properdin X protein-coding BFD|PFC|PFD|PROPERDIN properdin|complement factor P|properdin P factor, complement 34 0.004654 5.013 1 1 +5201 PFDN1 prefoldin subunit 1 5 protein-coding PDF|PFD1 prefoldin subunit 1|prefoldin 1 7 0.0009581 10.24 1 1 +5202 PFDN2 prefoldin subunit 2 1 protein-coding PFD2 prefoldin subunit 2|prefoldin 2 14 0.001916 9.962 1 1 +5203 PFDN4 prefoldin subunit 4 20 protein-coding C1|PFD4 prefoldin subunit 4|prefoldin 4|protein C-1 11 0.001506 8.504 1 1 +5204 PFDN5 prefoldin subunit 5 12 protein-coding MM-1|MM1|PFD5 prefoldin subunit 5|c-myc binding protein|myc modulator-1 14 0.001916 12.1 1 1 +5205 ATP8B1 ATPase phospholipid transporting 8B1 18 protein-coding ATPIC|BRIC|FIC1|ICP1|PFIC|PFIC1 phospholipid-transporting ATPase IC|ATPase, aminophospholipid transporter, class I, type 8B, member 1|ATPase, class I, type 8B, member 1|E1-E2 ATPase|P4-ATPase flippase complex alpha subunit ATP8B1|familial intrahepatic cholestasis type 1|probable phospholipid-transporting ATPase IC 87 0.01191 9.519 1 1 +5207 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 X protein-coding F6PK|HL2K|PFRX 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 47 0.006433 2.216 1 1 +5208 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 1 protein-coding PFK-2/FBPase-2 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 36 0.004927 9.271 1 1 +5209 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 10 protein-coding IPFK2|PFK2|iPFK-2 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 3|6-phosphofructo-2-kinase/ fructose-2,6-bisphosphatase|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|inducible 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase|renal carcinoma antigen NY-REN-56 37 0.005064 10.5 1 1 +5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 3 protein-coding - 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 27 0.003696 7.777 1 1 +5211 PFKL phosphofructokinase, liver type 21 protein-coding ATP-PFK|PFK-B|PFK-L ATP-dependent 6-phosphofructokinase, liver type|6-phosphofructokinase type B|6-phosphofructokinase, liver type|ATP-PFK|liver-type 1-phosphofructokinase|phosphofructo-1-kinase isozyme B|phosphohexokinase 46 0.006296 11.95 1 1 +5212 VIT vitrin 2 protein-coding - vitrin 82 0.01122 2.551 1 1 +5213 PFKM phosphofructokinase, muscle 12 protein-coding ATP-PFK|GSD7|PFK-1|PFK1|PFKA|PFKX|PPP1R122 ATP-dependent 6-phosphofructokinase, muscle type|6-phosphofructo-1-kinase|6-phosphofructokinase type A|6-phosphofructokinase, muscle type|ATP-PFK|PFK-A|phosphofructo-1-kinase isozyme A|phosphofructokinase 1|phosphofructokinase, polypeptide X|phosphofructokinase-M|phosphohexokinase|protein phosphatase 1, regulatory subunit 122 45 0.006159 10.15 1 1 +5214 PFKP phosphofructokinase, platelet 10 protein-coding ATP-PFK|PFK-C|PFK-P|PFKF ATP-dependent 6-phosphofructokinase, platelet type|6-phosphofructokinase type C|6-phosphofructokinase, platelet type|phosphofructo-1-kinase isozyme C|phosphofructokinase 1|phosphohexokinase 68 0.009307 10.88 1 1 +5216 PFN1 profilin 1 17 protein-coding ALS18 profilin-1|epididymis tissue protein Li 184a|profilin I 10 0.001369 13.48 1 1 +5217 PFN2 profilin 2 3 protein-coding D3S1319E|PFL profilin-2|profilin II 11 0.001506 10.86 1 1 +5218 CDK14 cyclin dependent kinase 14 7 protein-coding PFTAIRE1|PFTK1 cyclin-dependent kinase 14|PFTAIRE protein kinase 1|cell division protein kinase 14|serine/threonine-protein kinase PFTAIRE-1 55 0.007528 8.782 1 1 +5222 PGA5 pepsinogen 5, group I (pepsinogen A) 11 protein-coding Pg5 pepsin A-5|pepsin A|pepsinogen A5|pepsinogen-5 15 0.002053 0.8872 1 1 +5223 PGAM1 phosphoglycerate mutase 1 10 protein-coding HEL-S-35|PGAM-B|PGAMA phosphoglycerate mutase 1|BPG-dependent PGAM 1|epididymis secretory protein Li 35|phosphoglycerate mutase 1 (brain)|phosphoglycerate mutase A, nonmuscle form|phosphoglycerate mutase isozyme B 11 0.001506 12 1 1 +5224 PGAM2 phosphoglycerate mutase 2 7 protein-coding GSD10|PGAM-M|PGAMM phosphoglycerate mutase 2|BPG-dependent PGAM 2|muscle-specific phosphoglycerate mutase|phosphoglycerate mutase 2 (muscle)|phosphoglycerate mutase isozyme M 22 0.003011 5.42 1 1 +5225 PGC progastricsin 6 protein-coding PEPC|PGII gastricsin|pepsin C|pepsinogen C|pepsinogen group II|preprogastricsin|progastricsin (pepsinogen C) 27 0.003696 2.76 1 1 +5226 PGD phosphogluconate dehydrogenase 1 protein-coding 6PGD 6-phosphogluconate dehydrogenase, decarboxylating 33 0.004517 11.4 1 1 +5228 PGF placental growth factor 14 protein-coding D12S1900|PGFL|PIGF|PLGF|PlGF-2|SHGC-10760 placenta growth factor|placental growth factor, vascular endothelial growth factor-related protein 14 0.001916 8.112 1 1 +5229 PGGT1B protein geranylgeranyltransferase type I subunit beta 5 protein-coding BGGI|GGTI geranylgeranyl transferase type-1 subunit beta|CTC-428G20.3|GGTase-I-beta|geranylgeranyl transferase type I subunit beta|geranylgeranyltransferase type I beta subunit|protein geranylgeranyltransferase type I, beta subunit|type I protein geranyl-geranyltransferase subunit beta 21 0.002874 8.417 1 1 +5230 PGK1 phosphoglycerate kinase 1 X protein-coding HEL-S-68p|MIG10|PGKA phosphoglycerate kinase 1|PRP 2|cell migration-inducing gene 10 protein|epididymis secretory sperm binding protein Li 68p|primer recognition protein 2 32 0.00438 13.11 1 1 +5232 PGK2 phosphoglycerate kinase 2 6 protein-coding HEL-S-272|PGKB|PGKPS|dJ417L20.2 phosphoglycerate kinase 2|epididymis secretory protein Li 272|phosphoglycerate kinase autosomal pseudogene|phosphoglycerate kinase, testis specific|testicular tissue protein Li 139 62 0.008486 0.2412 1 1 +5236 PGM1 phosphoglucomutase 1 1 protein-coding CDG1T|GSD14 phosphoglucomutase-1|PGM 1|glucose phosphomutase 1 33 0.004517 10.53 1 1 +5238 PGM3 phosphoglucomutase 3 6 protein-coding AGM1|IMD23|PAGM|PGM 3 phosphoacetylglucosamine mutase|N-acetylglucosamine-phosphate mutase 1|acetylglucosamine phosphomutase 31 0.004243 8.736 1 1 +5239 PGM5 phosphoglucomutase 5 9 protein-coding PGMRP phosphoglucomutase-like protein 5|PGM-RP|aciculin|phosphoglucomutase-related protein 88 0.01204 6.913 1 1 +5241 PGR progesterone receptor 11 protein-coding NR3C3|PR progesterone receptor|nuclear receptor subfamily 3 group C member 3 94 0.01287 5.269 1 1 +5243 ABCB1 ATP binding cassette subfamily B member 1 7 protein-coding ABC20|CD243|CLCS|GP170|MDR1|P-GP|PGY1 multidrug resistance protein 1|ATP-binding cassette, sub-family B (MDR/TAP), member 1|P glycoprotein|P-glycoprotein 1|colchicin sensitivity|doxorubicin resistance 176 0.02409 6.787 1 1 +5244 ABCB4 ATP binding cassette subfamily B member 4 7 protein-coding ABC21|GBD1|ICP3|MDR2|MDR2/3|MDR3|PFIC-3|PGY3 phosphatidylcholine translocator ABCB4|ATP-binding cassette sub-family B member 4|ATP-binding cassette, sub-family B (MDR/TAP), member 4|P-glycoprotein 3|P-glycoprotein-3/multiple drug resistance-3|multidrug resistance protein 3|multiple drug resistance 3 134 0.01834 4.769 1 1 +5245 PHB prohibitin 17 protein-coding HEL-215|HEL-S-54e|PHB1 prohibitin|epididymis luminal protein 215|epididymis secretory sperm binding protein Li 54e 16 0.00219 11.66 1 1 +5250 SLC25A3 solute carrier family 25 member 3 12 protein-coding OK/SW-cl.48|PHC|PTP phosphate carrier protein, mitochondrial|phosphate transport protein|solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 25 0.003422 12.83 1 1 +5251 PHEX phosphate regulating endopeptidase homolog, X-linked X protein-coding HPDR|HPDR1|HYP|HYP1|LXHR|PEX|XLH phosphate-regulating neutral endopeptidase|X-linked hypophosphatemia protein|metalloendopeptidase homolog PEX|phosphate regulating gene with homologies to endopeptidases on the X chromosome (hypophosphatemia, vitamin D resistant rickets)|vitamin D-resistant hypophosphatemic rickets protein 76 0.0104 3.06 1 1 +5252 PHF1 PHD finger protein 1 6 protein-coding MTF2L2|PCL1|PHF2|TDRD19C|hPHF1 PHD finger protein 1|hPCl1|polycomb-like protein 1|testicular tissue protein Li 140|tudor domain containing 19C 42 0.005749 10.15 1 1 +5253 PHF2 PHD finger protein 2 9 protein-coding CENP-35|GRC5|JHDM1E lysine-specific demethylase PHF2|centromere protein 35|jumonji C domain-containing histone demethylase 1E 107 0.01465 10.11 1 1 +5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 X protein-coding PHKA phosphorylase b kinase regulatory subunit alpha, skeletal muscle isoform|phosphorylase kinase alpha M subunit|phosphorylase kinase, alpha 1 (muscle)|phosphorylase kinase, alpha 1 (muscle), muscle glycogenosis 113 0.01547 8.399 1 1 +5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 X protein-coding GSD9A|PHK|PYK|PYKL|XLG|XLG2 phosphorylase b kinase regulatory subunit alpha, liver isoform|phosphorylase kinase alpha L subunit|phosphorylase kinase alpha-subunit|phosphorylase kinase, alpha 2 (liver) 104 0.01423 9.28 1 1 +5257 PHKB phosphorylase kinase regulatory subunit beta 16 protein-coding - phosphorylase b kinase regulatory subunit beta|phosphorylase kinase beta-subunit|phosphorylase kinase subunit beta|phosphorylase kinase, beta 76 0.0104 10.52 1 1 +5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 7 protein-coding PHKG phosphorylase b kinase gamma catalytic chain, skeletal muscle/heart isoform|PHK-gamma-M|phosphorylase b kinase gamma catalytic chain, skeletal muscle isoform|phosphorylase kinase gamma|phosphorylase kinase gamma subunit 1|phosphorylase kinase subunit gamma-1|phosphorylase kinase, gamma 1 (muscle)|serine/threonine-protein kinase PHKG1 23 0.003148 3.296 1 1 +5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 16 protein-coding GSD9C phosphorylase b kinase gamma catalytic chain, liver/testis isoform|PHK-gamma-LT|PHK-gamma-T|PSK-C3|Phosphorylase kinase, gamma 2 (testis/liver)|phosphorylase b kinase gamma catalytic chain, testis/liver isoform|phosphorylase kinase gamma subunit 2|phosphorylase kinase subunit gamma-2|phosphorylase kinase, gamma 2 (testis)|serine/threonine-protein kinase PHKG2 30 0.004106 9.252 1 1 +5264 PHYH phytanoyl-CoA 2-hydroxylase 10 protein-coding LN1|LNAP1|PAHX|PHYH1|RD phytanoyl-CoA dioxygenase, peroxisomal|phytanic acid oxidase|phytanoil-CoA alpha hydroxylase|phytanoyl-CoA 2 oxoglutarate dioxygenase|phytanoyl-CoA alpha-hydroxylase 28 0.003832 9.297 1 1 +5265 SERPINA1 serpin family A member 1 14 protein-coding A1A|A1AT|AAT|PI|PI1|PRO2275|alpha1AT alpha-1-antitrypsin|alpha-1 antitrypsin|alpha-1 protease inhibitor|alpha-1-antiproteinase|alpha-1-antitrypsin null|protease inhibitor 1 (anti-elastase), alpha-1-antitrypsin|serine (or cysteine) proteinase inhibitor, clade A, member 1|serpin A1|serpin peptidase inhibitor clade A member 1|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 1 37 0.005064 11.02 1 1 +5266 PI3 peptidase inhibitor 3 20 protein-coding ESI|SKALP|WAP3|WFDC14|cementoin elafin|PI-3|WAP four-disulfide core domain 14|WAP four-disulfide core domain protein 14|elastase-specific inhibitor|peptidase inhibitor 3, skin-derived|pre-elafin|protease inhibitor 3, skin-derived (SKALP)|protease inhibitor WAP3|skin-derived antileukoproteinase|trappin-2 14 0.001916 5.117 1 1 +5267 SERPINA4 serpin family A member 4 14 protein-coding KAL|KLST|KST|PI-4|PI4|kallistatin kallistatin|kallikrein inhibitor|peptidase inhibitor 4|protease inhibitor 4 (kallistatin)|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4|serpin A4|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4|sserpin family A member 4|testicular secretory protein Li 22 54 0.007391 2.134 1 1 +5268 SERPINB5 serpin family B member 5 18 protein-coding PI5|maspin serpin B5|PI-5|peptidase inhibitor 5|protease inhibitor 5 (maspin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 5|serpin peptidase inhibitor, clade B (ovalbumin), member 5 32 0.00438 5.636 1 1 +5269 SERPINB6 serpin family B member 6 6 protein-coding CAP|DFNB91|MSTP057|PI-6|PI6|PTI|SPI3 serpin B6|cytoplasmic antiproteinase|protease inhibitor 6 (placental thrombin inhibitor)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 6|serpin peptidase inhibitor, clade B (ovalbumin), member 6 30 0.004106 11.1 1 1 +5270 SERPINE2 serpin family E member 2 2 protein-coding GDN|GDNPF|PI-7|PI7|PN-1|PN1|PNI glia-derived nexin|glial-derived neurite promoting factor|peptidase inhibitor 7|protease nexin I|serpin E2|serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 36 0.004927 9.918 1 1 +5271 SERPINB8 serpin family B member 8 18 protein-coding CAP2|PI8|PSS5 serpin B8|PI-8|cytoplasmic antiproteinase 2|peptidase inhibitor 8|protease inhibitor 8 (ovalbumin type)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 8|serpin peptidase inhibitor, clade B (ovalbumin), member 8 42 0.005749 7.929 1 1 +5272 SERPINB9 serpin family B member 9 6 protein-coding CAP-3|CAP3|PI-9|PI9 serpin B9|cytoplasmic antiproteinase 3|peptidase inhibitor 9|protease inhibitor 9 (ovalbumin type)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 9|serpin peptidase inhibitor, clade B (ovalbumin), member 9|serpin peptidase inhibitor, clade B, member 9|testicular tissue protein Li 180 25 0.003422 8.514 1 1 +5273 SERPINB10 serpin family B member 10 18 protein-coding PI-10|PI10 serpin B10|bomapin|peptidase inhibitor 10|protease inhibitor 10 (ovalbumin type, bomapin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 10|serpin peptidase inhibitor, clade B (ovalbumin), member 10 40 0.005475 0.4339 1 1 +5274 SERPINI1 serpin family I member 1 3 protein-coding PI12|neuroserpin neuroserpin|PI-12|peptidase inhibitor 12|serine (or cysteine) proteinase inhibitor, clade I (neuroserpin), member 1|serpin I1|serpin peptidase inhibitor clade I member 1|serpin peptidase inhibitor, clade I (neuroserpin), member 1 41 0.005612 7.147 1 1 +5275 SERPINB13 serpin family B member 13 18 protein-coding HSHUR7SEQ|HUR7|PI13|headpin serpin B13|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 peptidase inhibitor, clade B (ovalbumin), member 13 46 0.006296 2.023 1 1 +5276 SERPINI2 serpin family I member 2 3 protein-coding MEPI|PANCPIN|PI14|TSA2004 serpin I2|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 peptidase inhibitor, clade I (pancpin), member 2 64 0.00876 0.8925 1 1 +5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A X protein-coding GPI3|MCAHS2|PIG-A|PNH1 phosphatidylinositol N-acetylglucosaminyltransferase subunit A|GLCNAC-PI synthesis protein|GPI anchor biosynthesis|class A GlcNAc-inositol phospholipid assembly protein|phosphatidylinositol-glycan biosynthesis, class A protein 31 0.004243 7.998 1 1 +5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C 1 protein-coding GPI2 phosphatidylinositol N-acetylglucosaminyltransferase subunit C|PIG-C|phosphatidylinositol-glycan biosynthesis, class C protein 29 0.003969 9.416 1 1 +5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F 2 protein-coding - phosphatidylinositol-glycan biosynthesis class F protein|GPI11 homolog|PIG-F 9 0.001232 8.199 1 1 +5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H 14 protein-coding GPI-H phosphatidylinositol N-acetylglucosaminyltransferase subunit H|PIG-H|phosphatidylinositol-glycan biosynthesis, class H protein 3 0.0004106 8.464 1 1 +5284 PIGR polymeric immunoglobulin receptor 1 protein-coding - polymeric immunoglobulin receptor|hepatocellular carcinoma associated protein TB6|poly-Ig receptor 51 0.006981 7.194 1 1 +5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha 11 protein-coding CPK|PI3-K-C2(ALPHA)|PI3-K-C2A|PI3K-C2-alpha|PI3K-C2alpha phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit alpha|C2-containing phosphatidylinositol kinase|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 92 0.01259 10.13 1 1 +5287 PIK3C2B phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta 1 protein-coding C2-PI3K phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit beta|PI3K-C2-beta|PI3K-C2beta|PTDINS-3-kinase C2 beta|phosphatidylinositol 3-kinase C2 domain-containing beta polypeptide|phosphoinositide 3-kinase-C2-beta|phosphoinositide-3-kinase, class 2, beta polypeptide|ptdIns-3-kinase C2 subunit beta 140 0.01916 9.443 1 1 +5288 PIK3C2G phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma 12 protein-coding PI3K-C2-gamma|PI3K-C2GAMMA phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit gamma|PTDINS-3-kinase C2 gamma|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing gamma polypeptide|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing subunit gamma|phosphoinositide-3-kinase, class 2, gamma polypeptide 119 0.01629 2.447 1 1 +5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 18 protein-coding VPS34|Vps34|hVps34 phosphatidylinositol 3-kinase catalytic subunit type 3|PI3-kinase type 3|PI3K type 3|PtdIns-3-kinase type 3|phosphatidylinositol 3-kinase p100 subunit|phosphoinositide-3-kinase, class 3 76 0.0104 8.93 1 1 +5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha 3 protein-coding CLOVE|CWS5|MCAP|MCM|MCMTC|PI3K|PI3K-alpha|p110-alpha phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit alpha isoform|PI3-kinase p110 subunit 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|phosphoinositide-3-kinase, catalytic, alpha polypeptide|ptdIns-3-kinase subunit p110-alpha|serine/threonine protein kinase PIK3CA 853 0.1168 8.585 1 1 +5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta 3 protein-coding P110BETA|PI3K|PI3KBETA|PIK3C1 phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit beta isoform|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|phosphoinositide-3-kinase, catalytic, beta polypeptide|ptdIns-3-kinase subunit beta|ptdIns-3-kinase subunit p110-beta 86 0.01177 9.805 1 1 +5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase 6 protein-coding PIM serine/threonine-protein kinase pim-1|Oncogene PIM1|pim-1 kinase 44 kDa isoform|pim-1 oncogene (proviral integration site 1)|proto-oncogene serine/threonine-protein kinase pim-1 25 0.003422 9.811 1 1 +5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta 1 protein-coding APDS|IMD14|P110DELTA|PI3K|p110D phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit delta isoform|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|phosphoinositide-3-kinase C|phosphoinositide-3-kinase, catalytic, delta polypeptide variant p37delta|ptdIns-3-kinase subunit p110-delta 75 0.01027 8.428 1 1 +5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma 7 protein-coding PI3CG|PI3K|PI3Kgamma|PIK3|p110gamma|p120-PI3K phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit gamma isoform|1-phosphatidylinositol 3-kinase|PI3-kinase subunit gamma|phosphatidylinositol 3 kinase gamma, p110 gamma|phosphatidylinositol 3-kinase catalytic 110-kD gamma|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|ptdIns-3-kinase subunit gamma|ptdIns-3-kinase subunit p110-gamma|serine/threonine protein kinase PIK3CG 141 0.0193 5.655 1 1 +5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 5 protein-coding AGM7|GRB1|IMD36|p85|p85-ALPHA phosphatidylinositol 3-kinase regulatory subunit alpha|PI3-kinase subunit p85-alpha|PI3K regulatory subunit alpha|phosphatidylinositol 3-kinase 85 kDa regulatory subunit alpha|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 1 (p85 alpha)|phosphatidylinositol 3-kinase-associated p-85 alpha|phosphoinositide-3-kinase regulatory subunit|phosphoinositide-3-kinase regulatory subunit alpha|phosphoinositide-3-kinase, regulatory subunit 1 (alpha)|ptdIns-3-kinase regulatory subunit alpha 114 0.0156 10.52 1 1 +5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 19 protein-coding MPPH|MPPH1|P85B|p85|p85-BETA phosphatidylinositol 3-kinase regulatory subunit beta|PI3-kinase subunit p85-beta|PI3K regulatory subunit beta|phosphatidylinositol 3-kinase 85 kDa regulatory subunit beta|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 2 (p85 beta)|phosphoinositide-3-kinase regulatory subunit beta|phosphoinositide-3-kinase, regulatory subunit 2 (beta)|ptdIns-3-kinase regulatory subunit p85-beta 48 0.00657 11.03 1 1 +5297 PI4KA phosphatidylinositol 4-kinase alpha 22 protein-coding PI4K-ALPHA|PIK4CA|PMGYCHA|pi4K230 phosphatidylinositol 4-kinase alpha|PI4-kinase alpha|phosphatidylinositol 4-kinase 230|phosphatidylinositol 4-kinase, catalytic, alpha|phosphatidylinositol 4-kinase, type III, alpha|ptdIns-4-kinase alpha|testicular secretory protein Li 35 107 0.01465 10.83 1 1 +5298 PI4KB phosphatidylinositol 4-kinase beta 1 protein-coding NPIK|PI4K-BETA|PI4K92|PI4KBETA|PI4KIIIBETA|PIK4CB phosphatidylinositol 4-kinase beta|PtdIns 4-kinase beta|phosphatidylinositol 4-kinase, catalytic, beta|phosphatidylinositol 4-kinase, wortmannin-sensitive|type III phosphatidylinositol 4-kinase beta 55 0.007528 10.96 1 1 +5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 19 protein-coding DOD|UBL5 peptidyl-prolyl cis-trans isomerase NIMA-interacting 1|PPIase Pin1|protein (peptidyl-prolyl cis/trans isomerase) NIMA-interacting 1|rotamase Pin1 11 0.001506 9.749 1 1 +5301 PIN1P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 pseudogene 1 1 pseudo PIN1L peptidylprolyl cis/trans isomerase, NIMA-interacting 1-like (pseudogene)|protein (peptidylprolyl cis/trans isomerase) NIMA-interacting 1-like (pseudogene) 7 0.0009581 0.9301 1 1 +5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 X protein-coding EPVH|PAR14|PAR17 peptidyl-prolyl cis-trans isomerase NIMA-interacting 4|PPIase PIN4|eukaryotic parvulin homolog|hEPVH|hPar14|hPar17|parvulin|parvulin-14|parvulin-17|peptidyl-prolyl cis-trans isomerase Pin4|peptidyl-prolyl cis/trans isomerase EPVH|protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin)|rotamase PIN4 8 0.001095 8.411 1 1 +5304 PIP prolactin induced protein 7 protein-coding GCDFP-15|GCDFP15|GPIP4 prolactin-inducible protein|SABP|gross cystic disease fluid protein 15|secretory actin-binding protein 21 0.002874 2.139 1 1 +5305 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase type 2 alpha 10 protein-coding PI5P4KA|PIP5K2A|PIP5KII-alpha|PIP5KIIA|PIPK phosphatidylinositol 5-phosphate 4-kinase type-2 alpha|1-phosphatidylinositol 5-phosphate 4-kinase 2-alpha|1-phosphatidylinositol-4-phosphate kinase|1-phosphatidylinositol-4-phosphate-5-kinase|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-4-phosphate 5-kinase, type II, 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 45 0.006159 9.602 1 1 +5306 PITPNA phosphatidylinositol transfer protein alpha 17 protein-coding HEL-S-36|PI-TPalpha|PITPN|VIB1A phosphatidylinositol transfer protein alpha isoform|PI-TP-alpha|epididymis secretory protein Li 36|ptdIns transfer protein alpha|ptdInsTP alpha 15 0.002053 10.98 1 1 +5307 PITX1 paired like homeodomain 1 5 protein-coding BFT|CCF|LBNBG|POTX|PTX1 pituitary homeobox 1|hindlimb expressed homeobox protein backfoot|homeobox protein PITX1|paired-like homeodomain transcription factor 1|pituitary homeo box 1|pituitary otx-related factor 20 0.002737 6.756 1 1 +5308 PITX2 paired like homeodomain 2 4 protein-coding ARP1|Brx1|IDG2|IGDS|IGDS2|IHG2|IRID2|Otlx2|PTX2|RGS|RIEG|RIEG1|RS pituitary homeobox 2|ALL1-responsive protein ARP1|all1-responsive gene 1|homeobox protein PITX2|paired-like homeodomain transcription factor 2|rieg bicoid-related homeobox transcription factor 1|solurshin 46 0.006296 3.661 1 1 +5309 PITX3 paired like homeodomain 3 10 protein-coding ASMD|ASOD|CTPP4|CTRCT11|PTX3 pituitary homeobox 3|homeobox protein PITX3 16 0.00219 0.9892 1 1 +5310 PKD1 polycystin 1, transient receptor potential channel interacting 16 protein-coding PBP|Pc-1|TRPP1 polycystin-1|autosomal dominant polycystic kidney disease 1 protein|polycystic kidney disease 1 (autosomal dominant)|polycystic kidney disease-associated protein|transient receptor potential cation channel, subfamily P, member 1 191 0.02614 10.62 1 1 +5311 PKD2 polycystin 2, transient receptor potential cation channel 4 protein-coding APKD2|PC2|PKD4|Pc-2|TRPP2 polycystin-2|R48321|autosomal dominant polycystic kidney disease type II protein|polycystic kidney disease 2 (autosomal dominant)|polycystwin|transient receptor potential cation channel subfamily P member 2 65 0.008897 9.191 1 1 +5313 PKLR pyruvate kinase, liver and RBC 1 protein-coding PK1|PKL|PKR|PKRL|RPK pyruvate kinase PKLR|R-type/L-type pyruvate kinase|pyruvate kinase 1|pyruvate kinase isozyme R/L|pyruvate kinase isozymes L/R|pyruvate kinase isozymes R/L|pyruvate kinase type L|pyruvate kinase, liver and blood cell|red cell/liver pyruvate kinase 64 0.00876 2.213 1 1 +5314 PKHD1 polycystic kidney and hepatic disease 1 (autosomal recessive) 6 protein-coding ARPKD|FCYT|TIGM1 fibrocystin|TIG multiple domains 1|polycystic kidney and hepatic disease 1 protein|polyductin|tigmin 359 0.04914 3.323 1 1 +5315 PKM pyruvate kinase, muscle 15 protein-coding CTHBP|HEL-S-30|OIP3|PK3|PKM2|TCB|THBP1 pyruvate kinase PKM|OIP-3|OPA-interacting protein 3|PK, muscle type|cytosolic thyroid hormone-binding protein|epididymis secretory protein Li 30|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 37 0.005064 14.5 1 1 +5316 PKNOX1 PBX/knotted 1 homeobox 1 21 protein-coding PREP1|pkonx1c homeobox protein PKNOX1|PBX/knotted homeobox 1|Pbx regulating protein-1|homeobox protein PREP-1|human homeobox-containing protein 37 0.005064 8.897 1 1 +5317 PKP1 plakophilin 1 1 protein-coding B6P plakophilin-1|band 6 protein 44 0.006022 7.077 1 1 +5318 PKP2 plakophilin 2 12 protein-coding ARVD9 plakophilin-2 95 0.013 7.859 1 1 +5319 PLA2G1B phospholipase A2 group IB 12 protein-coding PLA2|PLA2A|PPLA2 phospholipase A2|phosphatidylcholine 2-acylhydrolase 1B|phospholipase A2, group IB (pancreas) 18 0.002464 1.372 1 1 +5320 PLA2G2A phospholipase A2 group IIA 1 protein-coding MOM1|PLA2|PLA2B|PLA2L|PLA2S|PLAS1|sPLA2 phospholipase A2, membrane associated|GIIC sPLA2|NPS-PLA2|group IIA phospholipase A2|non-pancreatic secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2A|phospholipase A2, group IIA (platelets, synovial fluid) 20 0.002737 5.454 1 1 +5321 PLA2G4A phospholipase A2 group IVA 1 protein-coding PLA2G4|cPLA2|cPLA2-alpha cytosolic phospholipase A2|calcium-dependent phospholipid-binding protein|lysophospholipase|phosphatidylcholine 2-acylhydrolase|phospholipase A2, group IVA (cytosolic, calcium-dependent) 69 0.009444 6.792 1 1 +5322 PLA2G5 phospholipase A2 group V 1 protein-coding FRFB|GV-PLA2|PLA2-10|hVPLA(2) calcium-dependent phospholipase A2|Ca2+-dependent phospholipase A2|phosphatidylcholine 2-acylhydrolase 5 14 0.001916 4.149 1 1 +5324 PLAG1 PLAG1 zinc finger 8 protein-coding PSA|SGPA|ZNF912 zinc finger protein PLAG1|COL1A2/PLAG1 fusion|HAS2/PLAG1 fusion|pleiomorphic adenoma gene 1 47 0.006433 6.002 1 1 +5325 PLAGL1 PLAG1 like zinc finger 1 6 protein-coding LOT1|ZAC|ZAC1 zinc finger protein PLAGL1|PLAG-like 1|lost on transformation 1|pleiomorphic adenoma gene-like 1|tumor suppressor ZAC 15 0.002053 7.412 1 1 +5326 PLAGL2 PLAG1 like zinc finger 2 20 protein-coding ZNF900 zinc finger protein PLAGL2|C2H2-type zinc finger protein|pleiomorphic adenoma gene-like 2|pleiomorphic adenoma-like protein 2 40 0.005475 9.414 1 1 +5327 PLAT plasminogen activator, tissue type 8 protein-coding T-PA|TPA tissue-type plasminogen activator|alteplase|plasminogen/activator kringle|reteplase|t-plasminogen activator 54 0.007391 9.998 1 1 +5328 PLAU plasminogen activator, urokinase 10 protein-coding ATF|BDPLT5|QPD|UPA|URK|u-PA urokinase-type plasminogen activator|U-plasminogen activator|plasminogen activator, urinary 38 0.005201 9.895 1 1 +5329 PLAUR plasminogen activator, urokinase receptor 19 protein-coding CD87|U-PAR|UPAR|URKR urokinase plasminogen activator surface receptor|monocyte activation antigen Mo3|u-plasminogen activator receptor form 2|urokinase-type plasminogen activator (uPA) receptor 24 0.003285 8.964 1 1 +5330 PLCB2 phospholipase C beta 2 15 protein-coding PLC-beta-2 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-2|phosphoinositide phospholipase C-beta-2 70 0.009581 7.877 1 1 +5331 PLCB3 phospholipase C beta 3 11 protein-coding - 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-3|PLC beta 3|phosphoinositide phospholipase C-beta-3|phospholipase C, beta 3 (phosphatidylinositol-specific) 77 0.01054 9.948 1 1 +5332 PLCB4 phospholipase C beta 4 20 protein-coding ARCND2|PI-PLC 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-4|1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|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 144 0.01971 7.376 1 1 +5333 PLCD1 phospholipase C delta 1 3 protein-coding NDNC3|PLC-III 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-1|PLC-delta-1|phosphoinositide phospholipase C-delta-1|phospholipase C-III 43 0.005886 8.649 1 1 +5334 PLCL1 phospholipase C like 1 2 protein-coding PLCE|PLCL|PLDL1|PPP1R127|PRIP inactive phospholipase C-like protein 1|PLC-L1|phospholipase C, epsilon|phospholipase C-deleted in lung carcinoma|phospholipase C-related but catalytically inactive protein|protein phosphatase 1, regulatory subunit 127 149 0.02039 6.645 1 1 +5335 PLCG1 phospholipase C gamma 1 20 protein-coding NCKAP3|PLC-II|PLC1|PLC148|PLCgamma1 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1|1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|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|triphosphoinositide phosphodiesterase 95 0.013 10.69 1 1 +5336 PLCG2 phospholipase C gamma 2 16 protein-coding APLAID|FCAS3|PLC-IV|PLC-gamma-2 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-2|phosphoinositide phospholipase C-gamma-2|phospholipase C, gamma 2 (phosphatidylinositol-specific)|phospholipase C-IV 102 0.01396 8.273 1 1 +5337 PLD1 phospholipase D1 3 protein-coding - phospholipase D1|choline phosphatase 1|phosphatidylcholine-hydrolyzing phospholipase D1|phospholipase D1, phosphatidylcholine-specific 102 0.01396 8.38 1 1 +5338 PLD2 phospholipase D2 17 protein-coding - phospholipase D2|PLD1C|choline phosphatase 2|hPLD2|phosphatidylcholine-hydrolyzing phospholipase D2 50 0.006844 9.377 1 1 +5339 PLEC plectin 8 protein-coding EBS1|EBSMD|EBSND|EBSO|EBSOG|EBSPA|HD1|LGMD2Q|PCN|PLEC1|PLEC1b|PLTN plectin|hemidesmosomal protein 1|plectin 1, intermediate filament binding protein 500kDa 324 0.04435 13.25 1 1 +5340 PLG plasminogen 6 protein-coding - plasminogen|plasmin 111 0.01519 1.168 1 1 +5341 PLEK pleckstrin 2 protein-coding P47 pleckstrin|platelet 47 kDa protein 42 0.005749 8.193 1 1 +5342 PLGLB2 plasminogen-like B2 2 protein-coding PLGP1 plasminogen-like protein B|plasminogen pseudogene 1|plasminogen-related protein B|type B plasminogen related 5.113 0 1 +5343 PLGLB1 plasminogen-like B1 2 protein-coding PLGL|PLGP1|PRGB|PRP-B plasminogen-like protein B|plasminogen-related protein B|type B plasminogen related 2 0.0002737 1 0 +5345 SERPINF2 serpin family F member 2 17 protein-coding A2AP|AAP|ALPHA-2-PI|API|PLI alpha-2-antiplasmin|alpha-2-AP|alpha-2-plasmin inhibitor|serine (or cysteine) proteinase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2|serpin F2|serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2 29 0.003969 6.754 1 1 +5346 PLIN1 perilipin 1 15 protein-coding FPLD4|PERI|PLIN perilipin-1|lipid droplet-associated protein 21 0.002874 4.013 1 1 +5347 PLK1 polo like kinase 1 16 protein-coding PLK|STPK13 serine/threonine-protein kinase PLK1|PLK-1|cell cycle regulated protein kinase|polo (Drosophia)-like kinase|polo like kinase|serine/threonine-protein kinase 13 50 0.006844 8.436 1 1 +5348 FXYD1 FXYD domain containing ion transport regulator 1 19 protein-coding PLM phospholemman 4 0.0005475 4.898 1 1 +5349 FXYD3 FXYD domain containing ion transport regulator 3 19 protein-coding MAT8|PLML FXYD domain-containing ion transport regulator 3|chloride conductance inducer protein Mat-8|mammary tumor 8 kDa protein|phospholemman-like protein 14 0.001916 8.235 1 1 +5350 PLN phospholamban 6 protein-coding CMD1P|CMH18|PLB cardiac phospholamban 4 0.0005475 5.5 1 1 +5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 1 protein-coding EDS6|LH|LH1|LLH|PLOD procollagen-lysine,2-oxoglutarate 5-dioxygenase 1|lysine hydroxylase|lysyl hydroxlase 1|procollagen-lysine 1, 2-oxoglutarate 5-dioxygenase 1 43 0.005886 11.73 1 1 +5352 PLOD2 procollagen-lysine,2-oxoglutarate 5-dioxygenase 2 3 protein-coding BRKS2|LH2|TLH procollagen-lysine,2-oxoglutarate 5-dioxygenase 2|lysine hydroxylase 2|lysyl hydroxlase 2|lysyl hydroxylase 2|procollagen-lysine 5-dioxygenase|telopeptide lysyl hydroxylase 68 0.009307 10.48 1 1 +5354 PLP1 proteolipid protein 1 X protein-coding GPM6C|HLD1|MMPL|PLP|PLP/DM20|PMD|SPG2 myelin proteolipid protein|lipophilin|major myelin proteolipid protein 29 0.003969 4.332 1 1 +5355 PLP2 proteolipid protein 2 X protein-coding A4|A4LSB proteolipid protein 2|A4 differentiation-dependent protein|differentiation-dependent protein A4|intestinal membrane A4 protein|proteolipid protein 2 (colonic epithelium-enriched) 16 0.00219 10.88 1 1 +5356 PLRG1 pleiotropic regulator 1 4 protein-coding Cwc1|PRL1|PRP46|PRPF46|TANGO4 pleiotropic regulator 1|pleiotropic regulator 1 (PRL1 homolog, Arabidopsis)|transport and golgi organization 4 homolog 36 0.004927 9.686 1 1 +5357 PLS1 plastin 1 3 protein-coding - plastin-1|I plastin|fimbrin|intestine specific plastin 45 0.006159 8.089 1 1 +5358 PLS3 plastin 3 X protein-coding BMND18|T-plastin plastin-3|T fimbrin|T plastin 33 0.004517 11.6 1 1 +5359 PLSCR1 phospholipid scramblase 1 3 protein-coding MMTRA1B phospholipid scramblase 1|PL scramblase 1|ca(2+)-dependent phospholipid scramblase 1|erythrocyte phospholipid scramblase 31 0.004243 9.899 1 1 +5360 PLTP phospholipid transfer protein 20 protein-coding BPIFE|HDLCQ9 phospholipid transfer protein|BPI fold containing family E|lipid transfer protein II 44 0.006022 10.86 1 1 +5361 PLXNA1 plexin A1 3 protein-coding NOV|NOVP|PLEXIN-A1|PLXN1 plexin-A1|plexin 1|semaphorin receptor NOV 130 0.01779 10.77 1 1 +5362 PLXNA2 plexin A2 1 protein-coding OCT|PLXN2 plexin-A2|plexin 2|semaphorin receptor OCT|transmembrane protein OCT 155 0.02122 9.816 1 1 +5364 PLXNB1 plexin B1 3 protein-coding PLEXIN-B1|PLXN5|SEP plexin-B1|plexin 5|semaphorin receptor SEP 100 0.01369 11.07 1 1 +5365 PLXNB3 plexin B3 X protein-coding PLEXB3|PLEXR|PLXN6 plexin-B3|plexin 6 121 0.01656 7.559 1 1 +5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 18 protein-coding APR|NOXA phorbol-12-myristate-13-acetate-induced protein 1|PMA-induced protein 1|adult T cell leukemia-derived PMA-responsive|immediate-early-response protein APR|protein Noxa 7 0.0009581 7.29 1 1 +5367 PMCH pro-melanin concentrating hormone 12 protein-coding MCH|ppMCH pro-MCH|prepro-MCH|prepro-melanin-concentrating hormone 10 0.001369 1.447 1 1 +5368 PNOC prepronociceptin 8 protein-coding N/OFQ|NOP|OFQ|PPNOC|ppN/OFQ prepronociceptin|nociceptin|nocistatin|orphanin FQ|pre-pro-N/OFQ|pronociceptin 14 0.001916 3.01 1 1 +5369 PMCHL1 pro-melanin concentrating hormone like 1 (pseudogene) 5 pseudo - - 2 0.0002737 0.06709 1 1 +5370 PMCHL2 pro-melanin concentrating hormone like 2 (pseudogene) 5 pseudo - - 1 0.0001369 0.1178 1 1 +5371 PML promyelocytic leukemia 15 protein-coding MYL|PP8675|RNF71|TRIM19 protein PML|PML/RARA fusion|RING finger protein 71|probable transcription factor PML|promyelocytic leukemia protein|promyelocytic leukemia, inducer of|tripartite motif protein TRIM19|tripartite motif-containing protein 19 76 0.0104 10.91 1 1 +5372 PMM1 phosphomannomutase 1 22 protein-coding Sec53 phosphomannomutase 1|PMM 1|PMMH-22|brain glucose-1,6-bisphosphatase 21 0.002874 9.276 1 1 +5373 PMM2 phosphomannomutase 2 16 protein-coding CDG1|CDG1a|CDGS|PMI|PMI1|PMM 2 phosphomannomutase 2|mannose-6-phosphate isomerase|phosphomannose isomerase 1 13 0.001779 9.87 1 1 +5375 PMP2 peripheral myelin protein 2 8 protein-coding FABP8|M-FABP|MP2|P2 myelin P2 protein 11 0.001506 2.296 1 1 +5376 PMP22 peripheral myelin protein 22 17 protein-coding CMT1A|CMT1E|DSS|GAS-3|GAS3|HMSNIA|HNPP|Sp110 peripheral myelin protein 22|growth arrest-specific protein 3|peripheral myelin protein 22 kDa 23 0.003148 10.2 1 1 +5378 PMS1 PMS1 homolog 1, mismatch repair system component 2 protein-coding HNPCC3|MLH2|PMSL1|hPMS1 PMS1 protein homolog 1|DNA mismatch repair protein PMS1|PMS1 postmeiotic segregation increased 1|human homolog of yeast mutL|mismatch repair gene PMSL1|rhabdomyosarcoma antigen MU-RMS-40.10B|rhabdomyosarcoma antigen MU-RMS-40.10E 74 0.01013 8.151 1 1 +5379 PMS2P1 PMS1 homolog 2, mismatch repair system component pseudogene 1 7 pseudo PMS2L1|PMS2L13|PMS2L6|PMS2L7|PMS2L8|PMS3|PMS8|PMSR1|PMSR2 postmeiotic segregation increased 2 pseudogene 1|postmeiotic segregation increased 2-like 1 pseudogene|postmeiotic segregation increased 2-like 5|postmeiotic segregation increased 2-like 6|postmeiotic segregation increased 2-like 7|postmeiotic segregation increased 2-like 8 7.939 0 1 +5380 PMS2P2 PMS1 homolog 2, mismatch repair system component pseudogene 2 7 pseudo PMS2L2|PMS4 postmeiotic segregation increased 2 pseudogene 2|postmeiotic segregation increased 2-like 2 pseudogene 5.728 0 1 +5382 PMS2P4 PMS1 homolog 2, mismatch repair system component pseudogene 4 7 pseudo PMS2L4|PMS6 PMS2 pseudogene|postmeiotic segregation increased 2 pseudogene 4|postmeiotic segregation increased 2-like 4 pseudogene 33 0.004517 5.088 1 1 +5383 PMS2P5 PMS1 homolog 2, mismatch repair system component pseudogene 5 7 pseudo PMS2L5|PMS7 postmeiotic segregation increased 2 pseudogene 5|postmeiotic segregation increased 2-like 5 0 0 5.875 1 1 +5387 PMS2P3 PMS1 homolog 2, mismatch repair system component pseudogene 3 7 pseudo PMS2L3|PMS2L9|PMS5|PMSR3 postmeiotic segregation increased 2 pseudogene 3|postmeiotic segregation increased 2-like 3, pseudogene|postmeiotic segregation increased 2-like 9 47 0.006433 5.55 1 1 +5393 EXOSC9 exosome component 9 4 protein-coding PM/Scl-75|PMSCL1|RRP45|Rrp45p|p5|p6 exosome complex component RRP45|P75 polymyositis-scleroderma overlap syndrome associated autoantigen|PMSCL autoantigen, 75kD|autoantigen PM/Scl 1|exosome complex exonuclease RRP45|polymyositis/scleroderma autoantigen 1, 75kDa 38 0.005201 8.847 1 1 +5394 EXOSC10 exosome component 10 1 protein-coding PM-Scl|PM/Scl-100|PMSCL|PMSCL2|RRP6|Rrp6p|p2|p3|p4 exosome component 10|P100 polymyositis-scleroderma overlap syndrome-associated autoantigen|autoantigen PM-SCL|polymyositis/scleroderma autoantigen 100 kDa|polymyositis/scleroderma autoantigen 2 55 0.007528 10.33 1 1 +5395 PMS2 PMS1 homolog 2, mismatch repair system component 7 protein-coding HNPCC4|MLH4|PMS2CL|PMSL2 mismatch repair endonuclease PMS2|DNA mismatch repair protein PMS2|PMS1 homolog 2, mismatch repair protein|PMS1 protein homolog 2|PMS2 postmeiotic segregation increased 2|postmeiotic segregation increased 2 nirs variant 6 64 0.00876 9.362 1 1 +5396 PRRX1 paired related homeobox 1 1 protein-coding AGOTC|PHOX1|PMX1|PRX-1|PRX1 paired mesoderm homeobox protein 1|homeobox protein PHOX1|paired mesoderm homeobox 1 isoform pmx-1b 45 0.006159 8.963 1 1 +5406 PNLIP pancreatic lipase 10 protein-coding PL|PNLIPD|PTL pancreatic triacylglycerol lipase|triacylglycerol acylhydrolase 65 0.008897 0.3377 1 1 +5407 PNLIPRP1 pancreatic lipase related protein 1 10 protein-coding PLRP1 inactive pancreatic lipase-related protein 1 56 0.007665 0.2403 1 1 +5408 PNLIPRP2 pancreatic lipase related protein 2 (gene/pseudogene) 10 protein-coding PLRP2 pancreatic lipase-related protein 2|PL-RP2|galactolipase 91 0.01246 0.7398 1 1 +5409 PNMT phenylethanolamine N-methyltransferase 17 protein-coding PENT|PNMTase phenylethanolamine N-methyltransferase|noradrenaline N-methyltransferase|phenylethanolamine N-methylase 15 0.002053 3.074 1 1 +5411 PNN pinin, desmosome associated protein 14 protein-coding DRS|DRSP|SDK3|memA pinin|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 47 0.006433 10.84 1 1 +5412 UBL3 ubiquitin like 3 13 protein-coding HCG-1|PNSC1 ubiquitin-like protein 3|MUB|hsMUB|membrane-anchored ubiquitin-fold protein|protein HCG-1 12 0.001642 10.34 1 1 +5413 SEPT5 septin 5 22 protein-coding CDCREL|CDCREL-1|CDCREL1|H5|HCDCREL-1|PNUTL1 septin-5|cell division control related protein 1|peanut-like 1|platelet glycoprotein Ib beta chain 29 0.003969 8.976 1 1 +5414 SEPT4 septin 4 17 protein-coding ARTS|BRADEION|CE5B3|H5|MART|PNUTL2|SEP4|hCDCREL-2|hucep-7 septin-4|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-M 27 0.003696 7.83 1 1 +5420 PODXL podocalyxin like 7 protein-coding Gp200|PC|PCLP|PCLP-1 podocalyxin|GCTM-2 antigen|podocalyxin-like protein 1 76 0.0104 10.66 1 1 +5422 POLA1 DNA polymerase alpha 1, catalytic subunit X protein-coding NSX|POLA|p180 DNA polymerase alpha catalytic subunit|DNA polymerase alpha catalytic subunit p180|polymerase (DNA directed), alpha 1, catalytic subunit|polymerase (DNA) alpha 1, catalytic subunit|polymerase (DNA-directed), alpha (70kD) 77 0.01054 8.733 1 1 +5423 POLB DNA polymerase beta 8 protein-coding - DNA polymerase beta|DNA pol beta|DNA polymerase beta subunit|polymerase (DNA directed), beta|polymerase (DNA) beta 24 0.003285 8.557 1 1 +5424 POLD1 DNA polymerase delta 1, catalytic subunit 19 protein-coding CDC2|CRCS10|MDPL|POLD DNA polymerase delta catalytic subunit|CDC2 homolog|DAN polymerase delta 1, catalytic subunit|DNA polymerase subunit delta p125|polymerase (DNA directed), delta 1, catalytic subunit 125kDa|polymerase (DNA) delta 1, catalytic subunit 81 0.01109 9.238 1 1 +5425 POLD2 DNA polymerase delta 2, accessory subunit 7 protein-coding - DNA polymerase delta subunit 2|DAN polymerase delta 2, accessory subunit|DNA polymerase delta subunit p50|Pol delta B subunit (p50)|polymerase (DNA directed), delta 2, accessory subunit|polymerase (DNA directed), delta 2, regulatory subunit 50kDa|polymerase (DNA) delta 2, accessory subunit 21 0.002874 11.09 1 1 +5426 POLE DNA polymerase epsilon, catalytic subunit 12 protein-coding CRCS12|FILS|POLE1 DNA polymerase epsilon catalytic subunit A|DNA polymerase II subunit A|DNA polymerase epsilon catalytic subunit protein|polymerase (DNA directed), epsilon, catalytic subunit|polymerase (DNA) epsilon, catalytic subunit 171 0.02341 9.691 1 1 +5427 POLE2 DNA polymerase epsilon 2, accessory subunit 14 protein-coding DPE2 DNA polymerase epsilon subunit 2|DNA polymerase II subunit 2|DNA polymerase epsilon subunit B|polymerase (DNA directed), epsilon 2 (p59 subunit)|polymerase (DNA directed), epsilon 2, accessory subunit|polymerase (DNA) epsilon 2, accessory subunit 28 0.003832 5.916 1 1 +5428 POLG DNA polymerase gamma, catalytic subunit 15 protein-coding MDP1|MIRAS|MTDPS4A|MTDPS4B|PEO|POLG1|POLGA|SANDO|SCAE DNA polymerase subunit gamma-1|PolG-alpha|mitochondrial DNA polymerase catalytic subunit|polymerase (DNA directed), gamma|polymerase (DNA) gamma, catalytic subunit|truncated mitochondrial DNA polymerase gamma catalytic subunit 83 0.01136 10.03 1 1 +5429 POLH DNA polymerase eta 6 protein-coding RAD30|RAD30A|XP-V|XPV DNA polymerase eta|RAD30 homolog A|polymerase (DNA directed), eta|polymerase (DNA) eta|xeroderma pigmentosum variant type protein 32 0.00438 9.094 1 1 +5430 POLR2A RNA polymerase II subunit A 17 protein-coding POLR2|POLRA|RPB1|RPBh1|RPO2|RPOL2|RpIILS|hRPB220|hsRPB1 DNA-directed RNA polymerase II subunit RPB1|DNA-directed RNA polymerase II largest subunit, RNA polymerase II 220 kd subunit|DNA-directed RNA polymerase II subunit A|DNA-directed RNA polymerase III largest subunit|RNA polymerase II subunit B1|RNA-directed RNA polymerase II subunit RPB1|polymerase (RNA) II (DNA directed) polypeptide A, 220kDa|polymerase (RNA) II subunit A 105 0.01437 12.18 1 1 +5431 POLR2B RNA polymerase II subunit B 4 protein-coding POL2RB|RPB2|hRPB140 DNA-directed RNA polymerase II subunit RPB2|DNA-directed RNA polymerase II 140 kDa polypeptide|DNA-directed RNA polymerase II subunit B|RNA polymerase II second largest subunit|RNA polymerase II subunit 2|RNA polymerase II subunit B2|polymerase (RNA) II (DNA directed) polypeptide B, 140kDa|polymerase (RNA) II subunit B 88 0.01204 10.92 1 1 +5432 POLR2C RNA polymerase II subunit C 16 protein-coding RPB3|RPB31|hRPB33|hsRPB3 DNA-directed RNA polymerase II subunit RPB3|DNA-directed RNA polymerase II 33 kDa polypeptide|DNA-directed RNA polymerase II subunit C|RNA polymerase II subunit 3|RNA polymerase II subunit B3|RPB33|polymerase (RNA) II (DNA directed) polypeptide C, 33kDa|polymerase (RNA) II subunit C 17 0.002327 10.51 1 1 +5433 POLR2D RNA polymerase II subunit D 2 protein-coding HSRBP4|HSRPB4|RBP4|RPB16 DNA-directed RNA polymerase II subunit RPB4|DNA-directed RNA polymerase II 16 kDa polypeptide|DNA-directed RNA polymerase II subunit D|RNA polymerase II 16 kDa subunit|RNA polymerase II subunit B4|RNA polymerase II subunit hsRBP4|polymerase (RNA) II (DNA directed) polypeptide D|polymerase (RNA) II subunit D 10 0.001369 9.151 1 1 +5434 POLR2E RNA polymerase II subunit E 19 protein-coding RPABC1|RPB5|XAP4|hRPB25|hsRPB5 DNA-directed RNA polymerases I, II, and III subunit RPABC1|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 polymerase subunit RPABC1|RNA polymerases I, II, and III subunit ABC1|RPB5 homolog|polymerase (RNA) II (DNA directed) polypeptide E, 25kDa|polymerase (RNA) II subunit E 13 0.001779 11.37 1 1 +5435 POLR2F RNA polymerase II subunit F 22 protein-coding HRBP14.4|POLRF|RPABC14.4|RPABC2|RPB14.4|RPB6|RPC15 DNA-directed RNA polymerases I, II, and III subunit RPABC2|DNA-directed RNA polymerase II subunit F|DNA-directed RNA polymerases I, II, and III 14.4 kDa polypeptide|RNA Polymerase II subunit 14.4 kD|RNA polymerases I, II, and III subunit ABC2|polymerase (RNA) II (DNA directed) polypeptide F|polymerase (RNA) II subunit F 20 0.002737 9.671 1 1 +5436 POLR2G RNA polymerase II subunit G 11 protein-coding RPB19|RPB7|hRPB19|hsRPB7 DNA-directed RNA polymerase II subunit RPB7|DNA directed RNA polymerase II 19 kda polypeptide|DNA-directed RNA polymerase II 19 kDa polypeptide|DNA-directed RNA polymerase II subunit G|RNA polymerase II 19 kDa subunit|RNA polymerase II seventh subunit|RNA polymerase II subunit B7|polymerase (RNA) II (DNA directed) polypeptide G|polymerase (RNA) II subunit G 15 0.002053 10.02 1 1 +5437 POLR2H RNA polymerase II subunit H 3 protein-coding RPABC3|RPB17|RPB8 DNA-directed RNA polymerases I, II, and III subunit RPABC3|DNA-directed RNA polymerase II subunit H|DNA-directed RNA polymerases I, II, and III 17.1 kDa polypeptide|RPB8 homolog|polymerase (RNA) II (DNA directed) polypeptide H|polymerase (RNA) II subunit H 13 0.001779 9.815 1 1 +5438 POLR2I RNA polymerase II subunit I 19 protein-coding RPB9|hRPB14.5 DNA-directed RNA polymerase II subunit RPB9|DNA-directed RNA polymerase II 14.5 kDa polypeptide|DNA-directed RNA polymerase II subunit I|RNA polymerase II 14.5 kDa subunit|RNA polymerase II subunit B9|RPB14.5|polymerase (RNA) II (DNA directed) polypeptide I, 14.5kDa|polymerase (RNA) II subunit I 11 0.001506 9.23 1 1 +5439 POLR2J RNA polymerase II subunit J 7 protein-coding POLR2J1|RPB11|RPB11A|RPB11m|hRPB14 DNA-directed RNA polymerase II subunit RPB11-a|DNA-directed RNA polymerase II subunit J-1|RNA polymerase II 13.3 kDa subunit|RNA polymerase II subunit B11-a|polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa|polymerase (RNA) II subunit J 9 0.001232 10.21 1 1 +5440 POLR2K RNA polymerase II subunit K 8 protein-coding ABC10-alpha|RPABC4|RPB10alpha|RPB12|RPB7.0|hRPB7.0|hsRPB10a DNA-directed RNA polymerases I, II, and III subunit RPABC4|DNA directed RNA polymerases I, II, and III 7.0 kda polypeptide|DNA-directed RNA polymerase II subunit K|RNA polymerase II 7.0 kDa subunit|RNA polymerases I, II, and III subunit ABC4|polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa|polymerase (RNA) II subunit K 1 0.0001369 9.989 1 1 +5441 POLR2L RNA polymerase II subunit L 11 protein-coding RBP10|RPABC5|RPB10|RPB10beta|RPB7.6|hRPB7.6 DNA-directed RNA polymerases I, II, and III subunit RPABC5|DNA-directed RNA polymerase III subunit L|RNA polymerase II 7.6 kDa subunit|RNA polymerases I, II, and III subunit ABC5|RPB10 homolog|polymerase (RNA) II (DNA directed) polypeptide L, 7.6kDa|polymerase (RNA) II subunit L 4 0.0005475 10.68 1 1 +5442 POLRMT RNA polymerase mitochondrial 19 protein-coding APOLMT|MTRNAP|MTRPOL|h-mtRPOL DNA-directed RNA polymerase, mitochondrial|polymerase (RNA) mitochondrial (DNA directed) 82 0.01122 9.772 1 1 +5443 POMC proopiomelanocortin 2 protein-coding ACTH|CLIP|LPH|MSH|NPP|POC pro-opiomelanocortin|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|proopiomelanocortin preproprotein 36 0.004927 3.846 1 1 +5444 PON1 paraoxonase 1 7 protein-coding ESA|MVCD5|PON serum paraoxonase/arylesterase 1|A-esterase 1|K-45|PON 1|aromatic esterase 1|arylesterase 1|arylesterase B-type|esterase A|paraoxonase B-type|serum aryldiakylphosphatase|serum aryldialkylphosphatase 1 49 0.006707 2.283 1 1 +5445 PON2 paraoxonase 2 7 protein-coding - serum paraoxonase/arylesterase 2|A-esterase 2|PON 2|aromatic esterase 2|arylesterase 2|paraoxonase nirs|serum aryldialkylphosphatase 2 27 0.003696 10.53 1 1 +5446 PON3 paraoxonase 3 7 protein-coding - serum paraoxonase/lactonase 3|arylesterase 3|paraoxanase-3 32 0.00438 4.687 1 1 +5447 POR cytochrome p450 oxidoreductase 7 protein-coding CPR|CYPOR|P450R NADPH--cytochrome P450 reductase|NADPH-dependent cytochrome P450 reductase|P450 (cytochrome) oxidoreductase 42 0.005749 11.3 1 1 +5449 POU1F1 POU class 1 homeobox 1 3 protein-coding CPHD1|GHF-1|PIT1|POU1F1a|Pit-1 pituitary-specific positive transcription factor 1|POU domain, class 1, transcription factor 1|growth hormone factor 1 19 0.002601 0.2014 1 1 +5450 POU2AF1 POU class 2 associating factor 1 11 protein-coding BOB1|OBF-1|OBF1|OCAB POU domain class 2-associating factor 1|B-cell-specific coactivator OBF-1|BOB-1|OCA-B|OCT-binding factor 1 26 0.003559 5.758 1 1 +5451 POU2F1 POU class 2 homeobox 1 1 protein-coding OCT1|OTF1|oct-1B POU domain, class 2, transcription factor 1|NF-A1|OTF-1|Octamer-binding transcription factor-1|oct-1|octamer-binding protein 1|octamer-binding transcription factor 1 40 0.005475 6.552 1 1 +5452 POU2F2 POU class 2 homeobox 2 19 protein-coding OCT2|OTF2|Oct-2 POU domain, class 2, transcription factor 2|OTF-2|homeobox protein|lymphoid-restricted immunoglobulin octamer-binding protein NF-A2|octamer-binding protein 2|octamer-binding transcription factor 2 55 0.007528 6.171 1 1 +5453 POU3F1 POU class 3 homeobox 1 1 protein-coding OCT6|OTF6|SCIP POU domain, class 3, transcription factor 1|OTF-6|POU domain transcription factor SCIP|octamer-binding protein 6|octamer-binding transcription factor 6 12 0.001642 3.709 1 1 +5454 POU3F2 POU class 3 homeobox 2 6 protein-coding BRN2|N-Oct3|OCT7|OTF-7|OTF7|POUF3|brn-2|oct-7 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 42 0.005749 2.026 1 1 +5455 POU3F3 POU class 3 homeobox 3 2 protein-coding BRN1|OTF8|brain-1|oct-8 POU domain, class 3, transcription factor 3|brain-specific homeobox/POU domain protein 1|octamer-binding protein 8|octamer-binding transcription factor 8 31 0.004243 1.972 1 1 +5456 POU3F4 POU class 3 homeobox 4 X protein-coding BRAIN-4|BRN-4|BRN4|DFN3|DFNX2|OCT-9|OTF-9|OTF9 POU domain, class 3, transcription factor 4|brain-specific homeobox/POU domain protein 4|octamer-binding transcription factor 9 56 0.007665 0.8002 1 1 +5457 POU4F1 POU class 4 homeobox 1 13 protein-coding BRN3A|Oct-T1|RDC-1|brn-3A POU domain, class 4, transcription factor 1|brain-3A|brain-specific homeobox/POU domain protein 3A|homeobox/POU domain protein RDC-1 35 0.004791 1.901 1 1 +5458 POU4F2 POU class 4 homeobox 2 4 protein-coding BRN3.2|BRN3B|Brn-3b POU domain, class 4, transcription factor 2|Brn3b POU domain transcription factor|POU domain protein|brain-3B|brain-specific homeobox/POU domain protein 3B 91 0.01246 0.2293 1 1 +5459 POU4F3 POU class 4 homeobox 3 5 protein-coding BRN3C|DFNA15 POU domain, class 4, transcription factor 3|brain-3C|brain-specific homeobox/POU domain protein 3C|brn-3C 32 0.00438 0.7817 1 1 +5460 POU5F1 POU class 5 homeobox 1 6 protein-coding OCT3|OCT4|OTF-3|OTF3|OTF4|Oct-3|Oct-4 POU domain, class 5, transcription factor 1|POU class 5 homeobox 1 transcript variant OCT4B1|POU class 5 homeobox 1 transcript variant OCT4B2|POU class 5 homeobox 1 transcript variant OCT4B3|POU class 5 homeobox 1 transcript variant OCT4B4|POU class 5 homeobox 1 transcript variant OCT4B5|POU class 5 homeobox 1 transcript variant OCT4B6|POU classV homeobox 1 variant 2|POU domain transcription factor OCT4|POU-type homeodomain-containing DNA-binding protein|octamer-binding protein 3|octamer-binding protein 4|octamer-binding transcription factor 3 15 0.002053 3.446 1 1 +5462 POU5F1B POU class 5 homeobox 1B 8 protein-coding OCT4-PG1|OCT4PG1|OTF3C|OTF3P1|POU5F1P1|POU5F1P4|POU5FLC20|POU5FLC8 putative POU domain, class 5, transcription factor 1B|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 32 0.00438 3.998 1 1 +5463 POU6F1 POU class 6 homeobox 1 12 protein-coding BRN5|MPOU|TCFB1 POU domain, class 6, transcription factor 1|brain-5|brain-specific homeobox/POU domain protein 5|brn-5|mPOU homeobox protein 24 0.003285 7.446 1 1 +5464 PPA1 pyrophosphatase (inorganic) 1 10 protein-coding HEL-S-66p|IOPPP|PP|PP1|SID6-8061 inorganic pyrophosphatase|PPase|cytosolic inorganic pyrophosphatase|diphosphate phosphohydrolase|epididymis secretory sperm binding protein Li 66p|inorganic diphosphatase|inorganic diphosphatase 1|inorganic pyrophosphatase 1|pyrophosphatase 1|pyrophosphate phospho-hydrolase 14 0.001916 11.36 1 1 +5465 PPARA peroxisome proliferator activated receptor alpha 22 protein-coding NR1C1|PPAR|PPARalpha|hPPAR peroxisome proliferator-activated receptor alpha|PPAR-alpha|nuclear receptor subfamily 1 group C member 1|peroxisome proliferative activated receptor, alpha|peroxisome proliferator-activated nuclear receptor alpha variant 3 34 0.004654 9.178 1 1 +5467 PPARD peroxisome proliferator activated receptor delta 6 protein-coding FAAR|NR1C2|NUC1|NUCI|NUCII|PPARB peroxisome proliferator-activated receptor delta|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 33 0.004517 10.37 1 1 +5468 PPARG peroxisome proliferator activated receptor gamma 3 protein-coding CIMT1|GLM1|NR1C3|PPARG1|PPARG2|PPARgamma peroxisome proliferator-activated receptor gamma|PPAR-gamma|nuclear receptor subfamily 1 group C member 3|peroxisome proliferator-activated nuclear receptor gamma variant 1 43 0.005886 7.287 1 1 +5469 MED1 mediator complex subunit 1 17 protein-coding CRSP1|CRSP200|DRIP205|DRIP230|PBP|PPARBP|PPARGBP|RB18A|TRAP220|TRIP2 mediator of RNA polymerase II transcription subunit 1|ARC205|PPAR-binding protein|PPARG binding protein|TR-interacting protein 2|TRIP-2|activator-recruited cofactor 205 kDa component|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|vitamin D receptor-interacting protein 230 kD|vitamin D receptor-interacting protein complex component DRIP205 101 0.01382 10.2 1 1 +5470 PPEF2 protein phosphatase with EF-hand domain 2 4 protein-coding PPP7CB serine/threonine-protein phosphatase with EF-hands 2|protein phosphatase 7, catalytic subunit, beta isozyme|protein phosphatase with EF hands 2|protein phosphatase, EF-hand calcium binding domain 2 75 0.01027 0.4076 1 1 +5471 PPAT phosphoribosyl pyrophosphate amidotransferase 4 protein-coding ATASE|GPAT|PRAT amidophosphoribosyltransferase|glutamine PRPP amidotransferase|glutamine phosphoribosylpyrophosphatate amidotransferase|glutamine phosphoribosylpyrophosphate amidotransferase 37 0.005064 8.44 1 1 +5473 PPBP pro-platelet basic protein 4 protein-coding B-TG1|Beta-TG|CTAP-III|CTAP3|CTAPIII|CXCL7|LA-PF4|LDGF|MDGF|NAP-2|PBP|SCYB7|TC1|TC2|TGB|TGB1|THBGB|THBGB1 platelet basic protein|C-X-C motif chemokine 7|CXC chemokine ligand 7|beta-thromboglobulin|chemokine (C-X-C motif) ligand 7|connective tissue-activating peptide III|leukocyte-derived growth factor|low-affinity platelet factor IV|macrophage-derived growth factor|neutrophil-activating peptide 2|pro-platelet basic protein (chemokine (C-X-C motif) ligand 7)|small inducible cytokine B7|small inducible cytokine subfamily B, member 7|thrombocidin 1|thrombocidin 2|thromboglobulin, beta-1 13 0.001779 1.651 1 1 +5475 PPEF1 protein phosphatase with EF-hand domain 1 X protein-coding PP7|PPEF|PPP7C|PPP7CA serine/threonine-protein phosphatase with EF-hands 1|protein phosphatase 7, catalytic subunit, alpha isozyme|protein phosphatase with EF calcium-binding domain|protein phosphatase, EF-hand calcium binding domain 1|protein phosphatase, serine/threonine type, with EF-hands|serine/threonine protein phosphatase 7 61 0.008349 3.389 1 1 +5476 CTSA cathepsin A 20 protein-coding GLB2|GSL|NGBE|PPCA|PPGB lysosomal protective protein|beta-galactosidase 2|beta-galactosidase protective protein|carboxypeptidase C|carboxypeptidase Y-like kininase|carboxypeptidase-L|deamidase|lysosomal carboxypeptidase A|protective protein cathepsin A|urinary kininase 44 0.006022 11.92 1 1 +5478 PPIA peptidylprolyl isomerase A 7 protein-coding CYPA|CYPH|HEL-S-69p peptidyl-prolyl cis-trans isomerase A|PPIase A|T cell cyclophilin|cyclosporin A-binding protein|epididymis secretory sperm binding protein Li 69p|peptidylprolyl isomerase A (cyclophilin A)|rotamase A 2 0.0002737 12.31 1 1 +5479 PPIB peptidylprolyl isomerase B 15 protein-coding CYP-S1|CYPB|HEL-S-39|OI9|SCYLP peptidyl-prolyl cis-trans isomerase B|PPIase B|S-cyclophilin|cyclophilin-like protein|epididymis secretory protein Li 39|peptidylprolyl isomerase B (cyclophilin B)|rotamase B 16 0.00219 13.23 1 1 +5480 PPIC peptidylprolyl isomerase C 5 protein-coding CYPC peptidyl-prolyl cis-trans isomerase C|PPIase C|cyclophilin C|parvulin|peptidylprolyl isomerase C (cyclophilin C)|rotamase C 13 0.001779 9.351 1 1 +5481 PPID peptidylprolyl isomerase D 4 protein-coding CYP-40|CYPD peptidyl-prolyl cis-trans isomerase D|40 kDa peptidyl-prolyl cis-trans isomerase D|PPIase D|cyclophilin 40|cyclophilin D|cyclophilin-related protein|rotamase D|testicular tissue protein Li 147 21 0.002874 9.383 1 1 +5493 PPL periplakin 16 protein-coding - periplakin|190 kDa paraneoplastic pemphigus antigen|195 kDa cornified envelope precursor protein 117 0.01601 9.941 1 1 +5494 PPM1A protein phosphatase, Mg2+/Mn2+ dependent 1A 14 protein-coding PP2C-ALPHA|PP2CA|PP2Calpha protein phosphatase 1A|protein phosphatase 1A (formerly 2C), magnesium-dependent, alpha isoform 31 0.004243 10.44 1 1 +5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B 2 protein-coding PP2C-beta|PP2C-beta-X|PP2CB|PP2CBETA|PPC2BETAX protein phosphatase 1B|Ser/Thr protein phosphatase type 2C beta 2 isoform|protein phosphatase 1B (formerly 2C), magnesium-dependent, beta isoform|protein phosphatase 2C-like protein 45 0.006159 9.985 1 1 +5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G 2 protein-coding PP2CG|PP2CGAMMA|PPP2CG protein phosphatase 1G|PP2C-gamma|protein phosphatase 1C|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 28 0.003832 11.5 1 1 +5498 PPOX protoporphyrinogen oxidase 1 protein-coding PPO|V290M|VP protoporphyrinogen oxidase 38 0.005201 8.178 1 1 +5499 PPP1CA protein phosphatase 1 catalytic subunit alpha 11 protein-coding PP-1A|PP1A|PP1alpha|PPP1A serine/threonine-protein phosphatase PP1-alpha catalytic subunit|protein phosphatase 1, catalytic subunit, alpha isoform|protein phosphatase 1, catalytic subunit, alpha isozyme|serine/threonine protein phosphatase PP1-alpha 1 catalytic subunit|testicular tissue protein Li 155 25 0.003422 11.87 1 1 +5500 PPP1CB protein phosphatase 1 catalytic subunit beta 2 protein-coding HEL-S-80p|PP-1B|PP1B|PP1beta|PPP1CD serine/threonine-protein phosphatase PP1-beta catalytic subunit|epididymis secretory sperm binding protein Li 80p|protein phosphatase 1, catalytic subunit, beta isoform|protein phosphatase 1, catalytic subunit, beta isozyme|protein phosphatase 1, catalytic subunit, delta isoform|protein phosphatase 1-beta|protein phosphatase 1-delta 20 0.002737 12.55 1 1 +5501 PPP1CC protein phosphatase 1 catalytic subunit gamma 12 protein-coding PP-1G|PP1C|PPP1G serine/threonine-protein phosphatase PP1-gamma catalytic subunit|protein phosphatase 1, catalytic subunit, gamma isoform|protein phosphatase 1, catalytic subunit, gamma isozyme|protein phosphatase 1C catalytic subunit|serine/threonine phosphatase 1 gamma 11 0.001506 11.5 1 1 +5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A 12 protein-coding I1|IPP1 protein phosphatase 1 regulatory subunit 1A|I-1|IPP-1|inhibitor-1|protein phosphatase inhibitor-1 22 0.003011 4.546 1 1 +5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 3 protein-coding IPP-2|IPP2 protein phosphatase inhibitor 2|phosphoprotein phosphatase 14 0.001916 10.22 1 1 +5505 1.891 0 1 +5506 PPP1R3A protein phosphatase 1 regulatory subunit 3A 7 protein-coding GM|PP1G|PPP1R3 protein phosphatase 1 regulatory subunit 3A|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 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 198 0.0271 0.2442 1 1 +5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C 10 protein-coding PPP1R5|PTG protein phosphatase 1 regulatory subunit 3C|PP1 subunit R5|Phosphatase 1, regulatory inhibitor subunit 5|protein phosphatase 1 regulatory subunit 5|protein phosphatase 1, regulatory (inhibitor) subunit 3C|protein targeting to glycogen 25 0.003422 7.328 1 1 +5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D 20 protein-coding PPP1R6 protein phosphatase 1 regulatory subunit 3D|PP1 subunit R6|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 22 0.003011 7.94 1 1 +5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 2 protein-coding SDS22 protein phosphatase 1 regulatory subunit 7|protein phosphatase 1 regulatory subunit 22|protein phosphatase 1, regulatory (inhibitor) subunit 7|testis secretory sperm-binding protein Li 210a 30 0.004106 10.27 1 1 +5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 1 protein-coding ARD-1|ARD1|NIPP-1|NIPP1|PRO2047 nuclear inhibitor of protein phosphatase 1|RNase E|activator of RNA decay|nuclear inhibitor of protein phosphatase-1 alpha|nuclear inhibitor of protein phosphatase-1 beta|nuclear subunit of PP-1|protein phosphatase 1, regulatory (inhibitor) subunit 8 20 0.002737 9.912 1 1 +5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 6 protein-coding CAT53|FB19|PNUTS|PP1R10|R111|p99 serine/threonine-protein phosphatase 1 regulatory subunit 10|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|testis tissue sperm-binding protein Li 67n 71 0.009718 10.94 1 1 +5515 PPP2CA protein phosphatase 2 catalytic subunit alpha 5 protein-coding PP2Ac|PP2CA|PP2Calpha|RP-C serine/threonine-protein phosphatase 2A catalytic subunit alpha isoform|PP2A-alpha|protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform|protein phosphatase 2, catalytic subunit, alpha isozyme|replication protein C|serine/threonine protein phosphatase 2A, catalytic subunit, alpha isoform 14 0.001916 11.51 1 1 +5516 PPP2CB protein phosphatase 2 catalytic subunit beta 8 protein-coding PP2Abeta|PP2CB serine/threonine-protein phosphatase 2A catalytic subunit beta isoform|PP2A-beta|protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform|protein phosphatase 2, catalytic subunit, beta isoform|protein phosphatase 2, catalytic subunit, beta isozyme|protein phosphatase 2A catalytic subunit, beta isoform|protein phosphatase type 2A catalytic subunit|serine/threonine protein phosphatase 2A, catalytic subunit, beta isoform|testicular tissue protein Li 146 18 0.002464 10.86 1 1 +5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha 19 protein-coding MRD36|PP2A-Aalpha|PP2AAALPHA|PR65A serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A alpha isoform|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|protein phosphatase 2, regulatory subunit A, alpha|serine/threonine protein phosphatase 2A, 65 kDa regulatory subunit A, alpha isoform|testicular secretory protein Li 1 80 0.01095 12.73 1 1 +5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta 11 protein-coding PP2A-Abeta|PR65B serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A beta isoform|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, regulatory subunit A, beta|protein phosphatase 2, structural/regulatory subunit A, beta 41 0.005612 9.439 1 1 +5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha 8 protein-coding B55A|B55ALPHA|PR52A|PR55A serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B alpha isoform|protein phosphatase 2, regulatory subunit B, alpha 42 0.005749 9.853 1 1 +5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta 5 protein-coding B55BETA|PP2AB55BETA|PP2ABBETA|PP2APR55B|PP2APR55BETA|PR2AB55BETA|PR2ABBETA|PR2APR55BETA|PR52B|PR55-BETA|PR55BETA|SCA12 serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B beta isoform|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|protein phosphatase 2, regulatory subunit B, beta|serine/threonine protein phosphatase 2A, 55 kDa regulatory subunit B, beta isoform|serine/threonine protein phosphatase 2A, neuronal isoform 53 0.007254 5.231 1 1 +5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma 4 protein-coding B55-GAMMA|IMYPNO|IMYPNO1|PR52|PR55G protein phosphatase 2, regulatory subunit B, gamma|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 38 0.005201 6.207 1 1 +5523 PPP2R3A protein phosphatase 2 regulatory subunit B''alpha 3 protein-coding PPP2R3|PR130|PR72 serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit alpha|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|protein phosphatase 2, regulatory subunit B'', alpha|serine/threonine-protein phosphatase 2A 72/130 kDa regulatory subunit B 67 0.009171 8.459 1 1 +5524 PTPA protein phosphatase 2 phosphatase activator 9 protein-coding PP2A|PPP2R4|PR53 serine/threonine-protein phosphatase 2A activator|PP2A phosphatase activator|PP2A subunit B' isoform PR53|phosphotyrosyl phosphatase activator|protein phosphatase 2 regulatory subunit 4|protein phosphatase 2A activator, regulatory subunit 4|protein phosphatase 2A regulatory subunit 4|protein phosphatase 2A, regulatory subunit B' (PR 53)|serine/threonine-protein phosphatase 2A regulatory subunit B' 27 0.003696 11.87 1 1 +5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha 1 protein-coding B56A|PR61A serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit alpha isoform|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', alpha|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 24 0.003285 10.53 1 1 +5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta 11 protein-coding B56B|PR61B serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit beta isoform|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|protein phosphatase 2, regulatory subunit B', beta isoform 46 0.006296 8.862 1 1 +5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma 14 protein-coding B56G|PR61G serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit gamma isoform|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', gamma|protein phosphatase 2, regulatory subunit B (B56), gamma isoform|protein phosphatase 2, regulatory subunit B', gamma isoform|renal carcinoma antigen NY-REN-29 47 0.006433 10.95 1 1 +5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta 6 protein-coding B56D|MRD35 serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit delta isoform|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 43 0.005886 10.33 1 1 +5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon 14 protein-coding - serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit epsilon isoform|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', epsilon|protein phosphatase 2, regulatory subunit B (B56), epsilon isoform|protein phosphatase 2, regulatory subunit B', epsilon isoform|serine/threonine protein phosphatase 2A, 56 kDa regulatory subunit, epsilon 32 0.00438 9.311 1 1 +5530 PPP3CA protein phosphatase 3 catalytic subunit alpha 4 protein-coding CALN|CALNA|CALNA1|CCN1|CNA1|PPP2B serine/threonine-protein phosphatase 2B catalytic subunit alpha isoform|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|protein phosphatase 3 catalytic subunit alpha isozyme 52 0.007117 10.22 1 1 +5531 PPP4C protein phosphatase 4 catalytic subunit 16 protein-coding PP-X|PP4|PP4C|PPH3|PPP4|PPX serine/threonine-protein phosphatase 4 catalytic subunit|protein phosphatase 4 (formerly X), catalytic subunit|protein phosphatase X, catalytic subunit 21 0.002874 10.97 1 1 +5532 PPP3CB protein phosphatase 3 catalytic subunit beta 10 protein-coding CALNA2|CALNB|CNA2|PP2Bbeta serine/threonine-protein phosphatase 2B catalytic subunit beta isoform|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 3, catalytic subunit, beta isozyme|protein phosphatase from PCR fragment H32 32 0.00438 10.04 1 1 +5533 PPP3CC protein phosphatase 3 catalytic subunit gamma 8 protein-coding CALNA3|CNA3|PP2Bgamma serine/threonine-protein phosphatase 2B catalytic subunit gamma isoform|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|protein phosphatase 3, catalytic subunit, gamma isozyme 24 0.003285 8.154 1 1 +5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha 2 protein-coding CALNB1|CNB|CNB1 calcineurin subunit B type 1|calcineurin B, type I (19kDa)|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 17 0.002327 10.62 1 1 +5535 PPP3R2 protein phosphatase 3 regulatory subunit B, beta 9 protein-coding PPP3RL calcineurin subunit B type 2|CBLP|CNBII|calcineurin B, type II (19kDa)|calcineurin B-like protein|calcineurin BII|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 28 0.003832 0.2947 1 1 +5536 PPP5C protein phosphatase 5 catalytic subunit 19 protein-coding PP5|PPP5|PPT serine/threonine-protein phosphatase 5|PP-T|protein phosphatase T 46 0.006296 10.35 1 1 +5537 PPP6C protein phosphatase 6 catalytic subunit 9 protein-coding PP6|PP6C serine/threonine-protein phosphatase 6 catalytic subunit|serine/threonine protein phosphatase catalytic subunit 27 0.003696 10.57 1 1 +5538 PPT1 palmitoyl-protein thioesterase 1 1 protein-coding CLN1|INCL|PPT palmitoyl-protein thioesterase 1|ceroid-palmitoyl-palmitoyl-protein thioesterase 1|palmitoyl-protein hydrolase 1 22 0.003011 11.78 1 1 +5539 PPY pancreatic polypeptide 17 protein-coding PNP|PP pancreatic prohormone|pancreatic polypeptide Y|prepro-PP (prepropancreatic polypeptide) 9 0.001232 0.437 1 1 +5540 NPY4R neuropeptide Y receptor Y4 10 protein-coding NPY4-R|PP1|PPYR1|Y4 neuropeptide Y receptor type 4|pancreatic polypeptide receptor 1 52 0.007117 2.349 1 1 +5542 PRB1 proline rich protein BstNI subfamily 1 12 protein-coding PM|PMF|PMS|PRB1L|PRB1M basic salivary proline-rich protein 1|BstNI type basic salivary proline-rich protein 1|parotid middle band protein|salivary protein Pe 40 0.005475 0.2985 1 1 +5544 PRB3 proline rich protein BstNI subfamily 3 12 protein-coding G1|PRG basic salivary proline-rich protein 3|BstNI type basic salivary proline-rich protein 3|G1 parotid salivary glycoprotein|parotid salivary glycoprotein G1|proline-rich protein G1 61 0.008349 1.135 1 1 +5545 PRB4 proline rich protein BstNI subfamily 4 12 protein-coding Po basic salivary proline-rich protein 4|BstNI type basic salivary proline-rich protein 4|parotid o protein|salivary proline-rich protein II-1|salivary proline-rich protein Po 45 0.006159 0.1488 1 1 +5546 PRCC papillary renal cell carcinoma (translocation-associated) 1 protein-coding RCCP1|TPRC proline-rich protein PRCC|papillary renal cell carcinoma translocation-associated gene protein 37 0.005064 10.66 1 1 +5547 PRCP prolylcarboxypeptidase 11 protein-coding HUMPCP|PCP lysosomal Pro-X carboxypeptidase|angiotensinase C|lysosomal carboxypeptidase C|proline carboxypeptidase|prolylcarboxypeptidase (angiotensinase C) 43 0.005886 11.04 1 1 +5549 PRELP proline and arginine rich end leucine rich repeat protein 1 protein-coding MST161|MSTP161|SLRR2A prolargin|55 kDa leucine-rich repeat protein of articular cartilage|prolargin proteoglycan|proline-arginine-rich end leucine-rich repeat protein 36 0.004927 8.796 1 1 +5550 PREP prolyl endopeptidase 6 protein-coding PE|PEP prolyl endopeptidase|dJ355L5.1 (prolyl endopeptidase)|post-proline cleaving enzyme|prolyl oligopeptidase 39 0.005338 9.725 1 1 +5551 PRF1 perforin 1 10 protein-coding FLH2|HPLH2|P1|PFN1|PFP perforin-1|cytolysin|lymphocyte pore forming protein|perforin 1 (pore forming protein) 55 0.007528 6.668 1 1 +5552 SRGN serglycin 10 protein-coding PPG|PRG|PRG1 serglycin|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 11 0.001506 10.06 1 1 +5553 PRG2 proteoglycan 2, pro eosinophil major basic protein 11 protein-coding BMPG|MBP|MBP1|proMBP bone marrow proteoglycan|eosinophil granule major basic protein|eosinophil major basic protein|natural killer cell activator|proteoglycan 2 preproprotein|proteoglycan 2, bone marrow (natural killer cell activator, eosinophil granule major basic protein) 23 0.003148 2.938 1 1 +5554 PRH1 proline rich protein HaeIII subfamily 1 12 protein-coding Db-s|PA|PIF-S|PRH2|Pr1/Pr2 salivary acidic proline-rich phosphoprotein 1/2|PRP-1/PRP-2|parotid acidic protein|parotid double-band protein|parotid isoelectric focusing variant protein|parotid proline-rich protein 1/2|protein C 12 0.001642 5.196 1 1 +5555 PRH2 proline rich protein HaeIII subfamily 2 12 protein-coding PRP-1/PRP-2|Pr|pr1/Pr2 salivary acidic proline-rich phosphoprotein 1/2|acidic salivary proline-rich protein, HaeIII type, 2|parotid acidic protein|parotid double-band protein|parotid proline-rich protein 1/2|protein C 14 0.001916 2.548 1 1 +5557 PRIM1 primase (DNA) subunit 1 12 protein-coding p49 DNA primase small subunit|DNA primase 1|DNA primase 49 kDa subunit|DNA primase subunit 48|primase p49 subunit|primase polypeptide 1, 49kDa|primase, DNA, polypeptide 1 (49kDa) 21 0.002874 7.265 1 1 +5558 PRIM2 primase (DNA) subunit 2 6 protein-coding PRIM2A|p58 DNA primase large subunit|DNA primase 58 kDa subunit|primase, DNA, polypeptide 2 (58kDa) 55 0.007528 7.527 1 1 +5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 5 protein-coding AMPK|AMPKa1 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|protein kinase, AMP-activated, alpha 1 catalytic subunit|tau-protein kinase PRKAA1 42 0.005749 10.35 1 1 +5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 1 protein-coding AMPK|AMPK2|AMPKa2|PRKAA 5'-AMP-activated protein kinase catalytic subunit alpha-2|5'-AMP-activated protein kinase, catalytic alpha-2 chain|ACACA kinase|AMP-activated protein kinase alpha-2 subunit variant 2|AMP-activated protein kinase alpha-2 subunit variant 3|AMPK alpha 2|AMPK subunit alpha-2|AMPK-alpha-2 chain|HMGCR kinase|acetyl-CoA carboxylase kinase|hydroxymethylglutaryl-CoA reductase kinase|protein kinase, AMP-activated, alpha 2 catalytic subunit 59 0.008076 6.786 1 1 +5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 12 protein-coding AMPK|HAMPKb 5'-AMP-activated protein kinase subunit beta-1|5'-AMP-activated protein kinase beta-1 subunit|AMP-activated protein kinase beta subunit|AMPK beta -1 chain|AMPK beta 1|AMPK subunit beta-1|AMPKb|protein kinase, AMP-activated, beta 1 non-catalytic subunit|protein kinase, AMP-activated, noncatalytic, beta-1 27 0.003696 9.746 1 1 +5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 1 protein-coding - 5'-AMP-activated protein kinase subunit beta-2|5'-AMP-activated protein kinase, beta-2 subunit|AMP-activated protein kinase beta 2 non-catalytic subunit|AMPK beta 2|AMPK beta-2 chain|AMPK subunit beta-2|protein kinase, AMP-activated, beta 2 non-catalytic subunit 16 0.00219 9.202 1 1 +5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha 19 protein-coding PKACA|PPNAD4 cAMP-dependent protein kinase catalytic subunit alpha|PKA C-alpha|protein kinase A catalytic subunit|protein kinase, cAMP-dependent, alpha catalytic subunit|protein kinase, cAMP-dependent, catalytic, alpha 31 0.004243 11.02 1 1 +5567 PRKACB protein kinase cAMP-activated catalytic subunit beta 1 protein-coding PKA C-beta|PKACB cAMP-dependent protein kinase catalytic subunit beta|cAMP-dependent protein kinase catalytic beta subunit isoform 4ab|protein kinase A catalytic subunit beta|protein kinase, cAMP-dependent, beta catalytic subunit|protein kinase, cAMP-dependent, catalytic, beta 33 0.004517 9.886 1 1 +5568 PRKACG protein kinase cAMP-activated catalytic subunit gamma 9 protein-coding BDPLT19|KAPG|PKACg cAMP-dependent protein kinase catalytic subunit gamma|PKA C-gamma|protein kinase, cAMP-dependent, catalytic, gamma|protein kinase, cAMP-dependent, gamma catalytic subunit|serine(threonine) protein kinase 36 0.004927 0.2379 1 1 +5569 PKIA protein kinase (cAMP-dependent, catalytic) inhibitor alpha 8 protein-coding PRKACN1 cAMP-dependent protein kinase inhibitor alpha|PKI-alpha|cAMP-dependent protein kinase inhibitor, muscle/brain isoform 12 0.001642 6.629 1 1 +5570 PKIB protein kinase (cAMP-dependent, catalytic) inhibitor beta 6 protein-coding PRKACN2 cAMP-dependent protein kinase inhibitor beta|PKI-beta|cAMP-dependent protein kinase inhibitor 2 7 0.0009581 6.567 1 1 +5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 12 protein-coding AMPKG 5'-AMP-activated protein kinase subunit gamma-1|5'-AMP-activated protein kinase, gamma-1 subunit|AMPK gamma-1 chain|AMPK gamma1|protein kinase, AMP-activated, gamma 1 non-catalytic subunit 21 0.002874 10.17 1 1 +5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha 17 protein-coding ACRDYS1|ADOHR|CAR|CNC|CNC1|PKR1|PPNAD1|PRKAR1|TSE1 cAMP-dependent protein kinase type I-alpha regulatory subunit|Carney complex type 1|cAMP-dependent protein kinase regulatory subunit RIalpha|cAMP-dependent protein kinase type I-alpha regulatory chain|protein kinase A type 1a regulatory subunit|protein kinase, cAMP-dependent, regulatory subunit type I alpha|protein kinase, cAMP-dependent, regulatory, type I, alpha|tissue-specific extinguisher 1 34 0.004654 12.38 1 1 +5575 PRKAR1B protein kinase cAMP-dependent type I regulatory subunit beta 7 protein-coding PRKAR1 cAMP-dependent protein kinase type I-beta regulatory subunit|protein kinase, cAMP-dependent, regulatory subunit type I beta|protein kinase, cAMP-dependent, regulatory, type I, beta 26 0.003559 8.447 1 1 +5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha 3 protein-coding PKR2|PRKAR2 cAMP-dependent protein kinase type II-alpha regulatory subunit|cAMP-dependent protein kinase regulatory subunit RII alpha|protein kinase A, RII-alpha subunit|protein kinase, cAMP-dependent, regulatory subunit type II alpha 21 0.002874 7.736 1 1 +5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta 7 protein-coding PRKAR2|RII-BETA cAMP-dependent protein kinase type II-beta regulatory subunit|H_RG363E19.2|WUGSC:H_RG363E19.2|cAMP-dependent protein kinase type II-beta regulatory chain|protein kinase, cAMP-dependent, regulatory subunit type II beta|protein kinase, cAMP-dependent, regulatory, type II, beta 34 0.004654 7.626 1 1 +5578 PRKCA protein kinase C alpha 17 protein-coding AAG6|PKC-alpha|PKCA|PRKACA protein kinase C alpha type|PKC-A|aging-associated gene 6 55 0.007528 9.113 1 1 +5579 PRKCB protein kinase C beta 16 protein-coding PKC-beta|PKCB|PRKCB1|PRKCB2 protein kinase C beta type|PKC-B|protein kinase C, beta 1 polypeptide 107 0.01465 7.146 1 1 +5580 PRKCD protein kinase C delta 3 protein-coding ALPS3|CVID9|MAY1|PKCD|nPKC-delta protein kinase C delta type|protein kinase C delta VIII|tyrosine-protein kinase PRKCD 42 0.005749 10.16 1 1 +5581 PRKCE protein kinase C epsilon 2 protein-coding PKCE|nPKC-epsilon protein kinase C epsilon type 51 0.006981 7.871 1 1 +5582 PRKCG protein kinase C gamma 19 protein-coding PKC-gamma|PKCC|PKCG|SCA14 protein kinase C gamma type 94 0.01287 2.083 1 1 +5583 PRKCH protein kinase C eta 14 protein-coding PKC-L|PKCL|PRKCL|nPKC-eta protein kinase C eta type 49 0.006707 9.042 1 1 +5584 PRKCI protein kinase C iota 3 protein-coding DXS1179E|PKCI|nPKC-iota protein kinase C iota type|PRKC-lambda/iota|aPKC-lambda/iota|atypical protein kinase C-lambda/iota 62 0.008486 10.01 1 1 +5585 PKN1 protein kinase N1 19 protein-coding DBK|PAK-1|PAK1|PKN|PKN-ALPHA|PRK1|PRKCL1 serine/threonine-protein kinase N1|protease-activated kinase 1|protein kinase C-like 1|protein kinase C-like PKN|protein kinase C-related kinase 1|protein kinase PKN-alpha|serine-threonine kinase N|serine/threonine protein kinase N 59 0.008076 11.38 1 1 +5586 PKN2 protein kinase N2 1 protein-coding PAK2|PRK2|PRKCL2|PRO2042|Pak-2|STK7 serine/threonine-protein kinase N2|PKN gamma|cardiolipin-activated protein kinase Pak2|protein kinase C-like 2|protein-kinase C-related kinase 2 62 0.008486 9.958 1 1 +5587 PRKD1 protein kinase D1 14 protein-coding PKC-MU|PKCM|PKD|PRKCM serine/threonine-protein kinase D1|nPKC-D1|nPKC-mu|protein kinase C mu type|protein kinase C, mu|protein kinase D 121 0.01656 7.147 1 1 +5588 PRKCQ protein kinase C theta 10 protein-coding PRKCT|nPKC-theta protein kinase C theta type 83 0.01136 5.808 1 1 +5589 PRKCSH protein kinase C substrate 80K-H 19 protein-coding AGE-R2|G19P1|GIIB|PCLD|PCLD1|PKCSH|PLD1|VASAP-60 glucosidase 2 subunit beta|AGE-binding receptor 2|advanced glycation end-product receptor 2|glucosidase II subunit beta|hepatocystin|protein kinase C substrate 60.1 kDa protein heavy chain|protein kinase C substrate, 80 Kda protein 35 0.004791 12.66 1 1 +5590 PRKCZ protein kinase C zeta 1 protein-coding PKC-ZETA|PKC2 protein kinase C zeta type|nPKC-zeta 29 0.003969 9.087 1 1 +5591 PRKDC protein kinase, DNA-activated, catalytic polypeptide 8 protein-coding DNA-PKcs|DNAPK|DNPK1|HYRC|HYRC1|IMD26|XRCC7|p350 DNA-dependent protein kinase catalytic subunit|DNA-PK catalytic subunit|hyper-radiosensitivity of murine scid mutation, complementing 1|p460 261 0.03572 12.01 1 1 +5592 PRKG1 protein kinase, cGMP-dependent, type I 10 protein-coding AAT8|PKG|PRKG1B|PRKGR1B|cGK|cGK 1|cGK1|cGKI|cGKI-BETA|cGKI-alpha cGMP-dependent protein kinase 1|protein kinase, cGMP-dependent, regulatory, type I, beta 95 0.013 4.943 1 1 +5593 PRKG2 protein kinase, cGMP-dependent, type II 4 protein-coding PRKGR2|cGK2|cGKII cGMP-dependent protein kinase 2|cGMP-dependent protein kinase II|testicular tissue protein Li 99 84 0.0115 3.328 1 1 +5594 MAPK1 mitogen-activated protein kinase 1 22 protein-coding ERK|ERK-2|ERK2|ERT1|MAPK2|P42MAPK|PRKM1|PRKM2|p38|p40|p41|p41mapk|p42-MAPK mitogen-activated protein kinase 1|MAP kinase 1|MAP kinase 2|MAP kinase isoform p42|MAPK 2|extracellular signal-regulated kinase 2|mitogen-activated protein kinase 2|protein tyrosine kinase ERK2 36 0.004927 11.6 1 1 +5595 MAPK3 mitogen-activated protein kinase 3 16 protein-coding ERK-1|ERK1|ERT2|HS44KDAP|HUMKER1A|P44ERK1|P44MAPK|PRKM3|p44-ERK1|p44-MAPK mitogen-activated protein 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 23 0.003148 10.57 1 1 +5596 MAPK4 mitogen-activated protein kinase 4 18 protein-coding ERK-4|ERK4|PRKM4|p63-MAPK|p63MAPK mitogen-activated protein kinase 4|Erk3-related|MAP kinase isoform p63|MAPK 4|extracellular signal-regulated kinase 4 55 0.007528 4.784 1 1 +5597 MAPK6 mitogen-activated protein kinase 6 15 protein-coding ERK3|HsT17250|PRKM6|p97MAPK mitogen-activated protein kinase 6|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 48 0.00657 10.23 1 1 +5598 MAPK7 mitogen-activated protein kinase 7 17 protein-coding BMK1|ERK4|ERK5|PRKM7 mitogen-activated protein kinase 7|BMK-1|BMK1 kinase|ERK-5|MAP kinase 7|MAPK 7|big MAP kinase 1|extracellular-signal-regulated kinase 5 45 0.006159 8.755 1 1 +5599 MAPK8 mitogen-activated protein kinase 8 10 protein-coding JNK|JNK-46|JNK1|JNK1A2|JNK21B1/2|PRKM8|SAPK1|SAPK1c mitogen-activated protein kinase 8|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 39 0.005338 7.696 1 1 +5600 MAPK11 mitogen-activated protein kinase 11 22 protein-coding P38B|P38BETA2|PRKM11|SAPK2|SAPK2B|p38-2|p38Beta mitogen-activated protein kinase 11|MAP kinase 11|MAP kinase p38 beta|mitogen-activated protein kinase p38 beta|mitogen-activated protein kinase p38-2|stress-activated protein kinase-2|stress-activated protein kinase-2b 22 0.003011 7.735 1 1 +5601 MAPK9 mitogen-activated protein kinase 9 5 protein-coding JNK-55|JNK2|JNK2A|JNK2ALPHA|JNK2B|JNK2BETA|PRKM9|SAPK|SAPK1a|p54a|p54aSAPK mitogen-activated protein kinase 9|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 36 0.004927 9.956 1 1 +5602 MAPK10 mitogen-activated protein kinase 10 4 protein-coding JNK3|JNK3A|PRKM10|SAPK1b|p493F12|p54bSAPK mitogen-activated protein kinase 10|JNK3 alpha protein kinase|MAP kinase 10|MAP kinase p49 3F12|c-Jun N-terminal kinase 3|stress activated protein kinase beta|stress-activated protein kinase 1b|stress-activated protein kinase JNK3 54 0.007391 6.688 1 1 +5603 MAPK13 mitogen-activated protein kinase 13 6 protein-coding MAPK 13|MAPK-13|PRKM13|SAPK4|p38delta mitogen-activated protein kinase 13|MAP kinase 13|MAP kinase p38 delta|mitogen-activated protein kinase p38 delta|stress-activated protein kinase 4 24 0.003285 9.284 1 1 +5604 MAP2K1 mitogen-activated protein kinase kinase 1 15 protein-coding CFC3|MAPKK1|MEK1|MKK1|PRKMK1 dual specificity mitogen-activated protein kinase kinase 1|ERK activator kinase 1|MAPK/ERK kinase 1|MAPKK 1|MEK 1|protein kinase, mitogen-activated, kinase 1 (MAP kinase kinase 1) 55 0.007528 10.3 1 1 +5605 MAP2K2 mitogen-activated protein kinase kinase 2 19 protein-coding CFC4|MAPKK2|MEK2|MKK2|PRKMK2 dual specificity mitogen-activated protein kinase kinase 2|ERK activator kinase 2|MAP kinase kinase 2|MAPK/ERK kinase 2|mitogen-activated protein kinase kinase 2, p45 32 0.00438 11.21 1 1 +5606 MAP2K3 mitogen-activated protein kinase kinase 3 17 protein-coding MAPKK3|MEK3|MKK3|PRKMK3|SAPKK-2|SAPKK2 dual specificity mitogen-activated protein kinase kinase 3|MAP kinase kinase 3|MAPK/ERK kinase 3|MAPKK 3|MEK 3|SAPK kinase 2|stress-activated protein kinase kinase 2 52 0.007117 10.11 1 1 +5607 MAP2K5 mitogen-activated protein kinase kinase 5 15 protein-coding HsT17454|MAPKK5|MEK5|PRKMK5 dual specificity mitogen-activated protein kinase kinase 5|MAP kinase kinase 5|MAP kinase kinase MEK5b|MAPK/ERK kinase 5|MAPKK 5|MEK 5 25 0.003422 8.362 1 1 +5608 MAP2K6 mitogen-activated protein kinase kinase 6 17 protein-coding MAPKK6|MEK6|MKK6|PRKMK6|SAPKK-3|SAPKK3 dual specificity mitogen-activated protein kinase kinase 6|MAPK/ERK kinase 6|MAPKK 6|MEK 6|SAPK kinase 3|protein kinase, mitogen-activated, kinase 6 (MAP kinase kinase 6)|stress-activated protein kinase kinase 3 22 0.003011 6.347 1 1 +5609 MAP2K7 mitogen-activated protein kinase kinase 7 19 protein-coding JNKK2|MAPKK7|MEK|MEK 7|MKK7|PRKMK7|SAPKK-4|SAPKK4 dual specificity mitogen-activated protein kinase kinase 7|JNK-activating kinase 2|MAP kinase kinase 7|MAPK/ERK kinase 7|SAPK kinase 4|c-Jun N-terminal kinase kinase 2|stress-activated protein kinase kinase 4 53 0.007254 9.784 1 1 +5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 2 protein-coding EIF2AK1|PKR|PPP1R83|PRKR interferon-induced, double-stranded RNA-activated protein kinase|P1/eIF-2A protein kinase|double stranded RNA activated protein kinase|eIF-2A protein kinase 2|interferon-inducible elF2alpha kinase|p68 kinase|protein kinase R|protein kinase, interferon-inducible double stranded RNA dependent|protein phosphatase 1, regulatory subunit 83|tyrosine-protein kinase EIF2AK2 33 0.004517 8.67 1 1 +5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 13 protein-coding ACPHD|ERdj6|HP58|P58|P58IPK|PRKRI dnaJ homolog subfamily C member 3|DnaJ (Hsp40) homolog, subfamily C, member 3|ER-resident protein ERdj6|endoplasmic reticulum DNA J domain-containing 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 32 0.00438 10.89 1 1 +5612 THAP12 THAP domain containing 12 11 protein-coding DAP4|P52rIPK|PRKRIR|THAP0 52 kDa repressor of the inhibitor of the protein kinase|58 kDa interferon-induced protein kinase-interacting protein|P58IPK-regulatory protein|THAP domain-containing protein 0|THAP domain-containing protein 12|death-associated protein 4|inhibitor of protein kinase PKR|p58IPK-interacting protein|protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor)|testicular tissue protein Li 133 60 0.008212 9.98 1 1 +5613 PRKX protein kinase, X-linked X protein-coding PKX1 cAMP-dependent protein kinase catalytic subunit PRKX|protein kinase PKX1|protein kinase X|serine/threonine-protein kinase PRKX 28 0.003832 9.188 1 1 +5616 PRKY protein kinase, Y-linked, pseudogene Y pseudo PRKXP3|PRKYP - 3 0.0004106 4.009 1 1 +5617 PRL prolactin 6 protein-coding GHA1 prolactin|decidual prolactin|growth hormone A1 26 0.003559 0.532 1 1 +5618 PRLR prolactin receptor 5 protein-coding HPRL|MFAB|hPRLrI prolactin receptor|hPRL receptor|secreted prolactin binding protein 70 0.009581 6.542 1 1 +5619 PRM1 protamine 1 16 protein-coding CT94.1|P1 sperm protamine P1|cancer/testis antigen family 94, member 1|cysteine-rich protamine|testicular tissue protein Li 91|testis specific protamine 1 4 0.0005475 0.05712 1 1 +5620 PRM2 protamine 2 16 protein-coding CT94.2 protamine-2|cancer/testis antigen family 94, member 2|sperm histone P2|sperm protamine P2|testicular secretory protein Li 40 9 0.001232 0.08052 1 1 +5621 PRNP prion protein 20 protein-coding ASCR|AltPrP|CD230|CJD|GSS|KURU|PRIP|PrP|PrP27-30|PrP33-35C|PrPc|p27-30 major prion protein|alternative prion protein|CD230 antigen|prion-related protein 26 0.003559 11.37 1 1 +5623 PSPN persephin 19 protein-coding PSP persephin 9 0.001232 1.042 1 1 +5624 PROC protein C, inactivator of coagulation factors Va and VIIIa 2 protein-coding APC|PC|PROC1|THPH3|THPH4 vitamin K-dependent protein C|anticoagulant protein C|autoprothrombin IIA|blood coagulation factor XIV|prepro-protein C|type I protein C 27 0.003696 4.374 1 1 +5625 PRODH proline dehydrogenase 1 22 protein-coding HSPOX2|PIG6|POX|PRODH1|PRODH2|TP53I6 proline dehydrogenase 1, mitochondrial|p53-induced gene 6 protein|proline dehydrogenase (oxidase) 1|proline oxidase 2|proline oxidase, mitochondrial|tumor protein p53 inducible protein 6 27 0.003696 7.1 1 1 +5626 PROP1 PROP paired-like homeobox 1 5 protein-coding CPHD2|PROP-1 homeobox protein prophet of Pit-1|pituitary-specific homeodomain factor|prophet of Pit1, paired-like homeodomain transcription factor 19 0.002601 0.1348 1 1 +5627 PROS1 protein S (alpha) 3 protein-coding PROS|PS21|PS22|PS23|PS24|PS25|PSA|THPH5|THPH6 vitamin K-dependent protein S|protein Sa|vitamin K-dependent plasma protein S 98 0.01341 9.392 1 1 +5629 PROX1 prospero homeobox 1 1 protein-coding - prospero homeobox protein 1|homeobox prospero-like protein PROX1|prospero-related homeobox 1 105 0.01437 4.172 1 1 +5630 PRPH peripherin 12 protein-coding NEF4|PRPH1 peripherin|neurofilament 4 (57kD) 16 0.00219 3.161 1 1 +5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 X protein-coding ARTS|CMTX5|DFN2|DFNX1|PPRibP|PRS-I|PRSI ribose-phosphate pyrophosphokinase 1|dJ1070B1.2 (phosphoribosyl pyrophosphate synthetase 1)|deafness 2, perceptive, congenital|deafness, X-linked 2, perceptive, congenital|phosphoribosyl pyrophosphate synthase I|ribose-phosphate diphosphokinase 1 19 0.002601 9.828 1 1 +5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 X protein-coding PRSII ribose-phosphate pyrophosphokinase 2|PPRibP synthetase|PRS-II|phosphoribosyl pyrophosphate synthase II|ribose-phosphate diphosphokinase 2|testicular secretory protein Li 41 23 0.003148 9.797 1 1 +5635 PRPSAP1 phosphoribosyl pyrophosphate synthetase associated protein 1 17 protein-coding PAP39 phosphoribosyl pyrophosphate synthase-associated protein 1|39 kDa phosphoribosypyrophosphate synthase-associated protein|PRPP synthase-associated protein 1 21 0.002874 9.696 1 1 +5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 17 protein-coding PAP41 phosphoribosyl pyrophosphate synthase-associated protein 2|41 kDa phosphoribosypyrophosphate synthetase-associated protein|PRPP synthase-associated protein 2 15 0.002053 9.138 1 1 +5638 PRRG1 proline rich and Gla domain 1 X protein-coding PRGP1 transmembrane gamma-carboxyglutamic acid protein 1|proline rich Gla (G-carboxyglutamic acid) 1|proline-rich Gla (G-carboxyglutamic acid) polypeptide 1 37 0.005064 7.777 1 1 +5639 PRRG2 proline rich and Gla domain 2 19 protein-coding PRGP2 transmembrane gamma-carboxyglutamic acid protein 2|proline rich Gla (G-carboxyglutamic acid) 2|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 16 0.00219 6.532 1 1 +5641 LGMN legumain 14 protein-coding AEP|LGMN1|PRSC1 legumain|asparaginyl endopeptidase|cysteine protease 1|protease, cysteine 1|protease, cysteine, 1 (legumain) 23 0.003148 11.29 1 1 +5644 PRSS1 protease, serine 1 7 protein-coding TRP1|TRY1|TRY4|TRYP1 trypsin-1|TCR V beta 4.1|beta-trypsin|cationic trypsinogen|digestive zymogen|nonfunctional trypsin 1|trypsinogen 1|trypsinogen A 61 0.008349 1.815 1 1 +5646 PRSS3 protease, serine 3 9 protein-coding MTG|PRSS4|T9|TRY3|TRY4 trypsin-3|brain trypsinogen|mesotrypsin|mesotrypsinogen|pancreatic trypsinogen III|protease, serine, 4 (trypsin 4, brain)|trypsin III|trypsin IV|trypsinogen 4|trypsinogen 5|trypsinogen IV 40 0.005475 4.353 1 1 +5648 MASP1 mannan binding lectin serine peptidase 1 3 protein-coding 3MC1|CRARF|CRARF1|MAP1|MASP|MASP3|MAp44|PRSS5|RaRF mannan-binding lectin serine protease 1|C4/C2 activating component of Ra-reactive factor|Ra-reactive factor serine protease p100|complement factor MASP-3|complement-activating component of Ra-reactive factor|mannan-binding lectin serine peptidase 1 (C4/C2 activating component of Ra-reactive factor)|mannose-binding lectin-associated serine protease 1|mannose-binding protein-associated serine protease|serine protease 5 97 0.01328 5.483 1 1 +5649 RELN reelin 7 protein-coding ETL7|LIS2|PRO1598|RL reelin 363 0.04969 4.707 1 1 +5650 KLK7 kallikrein related peptidase 7 19 protein-coding PRSS6|SCCE|hK7 kallikrein-7|kallikrein 7 (chymotryptic, stratum corneum)|serine protease 6|signal protein|stratum corneum chymotryptic enzyme 17 0.002327 4.103 1 1 +5651 TMPRSS15 transmembrane protease, serine 15 21 protein-coding ENTK|PRSS7 enteropeptidase|enterokinase catalytic subunit|protease, serine, 7 (enterokinase)|serine protease 7 150 0.02053 0.6799 1 1 +5652 PRSS8 protease, serine 8 16 protein-coding CAP1|PROSTASIN prostasin|channel-activating protease 1|serine protease 8 16 0.00219 9.252 1 1 +5653 KLK6 kallikrein related peptidase 6 19 protein-coding Bssp|Klk7|PRSS18|PRSS9|SP59|hK6 kallikrein-6|kallikrein 6|neurosin|protease M|serine protease 18|serine protease 9|zyme 32 0.00438 4.698 1 1 +5654 HTRA1 HtrA serine peptidase 1 10 protein-coding ARMD7|CADASIL2|CARASIL|HtrA|L56|ORF480|PRSS11 serine protease HTRA1|IGFBP5-protease|high-temperature requirement A serine peptidase 1|protease, serine, 11 (IGF binding) 36 0.004927 11.28 1 1 +5655 KLK10 kallikrein related peptidase 10 19 protein-coding NES1|PRSSL1 kallikrein-10|breast normal epithelial cell associated serine protease|kallikrein 10 protein 1|kallikrein 10 protein 12|kallikrein 10 protein 13|kallikrein 10 protein 2|kallikrein 10 protein 3|kallikrein 10 protein 4|kallikrein 10 protein 5|kallikrein 10 protein 7|kallikrein 10 protein 8|kallikrein 10 protein 9|normal epithelial cell-specific 1|protease serine-like 1 18 0.002464 5.797 1 1 +5657 PRTN3 proteinase 3 19 protein-coding ACPA|AGP7|C-ANCA|CANCA|MBN|MBT|NP-4|NP4|P29|PR-3|PR3 myeloblastin|C-ANCA antigen|Wegener granulomatosis autoantigen|azurophil granule protein 7|leukocyte proteinase 3|neutrophil proteinase 4|serine proteinase, neutrophil|wegener autoantigen 12 0.001642 0.9359 1 1 +5660 PSAP prosaposin 10 protein-coding GLBA|SAP1 prosaposin|proactivator polypeptide|sphingolipid activator protein-1 39 0.005338 15.03 1 1 +5662 PSD pleckstrin and Sec7 domain containing 10 protein-coding EFA6|EFA6A|PSD1|TYL PH and SEC7 domain-containing protein 1|exchange factor for ARF6|pleckstrin homology and SEC7 domain-containing protein 1|pleckstrin-Sec7 domains-containing 92 0.01259 6.115 1 1 +5663 PSEN1 presenilin 1 14 protein-coding AD3|FAD|PS-1|PS1|S182 presenilin-1 36 0.004927 10.82 1 1 +5664 PSEN2 presenilin 2 1 protein-coding AD3L|AD4|CMD1V|PS2|STM2 presenilin-2|AD3LP|AD5|Alzheimer disease 4|E5-1|PS-2|STM-2 38 0.005201 8.857 1 1 +5669 PSG1 pregnancy specific beta-1-glycoprotein 1 19 protein-coding B1G1|CD66f|DHFRP2|FL-NCA-1/2|PBG1|PS-beta-C/D|PS-beta-G-1|PSBG-1|PSBG1|PSG95|PSGGA|PSGIIA|SP1 pregnancy-specific beta-1-glycoprotein 1|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 66 0.009034 0.6089 1 1 +5670 PSG2 pregnancy specific beta-1-glycoprotein 2 19 protein-coding CEA|PSBG2|PSG1 pregnancy-specific beta-1-glycoprotein 2|PS-beta-E|PS-beta-G-2|PSBG-2|carcinoembryonic antigen SG8|pregnancy-specific beta-1 glycoprotein E|pregnancy-specific beta-1-glycoprotein 7|pregnancy-specific glycoprotein 2 81 0.01109 0.1617 1 1 +5671 PSG3 pregnancy specific beta-1-glycoprotein 3 19 protein-coding - pregnancy-specific beta-1-glycoprotein 3|PS-beta-G-3|PSBG-3|carcinoembryonic antigen SG5|pregnancy-specific glycoprotein 3 69 0.009444 0.3773 1 1 +5672 PSG4 pregnancy specific beta-1-glycoprotein 4 19 protein-coding PSBG-4|PSBG-9|PSG9 pregnancy-specific beta-1-glycoprotein 4|PS-beta-G-4|PS-beta-G-9|Pregnancy-specific beta-1-glycoprotein-4|pregnancy-specific beta-1-glycoprotein 9|pregnancy-specific glycoprotein 4|pregnancy-specific glycoprotein 9 63 0.008623 1.295 1 1 +5673 PSG5 pregnancy specific beta-1-glycoprotein 5 19 protein-coding FL-NCA-3|PSG pregnancy-specific beta-1-glycoprotein 5|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 glycoprotein 5 52 0.007117 0.7824 1 1 +5675 PSG6 pregnancy specific beta-1-glycoprotein 6 19 protein-coding PSBG-10|PSBG-12|PSBG-6|PSG10|PSGGB pregnancy-specific beta-1-glycoprotein 6|PS-beta-G-10|PS-beta-G-12|PS-beta-G-6|pregnancy-specific beta-1-glycoprotein 10|pregnancy-specific beta-1-glycoprotein 12 82 0.01122 0.2185 1 1 +5676 PSG7 pregnancy specific beta-1-glycoprotein 7 (gene/pseudogene) 19 protein-coding PSBG-7|PSG1|PSGGA putative pregnancy-specific beta-1-glycoprotein 7|PS-beta-G-7|pregnancy-specific glycoprotein 7 111 0.01519 0.1525 1 1 +5678 PSG9 pregnancy specific beta-1-glycoprotein 9 19 protein-coding PS34|PSBG-11|PSBG-9|PSG11|PSGII pregnancy-specific beta-1-glycoprotein 9|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 11 C-R domain 57 0.007802 0.5674 1 1 +5680 PSG11 pregnancy specific beta-1-glycoprotein 11 19 protein-coding PSBG-11|PSBG-13|PSG13|PSG14 pregnancy-specific beta-1-glycoprotein 11|PS-beta-G-11|PS-beta-G-13|pregnancy-specific beta-1-glycoprotein 13 67 0.009171 0.1144 1 1 +5681 PSKH1 protein serine kinase H1 16 protein-coding - serine/threonine-protein kinase H1|PSK-H1 25 0.003422 9.709 1 1 +5682 PSMA1 proteasome subunit alpha 1 11 protein-coding HC2|HEL-S-275|NU|PROS30 proteasome subunit alpha type-1|30 kDa prosomal protein|PROS-30|epididymis secretory protein Li 275|macropain subunit C2|macropain subunit nu|multicatalytic endopeptidase complex subunit C2|proteasome (prosome, macropain) subunit, alpha type, 1|proteasome component C2|proteasome nu chain|proteasome subunit nu|proteasome subunit, alpha-type, 1|protein P30-33K|testicular tissue protein Li 150 25 0.003422 11.13 1 1 +5683 PSMA2 proteasome subunit alpha 2 7 protein-coding HC3|MU|PMSA2|PSC2 proteasome subunit alpha type-2|macropain subunit C3|multicatalytic endopeptidase complex subunit C3|proteasome (prosome, macropain) subunit, alpha type, 2|proteasome component C3|proteasome subunit HC3 8 0.001095 11.16 1 1 +5684 PSMA3 proteasome subunit alpha 3 14 protein-coding HC8|PSC3 proteasome subunit alpha type-3|macropain subunit C8|multicatalytic endopeptidase complex subunit C8|proteasome (prosome, macropain) subunit, alpha type, 3|proteasome component C8|proteasome subunit C8|testicular secretory protein Li 43 15 0.002053 10.41 1 1 +5685 PSMA4 proteasome subunit alpha 4 15 protein-coding HC9|HsT17706|PSC9 proteasome subunit alpha type-4|macropain subunit C9|multicatalytic endopeptidase complex subunit C9|proteasome (prosome, macropain) subunit, alpha type, 4|proteasome component C9|proteasome subunit HC9|proteasome subunit L 19 0.002601 11.16 1 1 +5686 PSMA5 proteasome subunit alpha 5 1 protein-coding PSC5|ZETA proteasome subunit alpha type-5|epididymis tissue sperm binding protein Li 11n|macropain subunit zeta|macropain zeta chain|multicatalytic endopeptidase complex zeta chain|proteasome (prosome, macropain) subunit, alpha type, 5|proteasome alpha 5 subunit|proteasome component 5|proteasome subunit zeta|proteasome zeta chain 21 0.002874 10.71 1 1 +5687 PSMA6 proteasome subunit alpha 6 14 protein-coding IOTA|PROS27|p27K proteasome subunit alpha type-6|27 kDa prosomal protein|PROS-27|macropain iota chain|macropain subunit iota|multicatalytic endopeptidase complex iota chain|prosomal P27K protein|proteasome (prosome, macropain) subunit, alpha type, 6|proteasome iota chain|proteasome subunit iota|testicular secretory protein Li 44 24 0.003285 11.09 1 1 +5688 PSMA7 proteasome subunit alpha 7 20 protein-coding C6|HEL-S-276|HSPC|RC6-1|XAPC7 proteasome subunit alpha type-7|epididymis secretory protein Li 276|proteasome (prosome, macropain) subunit, alpha type, 7|proteasome subunit RC6-1|proteasome subunit XAPC7|proteasome subunit alpha 4|testicular tissue protein Li 151 19 0.002601 11.67 1 1 +5689 PSMB1 proteasome subunit beta 1 6 protein-coding HC5|PMSB1|PSC5 proteasome subunit beta type-1|macropain subunit C5|multicatalytic endopeptidase complex subunit C5|proteasome (prosome, macropain) subunit, beta type, 1|proteasome beta 1 subunit|proteasome component C5|proteasome gamma chain|proteasome subunit HC5|testicular secretory protein Li 45 17 0.002327 11.51 1 1 +5690 PSMB2 proteasome subunit beta 2 1 protein-coding HC7-I proteasome subunit beta type-2|macropain subunit C7-I|multicatalytic endopeptidase complex subunit C7-1|multicatalytic endopeptidase complex subunit C7-I|proteasome (prosome, macropain) subunit, beta type, 2|proteasome beta 2 subunit|proteasome component C7-I|proteasome subunit, beta type, 2|testicular tissue protein Li 152 10 0.001369 11.12 1 1 +5691 PSMB3 proteasome subunit beta 3 17 protein-coding HC10-II proteasome subunit beta type-3|proteasome (prosome, macropain) subunit, beta type, 3|proteasome chain 13|proteasome component C10-II|proteasome theta chain 14 0.001916 11.18 1 1 +5692 PSMB4 proteasome subunit beta 4 1 protein-coding HN3|HsN3|PROS-26|PROS26 proteasome subunit beta type-4|26 kDa prosomal protein|hsBPROS26|macropain beta chain|multicatalytic endopeptidase complex beta chain|proteasome (prosome, macropain) subunit, beta type, 4|proteasome beta chain|proteasome chain 3|proteasome subunit HsN3|proteasome subunit, beta type, 4|testis tissue sperm-binding protein Li 79P 18 0.002464 12.21 1 1 +5693 PSMB5 proteasome subunit beta 5 14 protein-coding LMPX|MB1|X proteasome subunit beta type-5|PSX large multifunctional protease X|macropain epsilon chain|multicatalytic endopeptidase complex epsilon chain|proteasome (prosome, macropain) subunit, beta type, 5|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|testicular tissue protein Li 153 16 0.00219 11.15 1 1 +5694 PSMB6 proteasome subunit beta 6 17 protein-coding DELTA|LMPY|Y proteasome subunit beta type-6|PSY large multifunctional protease Y|macropain delta chain|multicatalytic endopeptidase complex delta chain|proteasome (prosome, macropain) subunit, beta type, 6|proteasome catalytic subunit 1|proteasome delta chain|proteasome subunit Y|proteasome subunit delta 10 0.001369 10.83 1 1 +5695 PSMB7 proteasome subunit beta 7 9 protein-coding Z proteasome subunit beta type-7|macropain chain Z|multicatalytic endopeptidase complex chain Z|proteasome (prosome, macropain) subunit, beta type, 7|proteasome catalytic subunit 2|proteasome subunit Z|proteasome subunit alpha|protein serine kinase c17 6 0.0008212 11.17 1 1 +5696 PSMB8 proteasome subunit beta 8 6 protein-coding ALDD|D6S216|D6S216E|JMP|LMP7|NKJO|PSMB5i|RING10 proteasome subunit beta type-8|low molecular mass protein 7|low molecular weight protein 7|macropain subunit C13|multicatalytic endopeptidase complex subunit C13|protease component C13|proteasome (prosome, macropain) subunit, beta type, 8 (large multifunctional peptidase 7)|proteasome catalytic subunit 3i|proteasome component C13|proteasome subunit Y2|proteasome subunit beta 5i|proteasome-related gene 7|really interesting new gene 10 protein 26 0.003559 10.8 1 1 +5697 PYY peptide YY 17 protein-coding PYY-I|PYY1 peptide YY|peptide tyrosine tyrosine|prepro-PYY 8 0.001095 1.135 1 1 +5698 PSMB9 proteasome subunit beta 9 6 protein-coding LMP2|PSMB6i|RING12|beta1i proteasome subunit beta type-9|large multifunctional peptidase 2|low molecular mass protein 2|macropain chain 7|multicatalytic endopeptidase complex chain 7|proteasome (prosome, macropain) subunit, beta type, 9 (large multifunctional peptidase 2)|proteasome catalytic subunit 1i|proteasome chain 7|proteasome subunit beta 6i|proteasome subunit beta-1i|proteasome-related gene 2|really interesting new gene 12 protein 14 0.001916 9.373 1 1 +5699 PSMB10 proteasome subunit beta 10 16 protein-coding LMP10|MECL1|beta2i proteasome subunit beta type-10|low molecular mass protein 10|macropain subunit MECl-1|multicatalytic endopeptidase complex subunit MECl-1|proteasome (prosome, macropain) subunit, beta type, 10|proteasome MECl-1|proteasome catalytic subunit 2i|proteasome subunit MECL1|proteasome subunit beta 7i|proteasome subunit beta-2i 11 0.001506 10.07 1 1 +5700 PSMC1 proteasome 26S subunit, ATPase 1 14 protein-coding P26S4|S4|p56 26S protease regulatory subunit 4|26S proteasome AAA-ATPase subunit RPT2|proteasome (prosome, macropain) 26S subunit, ATPase, 1|proteasome 26S ATPase subunit 1 21 0.002874 9.162 1 1 +5701 PSMC2 proteasome 26S subunit, ATPase 2 7 protein-coding MSS1|Nbla10058|S7 26S protease regulatory subunit 7|26S proteasome AAA-ATPase subunit RPT1|mammalian suppressor of sgv-1 of yeast|protease 26S subunit 7|proteasome (prosome, macropain) 26S subunit, ATPase, 2|putative protein product of Nbla10058|testis secretory sperm-binding protein Li 197a 39 0.005338 10.83 1 1 +5702 PSMC3 proteasome 26S subunit, ATPase 3 11 protein-coding TBP1 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 (prosome, macropain) 26S subunit, ATPase, 3|proteasome subunit P50|testicular secretory protein Li 42 25 0.003422 11.27 1 1 +5704 PSMC4 proteasome 26S subunit, ATPase 4 19 protein-coding MIP224|RPT3|S6|TBP-7|TBP7 26S protease regulatory subunit 6B|26S proteasome AAA-ATPase subunit RPT3|MB67-interacting protein|Tat-binding protein 7|protease 26S subunit 6|proteasome (prosome, macropain) 26S subunit, ATPase, 4 36 0.004927 10.99 1 1 +5705 PSMC5 proteasome 26S subunit, ATPase 5 17 protein-coding S8|SUG-1|SUG1|TBP10|TRIP1|p45|p45/SUG 26S protease regulatory subunit 8|26S proteasome AAA-ATPase subunit RPT6|MSUG1 protein|Tat-binding protein homolog 10|proteasome (prosome, macropain) 26S subunit, ATPase, 5|proteasome 26S ATPase subunit 5|proteasome subunit p45|testicular tissue protein Li 149|thyroid hormone receptor-interacting protein 1|thyroid receptor interactor 1 30 0.004106 11.51 1 1 +5706 PSMC6 proteasome 26S subunit, ATPase 6 14 protein-coding CADP44|HEL-S-73|P44|SUG2|p42 26S protease regulatory subunit 10B|26S protease regulatory subunit S10B|26S proteasome AAA-ATPase subunit RPT4|conserved ATPase domain protein 44|epididymis secretory protein Li 73|proteasome (prosome, macropain) 26S subunit, ATPase, 6|proteasome subunit p42 42 0.005749 10.08 1 1 +5707 PSMD1 proteasome 26S subunit, non-ATPase 1 2 protein-coding P112|Rpn2|S1 26S proteasome non-ATPase regulatory subunit 1|26S proteasome regulatory subunit RPN2|26S proteasome regulatory subunit S1|26S proteasome subunit p112|proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 60 0.008212 11.12 1 1 +5708 PSMD2 proteasome 26S subunit, non-ATPase 2 3 protein-coding P97|RPN1|S2|TRAP2 26S proteasome non-ATPase regulatory subunit 2|55.11 protein|TNFR-associated protein 2|proteasome (prosome, macropain) 26S subunit, non-ATPase, 2|protein 55.11|tumor necrosis factor type 1 receptor-associated protein 2 44 0.006022 12.16 1 1 +5709 PSMD3 proteasome 26S subunit, non-ATPase 3 17 protein-coding P58|RPN3|S3|TSTA2 26S proteasome non-ATPase regulatory subunit 3|26S proteasome regulatory subunit RPN3|26S proteasome regulatory subunit S3|proteasome (prosome, macropain) 26S subunit, non-ATPase, 3|proteasome subunit p58|tissue specific transplantation antigen 2 29 0.003969 11.54 1 1 +5710 PSMD4 proteasome 26S subunit, non-ATPase 4 1 protein-coding AF|AF-1|ASF|MCB1|Rpn10|S5A|pUB-R5 26S proteasome non-ATPase regulatory subunit 4|26S proteasome regulatory subunit S5A|S5a/antisecretory factor protein|angiocidin|antisecretory factor 1|multiubiquitin chain-binding protein|proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 19 0.002601 11.59 1 1 +5711 PSMD5 proteasome 26S subunit, non-ATPase 5 9 protein-coding S5B 26S proteasome non-ATPase regulatory subunit 5|26S protease subunit S5 basic|26S proteasome subunit S5B|proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 18 0.002464 9.656 1 1 +5713 PSMD7 proteasome 26S subunit, non-ATPase 7 16 protein-coding MOV34|P40|Rpn8|S12 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 14 0.001916 10.85 1 1 +5714 PSMD8 proteasome 26S subunit, non-ATPase 8 19 protein-coding HEL-S-91n|HIP6|HYPF|Nin1p|Rpn12|S14|p31 26S proteasome non-ATPase regulatory subunit 8|26S proteasome regulatory subunit RPN12|26S proteasome regulatory subunit S14|26S proteasome regulatory subunit p31|epididymis secretory sperm binding protein Li 91n|proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 12 0.001642 11.6 1 1 +5715 PSMD9 proteasome 26S subunit, non-ATPase 9 12 protein-coding Rpn4|p27 26S proteasome non-ATPase regulatory subunit 9|26S proteasome regulatory subunit p27|homolog of rat Bridge 1|proteasome (prosome, macropain) 26S subunit, non-ATPase, 9|proteasome 26S non-ATPase regulatory subunit 9 14 0.001916 9.868 1 1 +5716 PSMD10 proteasome 26S subunit, non-ATPase 10 X protein-coding dJ889N15.2|p28|p28(GANK) 26S proteasome non-ATPase regulatory subunit 10|26S proteasome regulatory subunit p28|ankyrin repeat protein|gankyrin|hepatocellular carcinoma-associated protein p28-II|proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 5 0.0006844 9.987 1 1 +5717 PSMD11 proteasome 26S subunit, non-ATPase 11 17 protein-coding Rpn6|S9|p44.5 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|proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 32 0.00438 10.27 1 1 +5718 PSMD12 proteasome 26S subunit, non-ATPase 12 17 protein-coding Rpn5|p55 26S proteasome non-ATPase regulatory subunit 12|26S proteasome regulatory subunit RPN5|26S proteasome regulatory subunit p55|proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 28 0.003832 9.716 1 1 +5719 PSMD13 proteasome 26S subunit, non-ATPase 13 11 protein-coding HSPC027|Rpn9|S11|p40.5 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|proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 19 0.002601 11.18 1 1 +5720 PSME1 proteasome activator subunit 1 14 protein-coding HEL-S-129m|IFI5111|PA28A|PA28alpha|REGalpha proteasome activator complex subunit 1|11S regulator complex subunit alpha|29-kD MCP activator subunit|IGUP I-5111|activator of multicatalytic protease subunit 1|epididymis secretory sperm binding protein Li 129m|interferon gamma up-regulated I-5111 protein|interferon-gamma IEF SSP 5111|interferon-gamma-inducible protein 5111|proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) 16 0.00219 11.73 1 1 +5721 PSME2 proteasome activator subunit 2 14 protein-coding PA28B|PA28beta|REGbeta proteasome activator complex subunit 2|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 (prosome, macropain) activator subunit 2 (PA28 beta)|proteasome activator 28 subunit beta|proteasome activator 28-beta|proteasome activator hPA28 subunit beta 11 0.001506 11 1 1 +5723 PSPH phosphoserine phosphatase 7 protein-coding PSP|PSPHD phosphoserine phosphatase|L-3-phosphoserine phosphatase|O-phosphoserine phosphohydrolase|PSPase 31 0.004243 8.446 1 1 +5724 PTAFR platelet activating factor receptor 1 protein-coding PAFR platelet-activating factor receptor|PAF-R 21 0.002874 6.187 1 1 +5725 PTBP1 polypyrimidine tract binding protein 1 19 protein-coding HNRNP-I|HNRNPI|HNRPI|PTB|PTB-1|PTB-T|PTB2|PTB3|PTB4|pPTB polypyrimidine tract-binding protein 1|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) 40 0.005475 12.44 1 1 +5726 TAS2R38 taste 2 receptor member 38 7 protein-coding PTC|T2R38|T2R61 taste receptor type 2 member 38|PTC bitter taste receptor|taste receptor type 2 member 61|taste receptor, type 2, member 38 33 0.004517 0.5023 1 1 +5727 PTCH1 patched 1 9 protein-coding BCNS|HPE7|NBCCS|PTC|PTC1|PTCH|PTCH11 protein patched homolog 1|PTCH protein +12b|PTCH protein +4'|PTCH protein -10|PTCH protein -3,4,5 135 0.01848 8.256 1 1 +5728 PTEN phosphatase and tensin homolog 10 protein-coding 10q23del|BZS|CWS1|DEC|GLM2|MHAM|MMAC1|PTEN1|TEP1 phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN|MMAC1 phosphatase and tensin homolog deleted on chromosome 10|mitochondrial PTENalpha|mitochondrial phosphatase and tensin protein alpha|mutated in multiple advanced cancers 1|phosphatase and tensin-like protein|phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 279 0.03819 10.6 1 1 +5729 PTGDR prostaglandin D2 receptor 14 protein-coding AS1|ASRT1|DP|DP1|PTGDR1 prostaglandin D2 receptor|PGD2 receptor|prostaglandin D2 receptor (DP) 38 0.005201 3.056 1 1 +5730 PTGDS prostaglandin D2 synthase 9 protein-coding L-PGDS|LPGDS|PDS|PGD2|PGDS|PGDS2 prostaglandin-H2 D-isomerase|PGD2 synthase|beta-trace protein|cerebrin-28|glutathione-independent PGD synthase|glutathione-independent PGD synthetase|lipocalin-type prostaglandin D synthase|prostaglandin D synthase|prostaglandin D2 synthase 21kDa (brain)|testis tissue sperm-binding protein Li 63n 21 0.002874 8.564 1 1 +5731 PTGER1 prostaglandin E receptor 1 19 protein-coding EP1 prostaglandin E2 receptor EP1 subtype|PGE receptor, EP1 subtype|PGE2 receptor EP1 subtype|prostaglandin E receptor 1 (subtype EP1), 42kD|prostaglandin E receptor 1 (subtype EP1), 42kDa|prostaglandin E receptor 1, subtype EP1|prostanoid EP1 receptor 5 0.0006844 2.29 1 1 +5732 PTGER2 prostaglandin E receptor 2 14 protein-coding EP2 prostaglandin E2 receptor EP2 subtype|PGE receptor EP2 subtype|PGE2 receptor EP2 subtype|prostaglandin E receptor 2 (subtype EP2), 53kD|prostaglandin E receptor 2 (subtype EP2), 53kDa|prostanoid EP2 receptor 36 0.004927 5.266 1 1 +5733 PTGER3 prostaglandin E receptor 3 1 protein-coding EP3|EP3-I|EP3-II|EP3-III|EP3-IV|EP3-VI|EP3e|PGE2-R prostaglandin E2 receptor EP3 subtype|PGE receptor, EP3 subtype|PGE2 receptor EP3 subtype|prostaglandin E receotor EP3 subtype 3 isoform|prostaglandin E receptor 3 (subtype EP3)|prostaglandin receptor (PGE-2)|prostanoid EP3 receptor 65 0.008897 5.754 1 1 +5734 PTGER4 prostaglandin E receptor 4 5 protein-coding EP4|EP4R prostaglandin E2 receptor EP4 subtype|PGE receptor, EP4 subtype|PGE2 receptor EP4 subtype|prostaglandin E receptor 4 (subtype EP4)|prostanoid EP4 receptor 42 0.005749 7.339 1 1 +5737 PTGFR prostaglandin F receptor 1 protein-coding FP prostaglandin F2-alpha receptor|PGF receptor|PGF2 alpha receptor|prostaglandin F receptor (FP)|prostaglandin receptor (2-alpha)|prostanoid FP receptor 49 0.006707 4.576 1 1 +5738 PTGFRN prostaglandin F2 receptor inhibitor 1 protein-coding CD315|CD9P-1|EWI-F|FPRP|SMAP-6 prostaglandin F2 receptor negative regulator|CD9 partner 1|glu-Trp-Ile EWI motif-containing protein F|prostaglandin F2-alpha receptor regulatory protein|prostaglandin F2-alpha receptor-associated protein 60 0.008212 10.9 1 1 +5739 PTGIR prostaglandin I2 (prostacyclin) receptor (IP) 19 protein-coding IP|PRIPR prostacyclin receptor|PGI receptor|PGI2 receptor|prostaglandin I2 receptor|prostanoid IP receptor 21 0.002874 5.219 1 1 +5740 PTGIS prostaglandin I2 synthase 20 protein-coding CYP8|CYP8A1|PGIS|PTGI prostacyclin synthase|cytochrome P450, family 8, subfamily A, polypeptide 1|prostaglandin I2 (prostacyclin) synthase 40 0.005475 7.343 1 1 +5741 PTH parathyroid hormone 11 protein-coding PTH1 parathyroid hormone|parathormone|parathyrin|parathyroid hormone 1|prepro-PTH|preproparathyroid hormone 9 0.001232 0.09047 1 1 +5742 PTGS1 prostaglandin-endoperoxide synthase 1 9 protein-coding COX1|COX3|PCOX1|PES-1|PGG/HS|PGHS-1|PGHS1|PHS1|PTGHS prostaglandin G/H synthase 1|PGH synthase 1|cyclooxygenase-1|prostaglandin H2 synthase 1|prostaglandin-endoperoxide synthase 1 (prostaglandin G/H synthase and cyclooxygenase) 65 0.008897 8.455 1 1 +5743 PTGS2 prostaglandin-endoperoxide synthase 2 1 protein-coding COX-2|COX2|GRIPGHS|PGG/HS|PGHS-2|PHS-2|hCox-2 prostaglandin G/H synthase 2|PGH synthase 2|PHS II|cyclooxygenase 2|cyclooxygenase 2b|prostaglandin H2 synthase 2|prostaglandin-endoperoxide synthase 2 (prostaglandin G/H synthase and cyclooxygenase) 49 0.006707 6.824 1 1 +5744 PTHLH parathyroid hormone like hormone 12 protein-coding BDE2|HHM|PLP|PTHR|PTHRP parathyroid hormone-related protein|PTH-rP|PTH-related protein|osteostatin|parathyroid hormone-like hormone preproprotein|parathyroid hormone-like related protein 24 0.003285 5.995 1 1 +5745 PTH1R parathyroid hormone 1 receptor 3 protein-coding PFE|PTHR|PTHR1 parathyroid hormone/parathyroid hormone-related peptide receptor|PTH/PTHr receptor|PTH/PTHrP type I receptor|PTH1 receptor|parathyroid hormone receptor 1|parathyroid hormone/parathyroid hormone-related protein receptor|seven transmembrane helix receptor 42 0.005749 4.781 1 1 +5746 PTH2R parathyroid hormone 2 receptor 2 protein-coding PTHR2 parathyroid hormone 2 receptor|PTH2 receptor|parathyroid hormone receptor 2 80 0.01095 2.808 1 1 +5747 PTK2 protein tyrosine kinase 2 8 protein-coding FADK|FAK|FAK1|FRNK|PPP1R71|p125FAK|pp125FAK focal adhesion kinase 1|FADK 1|FAK-related non-kinase polypeptide|PTK2 protein tyrosine kinase 2|focal adhesion kinase isoform FAK-Del33|focal adhesion kinase-related nonkinase|protein phosphatase 1 regulatory subunit 71 87 0.01191 11.19 1 1 +5753 PTK6 protein tyrosine kinase 6 20 protein-coding BRK protein-tyrosine kinase 6|PTK6 protein tyrosine kinase 6|breast tumor kinase|protein-tyrosine kinase BRK|tyrosine-protein kinase BRK 12 0.001642 6.888 1 1 +5754 PTK7 protein tyrosine kinase 7 (inactive) 6 protein-coding CCK-4|CCK4 inactive tyrosine-protein kinase 7|PTK7 protein tyrosine kinase 7|colon carcinoma kinase 4|pseudo tyrosine kinase receptor 7|tyrosine-protein kinase-like 7 53 0.007254 10.8 1 1 +5756 TWF1 twinfilin actin binding protein 1 12 protein-coding A6|PTK9 twinfilin-1|A6 protein tyrosine kinase|PTK9 protein tyrosine kinase 9|protein A6|protein tyrosine kinase 9|twinfilin, actin-binding protein, homolog 1 16 0.00219 10.97 1 1 +5757 PTMA prothymosin, alpha 2 protein-coding TMSA prothymosin alpha|gene sequence 28|prothymosin alpha protein 25 0.003422 13.91 1 1 +5763 PTMS parathymosin 12 protein-coding ParaT parathymosin 6 0.0008212 12.47 1 1 +5764 PTN pleiotrophin 7 protein-coding HARP|HB-GAM|HBBM|HBGF-8|HBGF8|HBNF|HBNF-1|NEGF1|OSF-1 pleiotrophin|heparin affin regulatory protein|heparin-binding brain mitogen|heparin-binding growth factor 8|heparin-binding growth-associated molecule|heparin-binding neurite outgrowth promoting factor|heparin-binding neurite outgrowth-promoting factor 1|osteoblast-specific factor 1|pleiotrophin (heparin binding growth factor 8, neurite growth-promoting factor 1) 25 0.003422 7.775 1 1 +5768 QSOX1 quiescin sulfhydryl oxidase 1 1 protein-coding Q6|QSCN6 sulfhydryl oxidase 1|hQSOX|quiescin Q6 sulfhydryl oxidase 1|testis tissue sperm-binding protein Li 62n|thiol oxidase 1 36 0.004927 11.58 1 1 +5770 PTPN1 protein tyrosine phosphatase, non-receptor type 1 20 protein-coding PTP1B tyrosine-protein phosphatase non-receptor type 1|protein tyrosine phosphatase, placental|protein-tyrosine phosphatase 1B 28 0.003832 10.47 1 1 +5771 PTPN2 protein tyrosine phosphatase, non-receptor type 2 18 protein-coding PTN2|PTPT|TC-PTP|TCELLPTP|TCPTP tyrosine-protein phosphatase non-receptor type 2|T-cell protein tyrosine phosphatase 32 0.00438 9.114 1 1 +5774 PTPN3 protein tyrosine phosphatase, non-receptor type 3 9 protein-coding PTP-H1|PTPH1 tyrosine-protein phosphatase non-receptor type 3|cytoskeletal-associated protein tyrosine phosphatase|protein-tyrosine phosphatase H1 76 0.0104 9.042 1 1 +5775 PTPN4 protein tyrosine phosphatase, non-receptor type 4 2 protein-coding MEG|PTPMEG|PTPMEG1 tyrosine-protein phosphatase non-receptor type 4|PTPase-MEG1|megakaryocyte phosphatase|megakaryocyte protein-tyrosine phosphatase|protein tyrosine phosphatase MEG1|protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) 82 0.01122 7.521 1 1 +5777 PTPN6 protein tyrosine phosphatase, non-receptor type 6 12 protein-coding HCP|HCPH|HPTP1C|PTP-1C|SH-PTP1|SHP-1|SHP-1L|SHP1 tyrosine-protein phosphatase non-receptor type 6|hematopoietic cell phosphatase|hematopoietic cell protein-tyrosine phosphatase|protein-tyrosine phosphatase 1C|protein-tyrosine phosphatase SHP-1 31 0.004243 9.785 1 1 +5778 PTPN7 protein tyrosine phosphatase, non-receptor type 7 1 protein-coding BPTP-4|HEPTP|LC-PTP|LPTP|PTPNI tyrosine-protein phosphatase non-receptor type 7|dual specificity phosphatase 1|hematopoietic protein-tyrosine phosphatase|protein-tyrosine phosphatase LC-PTP|protein-tyrosine phosphatase, nonreceptor-type, stress induced 29 0.003969 6.827 1 1 +5780 PTPN9 protein tyrosine phosphatase, non-receptor type 9 15 protein-coding MEG2|PTPMEG2 tyrosine-protein phosphatase non-receptor type 9|PTPase-MEG2|protein-tyrosine phosphatase MEG2 43 0.005886 9.951 1 1 +5781 PTPN11 protein tyrosine phosphatase, non-receptor type 11 12 protein-coding BPTP3|CFC|JMML|METCDS|NS1|PTP-1D|PTP2C|SH-PTP2|SH-PTP3|SHP2 tyrosine-protein phosphatase non-receptor type 11|PTP-2C|protein-tyrosine phosphatase 1D|protein-tyrosine phosphatase 2C 56 0.007665 11.41 1 1 +5782 PTPN12 protein tyrosine phosphatase, non-receptor type 12 7 protein-coding PTP-PEST|PTPG1 tyrosine-protein phosphatase non-receptor type 12|protein-tyrosine phosphatase G1 62 0.008486 10.72 1 1 +5783 PTPN13 protein tyrosine phosphatase, non-receptor type 13 4 protein-coding FAP-1|PNP1|PTP-BAS|PTP-BL|PTP1E|PTPL1|PTPLE|hPTP1E tyrosine-protein phosphatase non-receptor type 13|fas-associated protein-tyrosine phosphatase 1|hPTPE1|protein tyrosine phosphatase, non-receptor type 13 (APO-1/CD95 (Fas)-associated phosphatase)|protein-tyrosine phosphatase 1E|protein-tyrosine phosphatase PTPL1 146 0.01998 9.339 1 1 +5784 PTPN14 protein tyrosine phosphatase, non-receptor type 14 1 protein-coding PEZ|PTP36 tyrosine-protein phosphatase non-receptor type 14|cytoskeletal-associated protein tyrosine phosphatase|protein-tyrosine phosphatase pez 111 0.01519 7.103 1 1 +5786 PTPRA protein tyrosine phosphatase, receptor type A 20 protein-coding HEPTP|HLPR|HPTPA|HPTPalpha|LRP|PTPA|PTPRL2|R-PTP-alpha|RPTPA receptor-type tyrosine-protein phosphatase alpha|Leukocyte common antigen-related peptide (protein tyrosine phosphate)|PTPLCA-related phosphatase|PTPase-alpha|protein tyrosine phosphatase, receptor type, alpha polypeptide|protein-tyrosine phosphatase alpha|tyrosine phosphatase alpha 57 0.007802 11.02 1 1 +5787 PTPRB protein tyrosine phosphatase, receptor type B 12 protein-coding HPTP-BETA|HPTPB|PTPB|R-PTP-BETA|VEPTP receptor-type tyrosine-protein phosphatase beta|VE-PTP|protein tyrosine phosphatase, receptor type, beta polypeptide|vascular endothelial protein tyrosine phosphatase 200 0.02737 8.834 1 1 +5788 PTPRC protein tyrosine phosphatase, receptor type C 1 protein-coding B220|CD45|CD45R|GP180|L-CA|LCA|LY5|T200 receptor-type tyrosine-protein phosphatase C|CD45 antigen|T200 glycoprotein|T200 leukocyte common antigen|protein tyrosine phosphatase, receptor type, c polypeptide 163 0.02231 8.875 1 1 +5789 PTPRD protein tyrosine phosphatase, receptor type D 9 protein-coding HPTP|HPTPD|HPTPDELTA|PTPD|RPTPDELTA receptor-type tyrosine-protein phosphatase delta|R-PTP-delta|protein tyrosine phosphatase, receptor type, delta polypeptide 287 0.03928 6.986 1 1 +5790 PTPRCAP protein tyrosine phosphatase, receptor type C associated protein 11 protein-coding CD45-AP|LPAP protein tyrosine phosphatase receptor type C-associated protein|CD45 associated protein|PTPRC-associated protein|lymphocyte phosphatase-associated phosphoprotein|protein tyrosine phosphatase, receptor type, c polypeptide-associated protein 13 0.001779 7.147 1 1 +5791 PTPRE protein tyrosine phosphatase, receptor type E 10 protein-coding HPTPE|PTPE|R-PTP-EPSILON receptor-type tyrosine-protein phosphatase epsilon|protein tyrosine phosphatase, receptor type, epsilon polypeptide 55 0.007528 8.846 1 1 +5792 PTPRF protein tyrosine phosphatase, receptor type F 1 protein-coding BNAH2|LAR receptor-type tyrosine-protein phosphatase F|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 118 0.01615 12.81 1 1 +5793 PTPRG protein tyrosine phosphatase, receptor type G 3 protein-coding HPTPG|PTPG|R-PTP-GAMMA|RPTPG receptor-type tyrosine-protein phosphatase gamma|H_RG317H01.1|protein tyrosine phosphatase gamma|protein tyrosine phosphatase, receptor type, gamma polypeptide|receptor type protein tyrosine phosphatase gamma|receptor tyrosine phosphatase gamma|receptor-type protein phosphatase gamma 105 0.01437 8.899 1 1 +5794 PTPRH protein tyrosine phosphatase, receptor type H 19 protein-coding R-PTP-H|SAP1 receptor-type tyrosine-protein phosphatase H|stomach cancer-associated protein tyrosine phosphatase 1|transmembrane-type protein-tyrosine phosphatase type H 109 0.01492 5.672 1 1 +5795 PTPRJ protein tyrosine phosphatase, receptor type J 11 protein-coding CD148|DEP1|HPTPeta|R-PTP-ETA|SCC1 receptor-type tyrosine-protein phosphatase eta|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|susceptibility to colon cancer 1, mouse, homolog of 96 0.01314 9.814 1 1 +5796 PTPRK protein tyrosine phosphatase, receptor type K 6 protein-coding R-PTP-kappa receptor-type tyrosine-protein phosphatase kappa|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 129 0.01766 10.44 1 1 +5797 PTPRM protein tyrosine phosphatase, receptor type M 18 protein-coding PTPRL1|R-PTP-MU|RPTPM|RPTPU|hR-PTPu receptor-type tyrosine-protein phosphatase mu|protein tyrosine phosphatase mu|protein tyrosine phosphatase, receptor type, mu polypeptide 142 0.01944 9.722 1 1 +5798 PTPRN protein tyrosine phosphatase, receptor type N 2 protein-coding IA-2|IA-2/PTP|IA2|ICA512|R-PTP-N receptor-type tyrosine-protein phosphatase-like N|ICA 512|PTP IA-2|islet cell antigen 2|islet cell antigen 512|islet cell autoantigen 3|protein tyrosine phosphatase-like N 75 0.01027 3.943 1 1 +5799 PTPRN2 protein tyrosine phosphatase, receptor type N2 7 protein-coding IA-2beta|IAR|ICAAR|PTPRP|R-PTP-N2 receptor-type tyrosine-protein phosphatase N2|IAR/receptor-like protein-tyrosine phosphatase|islet cell autoantigen-related protein|phogrin|protein tyrosine phosphatase receptor pi|protein tyrosine phosphatase, receptor type, N polypeptide 2|tyrosine phosphatase IA-2 beta 131 0.01793 7.912 1 1 +5800 PTPRO protein tyrosine phosphatase, receptor type O 12 protein-coding GLEPP1|NPHS6|PTP-OC|PTP-U2|PTPROT|PTPU2|R-PTP-O receptor-type tyrosine-protein phosphatase O|PTP phi|PTPase U2|glomerular epithelial protein 1|osteoclastic transmembrane protein-tyrosine phosphatase|phosphotyrosine phosphatase U2|protein tyrosine phosphatase PTP-U2 89 0.01218 6.071 1 1 +5801 PTPRR protein tyrosine phosphatase, receptor type R 12 protein-coding EC-PTP|PCPTP1|PTP-SL|PTPBR7|PTPRQ receptor-type tyrosine-protein phosphatase R|Ch-1 PTPase|NC-PTPCOM1|R-PTP-R|ch-1PTPase|protein tyrosine phosphatase Cr1PTPase|protein-tyrosine phosphatase NC-PTPCOM1|protein-tyrosine phosphatase PCPTP1 81 0.01109 4.315 1 1 +5802 PTPRS protein tyrosine phosphatase, receptor type S 19 protein-coding PTPSIGMA|R-PTP-S|R-PTP-sigma receptor-type tyrosine-protein phosphatase S|protein tyrosine phosphatase PTPsigma|receptor-type tyrosine-protein phosphatase sigma 132 0.01807 10.16 1 1 +5803 PTPRZ1 protein tyrosine phosphatase, receptor type Z1 7 protein-coding HPTPZ|HPTPzeta|PTP-ZETA|PTP18|PTPRZ|PTPZ|R-PTP-zeta-2|RPTPB|RPTPbeta|phosphacan receptor-type tyrosine-protein phosphatase zeta|protein tyrosine phosphatase, receptor-type, Z polypeptide 1|protein tyrosine phosphatase, receptor-type, zeta polypeptide 1|protein-tyrosine phosphatase receptor type Z polypeptide 2|receptor-type tyrosine phosphatase beta/zeta 218 0.02984 5.407 1 1 +5805 PTS 6-pyruvoyltetrahydropterin synthase 11 protein-coding PTPS 6-pyruvoyl tetrahydrobiopterin synthase|PTP synthase 3 0.0004106 8.205 1 1 +5806 PTX3 pentraxin 3 3 protein-coding TNFAIP5|TSG-14 pentraxin-related protein PTX3|TNF alpha-induced protein 5|long pentraxin 3|tumor necrosis factor alpha-induced protein 5|tumor necrosis factor-inducible gene 14 protein|tumor necrosis factor-inducible protein TSG-14 21 0.002874 4.592 1 1 +5810 RAD1 RAD1 checkpoint DNA exonuclease 5 protein-coding HRAD1|REC1 cell cycle checkpoint protein RAD1|DNA repair exonuclease REC1|DNA repair exonuclease rad1 homolog|RAD1 checkpoint clamp component|RAD1 homolog|cell cycle checkpoint protein Hrad1|checkpoint control protein HRAD1|exonuclease homolog RAD1|rad1-like DNA damage checkpoint protein 14 0.001916 9.155 1 1 +5813 PURA purine rich element binding protein A 5 protein-coding MRD31|PUR-ALPHA|PUR1|PURALPHA transcriptional activator protein Pur-alpha|purine-rich single-stranded DNA-binding protein alpha 15 0.002053 8.342 1 1 +5814 PURB purine rich element binding protein B 7 protein-coding PURBETA transcriptional activator protein Pur-beta 21 0.002874 10.74 1 1 +5816 PVALB parvalbumin 22 protein-coding D22S749 parvalbumin alpha 14 0.001916 2.345 1 1 +5817 PVR poliovirus receptor 19 protein-coding CD155|HVED|NECL5|Necl-5|PVS|TAGE4 poliovirus receptor|nectin-like protein 5 33 0.004517 9.891 1 1 +5818 NECTIN1 nectin cell adhesion molecule 1 11 protein-coding CD111|CLPED1|ED4|HIgR|HV1S|HVEC|OFC7|PRR|PRR1|PVRL1|PVRR|PVRR1|SK-12|nectin-1 nectin-1|ectodermal dysplasia 4 (Margarita Island type)|herpes simplex virus type 1 sensitivity|herpes virus entry mediator C|herpesvirus Ig-like receptor|nectin 1|poliovirus receptor-like 1|poliovirus receptor-related 1 (herpesvirus entry mediator C)|poliovirus receptor-related protein 1 52 0.007117 10.29 1 1 +5819 NECTIN2 nectin cell adhesion molecule 2 19 protein-coding CD112|HVEB|PRR2|PVRL2|PVRR2 nectin-2|herpesvirus entry protein B|poliovirus receptor-like 2|poliovirus receptor-related 2 (herpesvirus entry mediator B) 43 0.005886 11.37 1 1 +5820 PVT1 Pvt1 oncogene (non-protein coding) 8 ncRNA LINC00079|MYC|NCRNA00079|onco-lncRNA-100 Oncogene PVT-1 (MYC activator)|long intergenic non-protein coding RNA 79|plasmacytoma variant translocation 1|pvt-1 (murine) oncogene homolog, MYC activator 3 0.0004106 6.404 1 1 +5822 PWP2 PWP2 periodic tryptophan protein homolog (yeast) 21 protein-coding EHOC-17|PWP2H|UTP1 periodic tryptophan protein 2 homolog 49 0.006707 9.553 1 1 +5824 PEX19 peroxisomal biogenesis factor 19 1 protein-coding D1S2223E|HK33|PBD12A|PMP1|PMPI|PXF|PXMP1 peroxisomal biogenesis factor 19|33 kDa housekeeping protein|housekeeping gene, 33kD|peroxin-19|peroxisomal farnesylated protein 15 0.002053 10.87 1 1 +5825 ABCD3 ATP binding cassette subfamily D member 3 1 protein-coding ABC43|CBAS5|PMP70|PXMP1|ZWS2 ATP-binding cassette sub-family D member 3|70 kDa peroxisomal membrane protein|ATP-binding cassette, sub-family D (ALD), 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) 42 0.005749 10.27 1 1 +5826 ABCD4 ATP binding cassette subfamily D member 4 14 protein-coding ABC41|EST352188|MAHCJ|P70R|P79R|PMP69|PXMP1L ATP-binding cassette sub-family D member 4|69 kDa peroxisomal ABC-transporter|ATP-binding cassette, sub-family D (ALD), member 4|PMP70-related protein|PXMP1-L|peroxisomal membrane protein 69 44 0.006022 9.249 1 1 +5827 PXMP2 peroxisomal membrane protein 2 12 protein-coding PMP22 peroxisomal membrane protein 2|22 kDa peroxisomal membrane protein|peroxisomal membrane protein 2, 22kDa 21 0.002874 7.953 1 1 +5828 PEX2 peroxisomal biogenesis factor 2 8 protein-coding PAF1|PBD5A|PBD5B|PMP3|PMP35|PXMP3|RNF72|ZWS3 peroxisome biogenesis factor 2|35 kDa peroxisomal membrane protein|RING finger protein 72|peroxisomal membrane protein 3, 35kDa|peroxisome assembly factor 1 34 0.004654 9.855 1 1 +5829 PXN paxillin 12 protein-coding - paxillin|testicular tissue protein Li 134 30 0.004106 11.53 1 1 +5830 PEX5 peroxisomal biogenesis factor 5 12 protein-coding PBD2A|PBD2B|PTS1-BP|PTS1R|PXR1|RCDP5 peroxisomal biogenesis factor 5|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 26 0.003559 10.09 1 1 +5831 PYCR1 pyrroline-5-carboxylate reductase 1 17 protein-coding ARCL2B|ARCL3B|P5C|P5CR|PIG45|PP222|PRO3|PYCR pyrroline-5-carboxylate reductase 1, mitochondrial|P5C reductase 1|proliferation-inducing protein 45 16 0.00219 9.922 1 1 +5832 ALDH18A1 aldehyde dehydrogenase 18 family member A1 10 protein-coding ADCL3|ARCL3A|GSAS|P5CS|PYCS|SPG9A|SPG9B delta-1-pyrroline-5-carboxylate synthase|aldehyde dehydrogenase family 18 member A1|delta-1-pyrroline-5-carboxylate synthetase|delta1-pyrroline-5-carboxlate synthetase|pyrroline-5-carboxylate synthetase (glutamate gamma-semialdehyde synthetase) 33 0.004517 10.93 1 1 +5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine 17 protein-coding ET ethanolamine-phosphate cytidylyltransferase|CTP:phosphoethanolamine cytidylyltransferase|phosphorylethanolamine transferase 22 0.003011 9.526 1 1 +5834 PYGB phosphorylase, glycogen; brain 20 protein-coding GPBB glycogen phosphorylase, brain form|glycogen phosphorylase B 71 0.009718 12.1 1 1 +5836 PYGL phosphorylase, glycogen, liver 14 protein-coding GSD6 glycogen phosphorylase, liver form 55 0.007528 9.837 1 1 +5837 PYGM phosphorylase, glycogen, muscle 11 protein-coding - glycogen phosphorylase, muscle form|myophosphorylase 80 0.01095 4.651 1 1 +5858 PZP PZP, alpha-2-macroglobulin like 12 protein-coding CPAMD6 pregnancy zone protein|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 6|Pregnancy zone protein|pregnancy-zone protein 147 0.02012 1.212 1 1 +5859 QARS glutaminyl-tRNA synthetase 3 protein-coding GLNRS|MSCCA|PRO2195 glutamine--tRNA ligase|glutamine-tRNA synthetase 49 0.006707 11.73 1 1 +5860 QDPR quinoid dihydropteridine reductase 4 protein-coding DHPR|PKU2|SDR33C1 dihydropteridine reductase|6,7-dihydropteridine reductase|HDHPR|short chain dehydrogenase/reductase family 33C member 1|testis secretory sperm-binding protein Li 236P 26 0.003559 9.738 1 1 +5861 RAB1A RAB1A, member RAS oncogene family 2 protein-coding RAB1|YPT1 ras-related protein Rab-1A|GTP binding protein Rab1a|RAB1, member RAS oncogene family|Rab GTPase YPT1 homolog|YPT1-related protein 11 0.001506 11.77 1 1 +5862 RAB2A RAB2A, member RAS oncogene family 8 protein-coding LHX|RAB2 ras-related protein Rab-2A|RAB2, member RAS oncogene family|small GTP binding protein RAB2A 19 0.002601 10.19 1 1 +5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 6 protein-coding HKE1.5|KE1.5|RAB2L ral guanine nucleotide dissociation stimulator-like 2|GDS-related protein|ralGDS-like 2|ralGDS-like factor|ras-associated protein RAB2L 62 0.008486 10.47 1 1 +5864 RAB3A RAB3A, member RAS oncogene family 19 protein-coding - ras-related protein Rab-3A|RAS-associated protein RAB3A 9 0.001232 6.631 1 1 +5865 RAB3B RAB3B, member RAS oncogene family 1 protein-coding - ras-related protein Rab-3B|brain antigen RAB3B 17 0.002327 3.195 1 1 +5866 RAB3IL1 RAB3A interacting protein like 1 11 protein-coding GRAB guanine nucleotide exchange factor for Rab-3A|RAB3A interacting protein (rabin3)-like 1|rab3A-interacting-like protein 1|rabin3-like 1 26 0.003559 7.819 1 1 +5867 RAB4A RAB4A, member RAS oncogene family 1 protein-coding HRES-1|HRES-1/RAB4|HRES1|RAB4 ras-related protein Rab-4A|HTLV-1 related endogenous sequence 14 0.001916 9.718 1 1 +5868 RAB5A RAB5A, member RAS oncogene family 3 protein-coding RAB5 ras-related protein Rab-5A|RAS-associated protein RAB5A 18 0.002464 10.32 1 1 +5869 RAB5B RAB5B, member RAS oncogene family 12 protein-coding - ras-related protein Rab-5B 13 0.001779 12.03 1 1 +5870 RAB6A RAB6A, member RAS oncogene family 11 protein-coding RAB6 ras-related protein Rab-6A|RAB6, member RAS oncogene family|Rab GTPase 18 0.002464 11.66 1 1 +5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 11 protein-coding BL44|GCK|RAB8IP mitogen-activated protein kinase kinase kinase kinase 2|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) 42 0.005749 8.555 1 1 +5872 RAB13 RAB13, member RAS oncogene family 1 protein-coding GIG4 ras-related protein Rab-13|RAS-associated protein RAB13|cell growth-inhibiting gene 4 protein|growth-inhibiting gene 4 protein 22 0.003011 10.83 1 1 +5873 RAB27A RAB27A, member RAS oncogene family 15 protein-coding GS2|HsT18676|RAB27|RAM ras-related protein Rab-27A|GTP-binding protein Ram|mutant Ras-related protein Rab-27A|rab-27 15 0.002053 8.897 1 1 +5874 RAB27B RAB27B, member RAS oncogene family 18 protein-coding C25KG ras-related protein Rab-27B 17 0.002327 5.011 1 1 +5875 RABGGTA Rab geranylgeranyltransferase alpha subunit 14 protein-coding PTAR3 geranylgeranyl transferase type-2 subunit alpha|Rab GG transferase alpha|Rab GGTase alpha|geranylgeranyl transferase type II subunit alpha|protein prenyltransferase alpha subunit repeat containing 3|rab geranyl-geranyltransferase subunit alpha 41 0.005612 9.197 1 1 +5876 RABGGTB Rab geranylgeranyltransferase beta subunit 1 protein-coding GGTB geranylgeranyl transferase type-2 subunit beta|GGTase-II-beta|rab GG transferase beta|rab GGTase beta|type II protein geranyl-geranyltransferase subunit beta 35 0.004791 9.815 1 1 +5877 RABIF RAB interacting factor 1 protein-coding MSS4|RASGFR3|RASGRF3 guanine nucleotide exchange factor MSS4|Ras-specific guanine-releasing factor 3|mammalian suppressor of SEC4|rab-interacting factor 10 0.001369 8.559 1 1 +5878 RAB5C RAB5C, member RAS oncogene family 17 protein-coding L1880|RAB5CL|RAB5L|RABL ras-related protein Rab-5C|RAB5C, member of RAS oncogene family 17 0.002327 11.64 1 1 +5879 RAC1 ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) 7 protein-coding MIG5|Rac-1|TC-25|p21-Rac1 ras-related C3 botulinum toxin substrate 1|cell migration-inducing gene 5 protein|ras-like protein TC25 33 0.004517 12.65 1 1 +5880 RAC2 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) 22 protein-coding EN-7|Gx|HSPC022|p21-Rac2 ras-related C3 botulinum toxin substrate 2|Ras-related C3 botulinum toxin substrate 3 (rho family, small GTP-binding protein Rac2)|small G protein 16 0.00219 9.101 1 1 +5881 RAC3 ras-related C3 botulinum toxin substrate 3 (rho family, small GTP binding protein Rac3) 17 protein-coding - ras-related C3 botulinum toxin substrate 3|p21-Rac3|rho family, small GTP binding protein Rac3 18 0.002464 7.535 1 1 +5883 RAD9A RAD9 checkpoint clamp component A 11 protein-coding RAD9 cell cycle checkpoint control protein RAD9A|DNA repair exonuclease rad9 homolog A|RAD9 homolog A|hRAD9 17 0.002327 8.211 1 1 +5884 RAD17 RAD17 checkpoint clamp loader component 5 protein-coding CCYC|HRAD17|R24L|RAD17SP|RAD24 cell cycle checkpoint protein RAD17|RAD1 homolog|RAD17 homolog|RF-C activator 1 homolog|Rad17-like protein|cell cycle checkpoint protein (RAD17) 51 0.006981 9.078 1 1 +5885 RAD21 RAD21 cohesin complex component 8 protein-coding CDLS4|HR21|HRAD21|MCD1|NXP1|SCC1|hHR21 double-strand-break repair protein rad21 homolog|NXP-1|RAD21 homolog|SCC1 homolog|kleisin|nuclear matrix protein 1|protein involved in DNA double-strand break repair|sister chromatid cohesion 1 61 0.008349 12.19 1 1 +5886 RAD23A RAD23 homolog A, nucleotide excision repair protein 19 protein-coding HHR23A|HR23A UV excision repair protein RAD23 homolog A|RAD23, yeast homolog, A 29 0.003969 11.61 1 1 +5887 RAD23B RAD23 homolog B, nucleotide excision repair protein 9 protein-coding HHR23B|HR23B|P58 UV excision repair protein RAD23 homolog B|RAD23, yeast homolog of, B|XP-C repair complementing complex 58 kDa|XP-C repair complementing protein|XP-C repair-complementing complex 58 kDa protein 37 0.005064 12.01 1 1 +5888 RAD51 RAD51 recombinase 15 protein-coding BRCC5|FANCR|HRAD51|HsRad51|HsT16930|MRMV2|RAD51A|RECA DNA repair protein RAD51 homolog 1|BRCA1/BRCA2-containing complex, subunit 5|RAD51 homolog A|RecA, E. coli, homolog of|RecA-like protein|recombination protein A 22 0.003011 6.843 1 1 +5889 RAD51C RAD51 paralog C 17 protein-coding BROVCA3|FANCO|R51H3|RAD51L2 DNA repair protein RAD51 homolog 3|RAD51-like protein 2|yeast RAD51 homolog 3 23 0.003148 8.089 1 1 +5890 RAD51B RAD51 paralog B 14 protein-coding R51H2|RAD51L1|REC2 DNA repair protein RAD51 homolog 2|RAD51 homolog B|RecA-like protein|recombination repair protein 20 0.002737 5.998 1 1 +5891 MOK MOK protein kinase 14 protein-coding RAGE|RAGE-1|RAGE1|STK30 MAPK/MAK/MRK overlapping kinase|renal cell carcinoma antigen|renal tumor antigen 1 19 0.002601 7.152 1 1 +5892 RAD51D RAD51 paralog D 17 protein-coding BROVCA4|R51H3|RAD51L3|TRAD DNA repair protein RAD51 homolog 4|RAD51 homolog D|RAD51-like protein 3|recombination repair protein 20 0.002737 7.414 1 1 +5893 RAD52 RAD52 homolog, DNA repair protein 12 protein-coding - DNA repair protein RAD52 homolog|recombination protein RAD52|rhabdomyosarcoma antigen MU-RMS-40.23 24 0.003285 7.004 1 1 +5894 RAF1 Raf-1 proto-oncogene, serine/threonine kinase 3 protein-coding CMD1NN|CRAF|NS5|Raf-1|c-Raf RAF proto-oncogene serine/threonine-protein kinase|C-Raf proto-oncogene, serine/threonine kinase|Oncogene RAF1|proto-oncogene c-RAF|raf proto-oncogene serine/threonine protein kinase|v-raf-1 murine leukemia viral oncogene homolog 1|v-raf-1 murine leukemia viral oncogene-like protein 1 42 0.005749 11.01 1 1 +5896 RAG1 recombination activating 1 11 protein-coding RAG-1|RNF74 V(D)J recombination-activating protein 1|RING finger protein 74|recombination activating gene 1|recombination activating protein 1 100 0.01369 4.838 1 1 +5897 RAG2 recombination activating 2 11 protein-coding RAG-2 V(D)J recombination-activating protein 2|recombination activating gene 2 45 0.006159 0.4381 1 1 +5898 RALA RAS like proto-oncogene A 7 protein-coding RAL ras-related protein Ral-A|RALA Ras like proto-oncogene A|RAS-like protein A|Ras family small GTP binding protein RALA|ras related GTP binding protein A|v-ral simian leukemia viral oncogene homolog A (ras related) 18 0.002464 10.43 1 1 +5899 RALB RAS like proto-oncogene B 2 protein-coding - ras-related protein Ral-B|RALB Ras like proto-oncogene B|RAS-like protein B|ras related GTP binding protein B|v-ral simian leukemia viral oncogene homolog B (ras related; GTP binding protein) 20 0.002737 10.42 1 1 +5900 RALGDS ral guanine nucleotide dissociation stimulator 9 protein-coding RGDS|RGF|RalGEF ral guanine nucleotide dissociation stimulator|ral guanine nucleotide exchange factor 60 0.008212 10.77 1 1 +5901 RAN RAN, member RAS oncogene family 12 protein-coding ARA24|Gsp1|TC4 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 17 0.002327 12.05 1 1 +5902 RANBP1 RAN binding protein 1 22 protein-coding HTF9A ran-specific GTPase-activating protein|HpaII tiny fragments locus 9A|testis secretory sperm-binding protein Li 221n 11 0.001506 10.11 1 1 +5903 RANBP2 RAN binding protein 2 2 protein-coding ADANE|ANE1|IIAE3|NUP358|TRP1|TRP2 E3 SUMO-protein ligase RanBP2|358 kDa nucleoporin|P270|acute necrotizing encephalopathy 1 (autosomal dominant)|nuclear pore complex protein Nup358|nucleoporin 358|nucleoporin Nup358|ran-binding protein 2|transformation-related protein 2 196 0.02683 11.25 1 1 +5905 RANGAP1 Ran GTPase activating protein 1 22 protein-coding Fug1|RANGAP|SD ran GTPase-activating protein 1|segregation distorter homolog|segregation distortion 38 0.005201 11.39 1 1 +5906 RAP1A RAP1A, member of RAS oncogene family 1 protein-coding C21KG|G-22K|KREV-1|KREV1|RAP1|SMGP21 ras-related protein Rap-1A|GTP-binding protein smg p21A|Ras-related protein Krev-1 16 0.00219 10.22 1 1 +5908 RAP1B RAP1B, member of RAS oncogene family 12 protein-coding K-REV|RAL1B ras-related protein Rap-1b|GTP-binding protein smg p21B|RAS-related protein RAP1B|Ras family small GTP binding protein RAP1B|small GTP binding protein 16 0.00219 10.94 1 1 +5909 RAP1GAP RAP1 GTPase activating protein 1 protein-coding RAP1GA1|RAP1GAP1|RAP1GAPII|RAPGAP rap1 GTPase-activating protein 1 46 0.006296 9.153 1 1 +5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 4 protein-coding GDS1|SmgGDS rap1 GTPase-GDP dissociation stimulator 1|RAP1, GTP-GDP dissociation stimulator 1|SMG GDS protein|SMG P21 stimulatory GDP/GTP exchange protein|exchange factor smgGDS 47 0.006433 9.689 1 1 +5911 RAP2A RAP2A, member of RAS oncogene family 13 protein-coding K-REV|KREV|RAP2|RbBP-30 ras-related protein Rap-2a|RAP2, member of RAS oncogene family (K-rev) 10 0.001369 9.851 1 1 +5912 RAP2B RAP2B, member of RAS oncogene family 3 protein-coding - ras-related protein Rap-2b|small GTP binding protein 12 0.001642 9.87 1 1 +5913 RAPSN receptor associated protein of the synapse 11 protein-coding CMS11|CMS4C|FADS|RAPSYN|RNF205 43 kDa receptor-associated protein of the synapse|43 kda postsynaptic protein|RING finger protein 205|acetylcholine receptor-associated 43 kda protein 23 0.003148 1.611 1 1 +5914 RARA retinoic acid receptor alpha 17 protein-coding NR1B1|RAR retinoic acid receptor alpha|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 polypeptide 34 0.004654 10.14 1 1 +5915 RARB retinoic acid receptor beta 3 protein-coding HAP|MCOPS12|NR1B2|RARbeta1|RRB2 retinoic acid receptor beta|HBV-activated protein|RAR-beta|RAR-epsilon|hepatitis B virus activated protein|nuclear receptor subfamily 1 group B member 2|retinoic acid receptor, beta polypeptide 57 0.007802 6.824 1 1 +5916 RARG retinoic acid receptor gamma 12 protein-coding NR1B3|RARC retinoic acid receptor gamma|RAR-gamma|nuclear receptor subfamily 1 group B member 3|retinoic acid nuclear receptor gamma variant 1|retinoic acid nuclear receptor gamma variant 2 54 0.007391 9.539 1 1 +5917 RARS arginyl-tRNA synthetase 5 protein-coding ArgRS|DALRD1|HLD9 arginine--tRNA ligase, cytoplasmic|arginine tRNA ligase 1, cytoplasmic|arginyl-tRNA synthetase, cytoplasmic 42 0.005749 10.29 1 1 +5918 RARRES1 retinoic acid receptor responder 1 3 protein-coding LXNL|PERG-1|TIG1 retinoic acid receptor responder protein 1|RAR-responsive protein TIG1|latexin-like|phorbol ester-induced gene 1 protein|retinoic acid receptor responder (tazarotene induced) 1|tazarotene-induced gene 1 protein 13 0.001779 7.373 1 1 +5919 RARRES2 retinoic acid receptor responder 2 7 protein-coding HP10433|TIG2 retinoic acid receptor responder protein 2|RAR-responsive protein TIG2|chemerin|retinoic acid receptor responder (tazarotene induced) 2|tazarotene-induced gene 2 protein 6 0.0008212 9.422 1 1 +5920 RARRES3 retinoic acid receptor responder 3 11 protein-coding HRASLS4|HRSL4|PLA1/2-3|RIG1|TIG3 retinoic acid receptor responder protein 3|HRAS-like suppressor 4|RAR-responsive protein TIG3|retinoic acid receptor responder (tazarotene induced) 3|retinoic acid-inducible gene 1|retinoid-inducible gene 1 protein|tazarotene-induced gene 3 protein 20 0.002737 9.483 1 1 +5921 RASA1 RAS p21 protein activator 1 5 protein-coding CM-AVM|CMAVM|GAP|PKWS|RASA|RASGAP|p120|p120GAP|p120RASGAP ras GTPase-activating protein 1|RAS p21 protein activator (GTPase activating protein) 1|p120 RAS GTPase activating protein|triphosphatase-activating protein 113 0.01547 9.621 1 1 +5922 RASA2 RAS p21 protein activator 2 3 protein-coding GAP1M ras GTPase-activating protein 2|GTPase-activating protein 1m|GTPase-activating protein of RAS 62 0.008486 6.309 1 1 +5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 15 protein-coding CDC25|CDC25L|GNRP|GRF1|GRF55|H-GRF55|PP13187|ras-GRF1 ras-specific guanine nucleotide-releasing factor 1|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 108 0.01478 4.901 1 1 +5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 5 protein-coding GRF2|RAS-GRF2 ras-specific guanine nucleotide-releasing factor 2|ras guanine nucleotide exchange factor 2 102 0.01396 6.052 1 1 +5925 RB1 RB transcriptional corepressor 1 13 protein-coding OSRC|PPP1R130|RB|p105-Rb|pRb|pp110 retinoblastoma-associated protein|GOS563 exon 17 substitution mutation causes premature stop|exon 17 tumor GOS561 substitution mutation causes premature stop|prepro-retinoblastoma-associated protein|protein phosphatase 1, regulatory subunit 130|retinoblastoma 1|retinoblastoma suspectibility protein 263 0.036 10.05 1 1 +5926 ARID4A AT-rich interaction domain 4A 14 protein-coding RBBP-1|RBBP1|RBP-1|RBP1 AT-rich interactive domain-containing protein 4A|ARID domain-containing protein 4A|AT rich interactive domain 4A (RBP1-like)|retinoblastoma-binding protein 1 97 0.01328 8.793 1 1 +5927 KDM5A lysine demethylase 5A 12 protein-coding RBBP-2|RBBP2|RBP2 lysine-specific demethylase 5A|Jumonji, AT rich interactive domain 1A (RBP2-like)|histone demethylase JARID1A|jumonji/ARID domain-containing protein 1A|lysine (K)-specific demethylase 5A|retinoblastoma binding protein 2 109 0.01492 10.31 1 1 +5928 RBBP4 RB binding protein 4, chromatin remodeling factor 1 protein-coding NURF55|RBAP48|lin-53 histone-binding protein RBBP4|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|nucleosome-remodeling factor subunit RBAP48|retinoblastoma-binding protein 4|retinoblastoma-binding protein p48 31 0.004243 11.64 1 1 +5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit 1 protein-coding RBQ3|SWD1 retinoblastoma-binding protein 5|RBBP-5|SWD1, Set1c WD40 repeat protein, homolog|retinoblastoma-binding protein RBQ-3 28 0.003832 8.748 1 1 +5930 RBBP6 RB binding protein 6, ubiquitin ligase 16 protein-coding MY038|P2P-R|PACT|RBQ-1|SNAMA 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 protein 6|retinoblastoma-binding Q protein 1|retinoblastoma-binding protein 6 125 0.01711 10.27 1 1 +5931 RBBP7 RB binding protein 7, chromatin remodeling factor X protein-coding RbAp46 histone-binding protein RBBP7|G1/S transition control protein-binding protein RbAp46|RBBP-7|histone acetyltransferase type B subunit 2|nucleosome-remodeling factor subunit RBAP46|retinoblastoma-binding protein 7|retinoblastoma-binding protein RbAp46|retinoblastoma-binding protein p46 42 0.005749 11.42 1 1 +5932 RBBP8 RB binding protein 8, endonuclease 18 protein-coding COM1|CTIP|JWDS|RIM|SAE2|SCKL2 DNA endonuclease RBBP8|CTBP-interacting protein|RBBP-8|retinoblastoma binding protein 8|sporulation in the absence of SPO11 protein 2 homolog 67 0.009171 9.453 1 1 +5933 RBL1 RB transcriptional corepressor like 1 20 protein-coding CP107|PRB1|p107 retinoblastoma-like protein 1|107 kDa retinoblastoma-associated protein|retinoblastoma-like 1 77 0.01054 7.073 1 1 +5934 RBL2 RB transcriptional corepressor like 2 16 protein-coding P130|Rb2 retinoblastoma-like protein 2|130 kDa retinoblastoma-associated protein|PRB2|RBR-2|retinoblastoma-like 2|retinoblastoma-related protein 2 75 0.01027 10.64 1 1 +5935 RBM3 RNA binding motif (RNP1, RRM) protein 3 X protein-coding IS1-RNPL|RNPL RNA-binding protein 3|RNA-binding motif protein 3|putative RNA-binding protein 3 21 0.002874 11.89 1 1 +5936 RBM4 RNA binding motif protein 4 11 protein-coding LARK|RBM4A|ZCCHC21|ZCRB3A RNA-binding protein 4|RNA-binding motif protein 4a|lark homolog|transcriptional coactivator CoAZ|zinc finger CCHC-type and RNA binding motif 3A 31 0.004243 11.13 1 1 +5937 RBMS1 RNA binding motif single stranded interacting protein 1 2 protein-coding C2orf12|HCC-4|MSSP|MSSP-1|MSSP-2|MSSP-3|SCR2|YC1 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 37 0.005064 9.96 1 1 +5939 RBMS2 RNA binding motif single stranded interacting protein 2 12 protein-coding SCR3 RNA-binding motif, single-stranded-interacting protein 2|suppressor of CDC2 with RNA-binding motif 3 25 0.003422 9.717 1 1 +5940 RBMY1A1 RNA binding motif protein, Y-linked, family 1, member A1 Y protein-coding RBM|RBM1|RBM2|RBMY|RBMY1C|YRRM1|YRRM2 RNA-binding motif protein, Y chromosome, family 1 member A1|RNA-binding motif protein 2|RNA-binding motif protein, Y chromosome, family 1 member A1/C|Y chromosome RNA recognition motif 1|Y chromosome RNA recognition motif 2 1 0.0001369 0.1635 1 1 +5947 RBP1 retinol binding protein 1 3 protein-coding CRABP-I|CRBP|CRBP1|CRBPI|RBPC retinol-binding protein 1|CRBP-I|cellular retinol binding protein 1|cellular retinol-binding protein I|retinol-binding protein 1, cellular 25 0.003422 8.686 1 1 +5948 RBP2 retinol binding protein 2 3 protein-coding CRABP-II|CRBP2|CRBPII|RBPC2 retinol-binding protein 2|CRBP-II|cellular retinol-binding protein II|retinol binding protein 2, cellular 25 0.003422 0.9798 1 1 +5949 RBP3 retinol binding protein 3 10 protein-coding D10S64|D10S65|D10S66|IRBP|RBPI|RP66 retinol-binding protein 3|interphotoreceptor retinoid-binding protein|interstitial retinol binding protein 3|retinol binding protein 3, interstitial 123 0.01684 0.8702 1 1 +5950 RBP4 retinol binding protein 4 10 protein-coding MCOPCB10|RDCCAS retinol-binding protein 4|PRBP|RBP|plasma retinol-binding protein|retinol binding protein 4, plasma|retinol-binding protein 4, interstitial 16 0.00219 5.337 1 1 +5954 RCN1 reticulocalbin 1 11 protein-coding HEL-S-84|PIG20|RCAL|RCN reticulocalbin-1|epididymis secretory protein Li 84|proliferation-inducing gene 20|reticulocalbin 1, EF-hand calcium binding domain 17 0.002327 11.34 1 1 +5955 RCN2 reticulocalbin 2 15 protein-coding E6BP|ERC-55|ERC55|TCBP49 reticulocalbin-2|E6-binding protein|calcium-binding protein ERC-55|reticulocalbin 2, EF-hand calcium binding domain (endoplasmic reticulum calcium-binding protein, 55kD) 20 0.002737 10.39 1 1 +5956 OPN1LW opsin 1 (cone pigments), long-wave-sensitive X protein-coding CBBM|CBP|COD5|RCP|ROP long-wave-sensitive opsin 1|cone dystrophy 5 (X-linked)|red cone opsin|red cone photoreceptor pigment|red-sensitive opsin 29 0.003969 0.08457 1 1 +5957 RCVRN recoverin 17 protein-coding RCV1 recoverin|cancer associated retinopathy antigen|cancer-associated retinopathy protein 21 0.002874 1.19 1 1 +5959 RDH5 retinol dehydrogenase 5 12 protein-coding 9cRDH|HSD17B9|RDH1|SDR9C5 11-cis retinol dehydrogenase|11-cis RDH|11-cis RoDH|9-cis retinol dehydrogenase|9-cis-retinol specific dehydrogenase|retinol dehydrogenase 1|retinol dehydrogenase 5 (11-cis and 9-cis)|retinol dehydrogenase 5 (11-cis/9-cis)|short chain dehydrogenase/reductase family 9C member 5 14 0.001916 5.883 1 1 +5961 PRPH2 peripherin 2 6 protein-coding AOFMD|AVMD|CACD2|DS|MDBS1|PRPH|RDS|RP7|TSPAN22|rd2 peripherin-2|peripherin 2 (retinal degeneration, slow)|peripherin 2, homolog of mouse|peripherin, photoreceptor type|retinal degeneration slow protein|retinal peripherin|tetraspanin-22|tspan-22 28 0.003832 3.846 1 1 +5962 RDX radixin 11 protein-coding DFNB24 radixin 42 0.005749 10.5 1 1 +5965 RECQL RecQ like helicase 12 protein-coding RECQL1|RecQ1 ATP-dependent DNA helicase Q1|DNA helicase, RecQ-like type 1|DNA-dependent ATPase Q1|RecQ helicase-like|RecQ protein-like (DNA helicase Q1-like)|recQ protein-like 1 48 0.00657 9.499 1 1 +5966 REL REL proto-oncogene, NF-kB subunit 2 protein-coding C-Rel proto-oncogene c-Rel|oncogene REL, avian reticuloendotheliosis|v-rel avian reticuloendotheliosis viral oncogene homolog 43 0.005886 5.893 1 1 +5967 REG1A regenerating family member 1 alpha 2 protein-coding ICRF|P19|PSP|PSPS|PSPS1|PTP|REG lithostathine-1-alpha|REG-1-alpha|islet cells regeneration factor|islet of langerhans regenerating protein|pancreatic stone protein, secretory|pancreatic thread protein|protein-X|regenerating islet-derived protein 1-alpha|regenerating protein I alpha 64 0.00876 2.223 1 1 +5968 REG1B regenerating family member 1 beta 2 protein-coding PSPS2|REGH|REGI-BETA|REGL lithostathine-1-beta|PSP-2|REG-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 63 0.008623 0.7579 1 1 +5969 REG1CP regenerating family member 1 gamma, pseudogene 2 pseudo REG1P|REGL|RS regenerating islet-derived 1 pseudogene|regenerating islet-derived-like, human homolog (pancreatic stone protein-like, pancreatic thread protein-like) 69 0.009444 0.1485 1 1 +5970 RELA RELA proto-oncogene, NF-kB subunit 11 protein-coding NFKB3|p65 transcription factor p65|NF-kappa-B p65delta3|NF-kappa-B transcription factor p65|nuclear factor NF-kappa-B p65 subunit|nuclear factor of kappa light polypeptide gene enhancer in B-cells 3|v-rel avian reticuloendotheliosis viral oncogene homolog A|v-rel reticuloendotheliosis viral oncogene homolog A 43 0.005886 11.04 1 1 +5971 RELB RELB proto-oncogene, NF-kB subunit 19 protein-coding I-REL|IREL|REL-B 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 29 0.003969 8.808 1 1 +5972 REN renin 1 protein-coding HNFJ2 renin|angiotensin-forming enzyme|angiotensinogenase|renin precursor, renal 24 0.003285 2.209 1 1 +5973 RENBP renin binding protein X protein-coding RBP|RNBP N-acylglucosamine 2-epimerase|AGE|GlcNAc 2-epimerase|N-acetyl-D-glucosamine 2-epimerase 28 0.003832 7.493 1 1 +5976 UPF1 UPF1, RNA helicase and ATPase 19 protein-coding HUPF1|NORF1|RENT1|pNORF1|smg-2 regulator of nonsense transcripts 1|ATP-dependent helicase RENT1|UPF1 regulator of nonsense transcripts homolog|delta helicase|nonsense mRNA reducing factor 1|smg-2 homolog, nonsense mediated mRNA decay factor|up-frameshift mutation 1 homolog|up-frameshift suppressor 1 homolog|yeast Upf1p homolog 81 0.01109 11.55 1 1 +5977 DPF2 double PHD fingers 2 11 protein-coding REQ|UBID4|ubi-d4 zinc finger protein ubi-d4|BAF45D|BRG1-associated factor 45D|D4, zinc and double PHD fingers family 2|apoptosis response zinc finger protein|protein requiem|requiem, apoptosis response zinc finger 41 0.005612 10.18 1 1 +5978 REST RE1 silencing transcription factor 4 protein-coding NRSF|WT6|XBR RE1-silencing transcription factor|RE1-silencing transcription factor variant E1a/E2/E3/E4c|RE1-silencing transcription factor variant E1a/E2/E3/E5|RE1-silencing transcription factor variant E1a/E2/E3/N3a/E4i|RE1-silencing transcription factor variant E1a/E2/E3/N3c/E4|RE1-silencing transcription factor variant E1a/E2/E4|RE1-silencing transcription factor variant E1a/E2/E5|RE1-silencing transcription factor variant E1a/E2a/E2k|RE1-silencing transcription factor variant E1a/E2d/E4g|RE1-silencing transcription factor variant E1a/E2e/E4h|RE1-silencing transcription factor variant E1a/E2f/E4e|RE1-silencing transcription factor variant E1a/E2k/E2i/E3/E4j|RE1-silencing transcription factor variant E1b/E2/E3/E5|RE1-silencing transcription factor variant E1b/E2/E3/N3b/E4i|RE1-silencing transcription factor variant E1b/E2/E3/N3c/E4|RE1-silencing transcription factor variant E1b/E2a/E2k|RE1-silencing transcription factor variant E1b/E2c/E2j/E3/E4|RE1-silencing transcription factor variant E1b/E2e/E4h|RE1-silencing transcription factor variant E1c/E2/E3/E5|RE1-silencing transcription factor variant E1c/E2a/E2k|RE1-silencing transcription factor variant E1c/E2g/E3/E4|neural-restrictive silencer factor|neuron restrictive silencer factor|repressor binding to the X2 box 71 0.009718 7.591 1 1 +5979 RET ret proto-oncogene 10 protein-coding CDHF12|CDHR16|HSCR1|MEN2A|MEN2B|MTC1|PTC|RET-ELE1|RET51 proto-oncogene tyrosine-protein kinase receptor Ret|CUX1/RET fusion|RET receptor tyrosine kinase|RET transforming sequence|cadherin family member 12|cadherin-related family member 16|hydroxyaryl-protein kinase|proto-oncogene c-Ret|rearranged during transfection|receptor tyrosine kinase|ret proto-oncogene (multiple endocrine neoplasia and medullary thyroid carcinoma 1, Hirschsprung disease) 117 0.01601 5.858 1 1 +5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit 6 protein-coding POLZ|REV3 DNA polymerase zeta catalytic subunit|REV3-like, polymerase (DNA directed), zeta, catalytic subunit|Rev-3, yeast, homolog-like (polymerase, DNA, zeta) 195 0.02669 9.083 1 1 +5981 RFC1 replication factor C subunit 1 4 protein-coding A1|MHCBFB|PO-GA|RECC1|RFC|RFC140 replication factor C subunit 1|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 (activator 1) 1, 145kDa|replication factor C 140 kDa subunit|replication factor C large subunit|replication factor C1 72 0.009855 10.25 1 1 +5982 RFC2 replication factor C subunit 2 7 protein-coding RFC40 replication factor C subunit 2|A1 40 kDa subunit|RF-C 40 kDa subunit|activator 1 subunit 2|replication factor C (activator 1) 2, 40kDa 27 0.003696 9.412 1 1 +5983 RFC3 replication factor C subunit 3 13 protein-coding RFC38 replication factor C subunit 3|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 (activator 1) 3, 38kDa|replication factor C 38 kDa subunit 16 0.00219 8.306 1 1 +5984 RFC4 replication factor C subunit 4 3 protein-coding A1|RFC37 replication factor C subunit 4|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 (activator 1) 4, 37kDa|replication factor C 37 kDa subunit 38 0.005201 8.486 1 1 +5985 RFC5 replication factor C subunit 5 12 protein-coding RFC36 replication factor C subunit 5|A1 36 kDa subunit|RF-C 36 kDa subunit|RFC, 36.5 kD subunit|replication factor C (activator 1) 5, 36.5kDa|replication factor C, 36-kDa subunit 28 0.003832 8.538 1 1 +5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 17 protein-coding - beta-1,3-N-acetylglucosaminyltransferase radical fringe|O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase|radical fringe homolog 12 0.001642 9.739 1 1 +5987 TRIM27 tripartite motif containing 27 6 protein-coding RFP|RNF76 zinc finger protein RFP|RFP transforming protein|RING finger protein 76|ret finger protein|tripartite motif protein TRIM27|tripartite motif-containing protein 27 44 0.006022 10.52 1 1 +5988 RFPL1 ret finger protein like 1 22 protein-coding RNF78 ret finger protein-like 1|RING finger protein 78 37 0.005064 1.271 1 1 +5989 RFX1 regulatory factor X1 19 protein-coding EFC|RFX MHC class II regulatory factor RFX1|MHC class II regulatory factor RFX|enhancer factor C|regulatory factor X, 1 (influences HLA class II expression)|trans-acting regulatory factor 1|transcription factor RFX1 58 0.007939 8.795 1 1 +5990 RFX2 regulatory factor X2 19 protein-coding - DNA-binding protein RFX2|HLA class II regulatory factor RFX2|regulatory factor X 2|regulatory factor X, 2 (influences HLA class II expression)|trans-acting regulatory factor 2 41 0.005612 7.407 1 1 +5991 RFX3 regulatory factor X3 9 protein-coding - transcription factor RFX3|DNA binding protein RFX3|regulatory factor X, 3 (influences HLA class II expression) 55 0.007528 5.562 1 1 +5992 RFX4 regulatory factor X4 12 protein-coding NYD-SP10 transcription factor RFX4|regulatory factor X, 4 (influences HLA class II expression)|testis development protein NYD-SP10|winged-helix transcription factor RFX4 62 0.008486 1.598 1 1 +5993 RFX5 regulatory factor X5 1 protein-coding - DNA-binding protein RFX5|regulatory factor X 5|regulatory factor X, 5 (influences HLA class II expression) 62 0.008486 10.08 1 1 +5994 RFXAP regulatory factor X associated protein 13 protein-coding - regulatory factor X-associated protein|RFX DNA-binding complex 36 kDa subunit|RFX-associated protein 16 0.00219 6.669 1 1 +5995 RGR retinal G protein coupled receptor 10 protein-coding RP44 RPE-retinal G protein-coupled receptor|RGR-opsin 28 0.003832 0.8996 1 1 +5996 RGS1 regulator of G-protein signaling 1 1 protein-coding 1R20|BL34|HEL-S-87|IER1|IR20 regulator of G-protein signaling 1|B-cell activation protein BL34|early response protein 1R20|epididymis secretory protein Li 87|immediate-early response 1, B-cell specific|regulator of G-protein signalling 1 30 0.004106 9.305 1 1 +5997 RGS2 regulator of G-protein signaling 2 1 protein-coding G0S8 regulator of G-protein signaling 2|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, 24kDa 22 0.003011 9.008 1 1 +5998 RGS3 regulator of G-protein signaling 3 9 protein-coding C2PA|RGP3 regulator of G-protein signaling 3|regulator of G-protein signalling 3 94 0.01287 9.877 1 1 +5999 RGS4 regulator of G-protein signaling 4 1 protein-coding RGP4|SCZD9 regulator of G-protein signaling 4|schizophrenia disorder 9 38 0.005201 6.65 1 1 +6000 RGS7 regulator of G-protein signaling 7 1 protein-coding - regulator of G-protein signaling 7|regulator of G-protein signaling RGS7|regulator of G-protein signalling 7 115 0.01574 2.086 1 1 +6001 RGS10 regulator of G-protein signaling 10 10 protein-coding - regulator of G-protein signaling 10|regulator of G-protein signalling 10 18 0.002464 8.943 1 1 +6002 RGS12 regulator of G-protein signaling 12 4 protein-coding - regulator of G-protein signaling 12|regulator of G-protein signalling 12 129 0.01766 9.725 1 1 +6003 RGS13 regulator of G-protein signaling 13 1 protein-coding - regulator of G-protein signaling 13|regulator of G-protein signalling 13 18 0.002464 2.155 1 1 +6004 RGS16 regulator of G-protein signaling 16 1 protein-coding A28-RGS14|A28-RGS14P|RGS-R regulator of G-protein signaling 16|hRGS-r|regulator of G-protein signalling 16|retinal-specific RGS|retinally abundant regulator of G-protein signaling 19 0.002601 8.312 1 1 +6005 RHAG Rh-associated glycoprotein 6 protein-coding CD241|OHS|OHST|RH2|RH50A|Rh50|Rh50GP|SLC42A1 ammonium transporter Rh type A|Rh 50 glycoprotein|Rhesus associated polypeptide, 50-KD|Rhesus blood group-associated glycoprotein|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 55 0.007528 0.2356 1 1 +6006 RHCE Rh blood group CcEe antigens 1 protein-coding CD240CE|RH|RH30A|RHC|RHE|RHIXB|RHPI|Rh4|RhIVb(J)|RhVI|RhVIII blood group Rh(CE) polypeptide|(C)ces type 1 Rhesus blood group D antigen|RHCE blood group variant Crawford antigen Rh43|Rh blood group C antigen|Rh blood group CcEe antigen|Rh blood group antigen Evans|Rh blood group protein|Rh polypeptide I|RhCE blood group antigens|Rhesus blood group CE protein|Rhesus blood group E antigen|Rhesus blood group Rhce antigen|Rhesus system C and E polypeptides|blood group RhCE polypeptide|blood group RhCcEe antigen|rh polypeptide 1|rhesus C/E antigens|rhesus blood group antigen, RhC antigen|rhesus blood group little e antigen|silenced Rh blood group CcEe antigen|truncated RHCE|truncated RhCcEe antigen 30 0.004106 3.435 1 1 +6007 RHD Rh blood group D antigen 1 protein-coding CD240D|DIIIc|RH|RH30|RHCED|RHDVA(TT)|RHDel|RHPII|RHXIII|Rh4|RhDCw|RhII|RhK562-II|RhPI blood group Rh(D) polypeptide|D antigen (DCS)|RH polypeptide 2|Rh blood group antigen Evans|Rh blood group, D anitgen|RhD blood group antigen|RhD polypeptide|Rhesus blood group D antigen allele DIII type 7|Rhesus system D polypeptide|blood group antigen D|blood group protein RHD|rhesus D antigen|truncated rhesus D|truncated rhesus blood group D antigen 31 0.004243 1.953 1 1 +6009 RHEB Ras homolog enriched in brain 7 protein-coding RHEB2 GTP-binding protein Rheb|Ras homolog enriched in brain 2 19 0.002601 10.31 1 1 +6010 RHO rhodopsin 3 protein-coding CSNBAD1|OPN2|RP4 rhodopsin|opsin 2, rod pigment|opsin-2 33 0.004517 0.5449 1 1 +6011 GRK1 G protein-coupled receptor kinase 1 13 protein-coding GPRK1|RHOK|RK rhodopsin kinase 36 0.004927 0.5732 1 1 +6013 RLN1 relaxin 1 9 protein-coding H1|H1RLX|RLXH1|bA12D24.3.1|bA12D24.3.2 prorelaxin H1|preprorelaxin H1 11 0.001506 1.373 1 1 +6014 RIT2 Ras like without CAAX 2 18 protein-coding RIBA|RIN|ROC2 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 44 0.006022 0.6953 1 1 +6015 RING1 ring finger protein 1 6 protein-coding RING1A|RNF1 E3 ubiquitin-protein ligase RING1|polycomb complex protein RING1|really interesting new gene 1 protein 36 0.004927 10.01 1 1 +6016 RIT1 Ras like without CAAX 1 1 protein-coding NS8|RIBB|RIT|ROC1 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 21 0.002874 9.355 1 1 +6017 RLBP1 retinaldehyde binding protein 1 15 protein-coding CRALBP retinaldehyde-binding protein 1|cellular retinaldehyde-binding protein|cellular retinaldehyde-binding protein-1 30 0.004106 1.147 1 1 +6018 RLF rearranged L-myc fusion 1 protein-coding ZN-15L|ZNF292L zinc finger protein Rlf|Zn-15 related|rearranged L-myc fusion gene protein|rearranged L-myc fusion sequence|zn-15-related protein 116 0.01588 9.055 1 1 +6019 RLN2 relaxin 2 9 protein-coding H2|H2-RLX|RLXH2|bA12D24.1.1|bA12D24.1.2 prorelaxin H2|H2-preprorelaxin|relaxin H2|relaxin, ovarian, of pregnancy 21 0.002874 2.721 1 1 +6023 RMRP RNA component of mitochondrial RNA processing endoribonuclease 9 ncRNA CHH|NME1|RMRPR|RRP2 - 4.15 0 1 +6035 RNASE1 ribonuclease A family member 1, pancreatic 14 protein-coding RAC1|RIB1|RNS1 ribonuclease pancreatic|HP-RNase|RIB-1|RNase 1|RNase A|RNase upI-1|ribonuclease 1|ribonuclease A C1|ribonuclease, RNase A family, 1 (pancreatic) 6 0.0008212 10.77 1 1 +6036 RNASE2 ribonuclease A family member 2 14 protein-coding EDN|RAF3|RNS2 non-secretory ribonuclease|RNase 2|RNase UpI-2|eosinophil-derived neurotoxin|ribonuclease 2|ribonuclease A F3|ribonuclease US|ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) 21 0.002874 3.44 1 1 +6037 RNASE3 ribonuclease A family member 3 14 protein-coding ECP|RAF1|RNS3 eosinophil cationic protein|RNase 3|cytotoxic ribonuclease|ribonuclease 3|ribonuclease, RNase A family, 3 22 0.003011 0.9569 1 1 +6038 RNASE4 ribonuclease A family member 4 14 protein-coding RAB1|RNS4 ribonuclease 4|RNase 4|ribonuclease A B1|ribonuclease, RNase A family, 4 15 0.002053 8.888 1 1 +6039 RNASE6 ribonuclease A family member k6 14 protein-coding RAD1|RNS6|RNasek6 ribonuclease K6|ribonuclease A D1|ribonuclease, RNase A family, k6|testicular tissue protein Li 166 9 0.001232 7.515 1 1 +6041 RNASEL ribonuclease L 1 protein-coding PRCA1|RNS4 2-5A-dependent ribonuclease|2',5'-oligoisoadenylate synthetase-dependent|2-5A-dependent RNase|RNase L|interferon-induced 2-5A-dependent RNase|ribonuclease 4|ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) 54 0.007391 8.232 1 1 +6043 SNORA63 small nucleolar RNA, H/ACA box 63 3 snoRNA E3|E3-2|RNE3|RNU107|SNORA63A|elF-4AII RNA, U107 small nucleolar|RNA, small nucleolar E3 0.7084 0 1 +6044 SNORA62 small nucleolar RNA, H/ACA box 62 3 snoRNA E2|E2-1|RNE2|RNU108 RNA, U108 small nucleolar|RNA, small nucleolar E2 0.1537 0 1 +6045 RNF2 ring finger protein 2 1 protein-coding BAP-1|BAP1|DING|HIPI3|RING1B|RING2 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 20 0.002737 8.94 1 1 +6046 BRD2 bromodomain containing 2 6 protein-coding D6S113E|FSH|FSRG1|NAT|O27.1.1|RING3|RNF3 bromodomain-containing protein 2|female sterile homeotic-related gene 1|really interesting new gene 3 protein 72 0.009855 12.31 1 1 +6047 RNF4 ring finger protein 4 4 protein-coding RES4-26|SLX5|SNURF E3 ubiquitin-protein ligase RNF4|E3 ubiquitin ligase RNF4|small nuclear RING finger protein 11 0.001506 10.44 1 1 +6048 RNF5 ring finger protein 5 6 protein-coding RING5|RMA1 E3 ubiquitin-protein ligase RNF5|protein G16|ram1 homolog|ring finger protein 5, E3 ubiquitin protein ligase 12 0.001642 10.07 1 1 +6049 RNF6 ring finger protein 6 13 protein-coding - E3 ubiquitin-protein ligase RNF6|RING-H2 protein RNF-6|ring finger protein (C3H2C3 type) 6 49 0.006707 9.574 1 1 +6050 RNH1 ribonuclease/angiogenin inhibitor 1 11 protein-coding RAI|RNH ribonuclease inhibitor|placental RNase inhibitor|placental ribonuclease inhibitor|testicular tissue protein Li 164 26 0.003559 11.69 1 1 +6051 RNPEP arginyl aminopeptidase 1 protein-coding AP-B aminopeptidase B|arginine aminopeptidase|arginyl aminopeptidase (aminopeptidase B) 33 0.004517 10.85 1 1 +6059 ABCE1 ATP binding cassette subfamily E member 1 4 protein-coding ABC38|OABP|RLI|RLI1|RNASEL1|RNASELI|RNS4I ATP-binding cassette sub-family E member 1|2'-5'-oligoadenylate-binding protein|ATP-binding cassette, sub-family E (OABP), member 1|RNase L inhibitor|RNase L inhibitor 1|huHP68|ribonuclease 4 inhibitor|ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) inhibitor 46 0.006296 10.45 1 1 +6071 RNU6V RNA, U6 small nuclear variant sequence with SNRPE pseudogene sequence 1 pseudo 87U6|LH87 small nuclear ribonucleoprotein E pseudogene 1 0.0001369 1 0 +6079 SNORD15A small nucleolar RNA, C/D box 15A 11 snoRNA RNU15A|SNORNA|U15A U15A snRNA|U15A snoRNA 0.1317 0 1 +6082 SNORD20 small nucleolar RNA, C/D box 20 2 snoRNA RNU20|U20 RNA, U20 small nuclear|RNA, U20 small nucleolar 1 0.0001369 0 1 1 +6083 SNORD21 small nucleolar RNA, C/D box 21 1 snoRNA RNU21|U21 RNA, U21 small nuclear|U21 small nucleolar RNA|U21 snoRNA 1 0.0001369 0 1 1 +6086 RNY4 RNA, Ro-associated Y4 7 ncRNA HY4|Y4 RNA, Y4 small cytoplasmic (associated with Ro protein) 0 0 1 +6090 RNY5 RNA, Ro-associated Y5 7 ncRNA Y5 RNA, Y5 small cytoplasmic (associated with Ro protein) 3 0.0004106 0 1 1 +6091 ROBO1 roundabout guidance receptor 1 3 protein-coding DUTT1|SAX3 roundabout homolog 1|deleted in U twenty twenty|roundabout, axon guidance receptor, homolog 1 182 0.02491 9.465 1 1 +6092 ROBO2 roundabout guidance receptor 2 3 protein-coding SAX3 roundabout homolog 2|roundabout, axon guidance receptor, homolog 2 230 0.03148 5.161 1 1 +6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 18 protein-coding P160ROCK|ROCK-I rho-associated protein kinase 1|p160 ROCK-1|renal carcinoma antigen NY-REN-35 111 0.01519 10.13 1 1 +6094 ROM1 retinal outer segment membrane protein 1 11 protein-coding ROM|ROSP1|RP7|TSPAN23 rod outer segment membrane protein 1|tetraspanin-23|tspan-23 24 0.003285 6.271 1 1 +6095 RORA RAR related orphan receptor A 15 protein-coding NR1F1|ROR1|ROR2|ROR3|RZR-ALPHA|RZRA nuclear receptor ROR-alpha|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 44 0.006022 8.415 1 1 +6096 RORB RAR related orphan receptor B 9 protein-coding NR1F2|ROR-BETA|RZR-BETA|RZRB|bA133M9.1 nuclear receptor ROR-beta|RAR-related orphan receptor beta|nuclear receptor RZR-beta|nuclear receptor subfamily 1 group F member 2|retinoic acid-binding receptor beta|retinoid-related orphan receptor beta 49 0.006707 2.788 1 1 +6097 RORC RAR related orphan receptor C 1 protein-coding IMD42|NR1F3|RORG|RZR-GAMMA|RZRG|TOR nuclear receptor ROR-gamma|RAR-related orphan nuclear receptor variant 2|RAR-related orphan receptor C|nuclear receptor RZR-gamma|nuclear receptor subfamily 1 group F member 3|retinoic acid-binding receptor gamma|retinoid-related orphan receptor gamma 43 0.005886 7.373 1 1 +6098 ROS1 ROS proto-oncogene 1, receptor tyrosine kinase 6 protein-coding MCF3|ROS|c-ros-1 proto-oncogene tyrosine-protein kinase ROS|ROS proto-oncogene 1 , receptor tyrosine kinase|c-ros oncogene 1 , receptor tyrosine kinase|proto-oncogene c-Ros-1|transmembrane tyrosine-specific protein kinase|v-ros avian UR2 sarcoma virus oncogene homolog 1 188 0.02573 2.209 1 1 +6100 RP9 retinitis pigmentosa 9 (autosomal dominant) 7 protein-coding PAP-1|PAP1 retinitis pigmentosa 9 protein|Pim-1 kinase associated protein|pim-1-associated protein 19 0.002601 7.428 1 1 +6101 RP1 retinitis pigmentosa 1 (autosomal dominant) 8 protein-coding DCDC4A|ORP1 oxygen-regulated protein 1|retinitis pigmentosa 1 protein|retinitis pigmentosa RP1 protein 300 0.04106 2.129 1 1 +6102 RP2 retinitis pigmentosa 2 (X-linked recessive) X protein-coding DELXp11.3|NM23-H10|NME10|TBCCD2|XRP2 protein XRP2 18 0.002464 8.645 1 1 +6103 RPGR retinitis pigmentosa GTPase regulator X protein-coding COD1|CORDX1|CRD|PCDX|RP15|RP3|XLRP3|orf15 X-linked retinitis pigmentosa GTPase regulator|retinitis pigmentosa 15|retinitis pigmentosa 3 GTPase regulator 94 0.01287 7.266 1 1 +6117 RPA1 replication protein A1 17 protein-coding HSSB|MST075|REPA1|RF-A|RP-A|RPA70 replication protein A 70 kDa DNA-binding subunit|MSTP075|RF-A protein 1|RP-A p70|replication factor A protein 1|replication protein A1, 70kDa|single-stranded DNA-binding protein 32 0.00438 10.94 1 1 +6118 RPA2 replication protein A2 1 protein-coding REPA2|RP-A p32|RP-A p34|RPA32 replication protein A 32 kDa subunit|RF-A protein 2|replication factor A protein 2|replication protein A 34 kDa subunit|replication protein A2, 32kDa 18 0.002464 10.02 1 1 +6119 RPA3 replication protein A3 7 protein-coding REPA3|RP-A p14 replication protein A 14 kDa subunit|RF-A protein 3|replication factor A protein 3|replication protein A3, 14kDa 11 0.001506 8.504 1 1 +6120 RPE ribulose-5-phosphate-3-epimerase 2 protein-coding RPE2-1 ribulose-phosphate 3-epimerase 16 0.00219 9.362 1 1 +6121 RPE65 RPE65, retinoid isomerohydrolase 1 protein-coding BCO3|LCA2|RP20|mRPE65|rd12|sRPE65 retinoid isomerohydrolase|BCO family, member 3|RBP-binding membrane protein|all-trans-retinyl-palmitate hydrolase|p63|retinal pigment epithelium specific protein 65|retinal pigment epithelium-specific 65 kDa protein|retinal pigment epithelium-specific protein 65kDa|retinitis pigmentosa 20 (autosomal recessive)|retinol isomerase 63 0.008623 1.325 1 1 +6122 RPL3 ribosomal protein L3 22 protein-coding ASC-1|L3|TARBP-B 60S ribosomal protein L3|HIV-1 TAR RNA-binding protein B 24 0.003285 14.98 1 1 +6123 RPL3L ribosomal protein L3 like 16 protein-coding - 60S ribosomal protein L3-like 33 0.004517 0.7241 1 1 +6124 RPL4 ribosomal protein L4 15 protein-coding L4 60S ribosomal protein L4|60S ribosomal protein L1 23 0.003148 14.57 1 1 +6125 RPL5 ribosomal protein L5 1 protein-coding DBA6|L5|MSTP030|PPP1R135 60S ribosomal protein L5|protein phosphatase 1, regulatory subunit 135 41 0.005612 13.99 1 1 +6128 RPL6 ribosomal protein L6 12 protein-coding L6|SHUJUN-2|TAXREB107|TXREB1 60S ribosomal protein L6|DNA-binding protein TAXREB107|neoplasm-related protein C140|tax-responsive enhancer element-binding protein 107 14 0.001916 13 1 1 +6129 RPL7 ribosomal protein L7 8 protein-coding L7|humL7-1 60S ribosomal protein L7 16 0.00219 10.03 1 1 +6130 RPL7A ribosomal protein L7a 9 protein-coding L7A|SURF3|TRUP 60S ribosomal protein L7a|PLA-X polypeptide|surfeit 3|surfeit locus protein 3|thyroid hormone receptor uncoupling protein 19 0.002601 13.69 1 1 +6132 RPL8 ribosomal protein L8 8 protein-coding L8 60S ribosomal protein L8 21 0.002874 14.9 1 1 +6133 RPL9 ribosomal protein L9 4 protein-coding L9|NPC-A-16 60S ribosomal protein L9 11 0.001506 9.275 1 1 +6134 RPL10 ribosomal protein L10 X protein-coding AUTSX5|DXS648|DXS648E|L10|NOV|QM 60S ribosomal protein L10|Wilms tumor-related protein|laminin receptor homolog|tumor suppressor QM 21 0.002874 13.69 1 1 +6135 RPL11 ribosomal protein L11 1 protein-coding DBA7|GIG34|L11 60S ribosomal protein L11|CLL-associated antigen KW-12|cell growth-inhibiting protein 34 20 0.002737 13.78 1 1 +6136 RPL12 ribosomal protein L12 9 protein-coding L12 60S ribosomal protein L12 9 0.001232 13.05 1 1 +6137 RPL13 ribosomal protein L13 16 protein-coding BBC1|D16S444E|D16S44E|L13 60S ribosomal protein L13|OK/SW-cl.46|breast basic conserved protein 1 9 0.001232 14.13 1 1 +6138 RPL15 ribosomal protein L15 3 protein-coding DBA12|EC45|L15|RPL10|RPLY10|RPYL10 60S ribosomal protein L15 12 0.001642 14.04 1 1 +6139 RPL17 ribosomal protein L17 18 protein-coding L17|PD-1|RPL23 60S ribosomal protein L17|60S ribosomal protein L23|gene encoding putative NFkB activating protein 1 0.0001369 11.91 1 1 +6141 RPL18 ribosomal protein L18 19 protein-coding L18 60S ribosomal protein L18 6 0.0008212 13.79 1 1 +6142 RPL18A ribosomal protein L18a 19 protein-coding L18A 60S ribosomal protein L18a|ribosomal protein L18a-like protein 16 0.00219 10.78 1 1 +6143 RPL19 ribosomal protein L19 17 protein-coding L19 60S ribosomal protein L19 11 0.001506 14.27 1 1 +6144 RPL21 ribosomal protein L21 13 protein-coding HYPT12|L21 60S ribosomal protein L21 5 0.0006844 2.577 1 1 +6146 RPL22 ribosomal protein L22 1 protein-coding EAP|HBP15|HBP15/L22|L22 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 35 0.004791 12.64 1 1 +6147 RPL23A ribosomal protein L23a 17 protein-coding L23A|MDA20 60S ribosomal protein L23a|melanoma differentiation-associated gene 20 11 0.001506 11.93 1 1 +6150 MRPL23 mitochondrial ribosomal protein L23 11 protein-coding L23MRP|RPL23|RPL23L 39S ribosomal protein L23, mitochondrial|L23 mitochondrial-related protein|L23mt|MRP-L23|ribosomal protein related to L23 (mitochondrial) 11 0.001506 9.545 1 1 +6152 RPL24 ribosomal protein L24 3 protein-coding HEL-S-310|L24 60S ribosomal protein L24|60S ribosomal protein L30|epididymis secretory protein Li 310|ribosomal protein L30 8 0.001095 13.02 1 1 +6154 RPL26 ribosomal protein L26 17 protein-coding DBA11|L26 60S ribosomal protein L26 7 0.0009581 13.11 1 1 +6155 RPL27 ribosomal protein L27 17 protein-coding L27 60S ribosomal protein L27 7 0.0009581 13.17 1 1 +6156 RPL30 ribosomal protein L30 8 protein-coding L30 60S ribosomal protein L30 6 0.0008212 13.82 1 1 +6157 RPL27A ribosomal protein L27a 11 protein-coding L27A 60S ribosomal protein L27a 4 0.0005475 13.44 1 1 +6158 RPL28 ribosomal protein L28 19 protein-coding L28 60S ribosomal protein L28 19 0.002601 13.88 1 1 +6159 RPL29 ribosomal protein L29 3 protein-coding HIP|HUMRPL29|L29|RPL29P10|RPL29_3_370 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 5 0.0006844 13.19 1 1 +6160 RPL31 ribosomal protein L31 2 protein-coding L31 60S ribosomal protein L31 11 0.001506 13.5 1 1 +6161 RPL32 ribosomal protein L32 3 protein-coding L32|PP9932 60S ribosomal protein L32 9 0.001232 13.78 1 1 +6164 RPL34 ribosomal protein L34 4 protein-coding L34 60S ribosomal protein L34|leukemia-associated protein 9 0.001232 12.69 1 1 +6165 RPL35A ribosomal protein L35a 3 protein-coding DBA5|L35A 60S ribosomal protein L35a|cell growth-inhibiting gene 33 protein 4 0.0005475 13.14 1 1 +6166 RPL36AL ribosomal protein L36a like 14 protein-coding RPL36A 60S ribosomal protein L36a-like|ribosomal protein HL44|ribosomal protein L36a 5 0.0006844 11.55 1 1 +6167 RPL37 ribosomal protein L37 5 protein-coding L37 60S ribosomal protein L37|60S ribosomal protein L37a|G1.16 11 0.001506 13.6 1 1 +6168 RPL37A ribosomal protein L37a 2 protein-coding L37A 60S ribosomal protein L37a 2 0.0002737 13.8 1 1 +6169 RPL38 ribosomal protein L38 17 protein-coding L38 60S ribosomal protein L38 3 0.0004106 12.6 1 1 +6170 RPL39 ribosomal protein L39 X protein-coding L39|RPL39P42|RPL39_23_1806 60S ribosomal protein L39 5 0.0006844 8.968 1 1 +6171 RPL41 ribosomal protein L41 12 protein-coding L41 60S ribosomal protein L41|HG12 protein|homologue of yeast ribosomal protein YL41 5 0.0006844 13.94 1 1 +6173 RPL36A ribosomal protein L36a X protein-coding L36A|L44L|MIG6|RPL44 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) 11 0.001506 6.249 1 1 +6175 RPLP0 ribosomal protein lateral stalk subunit P0 12 protein-coding L10E|LP0|P0|PRLP0|RPP0 60S acidic ribosomal protein P0|60S ribosomal protein L10E|acidic ribosomal phosphoprotein P0|neutral ribosomal phosphoprotein P0|ribosomal protein, large, P0 26 0.003559 14.5 1 1 +6176 RPLP1 ribosomal protein lateral stalk subunit P1 15 protein-coding LP1|P1|RPP1 60S acidic ribosomal protein P1|acidic ribosomal phosphoprotein P1|ribosomal protein, large, P1 6 0.0008212 14.44 1 1 +6181 RPLP2 ribosomal protein lateral stalk subunit P2 11 protein-coding D11S2243E|LP2|P2|RPP2 60S acidic ribosomal protein P2|acidic ribosomal phosphoprotein P2|renal carcinoma antigen NY-REN-44|ribosomal protein, large, P2 10 0.001369 13.43 1 1 +6182 MRPL12 mitochondrial ribosomal protein L12 17 protein-coding 5c5-2|L12mt|MRP-L31/34|MRPL7|MRPL7/L12|RPML12 39S ribosomal protein L12, mitochondrial|MRP-L12 2 0.0002737 10.31 1 1 +6183 MRPS12 mitochondrial ribosomal protein S12 19 protein-coding MPR-S12|MT-RPS12|RPMS12|RPS12|RPSM12 28S ribosomal protein S12, mitochondrial|MRP-S12|S12mt 9 0.001232 9.399 1 1 +6184 RPN1 ribophorin I 3 protein-coding OST1|RBPH1 dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1|RPN-I|dolichyl-diphosphooligosaccharide-protein glycosyltransferase 67 kDa subunit|oligosaccharyltransferase 1 homolog|oligosaccharyltransferase complex subunit (non-catalytic)|ribophorin-1 31 0.004243 12.84 1 1 +6185 RPN2 ribophorin II 20 protein-coding RIBIIR|RPN-II|RPNII|SWP1 dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2|dolichyl-diphosphooligosaccharide--protein glycosyltransferase 63 kDa subunit|oligosaccharyltransferase complex subunit (non-catalytic)|ribophorin-2 36 0.004927 12.98 1 1 +6187 RPS2 ribosomal protein S2 16 protein-coding LLREP3|S2 40S ribosomal protein S2|40S ribosomal protein S4|OK/KNS-cl.6|protein LLRep3 22 0.003011 13.49 1 1 +6188 RPS3 ribosomal protein S3 11 protein-coding S3 40S ribosomal protein S3|IMR-90 ribosomal protein S3 18 0.002464 14.33 1 1 +6189 RPS3A ribosomal protein S3A 4 protein-coding FTE1|MFTL|S3A 40S ribosomal protein S3a|fte-1|v-fos transformation effector protein 1 15 0.002053 12.14 1 1 +6191 RPS4X ribosomal protein S4, X-linked X protein-coding CCG2|DXS306|RPS4|S4|SCAR|SCR10 40S ribosomal protein S4, X isoform|cell cycle gene 2|ribosomal protein S4X isoform|single copy abundant mRNA protein|single-copy abundant mRNA 17 0.002327 14.69 1 1 +6192 RPS4Y1 ribosomal protein S4, Y-linked 1 Y protein-coding RPS4Y|S4 40S ribosomal protein S4, Y isoform 1|40S ribosomal protein S4, Y|ribosomal protein S4Y 5 0.0006844 5.916 1 1 +6193 RPS5 ribosomal protein S5 19 protein-coding S5 40S ribosomal protein S5 19 0.002601 13.48 1 1 +6194 RPS6 ribosomal protein S6 9 protein-coding S6 40S ribosomal protein S6|phosphoprotein NP33 24 0.003285 14.63 1 1 +6195 RPS6KA1 ribosomal protein S6 kinase A1 1 protein-coding HU-1|MAPKAPK1A|RSK|RSK1|p90Rsk ribosomal protein S6 kinase alpha-1|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|dJ590P13.1 (ribosomal protein S6 kinase, 90kD, polypeptide 1)|p90-RSK 1|p90RSK1|p90S6K|ribosomal S6 kinase 1|ribosomal protein S6 kinase, 90kDa, polypeptide 1 59 0.008076 10.11 1 1 +6196 RPS6KA2 ribosomal protein S6 kinase A2 6 protein-coding HU-2|MAPKAPK1C|RSK|RSK3|S6K-alpha|S6K-alpha2|p90-RSK3|p90RSK2|pp90RSK3 ribosomal protein S6 kinase alpha-2|MAP kinase-activated protein kinase 1c|MAPK-activated protein kinase 1c|MAPKAP kinase 1C|mitogen-activated protein kinase-activated protein kinase 1C|ribosomal S6 kinase 3|ribosomal protein S6 kinase, 90kDa, polypeptide 2 70 0.009581 9.775 1 1 +6197 RPS6KA3 ribosomal protein S6 kinase A3 X protein-coding CLS|HU-3|ISPK-1|MAPKAPK1B|MRX19|RSK|RSK2|S6K-alpha3|p90-RSK2|pp90RSK2 ribosomal protein S6 kinase alpha-3|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, 90kDa, polypeptide 3 60 0.008212 10.36 1 1 +6198 RPS6KB1 ribosomal protein S6 kinase B1 17 protein-coding PS6K|S6K|S6K-beta-1|S6K1|STK14A|p70 S6KA|p70(S6K)-alpha|p70-S6K|p70-alpha ribosomal protein S6 kinase beta-1|p70 S6 kinase, alpha|ribosomal protein S6 kinase I|ribosomal protein S6 kinase, 70kDa, polypeptide 1|serine/threonine kinase 14 alpha|serine/threonine-protein kinase 14A 29 0.003969 9.489 1 1 +6199 RPS6KB2 ribosomal protein S6 kinase B2 11 protein-coding KLS|P70-beta|P70-beta-1|P70-beta-2|S6K-beta2|S6K2|SRK|STK14B|p70(S6K)-beta|p70S6Kb ribosomal protein S6 kinase beta-2|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, 70kDa, polypeptide 2|serine/threonine-protein kinase 14 beta|serine/threonine-protein kinase 14B 28 0.003832 9.758 1 1 +6201 RPS7 ribosomal protein S7 2 protein-coding DBA8|S7 40S ribosomal protein S7 10 0.001369 12.27 1 1 +6202 RPS8 ribosomal protein S8 1 protein-coding S8 40S ribosomal protein S8|OK/SW-cl.83 7 0.0009581 14.11 1 1 +6203 RPS9 ribosomal protein S9 19 protein-coding S9 40S ribosomal protein S9 13 0.001779 13.75 1 1 +6204 RPS10 ribosomal protein S10 6 protein-coding DBA9|S10 40S ribosomal protein S10 9 0.001232 12.43 1 1 +6205 RPS11 ribosomal protein S11 19 protein-coding S11 40S ribosomal protein S11 9 0.001232 14.35 1 1 +6206 RPS12 ribosomal protein S12 6 protein-coding S12 40S ribosomal protein S12 10 0.001369 13.44 1 1 +6207 RPS13 ribosomal protein S13 11 protein-coding S13 40S ribosomal protein S13 13 0.001779 12.72 1 1 +6208 RPS14 ribosomal protein S14 5 protein-coding EMTB|S14 40S ribosomal protein S14|emetine resistance 8 0.001095 13.71 1 1 +6209 RPS15 ribosomal protein S15 19 protein-coding RIG|S15 40S ribosomal protein S15|homolog of rat insulinoma|insulinoma protein 4 0.0005475 12.26 1 1 +6210 RPS15A ribosomal protein S15a 16 protein-coding S15a 40S ribosomal protein S15a|up-regulated by HBV X protein 1 0.0001369 13.14 1 1 +6217 RPS16 ribosomal protein S16 19 protein-coding S16 40S ribosomal protein S16 6 0.0008212 13.7 1 1 +6218 RPS17 ribosomal protein S17 15 protein-coding DBA4|RPS17L|RPS17L1|RPS17L2|S17 40S ribosomal protein S17 13.47 0 1 +6222 RPS18 ribosomal protein S18 6 protein-coding D6S218E|HKE3|KE-3|KE3|S18 40S ribosomal protein S18|rhabdomyosarcoma antigen MU-RMS-40.21 11 0.001506 14.19 1 1 +6223 RPS19 ribosomal protein S19 19 protein-coding DBA|DBA1|S19 40S ribosomal protein S19 8 0.001095 13.85 1 1 +6224 RPS20 ribosomal protein S20 8 protein-coding S20 40S ribosomal protein S20 9 0.001232 13.95 1 1 +6227 RPS21 ribosomal protein S21 20 protein-coding HLDF|S21 40S ribosomal protein S21|8.2 kDa differentiation factor|human leukemia differentiation factor 3 0.0004106 12.74 1 1 +6228 RPS23 ribosomal protein S23 5 protein-coding S23 40S ribosomal protein S23|homolog of yeast ribosomal protein S28 5 0.0006844 13.5 1 1 +6229 RPS24 ribosomal protein S24 10 protein-coding DBA3|S24 40S ribosomal protein S24 11 0.001506 13.94 1 1 +6230 RPS25 ribosomal protein S25 11 protein-coding S25 40S ribosomal protein S25 6 0.0008212 12.8 1 1 +6231 RPS26 ribosomal protein S26 12 protein-coding DBA10|S26 40S ribosomal protein S26 6 0.0008212 9.375 1 1 +6232 RPS27 ribosomal protein S27 1 protein-coding MPS-1|MPS1|S27 40S ribosomal protein S27|metallopan-stimulin 1|metallopanstimulin 1 8 0.001095 8.362 1 1 +6233 RPS27A ribosomal protein S27a 2 protein-coding CEP80|HEL112|S27A|UBA80|UBC|UBCEP1|UBCEP80 ubiquitin-40S ribosomal protein S27a|40S ribosomal protein S27a|epididymis luminal protein 112|ubiquitin C|ubiquitin and ribosomal protein S27a|ubiquitin carboxyl extension protein 80|ubiquitin-CEP80 9 0.001232 12.82 1 1 +6234 RPS28 ribosomal protein S28 19 protein-coding DBA15|S28 40S ribosomal protein S28 4 0.0005475 7.212 1 1 +6235 RPS29 ribosomal protein S29 14 protein-coding DBA13|S29 40S ribosomal protein S29 5 0.0006844 12.35 1 1 +6236 RRAD RRAD, Ras related glycolysis inhibitor and calcium channel regulator 16 protein-coding RAD|RAD1|REM3 GTP-binding protein RAD|RAS (RAD and GEM) like GTP binding 3|RRAD, Ras related glycolysis inihibitor and calcium channel regulator|Ras-related associated with diabetes|ras associated with diabetes 24 0.003285 6.538 1 1 +6237 RRAS related RAS viral (r-ras) oncogene homolog 19 protein-coding - ras-related protein R-Ras|oncogene RRAS|p23|ras family small GTP binding protein R-Ras 11 0.001506 9.64 1 1 +6238 RRBP1 ribosome binding protein 1 20 protein-coding ES/130|ES130|RRp|hES ribosome-binding protein 1|180 kDa ribosome receptor homolog|ES/130-related protein|ribosome binding protein 1 homolog 180kDa (dog)|ribosome receptor protein 85 0.01163 12.6 1 1 +6239 RREB1 ras responsive element binding protein 1 6 protein-coding FINB|HNT|LZ321|RREB-1|Zep-1 ras-responsive element-binding protein 1|DNA-binding protein|finger protein in nuclear bodies|hindsight homolog|raf-responsive zinc finger protein LZ321|zinc finger motif enhancer-binding protein 1 119 0.01629 9.808 1 1 +6240 RRM1 ribonucleotide reductase catalytic subunit M1 11 protein-coding R1|RIR1|RR1 ribonucleoside-diphosphate reductase large subunit|ribonucleoside-diphosphate reductase subunit M1|ribonucleotide reductase M1 polypeptide|ribonucleotide reductase, R1 subunit 46 0.006296 10.46 1 1 +6241 RRM2 ribonucleotide reductase regulatory subunit M2 2 protein-coding R2|RR2|RR2M ribonucleoside-diphosphate reductase subunit M2|ribonucleotide reductase M2 polypeptide|ribonucleotide reductase small chain|ribonucleotide reductase small subunit 23 0.003148 9.19 1 1 +6242 RTKN rhotekin 2 protein-coding - rhotekin 35 0.004791 9.914 1 1 +6247 RS1 retinoschisin 1 X protein-coding RS|XLRS1 retinoschisin|X-linked juvenile retinoschisis protein 22 0.003011 1.61 1 1 +6248 RSC1A1 regulator of solute carriers 1 1 protein-coding RS1 regulatory solute carrier protein family 1 member 1|regulatory solute carrier protein, family 1, member 1|transporter regulator RS1 32 0.00438 7.283 1 1 +6249 CLIP1 CAP-Gly domain containing linker protein 1 12 protein-coding CLIP|CLIP-170|CLIP170|CYLN1|RSN 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) 104 0.01423 10.82 1 1 +6251 RSU1 Ras suppressor protein 1 10 protein-coding RSP-1 ras suppressor protein 1|ras suppressor protein 1 variant 1|ras suppressor protein 1 variant 2|ras suppressor protein 1 variant 3|ras suppressor protein 1 variant 5|rsu-1 18 0.002464 10.29 1 1 +6252 RTN1 reticulon 1 14 protein-coding NSP reticulon-1|neuroendocrine-specific protein 102 0.01396 7.111 1 1 +6253 RTN2 reticulon 2 19 protein-coding NSP2|NSPL1|NSPLI|SPG12 reticulon-2|NSP-like protein 1|NSP-like protein I|neuroendocrine-specific protein-like I 40 0.005475 7.668 1 1 +6256 RXRA retinoid X receptor alpha 9 protein-coding NR2B1 retinoic acid receptor RXR-alpha|nuclear receptor subfamily 2 group B member 1|retinoid X nuclear receptor alpha 55 0.007528 10.98 1 1 +6257 RXRB retinoid X receptor beta 6 protein-coding DAUDI6|H-2RIIBP|NR2B2|RCoR-1 retinoic acid receptor RXR-beta|MHC class I promoter binding protein|nuclear receptor subfamily 2 group B member 2 38 0.005201 10.07 1 1 +6258 RXRG retinoid X receptor gamma 1 protein-coding NR2B3|RXRC retinoic acid receptor RXR-gamma|nuclear receptor subfamily 2 group B member 3 55 0.007528 3.249 1 1 +6259 RYK receptor-like tyrosine kinase 3 protein-coding D3S3195|JTK5|JTK5A|RYK1 tyrosine-protein kinase RYK|JTK5A protein tyrosine kinase|hydroxyaryl-protein kinase 17 0.002327 10.09 1 1 +6261 RYR1 ryanodine receptor 1 19 protein-coding CCO|MHS|MHS1|PPP1R137|RYDR|RYR|RYR-1|SKRR ryanodine receptor 1|central core disease of muscle|protein phosphatase 1, regulatory subunit 137|ryanodine receptor 1 (skeletal)|sarcoplasmic reticulum calcium release channel|skeletal muscle calcium release channel|skeletal muscle ryanodine receptor|type 1-like ryanodine receptor 442 0.0605 6.85 1 1 +6262 RYR2 ryanodine receptor 2 1 protein-coding ARVC2|ARVD2|RYR-2|RyR|VTSIP ryanodine receptor 2|cardiac muscle ryanodine receptor-calcium release channel|cardiac-type ryanodine receptor|islet-type ryanodine receptor|kidney-type ryanodine receptor|ryanodine receptor 2 (cardiac)|type 2 ryanodine receptor 741 0.1014 4.794 1 1 +6263 RYR3 ryanodine receptor 3 15 protein-coding RYR-3 ryanodine receptor 3|brain ryanodine receptor-calcium release channel|brain-type ryanodine receptor|type 3 ryanodine receptor 446 0.06105 4.068 1 1 +6271 S100A1 S100 calcium binding protein A1 1 protein-coding S100|S100-alpha|S100A protein S100-A1|S-100 protein alpha chain|S-100 protein subunit alpha|S100 alpha|S100 protein, alpha polypeptide 8 0.001095 7.102 1 1 +6272 SORT1 sortilin 1 1 protein-coding Gp95|LDLCQ6|NT3|NTR3 sortilin|100 kDa NT receptor|glycoprotein 95|neurotensin receptor 3 47 0.006433 11.26 1 1 +6273 S100A2 S100 calcium binding protein A2 1 protein-coding CAN19|S100L protein S100-A2 8 0.001095 7.242 1 1 +6274 S100A3 S100 calcium binding protein A3 1 protein-coding S100E protein S100-A3 10 0.001369 4.29 1 1 +6275 S100A4 S100 calcium binding protein A4 1 protein-coding 18A2|42A|CAPL|FSP1|MTS1|P9KA|PEL98 protein S100-A4|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 12 0.001642 9.734 1 1 +6276 S100A5 S100 calcium binding protein A5 1 protein-coding S100D protein S100-A5 7 0.0009581 1.8 1 1 +6277 S100A6 S100 calcium binding protein A6 1 protein-coding 2A9|5B10|CABP|CACY|PRA protein S100-A6|MLN 4|S100 calcium-binding protein A6 (calcyclin)|calcyclin|growth factor-inducible protein 2A9|prolactin receptor-associated protein 6 0.0008212 13.21 1 1 +6278 S100A7 S100 calcium binding protein A7 1 protein-coding PSOR1|S100A7c protein S100-A7|S100 calcium-binding protein A7 (psoriasin 1)|psoriasin 1 19 0.002601 2.83 1 1 +6279 S100A8 S100 calcium binding protein A8 1 protein-coding 60B8AG|CAGA|CFAG|CGLA|CP-10|L1Ag|MA387|MIF|MRP8|NIF|P8 protein S100-A8|S100 calcium-binding protein A8 (calgranulin A)|calgranulin A|calprotectin L1L subunit|cystic fibrosis antigen|leukocyte L1 complex light chain|migration inhibitory factor-related protein 8|urinary stone protein band A 6 0.0008212 7.207 1 1 +6280 S100A9 S100 calcium binding protein A9 1 protein-coding 60B8AG|CAGB|CFAG|CGLB|L1AG|LIAG|MAC387|MIF|MRP14|NIF|P14 protein S100-A9|MRP-14|S100 calcium-binding protein A9 (calgranulin B)|calgranulin B|calprotectin L1H subunit|leukocyte L1 complex heavy chain|migration inhibitory factor-related protein 14 11 0.001506 8.955 1 1 +6281 S100A10 S100 calcium binding protein A10 1 protein-coding 42C|ANX2L|ANX2LG|CAL1L|CLP11|Ca[1]|GP11|P11|p10 protein S100-A10|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 4 0.0005475 11.99 1 1 +6282 S100A11 S100 calcium binding protein A11 1 protein-coding HEL-S-43|MLN70|S100C protein S100-A11|MLN 70|S100 calcium-binding protein A11 (calgizzarin)|calgizzarin|epididymis secretory protein Li 43|metastatic lymph node gene 70 protein|protein S100-C 6 0.0008212 12.7 1 1 +6283 S100A12 S100 calcium binding protein A12 1 protein-coding CAAF1|CAGC|CGRP|ENRAGE|MRP-6|MRP6|p6 protein S100-A12|EN-RAGE|S100 calcium-binding protein A12 (calgranulin C)|calcitermin|calcium-binding protein in amniotic fluid 1|calgranulin C|extracellular newly identified RAGE-binding protein|migration inhibitory factor-related protein 6|neutrophil S100 protein 7 0.0009581 2.399 1 1 +6284 S100A13 S100 calcium binding protein A13 1 protein-coding - protein S100-A13 6 0.0008212 10.3 1 1 +6285 S100B S100 calcium binding protein B 21 protein-coding NEF|S100|S100-B|S100beta protein S100-B|S-100 calcium-binding protein, beta chain|S-100 protein subunit beta|S100 calcium-binding protein, beta (neural) 6 0.0008212 6.306 1 1 +6286 S100P S100 calcium binding protein P 4 protein-coding MIG9 protein S100-P|migration-inducing gene 9 protein|protein S100-E 4 0.0005475 6.326 1 1 +6288 SAA1 serum amyloid A1 11 protein-coding PIG4|SAA|SAA2|TP53I4 serum amyloid A-1 protein|serum amyloid A protein|tumor protein p53 inducible protein 4 11 0.001506 5.719 1 1 +6289 SAA2 serum amyloid A2 11 protein-coding - serum amyloid A-2 protein 16 0.00219 4.666 1 1 +6290 SAA3P serum amyloid A3 pseudogene 11 pseudo SAA3 - 12 0.001642 0.02752 1 1 +6291 SAA4 serum amyloid A4, constitutive 11 protein-coding C-SAA|CSAA serum amyloid A-4 protein|constitutively expressed serum amyloid A protein 9 0.001232 2.271 1 1 +6293 VPS52 VPS52, GARP complex subunit 6 protein-coding ARE1|SAC2|SACM2L|dJ1033B10.5 vacuolar protein sorting-associated protein 52 homolog|SAC2 suppressor of actin mutations 2-like protein|vacuolar protein sorting 52 homolog 66 0.009034 10.47 1 1 +6294 SAFB scaffold attachment factor B 19 protein-coding HAP|HET|SAB-B1|SAF-B|SAF-B1|SAFB1 scaffold attachment factor B1|HSP27 ERE-TATA-binding protein|HSP27 estrogen response element-TATA box-binding protein|Hsp27 ERE-TATA binding protein|glutathione S-transferase fusion protein|heat-shock protein (HSP27) estrogen response element and TATA box-binding protein 65 0.008897 10.92 1 1 +6295 SAG S-antigen visual arrestin 2 protein-coding RP47|S-AG S-arrestin|48 kDa protein|S-antigen; retina and pineal gland (arrestin)|arrestin 1|retinal S-antigen (48 KDa protein)|rod arrestin|rod photoreceptor arrestin 34 0.004654 0.2462 1 1 +6296 ACSM3 acyl-CoA synthetase medium-chain family member 3 16 protein-coding SA|SAH acyl-coenzyme A synthetase ACSM3, mitochondrial|SA (rat hypertension-associated) homolog|SA hypertension-associated homolog|butyrate--CoA ligase 3|butyryl-coenzyme A synthetase 3|middle-chain acyl-CoA synthetase 3|protein SA homolog 50 0.006844 5.849 1 1 +6297 SALL2 spalt like transcription factor 2 14 protein-coding COLB|HSAL2|Sal-2|ZNF795|p150(Sal2) sal-like protein 2|zinc finger protein 795|zinc finger protein SALL2|zinc finger protein Spalt-2 76 0.0104 7.897 1 1 +6299 SALL1 spalt like transcription factor 1 16 protein-coding HEL-S-89|HSAL1|Sal-1|TBS|ZNF794 sal-like protein 1|epididymis secretory protein Li 89|zinc finger protein 794|zinc finger protein SALL1|zinc finger protein Spalt-1 194 0.02655 5.817 1 1 +6300 MAPK12 mitogen-activated protein kinase 12 22 protein-coding ERK-6|ERK3|ERK6|MAPK 12|P38GAMMA|PRKM12|SAPK-3|SAPK3 mitogen-activated protein kinase 12|MAP kinase 12|MAP kinase p38 gamma|extracellular signal-regulated kinase 6|mitogen-activated protein kinase 3|mitogen-activated protein kinase p38 gamma|stress-activated protein kinase 3 20 0.002737 7.522 1 1 +6301 SARS seryl-tRNA synthetase 1 protein-coding SERRS|SERS serine--tRNA ligase, cytoplasmic|serine tRNA ligase 1, cytoplasmic|seryl-tRNA synthetase, cytoplasmic|seryl-tRNA(Ser/Sec) synthetase 34 0.004654 11.49 1 1 +6302 TSPAN31 tetraspanin 31 12 protein-coding SAS tetraspanin-31|sarcoma-amplified sequence|transmembrane 4 protein|tspan-31 21 0.002874 10.05 1 1 +6303 SAT1 spermidine/spermine N1-acetyltransferase 1 X protein-coding DC21|KFSD|KFSDX|SAT|SSAT|SSAT-1 diamine acetyltransferase 1|diamine N-acetyltransferase 1|polyamine N-acetyltransferase 1|putrescine acetyltransferase|spermidine/spermine N1-acetyltransferase alpha 24 0.003285 12.47 1 1 +6304 SATB1 SATB homeobox 1 3 protein-coding - DNA-binding protein SATB1|special AT-rich sequence binding protein 1 (binds to nuclear matrix/scaffold-associating DNA) 77 0.01054 8.831 1 1 +6305 SBF1 SET binding factor 1 22 protein-coding CMT4B3|DENND7A|MTMR5 myotubularin-related protein 5|DENN/MADD domain containing 7A 122 0.0167 10.97 1 1 +6307 MSMO1 methylsterol monooxygenase 1 4 protein-coding DESP4|ERG25|MCCPD|SC4MOL methylsterol monooxygenase 1|C-4 methylsterol oxidase 17 0.002327 10.31 1 1 +6309 SC5D sterol-C5-desaturase 11 protein-coding ERG3|S5DES|SC5DL lathosterol oxidase|3beta-hydroxysteroid-delta5-desaturase|C-5 sterol desaturase|delta(7)-sterol 5-desaturase|delta(7)-sterol C5(6)-desaturase|fungal ERG3, delta-5-desaturase-like|lathosterol 5-desaturase|lathosterol dehydrogenase|sterol-C5-desaturase (ERG3 delta-5-desaturase homolog, S. cerevisiae)-like 17 0.002327 10.24 1 1 +6310 ATXN1 ataxin 1 6 protein-coding ATX1|D6S504E|SCA1 ataxin-1|alternative ataxin1|spinocerebellar ataxia type 1 protein 185 0.02532 9.627 1 1 +6311 ATXN2 ataxin 2 12 protein-coding ASL13|ATX2|SCA2|TNRC13 ataxin-2|spinocerebellar ataxia type 2 protein|trinucleotide repeat-containing gene 13 protein 87 0.01191 9.747 1 1 +6314 ATXN7 ataxin 7 3 protein-coding ADCAII|OPCA3|SCA7 ataxin-7|spinocerebellar ataxia type 7 protein 59 0.008076 9.002 1 1 +6315 ATXN8OS ATXN8 opposite strand (non-protein coding) 13 ncRNA KLHL1AS|NCRNA00003|SCA8 ataxin 8 opposite strand|kelch-like 1 antisense|non-protein coding RNA 3 7 0.0009581 0.06536 1 1 +6317 SERPINB3 serpin family B member 3 18 protein-coding HsT1196|SCC|SCCA-1|SCCA-PD|SCCA1|SSCA1|T4-A serpin B3|protein T4-A|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 3|serpin peptidase inhibitor, clade B (ovalbumin), member 3|squamous cell carcinoma antigen 1 66 0.009034 2.965 1 1 +6318 SERPINB4 serpin family B member 4 18 protein-coding LEUPIN|PI11|SCCA-2|SCCA1|SCCA2 serpin B4|SCCA2/SCCA1 fusion protein|peptidase inhibitor 11|protease inhibitor (leucine-serpin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 4|serpin peptidase inhibitor, clade B (ovalbumin), member 4|squamous cell carcinoma antigen 1|squamous cell carcinoma antigen 2 58 0.007939 2.444 1 1 +6319 SCD stearoyl-CoA desaturase 10 protein-coding FADS5|MSTP008|SCD1|SCDOS|hSCD1 acyl-CoA desaturase|delta(9)-desaturase|fatty acid desaturase|predicted protein of HQ0998|stearoyl-CoA desaturase (delta-9-desaturase)|stearoyl-CoA desaturase opposite strand 14 0.001916 12.54 1 1 +6320 CLEC11A C-type lectin domain family 11 member A 19 protein-coding CLECSF3|LSLCL|P47|SCGF C-type lectin domain family 11 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 3|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 23 0.003148 7.664 1 1 +6322 SCML1 sex comb on midleg-like 1 (Drosophila) X protein-coding - sex comb on midleg-like protein 1 24 0.003285 7.451 1 1 +6323 SCN1A sodium voltage-gated channel alpha subunit 1 2 protein-coding EIEE6|FEB3|FEB3A|FHM3|GEFSP2|HBSCI|NAC1|Nav1.1|SCN1|SMEI 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|sodium channel, voltage-gated, type I, alpha subunit|voltage-gated sodium channel subunit alpha Nav1.1 244 0.0334 1.865 1 1 +6324 SCN1B sodium voltage-gated channel beta subunit 1 19 protein-coding ATFB13|BRGDA5|GEFSP1 sodium channel subunit beta-1|sodium channel, voltage gated, type I beta subunit|sodium channel, voltage-gated, type I, beta 21 0.002874 7.121 1 1 +6326 SCN2A sodium voltage-gated channel alpha subunit 2 2 protein-coding BFIC3|BFIS3|BFNIS|EIEE11|HBA|HBSCI|HBSCII|NAC2|Na(v)1.2|Nav1.2|SCN2A1|SCN2A2 sodium channel protein type 2 subunit alpha|HBSC II|sodium channel protein brain II 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|sodium channel, voltage-gated, type II, alpha subunit|voltage-gated sodium channel subtype II|voltage-gated sodium channel subunit alpha Nav1.2|voltage-gated sodium channel type II alpha subunit 208 0.02847 4.078 1 1 +6327 SCN2B sodium voltage-gated channel beta subunit 2 11 protein-coding ATFB14 sodium channel subunit beta-2|neuronal voltage-gated sodium channel beta 2 subunit|sodium channel, voltage gated, type II beta subunit|sodium channel, voltage-gated, type II, beta polypeptide 24 0.003285 3.912 1 1 +6328 SCN3A sodium voltage-gated channel alpha subunit 3 2 protein-coding NAC3|Nav1.3 sodium channel protein type 3 subunit alpha|brain III voltage-gated sodium channel|sodium channel protein brain III subunit alpha|sodium channel protein type III subunit alpha|sodium channel, voltage gated, type III alpha subunit|sodium channel, voltage-gated, type III, alpha polypeptide|voltage-gated sodium channel subtype III|voltage-gated sodium channel subunit alpha Nav1.3 213 0.02915 4.025 1 1 +6329 SCN4A sodium voltage-gated channel alpha subunit 4 17 protein-coding CMS16|HOKPP2|HYKPP|HYPP|NAC1A|Na(V)1.4|Nav1.4|SkM1 sodium channel protein type 4 subunit alpha|CTC-264K15.6|skeletal muscle sodium channel alpha subunit|skeletal muscle voltage-dependent sodium channel type IV alpha subunit|sodium channel protein skeletal muscle subunit alpha|sodium channel protein type IV subunit alpha|sodium channel, voltage-gated, type IV, alpha subunit|voltage-gated sodium channel subunit alpha Nav1.4 145 0.01985 3.639 1 1 +6330 SCN4B sodium voltage-gated channel beta subunit 4 11 protein-coding ATFB17|LQT10|Navbeta4 sodium channel subunit beta-4|sodium channel, voltage-gated, type IV, beta subunit 13 0.001779 6.838 1 1 +6331 SCN5A sodium voltage-gated channel alpha subunit 5 3 protein-coding CDCD2|CMD1E|CMPD2|HB1|HB2|HBBD|HH1|ICCD|IVF|LQT3|Nav1.5|PFHB1|SSS1|VF1 sodium channel protein type 5 subunit alpha|cardiac tetrodotoxin-insensitive voltage-dependent sodium channel alpha subunit|sodium channel protein cardiac muscle subunit alpha|sodium channel, voltage-gated, type V, alpha subunit|voltage-gated sodium channel subunit alpha Nav1.5 189 0.02587 3.321 1 1 +6332 SCN7A sodium voltage-gated channel alpha subunit 7 2 protein-coding NaG|Nav2.1|Nav2.2|SCN6A sodium channel protein type 7 subunit alpha|putative voltage-gated sodium channel subunit alpha Nax|sodium channel protein cardiac and skeletal muscle subunit alpha|sodium channel protein type VII subunit alpha|sodium channel, voltage-gated, type VI, alpha polypeptide|sodium channel, voltage-gated, type VII, alpha subunit|voltage-dependent sodium channel alpha subunit 164 0.02245 3.322 1 1 +6334 SCN8A sodium voltage-gated channel alpha subunit 8 12 protein-coding BFIS5|CERIII|CIAT|EIEE13|MED|NaCh6|Nav1.6|PN4 sodium channel protein type 8 subunit alpha|hNa6/Scn8a voltage-gated sodium channel|sodium channel, voltage gated, type VIII, alpha subunit|voltage-gated sodium channel subunit alpha Nav1.6|voltage-gated sodium channel type VIII alpha protein 135 0.01848 5.044 1 1 +6335 SCN9A sodium voltage-gated channel alpha subunit 9 2 protein-coding ETHA|FEB3B|GEFSP7|HSAN2D|NE-NA|NENA|Nav1.7|PN1|SFNP sodium channel protein type 9 subunit alpha|hNE-Na|neuroendocrine sodium channel|peripheral sodium channel 1|sodium channel protein type IX subunit alpha|sodium channel, voltage-gated, type IX, alpha polypeptide|sodium channel, voltage-gated, type IX, alpha subunit|voltage-gated sodium channel alpha subunit Nav1.7|voltage-gated sodium channel subunit alpha Nav1.7 190 0.02601 4.986 1 1 +6336 SCN10A sodium voltage-gated channel alpha subunit 10 3 protein-coding FEPS2|Nav1.8|PN3|SNS|hPN3 sodium channel protein type 10 subunit alpha|peripheral nerve sodium channel 3|sodium channel protein type X subunit alpha|sodium channel, voltage-gated, type X, alpha polypeptide|sodium channel, voltage-gated, type X, alpha subunit|voltage-gated sodium channel subunit alpha Nav1.8 199 0.02724 0.2181 1 1 +6337 SCNN1A sodium channel epithelial 1 alpha subunit 12 protein-coding BESC2|ENaCa|ENaCalpha|SCNEA|SCNN1 amiloride-sensitive sodium channel subunit alpha|alpha ENaC-2|alpha-ENaC|alpha-NaCH|amiloride-sensitive epithelial sodium channel alpha subunit|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, non voltage gated 1 alpha subunit|sodium channel, non-voltage-gated 1 alpha|sodium channel, nonvoltage-gated 1 alpha 44 0.006022 8.963 1 1 +6338 SCNN1B sodium channel epithelial 1 beta subunit 16 protein-coding BESC1|ENaCb|ENaCbeta|SCNEB 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, non-voltage-gated 1, beta subunit|sodium channel, nonvoltage-gated 1, beta 53 0.007254 5.376 1 1 +6339 SCNN1D sodium channel epithelial 1 delta subunit 1 protein-coding ENaCd|ENaCdelta|SCNED|dNaCh amiloride-sensitive sodium channel subunit delta|delta-ENaC|delta-NaCH|epithelial Na(+) channel subunit delta|nonvoltage-gated sodium channel 1 subunit delta|sodium channel, non-voltage-gated 1, delta subunit|sodium channel, nonvoltage-gated 1, delta|sodium channel, voltage-gated, type I, delta polypeptide 44 0.006022 5.934 1 1 +6340 SCNN1G sodium channel epithelial 1 gamma subunit 16 protein-coding BESC3|ENaCg|ENaCgamma|PHA1|SCNEG amiloride-sensitive sodium channel subunit gamma|ENaC gamma subunit|amiloride-sensitive epithelial sodium channel gamma subunit|amiloride-sensitive sodium channel gamma-subunit|epithelial Na(+) channel subunit gamma|gamma-ENaC|gamma-NaCH|nonvoltage-gated sodium channel 1 subunit gamma|sodium channe epithelial 1 gamma subunit|sodium channel, non-voltage-gated 1, gamma subunit|sodium channel, nonvoltage-gated 1, gamma 54 0.007391 4.458 1 1 +6341 SCO1 SCO1, cytochrome c oxidase assembly protein 17 protein-coding SCOD1 protein SCO1 homolog, mitochondrial|SCO cytochrome oxidase deficient homolog 1 15 0.002053 8.759 1 1 +6342 SCP2 sterol carrier protein 2 1 protein-coding NLTP|NSL-TP|SCP-2|SCP-CHI|SCP-X|SCPX non-specific lipid-transfer protein|propanoyl-CoA C-acyltransferase|sterol carrier protein X 32 0.00438 11.37 1 1 +6343 SCT secretin 11 protein-coding - secretin|prepro-secretin 3 0.0004106 1.906 1 1 +6344 SCTR secretin receptor 2 protein-coding SR secretin receptor|pancreatic secretin receptor 32 0.00438 1.905 1 1 +6345 SRL sarcalumenin 16 protein-coding - sarcalumenin 42 0.005749 4.386 1 1 +6346 CCL1 C-C motif chemokine ligand 1 17 protein-coding I-309|P500|SCYA1|SISe|TCA3 C-C motif chemokine 1|T lymphocyte-secreted protein I-309|chemokine (C-C motif) ligand 1|inflammatory cytokine I-309|small inducible cytokine A1 (I-309, homologous to mouse Tca-3) 15 0.002053 0.3706 1 1 +6347 CCL2 C-C motif chemokine ligand 2 17 protein-coding GDCF-2|HC11|HSMCR30|MCAF|MCP-1|MCP1|SCYA2|SMC-CF C-C motif chemokine 2|chemokine (C-C motif) ligand 2|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 10 0.001369 8.462 1 1 +6348 CCL3 C-C motif chemokine ligand 3 17 protein-coding G0S19-1|LD78ALPHA|MIP-1-alpha|MIP1A|SCYA3 C-C motif chemokine 3|G0/G1 switch regulatory protein 19-1|PAT 464.1|SIS-beta|chemokine (C-C motif) ligand 3|macrophage inflammatory protein 1-alpha|small inducible cytokine A3 (homologous to mouse Mip-1a)|tonsillar lymphocyte LD78 alpha protein 10 0.001369 6.565 1 1 +6349 CCL3L1 C-C motif chemokine ligand 3 like 1 17 protein-coding 464.2|D17S1718|G0S19-2|LD78|LD78-beta(1-70)|LD78BETA|MIP1AP|SCYA3L|SCYA3L1 C-C motif chemokine 3-like 1|G0/G1 switch regulatory protein 19-2|chemokine (C-C motif) ligand 3-like 1|small inducible cytokine A3-like 1|tonsillar lymphocyte LD78 beta protein 1 0.0001369 4.293 1 1 +6351 CCL4 C-C motif chemokine ligand 4 17 protein-coding ACT2|AT744.1|G-26|HC21|LAG-1|LAG1|MIP-1-beta|MIP1B|MIP1B1|SCYA2|SCYA4 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|chemokine (C-C motif) ligand 4|lymphocyte activation gene 1 protein|macrophage inflammatory protein 1-beta|secreted protein G-26|small inducible cytokine A4 (homologous to mouse Mip-1b) 6 0.0008212 6.591 1 1 +6352 CCL5 C-C motif chemokine ligand 5 17 protein-coding D17S136E|RANTES|SCYA5|SIS-delta|SISd|TCP228|eoCP C-C motif chemokine 5|T-cell specific protein p288|beta-chemokine RANTES|chemokine (C-C motif) ligand 5|eosinophil chemotactic cytokine|regulated upon activation, normally T-expressed, and presumably secreted|small inducible cytokine subfamily A (Cys-Cys), member 5 6 0.0008212 8.557 1 1 +6354 CCL7 C-C motif chemokine ligand 7 17 protein-coding FIC|MARC|MCP-3|MCP3|NC28|SCYA6|SCYA7 C-C motif chemokine 7|chemokine (C-C motif) ligand 7|monocyte chemoattractant protein 3|monocyte chemotactic protein 3|small inducible cytokine A7 (monocyte chemotactic protein 3)|small-inducible cytokine A7 16 0.00219 1.8 1 1 +6355 CCL8 C-C motif chemokine ligand 8 17 protein-coding HC14|MCP-2|MCP2|SCYA10|SCYA8 C-C motif chemokine 8|chemokine (C-C motif) ligand 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 10 0.001369 4.584 1 1 +6356 CCL11 C-C motif chemokine ligand 11 17 protein-coding SCYA11 eotaxin|chemokine (C-C motif) ligand 11|eosinophil chemotactic protein|eotaxin-1|small inducible cytokine subfamily A (Cys-Cys), member 11 (eotaxin) 9 0.001232 3.418 1 1 +6357 CCL13 C-C motif chemokine ligand 13 17 protein-coding CKb10|MCP-4|NCC-1|NCC1|SCYA13|SCYL1 C-C motif chemokine 13|CK-beta-10|chemokine (C-C motif) ligand 13|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 11 0.001506 3.85 1 1 +6358 CCL14 C-C motif chemokine ligand 14 17 protein-coding CC-1|CC-3|CKB1|HCC-1|HCC-1(1-74)|HCC-1/HCC-3|HCC-3|MCIF|NCC-2|NCC2|SCYA14|SCYL2|SY14 C-C motif chemokine 14|chemokine (C-C motif) ligand 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 18 0.002464 6.191 1 1 +6359 CCL15 C-C motif chemokine ligand 15 17 protein-coding HCC-2|HMRP-2B|LKN-1|LKN1|MIP-1 delta|MIP-1D|MIP-5|MRP-2B|NCC-3|NCC3|SCYA15|SCYL3|SY15 C-C motif chemokine 15|chemokine (C-C motif) ligand 15|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 12 0.001642 2.407 1 1 +6360 CCL16 C-C motif chemokine ligand 16 17 protein-coding CKb12|HCC-4|ILINCK|LCC-1|LEC|LMC|Mtn-1|NCC-4|NCC4|SCYA16|SCYL4 C-C motif chemokine 16|IL-10-inducible chemokine|chemokine (C-C motif) ligand 16|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 17 0.002327 1.191 1 1 +6361 CCL17 C-C motif chemokine ligand 17 16 protein-coding A-152E5.3|ABCD-2|SCYA17|TARC C-C motif chemokine 17|CC chemokine TARC|T cell-directed CC chemokine|chemokine (C-C motif) ligand 17|small inducible cytokine subfamily A (Cys-Cys), member 17|small-inducible cytokine A17|thymus and activation-regulated chemokine 5 0.0006844 3.007 1 1 +6362 CCL18 C-C motif chemokine ligand 18 17 protein-coding AMAC-1|AMAC1|CKb7|DC-CK1|DCCK1|MIP-4|PARC|SCYA18 C-C motif chemokine 18|CC chemokine PARC|CC chemokine ligand 18|alternative macrophage activation-associated CC chemokine 1|chemokine (C-C motif) ligand 18 (pulmonary and activation-regulated)|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 9 0.001232 6.342 1 1 +6363 CCL19 C-C motif chemokine ligand 19 9 protein-coding CKb11|ELC|MIP-3b|MIP3B|SCYA19 C-C motif chemokine 19|CC chemokine ligand 19|CK beta-11|EBI1-ligand chemokine|MIP-3-beta|beta chemokine exodus-3|chemokine (C-C motif) ligand 19|epstein-Barr virus-induced molecule 1 ligand chemokine|exodus-3|macrophage inflammatory protein 3-beta|small inducible cytokine subfamily A (Cys-Cys), member 19|small-inducible cytokine A19 4 0.0005475 5.467 1 1 +6364 CCL20 C-C motif chemokine ligand 20 2 protein-coding CKb4|Exodus|LARC|MIP-3-alpha|MIP-3a|MIP3A|SCYA20|ST38 C-C motif chemokine 20|CC chemokine LARC|beta chemokine exodus-1|chemokine (C-C motif) ligand 20|liver and activation-regulated chemokine|macrophage inflammatory protein 3 alpha|small inducible cytokine subfamily A (Cys-Cys), member 20|small-inducible cytokine A20 9 0.001232 5.105 1 1 +6366 CCL21 C-C motif chemokine ligand 21 9 protein-coding 6Ckine|CKb9|ECL|SCYA21|SLC|TCA4 C-C motif chemokine 21|Efficient Chemoattractant for Lymphocytes|beta chemokine exodus-2|chemokine (C-C motif) ligand 21|secondary lymphoid tissue chemokine|small inducible cytokine subfamily A (Cys-Cys), member 21 7 0.0009581 6.014 1 1 +6367 CCL22 C-C motif chemokine ligand 22 16 protein-coding A-152E5.1|ABCD-1|DC/B-CK|MDC|SCYA22|STCP-1 C-C motif chemokine 22|CC chemokine STCP-1|MDC(1-69)|chemokine (C-C motif) ligand 22|macrophage-derived chemokine|small inducible cytokine A22|small inducible cytokine subfamily A (Cys-Cys), member 22|stimulated T cell chemotactic protein 1 7 0.0009581 5.447 1 1 +6368 CCL23 C-C motif chemokine ligand 23 17 protein-coding CK-BETA-8|CKb8|Ckb-8|Ckb-8-1|MIP-3|MIP3|MPIF-1|SCYA23|hmrp-2a C-C motif chemokine 23|C6 beta-chemokine|chemokine (C-C motif) ligand 23|macrophage inflammatory protein 3|myeloid progenitor inhibitory factor 1|small inducible cytokine subfamily A (Cys-Cys), member 23 15 0.002053 1.837 1 1 +6369 CCL24 C-C motif chemokine ligand 24 7 protein-coding Ckb-6|MPIF-2|MPIF2|SCYA24 C-C motif chemokine 24|CK-beta-6|chemokine (C-C motif) ligand 24|eosinophil chemotactic protein 2|eotaxin-2|myeloid progenitor inhibitory factor 2|small inducible cytokine subfamily A (Cys-Cys), member 24|small-inducible cytokine A24 9 0.001232 1.38 1 1 +6370 CCL25 C-C motif chemokine ligand 25 19 protein-coding Ckb15|SCYA25|TECK C-C motif chemokine 25|Ck beta-15|TECKvar|chemokine (C-C motif) ligand 25|chemokine TECK|small inducible cytokine subfamily A (Cys-Cys), member 25|small-inducible cytokine A25|thymus expressed chemokine 12 0.001642 1.729 1 1 +6372 CXCL6 C-X-C motif chemokine ligand 6 4 protein-coding CKA-3|GCP-2|GCP2|SCYB6 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 9 0.001232 3.745 1 1 +6373 CXCL11 C-X-C motif chemokine ligand 11 4 protein-coding H174|I-TAC|IP-9|IP9|SCYB11|SCYB9B|b-R1 C-X-C motif chemokine 11|beta-R1|chemokine (C-X-C motif) ligand 11|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 5 0.0006844 5.858 1 1 +6374 CXCL5 C-X-C motif chemokine ligand 5 4 protein-coding ENA-78|SCYB5 C-X-C motif chemokine 5|chemokine (C-X-C motif) ligand 5|epithelial-derived neutrophil-activating protein 78|neutrophil-activating peptide ENA-78|neutrophil-activating protein 78|small inducible cytokine subfamily B (Cys-X-Cys), member 5 (epithelial-derived neutrophil-activating peptide 78) 14 0.001916 4.443 1 1 +6375 XCL1 X-C motif chemokine ligand 1 1 protein-coding ATAC|LPTN|LTN|SCM-1|SCM-1a|SCM1|SCM1A|SCYC1 lymphotactin|SCM-1-alpha|XC chemokine ligand 1|c motif chemokine 1|chemokine (C motif) ligand 1|cytokine SCM-1|lymphotaxin|single cysteine motif 1a|small inducible cytokine subfamily C, member 1 (lymphotactin)|small-inducible cytokine C1 19 0.002601 3.114 1 1 +6376 CX3CL1 C-X3-C motif chemokine ligand 1 16 protein-coding ABCD-3|C3Xkine|CXC3|CXC3C|NTN|NTT|SCYD1|fractalkine|neurotactin fractalkine|C-X3-C motif chemokine 1|CX3C membrane-anchored chemokine|chemokine (C-X3-C motif) ligand 1|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 40 0.005475 9.925 1 1 +6382 SDC1 syndecan 1 2 protein-coding CD138|SDC|SYND1|syndecan syndecan-1|CD138 antigen|heparan sulfate proteoglycan fibroblast growth factor receptor|syndecan proteoglycan 1 25 0.003422 11.8 1 1 +6383 SDC2 syndecan 2 8 protein-coding CD362|HSPG|HSPG1|SYND2 syndecan-2|cell surface-associated heparan sulfate proteoglycan 1|fibroglycan|heparan sulfate proteoglycan 1, cell surface-associated|heparan sulfate proteoglycan core protein|syndecan proteoglycan 2 25 0.003422 10.43 1 1 +6385 SDC4 syndecan 4 20 protein-coding SYND4 syndecan-4|amphiglycan|ryudocan amphiglycan|ryudocan core protein|syndecan 4 (amphiglycan, ryudocan)|syndecan proteoglycan 4 21 0.002874 12.16 1 1 +6386 SDCBP syndecan binding protein 8 protein-coding MDA-9|MDA9|ST1|SYCL|TACIP18 syntenin-1|melanoma differentiation associated protein-9|pro-TGF-alpha cytoplasmic domain-interacting protein 18|scaffold protein Pbp1|syndecan binding protein (syntenin)|syndecan-binding protein 1 20 0.002737 11.83 1 1 +6387 CXCL12 C-X-C motif chemokine ligand 12 10 protein-coding IRH|PBSF|SCYB12|SDF1|TLSF|TPAR1 stromal cell-derived factor 1|chemokine (C-X-C motif) ligand 12|intercrine reduced in hepatomas|pre-B cell growth-stimulating factor 23 0.003148 9.397 1 1 +6388 SDF2 stromal cell derived factor 2 17 protein-coding - stromal cell-derived factor 2|SDF-2 16 0.00219 9.793 1 1 +6389 SDHA succinate dehydrogenase complex flavoprotein subunit A 5 protein-coding CMD1GG|FP|PGL5|SDH1|SDH2|SDHF succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|flavoprotein subunit of complex II|succinate dehydrogenase [ubiquinone] flavoprotein subunit|succinate dehydrogenase complex, subunit A, flavoprotein (Fp) 60 0.008212 11.41 1 1 +6390 SDHB succinate dehydrogenase complex iron sulfur subunit B 1 protein-coding CWS2|IP|PGL4|SDH|SDH1|SDH2|SDHIP succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|iron-sulfur subunit of complex II|succinate dehydrogenase [ubiquinone] iron-sulfur subunit|succinate dehydrogenase complex, subunit B, iron sulfur (Ip) 20 0.002737 10.43 1 1 +6391 SDHC succinate dehydrogenase complex subunit C 1 protein-coding CYB560|CYBL|PGL3|QPS1|SDH3 succinate dehydrogenase cytochrome b560 subunit, mitochondrial|cytochrome B large subunit of complex II|integral membrane protein CII-3b|large subunit of cytochrome b|succinate dehydrgenase cytochrome b|succinate dehydrogenase 3, integral membrane subunit|succinate dehydrogenase complex subunit C integral membrane protein 15kDa|succinate dehydrogenase complex, subunit C, integral membrane protein, 15kD|succinate-ubiquinone oxidoreductase cytochrome B large subunit 11 0.001506 11.01 1 1 +6392 SDHD succinate dehydrogenase complex subunit D 11 protein-coding CBT1|CII-4|CWS3|PGL|PGL1|QPs3|SDH4|cybS succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial|succinate dehydrogenase complex subunit D integral membrane protein|succinate-ubiquinone oxidoreductase cytochrome b small subunit|succinate-ubiquinone reductase membrane anchor subunit 19 0.002601 10.63 1 1 +6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component 3 protein-coding D3S1231E|SEC13L1|SEC13R|npp-20 protein SEC13 homolog|SEC13 homolog|SEC13 homolog, nuclear pore and COPII coating complex component|SEC13-like 1 isoform|SEC13-like protein 1|SEC13-related protein 20 0.002737 11.11 1 1 +6397 SEC14L1 SEC14 like lipid binding 1 17 protein-coding PRELID4A|SEC14L SEC14-like protein 1 56 0.007665 10.81 1 1 +6398 SECTM1 secreted and transmembrane 1 17 protein-coding K12 secreted and transmembrane protein 1|type 1a transmembrane protein 14 0.001916 8.177 1 1 +6399 TRAPPC2 trafficking protein particle complex 2 X protein-coding MIP2A|SEDL|SEDT|TRAPPC2P1|TRS20|ZNF547L|hYP38334 trafficking protein particle complex subunit 2|sedlin 6 0.0008212 8.271 1 1 +6400 SEL1L SEL1L ERAD E3 ligase adaptor subunit 14 protein-coding PRO1063|SEL1-LIKE|SEL1L1 protein sel-1 homolog 1|Suppressor of lin 12 (sel-1), C. elegans, homolog of|sel-1 suppressor of lin-12-like 1|suppressor of lin-12-like protein 1 54 0.007391 11.31 1 1 +6401 SELE selectin E 1 protein-coding CD62E|ELAM|ELAM1|ESEL|LECAM2 E-selectin|CD62 antigen-like family member E|ELAM-1|endothelial adhesion molecule 1|endothelial leukocyte adhesion molecule 1|leukocyte endothelial cell adhesion molecule 2 66 0.009034 5.197 1 1 +6402 SELL selectin L 1 protein-coding CD62L|LAM1|LECAM1|LEU8|LNHR|LSEL|LYAM1|PLNHR|TQ1 L-selectin|CD62 antigen-like family member L|gp90-MEL|leukocyte surface antigen Leu-8|leukocyte-endothelial cell adhesion molecule 1|lymph node homing receptor|lymphocyte adhesion molecule 1|pln homing receptor 34 0.004654 7.404 1 1 +6403 SELP selectin P 1 protein-coding CD62|CD62P|GMP140|GRMP|LECAM3|PADGEM|PSEL P-selectin|CD62 antigen-like family member P|GMP-140|granule membrane protein 140|granule membrane protein 140kDa|granulocyte membrane protein|leukocyte-endothelial cell adhesion molecule 3|platelet activation dependent granule-external membrane protein|platelet alpha-granule membrane protein|selectin P (granule membrane protein 140kDa, antigen CD62) 108 0.01478 5.459 1 1 +6404 SELPLG selectin P ligand 12 protein-coding CD162|CLA|PSGL-1|PSGL1 P-selectin glycoprotein ligand 1|cutaneous lymphocyte-associated associated antigen 30 0.004106 8.585 1 1 +6405 SEMA3F semaphorin 3F 3 protein-coding SEMA-IV|SEMA4|SEMAK semaphorin-3F|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, 3F|semaphorin III/F|semaphorin IV 61 0.008349 9.859 1 1 +6406 SEMG1 semenogelin I 20 protein-coding CT103|SEMG|SGI|dJ172H20.2 semenogelin-1|SgI-29|cancer/testis antigen 103|semen coagulating protein 45 0.006159 0.6339 1 1 +6407 SEMG2 semenogelin II 20 protein-coding SGII semenogelin-2|Semenogelin 2 65 0.008897 0.403 1 1 +6414 SELENOP selenoprotein P 5 protein-coding SELP|SEPP|SEPP1|SeP selenoprotein P|selenoprotein P, plasma, 1 26 0.003559 11.87 1 1 +6415 SELENOW selenoprotein W 19 protein-coding SEPW1|selW selenoprotein W|selenoprotein W, 1 2 0.0002737 11.64 1 1 +6416 MAP2K4 mitogen-activated protein kinase kinase 4 17 protein-coding JNKK|JNKK1|MAPKK4|MEK4|MKK4|PRKMK4|SAPKK-1|SAPKK1|SEK1|SERK1|SKK1 dual specificity mitogen-activated protein kinase kinase 4|JNK-activated kinase 1|JNK-activating kinase 1|MAP kinase kinase 4|MAPK/ERK kinase 4|MAPKK 4|MEK 4|SAPK/ERK kinase 1|c-Jun N-terminal kinase kinase 1|stress-activated protein kinase kinase 1 85 0.01163 9.495 1 1 +6418 SET SET nuclear proto-oncogene 9 protein-coding 2PP2A|I2PP2A|IGAAD|IPP2A2|PHAPII|TAF-I|TAF-IBETA protein SET|HLA-DR-associated protein II|SET nuclear oncogene|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 phosphatase type 2A inhibitor 23 0.003148 12.54 1 1 +6419 SETMAR SET domain and mariner transposase fusion gene 3 protein-coding METNASE|Mar1 histone-lysine N-methyltransferase SETMAR|SET domain and mariner transposase fusion gene-containing protein|SET domain and mariner transposase fusion protein 32 0.00438 8.177 1 1 +6421 SFPQ splicing factor proline and glutamine rich 1 protein-coding POMP100|PPP1R140|PSF splicing factor, proline- and glutamine-rich|100 kDa DNA-pairing protein|DNA-binding p52/p100 complex, 100 kDa subunit|PTB-associated splicing factor|polypyrimidine tract binding protein associated|polypyrimidine tract-binding protein-associated splicing factor|protein phosphatase 1, regulatory subunit 140|splicing factor proline/glutamine rich (polypyrimidine tract binding protein associated)|splicing factor proline/glutamine-rich 36 0.004927 12.13 1 1 +6422 SFRP1 secreted frizzled related protein 1 8 protein-coding FRP|FRP-1|FRP1|FrzA|SARP2 secreted frizzled-related protein 1|SARP-2|frizzled-related protein|sFRP-1|secreted apoptosis-related protein 2 43 0.005886 7.344 1 1 +6423 SFRP2 secreted frizzled related protein 2 4 protein-coding FRP-2|SARP1|SDF-5 secreted frizzled-related protein 2|SARP-1|sFRP-2|secreted apoptosis related protein 1|testicular tissue protein Li 170 29 0.003969 9.093 1 1 +6424 SFRP4 secreted frizzled related protein 4 7 protein-coding FRP-4|FRPHE|PYL|sFRP-4 secreted frizzled-related protein 4|frizzled protein, human endometrium|secreted frizzled-related protein 4; secreted frizzled-related protein 4 49 0.006707 8.262 1 1 +6425 SFRP5 secreted frizzled related protein 5 10 protein-coding SARP3 secreted frizzled-related protein 5|FRP-1b|SARP-3|frizzled-related protein 1b|sFRP-5|secreted apoptosis related protein 3 10 0.001369 2.499 1 1 +6426 SRSF1 serine and arginine rich splicing factor 1 17 protein-coding ASF|SF2|SF2p33|SFRS1|SRp30a serine/arginine-rich splicing factor 1|SR splicing factor 1|alternative-splicing factor 1|pre-mRNA-splicing factor SF2, P33 subunit|splicing factor 2|splicing factor, arginine/serine-rich, 30-KD, A 35 0.004791 11.99 1 1 +6427 SRSF2 serine and arginine rich splicing factor 2 17 protein-coding PR264|SC-35|SC35|SFRS2|SFRS2A|SRp30b serine/arginine-rich splicing factor 2|SR splicing factor 2|splicing component, 35 kDa|splicing factor SC35|splicing factor, arginine/serine-rich 2 28 0.003832 11.73 1 1 +6428 SRSF3 serine and arginine rich splicing factor 3 6 protein-coding SFRS3|SRp20 serine/arginine-rich splicing factor 3|pre-mRNA splicing factor SRp20|pre-mRNA-splicing factor SRP20|splicing factor, arginine/serine-rich 3|splicing factor, arginine/serine-rich, 20-kD 10 0.001369 12.21 1 1 +6429 SRSF4 serine and arginine rich splicing factor 4 1 protein-coding SFRS4|SRP75 serine/arginine-rich splicing factor 4|SR splicing factor 4|SRP001LB|pre-mRNA-splicing factor SRP75|splicing factor, arginine/serine-rich 4 34 0.004654 10.9 1 1 +6430 SRSF5 serine and arginine rich splicing factor 5 14 protein-coding HRS|SFRS5|SRP40 serine/arginine-rich splicing factor 5|SR splicing factor 5|delayed-early protein HRS|pre-mRNA-splicing factor SRP40|splicing factor, arginine/serine-rich 5 27 0.003696 11.66 1 1 +6431 SRSF6 serine and arginine rich splicing factor 6 20 protein-coding B52|HEL-S-91|SFRS6|SRP55 serine/arginine-rich splicing factor 6|SR splicing factor 6|epididymis secretory protein Li 91|pre-mRNA-splicing factor SRP55|splicing factor, arginine/serine-rich, 55 kDa 33 0.004517 11.65 1 1 +6432 SRSF7 serine and arginine rich splicing factor 7 2 protein-coding 9G8|AAG3|SFRS7 serine/arginine-rich splicing factor 7|SR splicing factor 7|aging-associated protein 3|splicing factor 9G8|splicing factor, arginine/serine-rich 7, 35kDa 28 0.003832 10.94 1 1 +6433 SFSWAP splicing factor SWAP homolog 12 protein-coding SFRS8|SWAP splicing factor, suppressor of white-apricot homolog|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 family|suppressor of white apricot protein homolog 66 0.009034 9.816 1 1 +6434 TRA2B transformer 2 beta homolog (Drosophila) 3 protein-coding Htra2-beta|PPP1R156|SFRS10|SRFS10|TRA2-BETA|TRAN2B transformer-2 protein homolog beta|TRA-2 beta|protein phosphatase 1, regulatory subunit 156|splicing factor, arginine/serine-rich 10 (transformer 2 homolog, Drosophila)|transformer-2 protein homolog B 38 0.005201 11.28 1 1 +6439 SFTPB surfactant protein B 2 protein-coding PSP-B|SFTB3|SFTP3|SMDP1|SP-B pulmonary surfactant-associated protein B|18 kDa pulmonary-surfactant protein|6 kDa protein|pulmonary surfactant-associated proteolipid SPL(Phe) 29 0.003969 3.454 1 1 +6440 SFTPC surfactant protein C 8 protein-coding BRICD6|PSP-C|SFTP2|SMDP2|SP-C pulmonary surfactant-associated protein C|BRICHOS domain containing 6|SP5|pulmonary surfactant apoprotein-2 SP-C|pulmonary surfactant-associated proteolipid SPL(Val) 22 0.003011 2 1 1 +6441 SFTPD surfactant protein D 10 protein-coding COLEC7|PSP-D|SFTP4|SP-D pulmonary surfactant-associated protein D|collectin-7|lung surfactant protein D|pulmonary surfactant apoprotein|surfactant-associated protein, pulmonary 4 22 0.003011 4.378 1 1 +6442 SGCA sarcoglycan alpha 17 protein-coding 50DAG|ADL|DAG2|DMDA2|LGMD2D|SCARMD1|adhalin alpha-sarcoglycan|50 kDa dystrophin-associated glycoprotein|50kD DAG|alpha-SG|dystroglycan-2|limb girdle muscular dystrophy 2D|sarcoglycan, alpha (50kDa dystrophin-associated glycoprotein) 37 0.005064 3.785 1 1 +6443 SGCB sarcoglycan beta 4 protein-coding A3b|LGMD2E|SGC beta-sarcoglycan|43 kDa dystrophin-associated glycoprotein|43DAG|beta-SG|beta-sarcoglycan(43kD dystrophin-associated glycoprotein)|limb girdle muscular dystrophy 2E (non-linked families)|sarcoglycan, beta (43kDa dystrophin-associated glycoprotein) 23 0.003148 9.735 1 1 +6444 SGCD sarcoglycan delta 5 protein-coding 35DAG|CMD1L|DAGD|SG-delta|SGCDP|SGD delta-sarcoglycan|35 kDa dystrophin-associated glycoprotein|delta-SG|dystrophin associated glycoprotein, delta sarcoglycan|placental delta sarcoglycan|sarcoglycan, delta (35kDa dystrophin-associated glycoprotein) 48 0.00657 7.018 1 1 +6445 SGCG sarcoglycan gamma 13 protein-coding 35DAG|A4|DAGA4|DMDA|DMDA1|LGMD2C|MAM|SCARMD2|SCG3|gamma-SG gamma-sarcoglycan|35 kDa dystrophin-associated glycoprotein|35kD dystrophin-associated glycoprotein|sarcoglycan, gamma (35kDa dystrophin-associated glycoprotein) 26 0.003559 2.089 1 1 +6446 SGK1 serum/glucocorticoid regulated kinase 1 6 protein-coding SGK serine/threonine-protein kinase Sgk1|Sgk1 variant i3|serine/threonine protein kinase SGK 48 0.00657 10.59 1 1 +6447 SCG5 secretogranin V 15 protein-coding 7B2|P7B2|SGNE1|SgV neuroendocrine protein 7B2|pituitary polypeptide|prohormone convertase chaperone|secretogranin-5|secretory granule endocrine protein I|secretory granule, neuroendocrine protein 1 (7B2 protein) 11 0.001506 6.666 1 1 +6448 SGSH N-sulfoglucosamine sulfohydrolase 17 protein-coding HSS|MPS3A|SFMD N-sulphoglucosamine sulphohydrolase|heparan sulfate sulfatase|mucopolysaccharidosis type IIIA|sulfoglucosamine sulfamidase|sulphamidase 23 0.003148 9.727 1 1 +6449 SGTA small glutamine rich tetratricopeptide repeat containing alpha 19 protein-coding SGT|alphaSGT|hSGT small glutamine-rich tetratricopeptide repeat-containing protein alpha|UBP|alpha-SGT|protein containing three tetratricopeptide repeats|small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha|vpu-binding protein 22 0.003011 10.96 1 1 +6450 SH3BGR SH3 domain binding glutamate rich protein 21 protein-coding 21-GARP SH3 domain-binding glutamic acid-rich protein|21-glutamic acid-rich protein|SH3-binding domain and glutamic acid-rich protein 19 0.002601 6.165 1 1 +6451 SH3BGRL SH3 domain binding glutamate rich protein like X protein-coding HEL-S-115|SH3BGR SH3 domain-binding glutamic acid-rich-like protein|SH3 domain binding glutamic acid-rich protein like|SH3-binding domain glutamic acid-rich protein like|epididymis secretory protein Li 115 12 0.001642 11.12 1 1 +6452 SH3BP2 SH3 domain binding protein 2 4 protein-coding 3BP-2|3BP2|CRBM|CRPM|RES4-23 SH3 domain-binding protein 2|Abl-SH3 binding protein 2|TNFAIP3 interacting protein 2 37 0.005064 10.14 1 1 +6453 ITSN1 intersectin 1 21 protein-coding ITSN|SH3D1A|SH3P17 intersectin-1|SH3 domain-containing protein 1A|Src homology 3 domain-containing protein|human intersectin-SH3 domain-containing protein SH3P17|intersectin 1 (SH3 domain protein)|intersectin 1 short form variant 3|intersectin 1 short form variant, 11|intersectin short variant 12 124 0.01697 9.397 1 1 +6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 19 protein-coding CNSA1|EEN|SH3D2B|SH3P8 endophilin-A2|EEN fusion partner of MLL|SH3 domain containing GRB2 like 1|SH3 domain protein 2B|SH3 domain-containing GRB2-like protein 1|SH3-containing Grb-2-like 1 protein|SH3-domain GRB2-like 1|endophilin-2|extra 11-19 leukemia fusion|extra eleven-nineteen leukemia fusion gene protein 29 0.003969 11.07 1 1 +6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 9 protein-coding CNSA2|EEN-B1|SH3D2A|SH3P4 endophilin-A1|Endophilin A1 BAR domain|SH3 domain containing GRB2 like 2|SH3 domain protein 2A|SH3 domain-containing GRB2-like protein 2|SH3-domain GRB2-like 2|bA335L15.1 (SH3-domain GRB2-like 2)|endophilin-1 35 0.004791 3.41 1 1 +6457 SH3GL3 SH3 domain containing GRB2 like 3, endophilin A3 15 protein-coding CNSA3|EEN-B2|HsT19371|SH3D2C|SH3P13 endophilin-A3|SH3 domain containing GRB2 like 3|SH3 domain containing GRB2 like endophilin A3|SH3 domain protein 2C|SH3 domain-containing GRB2-like protein 3|SH3-domain GRB2-like 3|endophilin-3 37 0.005064 2.618 1 1 +6458 SH3GL1P1 SH3 domain containing GRB2 like 1, endophilin A2 pseudogene 1 17 pseudo CNSA-P1|SH3GLP1 SH3 domain containing GRB2 like 1 pseudogene 1|SH3-domain GRB2-like 1 pseudogene 1|SH3-domain GRB2-like pseudogene 1 5 0.0006844 1 0 +6461 SHB SH2 domain containing adaptor protein B 9 protein-coding bA3J10.2 SH2 domain-containing adapter protein B|SHB (Src homology 2 domain containing) adaptor protein B|SHB adaptor protein (a Src homology 2 protein)|Src homology 2 domain containing adaptor protein B 30 0.004106 9.385 1 1 +6462 SHBG sex hormone binding globulin 17 protein-coding ABP|SBP|TEBG sex hormone-binding globulin|sex steroid-binding protein|testis-specific androgen-binding protein|testosterone-binding beta-globulin|testosterone-estradiol-binding globulin|testosterone-estrogen-binding globulin 27 0.003696 2.479 1 1 +6464 SHC1 SHC adaptor protein 1 1 protein-coding SHC|SHCA SHC-transforming protein 1|SH2 domain protein C1|SHC (Src homology 2 domain containing) transforming protein 1|SHC-transforming protein 3|SHC-transforming protein A 41 0.005612 11.64 1 1 +6465 SHC1P1 SHC adaptor protein 1 pseudogene 1 X pseudo - SHC (Src homology 2 domain containing) transforming protein 1 pseudogene 1 1 0.0001369 1 0 +6468 FBXW4 F-box and WD repeat domain containing 4 10 protein-coding DAC|FBW4|FBWD4|SHFM3|SHSF3 F-box/WD repeat-containing protein 4|F-box and WD-40 domain protein 4|F-box and WD-40 domain-containing protein 4|F-box/WD repeat protein 4|dactylin 29 0.003969 10.18 1 1 +6469 SHH sonic hedgehog 7 protein-coding HHG1|HLP3|HPE3|MCOPCB5|SMMCI|TPT|TPTPS sonic hedgehog protein|sonic hedgehog homolog 29 0.003969 2.594 1 1 +6470 SHMT1 serine hydroxymethyltransferase 1 17 protein-coding CSHMT|SHMT serine hydroxymethyltransferase, cytosolic|cytoplasmic serine hydroxymethyltransferase|glycine hydroxymethyltransferase|serine hydroxymethyltransferase 1 (soluble)|serine methylase 22 0.003011 9.603 1 1 +6472 SHMT2 serine hydroxymethyltransferase 2 12 protein-coding GLYA|HEL-S-51e|SHMT serine hydroxymethyltransferase, mitochondrial|GLY A+|epididymis secretory sperm binding protein Li 51e|glycine auxotroph A, human complement for hamster|glycine hydroxymethyltransferase|serine aldolase|serine hydroxymethylase|serine hydroxymethyltransferase 2 (mitochondrial)|serine methylase|threonine aldolase 38 0.005201 11.09 1 1 +6473 SHOX short stature homeobox X|Y protein-coding GCFX|PHOG|SHOXY|SS short stature homeobox protein|growth control factor, X-linked|pseudoautosomal homeobox-containing osteogenic protein 0.4112 0 1 +6474 SHOX2 short stature homeobox 2 3 protein-coding OG12|OG12X|SHOT short stature homeobox protein 2|SHOX homologous gene on chromosome 3|homeobox protein Og12X|paired-related homeobox protein SHOT 37 0.005064 4.245 1 1 +6476 SI sucrase-isomaltase 3 protein-coding - sucrase-isomaltase, intestinal|alpha-glucosidase|oligosaccharide alpha-1,6-glucosidase|sucrase-isomaltase (alpha-glucosidase) 314 0.04298 0.9187 1 1 +6477 SIAH1 siah E3 ubiquitin protein ligase 1 16 protein-coding SIAH1A E3 ubiquitin-protein ligase SIAH1|seven in absentia homolog 1|siah-1a 22 0.003011 9.131 1 1 +6478 SIAH2 siah E3 ubiquitin protein ligase 2 3 protein-coding hSiah2 E3 ubiquitin-protein ligase SIAH2|seven in absentia homolog 2|siah-2 28 0.003832 9.814 1 1 +6480 ST6GAL1 ST6 beta-galactoside alpha-2,6-sialyltransferase 1 3 protein-coding SIAT1|ST6GalI|ST6N beta-galactoside alpha-2,6-sialyltransferase 1|B-cell antigen CD75|CMP-N-acetylneuraminate beta-galactosamide alpha-2,6-sialyltransferase|CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,6-sialyltransferase 1|ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1|ST6 beta-galactosamide alpha-2,6-sialyltranferase 1|ST6Gal I|alpha 2,6-ST 1|sialyltransferase 1 (beta-galactoside alpha-2,6-sialyltransferase) 32 0.00438 10.62 1 1 +6482 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 8 protein-coding Gal-NAc6S|SIAT4A|SIATFL|ST3GalA|ST3GalA.1|ST3GalIA|ST3GalIA,1|ST3O 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) 26 0.003559 10.38 1 1 +6483 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 16 protein-coding Gal-NAc6S|SIAT4B|ST3GALII|ST3GalA.2 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|sialyltransferase 4B (beta-galactosidase alpha-2,3-sialytransferase) 19 0.002601 9.087 1 1 +6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 11 protein-coding CGS23|NANTA3|SAT3|SIAT4|SIAT4C|ST3GalIV|STZ 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) 22 0.003011 9.099 1 1 +6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 1 protein-coding EIEE15|MRT12|SIAT6|ST3GALII|ST3GalIII|ST3N 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|mental retardation, non-syndromic, autosomal recessive, 12|sialyltransferase 6 (N-acetyllacosaminide alpha 2,3-sialyltransferase) 32 0.00438 7.903 1 1 +6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 12 protein-coding GD3S|SIAT8|SIAT8-A|SIAT8A|ST8SiaI alpha-N-acetylneuraminide alpha-2,8-sialyltransferase|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 1|alpha-2,8-sialyltransferase 8A|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)|sialyltransferase St8Sia I|sialytransferase St8Sia I 29 0.003969 5.747 1 1 +6490 PMEL premelanosome protein 12 protein-coding D12S53E|ME20|ME20-M|ME20M|P1|P100|PMEL17|SI|SIL|SILV|gp100 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 38 0.005201 5.494 1 1 +6491 STIL SCL/TAL1 interrupting locus 1 protein-coding MCPH7|SIL SCL-interrupting locus protein|TAL-1-interrupting locus protein 70 0.009581 7.593 1 1 +6492 SIM1 single-minded family bHLH transcription factor 1 6 protein-coding bHLHe14 single-minded homolog 1|class E basic helix-loop-helix protein 14 111 0.01519 1.171 1 1 +6493 SIM2 single-minded family bHLH transcription factor 2 21 protein-coding HMC13F06|HMC29C01|SIM|bHLHe15 single-minded homolog 2|class E basic helix-loop-helix protein 15|transcription factor SIM2 45 0.006159 6.376 1 1 +6494 SIPA1 signal-induced proliferation-associated 1 11 protein-coding SPA1 signal-induced proliferation-associated protein 1|GTPase-activating protein Spa-1|p130 SPA-1|signal-induced proliferation-associated gene 1|sipa-1 43 0.005886 9.765 1 1 +6495 SIX1 SIX homeobox 1 14 protein-coding BOS3|DFNA23|TIP39 homeobox protein SIX1|sine oculis homeobox homolog 1 19 0.002601 6.406 1 1 +6496 SIX3 SIX homeobox 3 2 protein-coding HPE2 homeobox protein SIX3|sine oculis homeobox homolog 3|sine oculis homeobox-like protein 3 28 0.003832 1.65 1 1 +6497 SKI SKI proto-oncogene 1 protein-coding SGS|SKV ski oncogene|proto-oncogene c-Ski|ski oncoprotein|v-ski avian sarcoma viral oncogene homolog 32 0.00438 10.86 1 1 +6498 SKIL SKI like proto-oncogene 3 protein-coding SNO|SnoA|SnoI|SnoN ski-like protein|SKI-like oncogene|ski-related oncogene snoN 47 0.006433 8.773 1 1 +6499 SKIV2L Ski2 like RNA helicase 6 protein-coding 170A|DDX13|HLP|SKI2|SKI2W|SKIV2|SKIV2L1|THES2 helicase SKI2W|SKI2 homolog, superkiller viralicidic activity 2-like|helicase-like protein|superkiller viralicidic activity 2-like 70 0.009581 10.14 1 1 +6500 SKP1 S-phase kinase associated protein 1 5 protein-coding EMC19|OCP-II|OCP2|SKP1A|TCEB1L|p19A S-phase kinase-associated protein 1|OCP-2|RNA polymerase II elongation factor-like protein OCP2|SIII|cyclin A/CDK2-associated p19|cyclin-A/CDK2-associated protein p19|organ of Corti protein 2|organ of Corti protein II|p19skp1|transcription elongation factor B polypeptide 1-like 18 0.002464 12.24 1 1 +6502 SKP2 S-phase kinase associated protein 2 5 protein-coding FBL1|FBXL1|FLB1|p45 S-phase kinase-associated protein 2|CDK2/cyclin A-associated protein p45|F-box/LRR-repeat protein 1|S-phase kinase-associated protein 2 (p45)|S-phase kinase-associated protein 2, E3 ubiquitin protein ligase|p45skp2 30 0.004106 7.333 1 1 +6503 SLA Src-like-adaptor 8 protein-coding SLA1|SLAP src-like-adapter|SLAP-1|hSLAP|src-like-adapter protein 1 38 0.005201 8.167 1 1 +6504 SLAMF1 signaling lymphocytic activation molecule family member 1 1 protein-coding CD150|CDw150|SLAM signaling lymphocytic activation molecule|IPO-3|SLAM family member 1 48 0.00657 4.116 1 1 +6505 SLC1A1 solute carrier family 1 member 1 9 protein-coding DCBXA|EAAC1|EAAT3|SCZD18 excitatory amino acid transporter 3|excitatory amino acid carrier 1|neuronal and epithelial glutamate transporter|sodium-dependent glutamate/aspartate transporter 3|solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 28 0.003832 7.674 1 1 +6506 SLC1A2 solute carrier family 1 member 2 11 protein-coding EAAT2|EIEE41|GLT-1|HBGT excitatory amino acid transporter 2|excitotoxic amino acid transporter 2|glutamate/aspartate transporter II|sodium-dependent glutamate/aspartate transporter 2|solute carrier family 1 (glial high affinity glutamate transporter), member 2 41 0.005612 5.515 1 1 +6507 SLC1A3 solute carrier family 1 member 3 5 protein-coding EA6|EAAT1|GLAST|GLAST1 excitatory amino acid transporter 1|GLAST-1|sodium-dependent glutamate/aspartate transporter 1|solute carrier family 1 (glial high affinity glutamate transporter), member 3 49 0.006707 8.303 1 1 +6508 SLC4A3 solute carrier family 4 member 3 2 protein-coding AE3|CAE3/BAE3|SLC2C anion exchange protein 3|Anion exchanger 3, neuronal|anion exchanger 3 cardiac isoform|cardiac/brain band 3-like protein|neuronal band 3-like protein|solute carrier family 4 (anion exchanger), member 3 101 0.01382 6.991 1 1 +6509 SLC1A4 solute carrier family 1 member 4 2 protein-coding ASCT1|SATT|SPATCCM neutral amino acid transporter A|ASCT-1|alanine/serine/cysteine/threonine transporter 1|glutamate/neutral amino acid transporter|solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 23 0.003148 10.14 1 1 +6510 SLC1A5 solute carrier family 1 member 5 19 protein-coding AAAT|ASCT2|ATBO|M7V1|M7VS1|R16|RDRC neutral amino acid transporter B(0)|ATB(0)|RD114 virus receptor|RD114/simian type D retrovirus receptor|baboon M7 virus receptor|neutral amino acid transporter B|sodium-dependent neutral amino acid transporter type 2|solute carrier family 1 (neutral amino acid transporter), member 5 28 0.003832 11 1 1 +6511 SLC1A6 solute carrier family 1 member 6 19 protein-coding EAAT4 excitatory amino acid transporter 4|sodium-dependent glutamate/aspartate transporter|solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 87 0.01191 1.782 1 1 +6512 SLC1A7 solute carrier family 1 member 7 1 protein-coding AAAT|EAAT5 excitatory amino acid transporter 5|excitatory amino acid transporter 5 (retinal glutamate transporter)|retinal glutamate transporter|solute carrier family 1 (glutamate transporter), member 7 35 0.004791 3.697 1 1 +6513 SLC2A1 solute carrier family 2 member 1 1 protein-coding CSE|DYT17|DYT18|DYT9|EIG12|GLUT|GLUT-1|GLUT1|GLUT1DS|HTLVR|PED|SDCHCN solute carrier family 2, facilitated glucose transporter member 1|choreoathetosis/spasticity, episodic (paroxysmal choreoathetosis/spasticity)|glucose transporter type 1, erythrocyte/brain|hepG2 glucose transporter|human T-cell leukemia virus (I and II) receptor|receptor for HTLV-1 and HTLV-2|solute carrier family 2 (facilitated glucose transporter), member 1 25 0.003422 11.22 1 1 +6514 SLC2A2 solute carrier family 2 member 2 3 protein-coding GLUT2 solute carrier family 2, facilitated glucose transporter member 2|glucose transporter type 2, liver|solute carrier family 2 (facilitated glucose transporter), member 2 49 0.006707 1.484 1 1 +6515 SLC2A3 solute carrier family 2 member 3 12 protein-coding GLUT3 solute carrier family 2, facilitated glucose transporter member 3|GLUT-3|glucose transporter type 3, brain|solute carrier family 2 (facilitated glucose transporter), member 3 51 0.006981 9.429 1 1 +6517 SLC2A4 solute carrier family 2 member 4 17 protein-coding GLUT4 solute carrier family 2, facilitated glucose transporter member 4|GLUT-4|glucose transporter type 4, insulin-responsive|insulin-responsive glucose transporter type 4|solute carrier family 2 (facilitated glucose transporter), member 4 36 0.004927 5.025 1 1 +6518 SLC2A5 solute carrier family 2 member 5 1 protein-coding GLUT-5|GLUT5 solute carrier family 2, facilitated glucose transporter member 5|glucose transporter type 5, small intestine|glucose transporter-like protein 5|solute carrier family 2 (facilitated glucose/fructose transporter), member 5|testicular tissue protein Li 81 31 0.004243 6.598 1 1 +6519 SLC3A1 solute carrier family 3 member 1 2 protein-coding ATR1|CSNU1|D2H|NBAT|RBAT neutral and basic amino acid transport protein rBAT|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|solute carrier family 3 (amino acid transporter heavy chain), member 1|solute carrier family 3 (cystine, dibasic and neutral amino acid transporters), member 1|solute carrier family 3 (cystine, dibasic and neutral amino acid transporters, activator of cystine, dibasic and neutral amino acid transport), member 1 45 0.006159 4.146 1 1 +6520 SLC3A2 solute carrier family 3 member 2 11 protein-coding 4F2|4F2HC|4T2HC|CD98|CD98HC|MDU1|NACAE 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|solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2|solute carrier family 3 (amino acid transporter heavy chain), member 2 35 0.004791 11.94 1 1 +6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) 17 protein-coding AE1|BND3|CD233|CHC|DI|EMPB3|EPB3|FR|RTA1A|SAO|SPH4|SW|WD|WD1|WR band 3 anion transport protein|Diego blood group|Froese blood group|Swann blood group|Waldner blood group|Wright blood group|anion exchange protein 1|anion exchanger-1|erythrocyte membrane protein band 3|erythroid anion exchange protein|solute carrier family 4 (anion exchanger), member 1 (Diego blood group)|solute carrier family 4, anion exchanger, member 1 (erythrocyte membrane protein band 3, Diego blood group)|solute carrier family 4, anion exchanger, number 1 87 0.01191 1.144 1 1 +6522 SLC4A2 solute carrier family 4 member 2 7 protein-coding AE2|BND3L|EPB3L1|HKB3|NBND3 anion exchange protein 2|AE 2|anion exchanger 2 type a|anion exchanger 2 type b1|anion exchanger 2 type b2|erythrocyte membrane protein band 3-like 1|non-erythroid band 3-like protein|solute carrier family 4 (anion exchanger), member 2 81 0.01109 11.19 1 1 +6523 SLC5A1 solute carrier family 5 member 1 22 protein-coding D22S675|NAGT|SGLT1 sodium/glucose cotransporter 1|Na+/glucose cotransporter 1|high affinity sodium-glucose cotransporter|solute carrier family 5 (sodium/glucose cotransporter), member 1 55 0.007528 4.856 1 1 +6524 SLC5A2 solute carrier family 5 member 2 16 protein-coding SGLT2 sodium/glucose cotransporter 2|Na(+)/glucose cotransporter 2|low affinity sodium-glucose cotransporter|solute carrier family 5 (sodium/glucose cotransporter), member 2|solute carrier family 5 (sodium/glucose transporter), member 2 47 0.006433 1.153 1 1 +6525 SMTN smoothelin 22 protein-coding - smoothelin 84 0.0115 9.893 1 1 +6526 SLC5A3 solute carrier family 5 member 3 21 protein-coding BCW2|SMIT|SMIT1|SMIT2 sodium/myo-inositol cotransporter|Na(+)/myo-inositol cotransporter|sodium/myo-inositol cotransporter 1|sodium/myo-inositol transporter 1|solute carrier family 5 (inositol transporters), member 3|solute carrier family 5 (sodium/myo-inositol cotransporter), member 3 43 0.005886 9.653 1 1 +6527 SLC5A4 solute carrier family 5 member 4 22 protein-coding DJ90G24.4|SAAT1|SGLT3 low affinity sodium-glucose cotransporter|Na(+)/glucose cotransporter 3|sodium transporter|sodium/glucose cotransporter 3|solute carrier family 5 (glucose activated ion channel), member 4|solute carrier family 5 (low affinity glucose cotransporter), member 4|solute carrier family 5 (neutral amino acid transporters, system A), member 4 52 0.007117 1.69 1 1 +6528 SLC5A5 solute carrier family 5 member 5 19 protein-coding NIS|TDH1 sodium/iodide cotransporter|Na(+)/I(-) cotransporter|Na(+)/I(-) symporter|solute carrier family 5 (sodium iodide symporter), member 5|solute carrier family 5 (sodium/iodide cotransporter), member 5 53 0.007254 2.249 1 1 +6529 SLC6A1 solute carrier family 6 member 1 3 protein-coding GABATHG|GABATR|GAT1|MAE sodium- and chloride-dependent GABA transporter 1|GABA transporter 1|GAT-1|solute carrier family 6 (neurotransmitter transporter), member 1|solute carrier family 6 (neurotransmitter transporter, GABA), member 1 48 0.00657 5.373 1 1 +6530 SLC6A2 solute carrier family 6 member 2 16 protein-coding NAT1|NET|NET1|SLC6A5 sodium-dependent noradrenaline transporter|neurotransmitter transporter|norepinephrine transporter|solute carrier family 6 (neurotransmitter transporter), member 2|solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2|solute carrier family 6 member 5 72 0.009855 1.967 1 1 +6531 SLC6A3 solute carrier family 6 member 3 5 protein-coding DAT|DAT1|PKDYS sodium-dependent dopamine transporter|DA transporter|dopamine transporter 1|solute carrier family 6 (neurotransmitter transporter), member 3|solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 76 0.0104 1.996 1 1 +6532 SLC6A4 solute carrier family 6 member 4 17 protein-coding 5-HTT|5-HTTLPR|5HTT|HTT|OCD1|SERT|SERT1|hSERT sodium-dependent serotonin transporter|5-hydroxytryptamine (serotonin) transporter|5HT transporter|Na+/Cl- dependent serotonin transporter|serotonin transporter 1|solute carrier family 6 (neurotransmitter transporter), member 4|solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 49 0.006707 2.419 1 1 +6533 SLC6A6 solute carrier family 6 member 6 3 protein-coding TAUT sodium- and chloride-dependent taurine transporter|solute carrier family 6 (neurotransmitter transporter, taurine), member 6 33 0.004517 9.729 1 1 +6534 SLC6A7 solute carrier family 6 member 7 5 protein-coding PROT sodium-dependent proline transporter|brain-specific L-proline transporter|solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 43 0.005886 1.746 1 1 +6535 SLC6A8 solute carrier family 6 member 8 X protein-coding CCDS1|CRT|CRTR|CT1|CTR5 sodium- and chloride-dependent creatine transporter 1|creatine transporter 1|creatine transporter SLC6A8 variant D|solute carrier family 6 (neurotransmitter transporter), member 8|solute carrier family 6 (neurotransmitter transporter, creatine), member 8 30 0.004106 10.5 1 1 +6536 SLC6A9 solute carrier family 6 member 9 1 protein-coding GLYT1 sodium- and chloride-dependent glycine transporter 1|glyT-1|solute carrier family 6 (neurotransmitter transporter, glycine), member 9 55 0.007528 8.123 1 1 +6538 SLC6A11 solute carrier family 6 member 11 3 protein-coding GAT-3|GAT3|GAT4 sodium- and chloride-dependent GABA transporter 3|GABA transporter 3|solute carrier family 6 (neurotransmitter transporter), member 11|solute carrier family 6 (neurotransmitter transporter, GABA), member 11 60 0.008212 3.109 1 1 +6539 SLC6A12 solute carrier family 6 member 12 12 protein-coding BGT-1|BGT1|GAT2 sodium- and chloride-dependent betaine transporter|Na(+)/Cl(-) betaine/GABA transporter|betaine/GABA transporter-1|gamma-aminobutyric acid transporter|solute carrier family 6 (neurotransmitter transporter), member 12|solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 41 0.005612 5.466 1 1 +6540 SLC6A13 solute carrier family 6 member 13 12 protein-coding GAT-2|GAT2|GAT3 sodium- and chloride-dependent GABA transporter 2|GABA transport protein|GABA transporter 2|solute carrier family 6 (neurotransmitter transporter), member 13|solute carrier family 6 (neurotransmitter transporter, GABA), member 13 62 0.008486 2.838 1 1 +6541 SLC7A1 solute carrier family 7 member 1 13 protein-coding ATRC1|CAT-1|ERR|HCAT1|REC1L high affinity cationic amino acid transporter 1|CAT1|amino acid transporter, cationic 1|ecotropic retroviral leukemia receptor homolog|ecotropic retroviral receptor|ecotropic retrovirus receptor homolog|solute carrier family 7 (cationic amino acid transporter, y+ system), member 1|system Y+ basic amino acid transporter 41 0.005612 10.39 1 1 +6542 SLC7A2 solute carrier family 7 member 2 8 protein-coding ATRC2|CAT2|HCAT2 cationic amino acid transporter 2|low affinity cationic amino acid transporter 2|solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 54 0.007391 8.945 1 1 +6543 SLC8A2 solute carrier family 8 member A2 19 protein-coding NCX2 sodium/calcium exchanger 2|Na(+)/Ca(2+)-exchange protein 2|Na+/Ca2+-exchanging protein Nac2|solute carrier family 8 (sodium/calcium exchanger), member 2|solute carrier family 8 member 2 83 0.01136 3.567 1 1 +6545 SLC7A4 solute carrier family 7 member 4 22 protein-coding CAT-4|CAT4|HCAT3|VH cationic amino acid transporter 4|Ig heavy chain variable region|VH 3 family|solute carrier family 7 (cationic amino acid transporter, y+ system), member 4|solute carrier family 7 (orphan transporter), member 4 42 0.005749 4.341 1 1 +6546 SLC8A1 solute carrier family 8 member A1 2 protein-coding NCX1 sodium/calcium exchanger 1|Na(+)/Ca(2+)-exchange protein 1|Na+/Ca++ exchanger|Na+/Ca2+ exchanger|solute carrier family 8 (sodium/calcium exchanger), member 1|solute carrier family 8 member 1 159 0.02176 7.616 1 1 +6547 SLC8A3 solute carrier family 8 member A3 14 protein-coding NCX3 sodium/calcium exchanger 3|Na(+)/Ca(2+)-exchange protein 3|sodium/calcium exchanger SLC8A3|solute carrier family 8 (sodium/calcium exchanger), member 3 102 0.01396 2.872 1 1 +6548 SLC9A1 solute carrier family 9 member A1 1 protein-coding APNH|LIKNS|NHE-1|NHE1|PPP1R143 sodium/hydrogen exchanger 1|Na(+)/H(+) exchanger 1|Na-Li countertransporter|protein phosphatase 1, regulatory subunit 143|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)|solute carrier family 9, subfamily A (NHE1, cation proton antiporter 1), member 1 62 0.008486 10.28 1 1 +6549 SLC9A2 solute carrier family 9 member A2 2 protein-coding NHE2 sodium/hydrogen exchanger 2|Na(+)/H(+) exchanger 2|solute carrier family 9 (sodium/hydrogen exchanger), member 2|solute carrier family 9, subfamily A (NHE2, cation proton antiporter 2), member 2 86 0.01177 4.907 1 1 +6550 SLC9A3 solute carrier family 9 member A3 5 protein-coding DIAR8|NHE-3|NHE3 sodium/hydrogen exchanger 3|Na(+)/H(+) exchanger 3|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 3|solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 76 0.0104 3.408 1 1 +6553 SLC9A5 solute carrier family 9 member A5 16 protein-coding NHE5 sodium/hydrogen exchanger 5|NHE-5|Na(+)/H(+) exchanger 5|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 5|solute carrier family 9 member 5|solute carrier family 9, subfamily A (NHE5, cation proton antiporter 5), member 5 57 0.007802 4.591 1 1 +6554 SLC10A1 solute carrier family 10 member 1 14 protein-coding NTCP sodium/bile acid cotransporter|Na(+)/bile acid cotransporter|Na(+)/taurocholate transport protein|Na/taurocholate cotransporting polypeptide|cell growth-inhibiting gene 29 protein|growth-inhibiting protein 29|sodium/taurocholate cotransporter|sodium/taurocholate cotransporting polypeptide|solute carrier family 10 (sodium/bile acid cotransporter family), member 1|solute carrier family 10 (sodium/bile acid cotransporter), member 1 24 0.003285 0.9665 1 1 +6555 SLC10A2 solute carrier family 10 member 2 13 protein-coding ASBT|IBAT|ISBT|NTCP2|PBAM ileal sodium/bile acid cotransporter|Na(+)-dependent ileal bile acid transporter|ileal apical sodium-dependent bile acid transporter|ileal sodium-dependent bile acid transporter|sodium/taurocholate cotransporting polypeptide, ileal|solute carrier family 10 (sodium/bile acid cotransporter family), member 2|solute carrier family 10 (sodium/bile acid cotransporter), member 2 57 0.007802 0.6145 1 1 +6556 SLC11A1 solute carrier family 11 member 1 2 protein-coding LSH|NRAMP|NRAMP1 natural resistance-associated macrophage protein 1|NRAMP 1|solute carrier family 11 (proton-coupled divalent metal ion transporter), member 1|solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1|solute carrier family 11 (sodium/phosphate symporters), member 1 41 0.005612 7.024 1 1 +6557 SLC12A1 solute carrier family 12 member 1 15 protein-coding BSC1|NKCC2 solute carrier family 12 member 1|NKCC2A variant A|Na-K-2Cl cotransporter|bumetanide-sensitive sodium-(potassium)-chloride cotransporter 2|kidney-specific Na-K-Cl symporter|solute carrier family 12 (sodium/potassium/chloride transporter), member 1|solute carrier family 12 (sodium/potassium/chloride transporters), member 1 106 0.01451 1.59 1 1 +6558 SLC12A2 solute carrier family 12 member 2 5 protein-coding BSC|BSC2|NKCC1|PPP1R141 solute carrier family 12 member 2|basolateral Na-K-Cl symporter|bumetanide-sensitive sodium-(potassium)-chloride cotransporter 1|protein phosphatase 1, regulatory subunit 141|solute carrier family 12 (sodium/potassium/chloride transporter), member 2|solute carrier family 12 (sodium/potassium/chloride transporters), member 2 75 0.01027 9.961 1 1 +6559 SLC12A3 solute carrier family 12 member 3 16 protein-coding NCC|NCCT|TSC solute carrier family 12 member 3|Na-Cl cotransporter|Na-Cl symporter|NaCl electroneutral thiazide-sensitive cotransporter|solute carrier family 12 (sodium/chloride transporter), member 3|thiazide-sensitive Na-Cl cotransporter|thiazide-sensitive sodium-chloride cotransporter 76 0.0104 1.783 1 1 +6560 SLC12A4 solute carrier family 12 member 4 16 protein-coding CTC-479C5.17|KCC1|hKCC1 solute carrier family 12 member 4|electroneutral potassium-chloride cotransporter 1|erythroid K-Cl cotransporter 1|potassium/chloride cotransporter 1|solute carrier family 12 (potassium/chloride transporter), member 4|solute carrier family 12 (potassium/chloride transporters), member 4 65 0.008897 10.08 1 1 +6561 SLC13A1 solute carrier family 13 member 1 7 protein-coding NAS1|NaSi-1 solute carrier family 13 member 1|Na(+)/sulfate cotransporter|renal sodium/sulfate cotransporter|solute carrier family 13 (sodium/sulfate symporters), member 1|solute carrier family 13 (sodium/sulphate symporters), member 1 76 0.0104 0.5727 1 1 +6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) 18 protein-coding HUT11|HsT1341|JK|RACH1|RACH2|UT-B1|UT1|UTE urea transporter 1|Kidd blood group|SLC14A1 JK|solute carrier family 14 (urea transporter), member 1 (Kidd blood group)|urea transporter JK glycoprotein|urea transporter, erythrocyte|urea transporter-B1 43 0.005886 5.395 1 1 +6564 SLC15A1 solute carrier family 15 member 1 13 protein-coding HPECT1|HPEPT1|PEPT1 solute carrier family 15 member 1|Caco-2 oligopeptide transporter|intestinal H+/peptide cotransporter|macrophage oligopeptide transporter PEPT1|oligopeptide transporter, small intestine isoform|peptide transporter 1|solute carrier family 15 (oligopeptide transporter), member 1 52 0.007117 3.798 1 1 +6565 SLC15A2 solute carrier family 15 member 2 3 protein-coding PEPT2 solute carrier family 15 member 2|kidney H(+)/peptide cotransporter|oligopeptide transporter, kidney isoform|peptide transporter 2|solute carrier family 15 (H+/peptide transporter), member 2|solute carrier family 15 (oligopeptide transporter), member 2 67 0.009171 6.97 1 1 +6566 SLC16A1 solute carrier family 16 member 1 1 protein-coding HHF7|MCT|MCT1|MCT1D monocarboxylate transporter 1|MCT 1|solute carrier family 16 (monocarboxylate transporter), member 1|solute carrier family 16 (monocarboxylic acid transporters), member 1|solute carrier family 16, member 1 (monocarboxylic acid transporter 1) 42 0.005749 10.02 1 1 +6567 SLC16A2 solute carrier family 16 member 2 X protein-coding AHDS|DXS128|DXS128E|MCT 7|MCT 8|MCT7|MCT8|MRX22|XPCT monocarboxylate transporter 8|X-linked PEST-containing transporter|monocarboxylate transporter 7|solute carrier family 16, member 2 (thyroid hormone transporter) 45 0.006159 8.556 1 1 +6568 SLC17A1 solute carrier family 17 member 1 6 protein-coding NAPI-1|NPT-1|NPT1 sodium-dependent phosphate transport protein 1|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/phosphate cotransporter 1|sodium/phosphate type I cotransporter|solute carrier family 17 (organic anion transporter), member 1|solute carrier family 17 (sodium phosphate), member 1|solute carrier family 17 (vesicular glutamate transporter), member 1 43 0.005886 0.9537 1 1 +6569 SLC34A1 solute carrier family 34 member 1 5 protein-coding FRTS2|HCINF2|NAPI-3|NPHLOP1|NPT2|NPTIIa|SLC11|SLC17A2 sodium-dependent phosphate transport protein 2A|Na(+)-dependent phosphate cotransporter 2A|Na(+)/Pi cotransporter 2A|Na+-phosphate cotransporter type II|naPi-2a|renal sodium-dependent phosphate transporter|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 (sodium phosphate), member 1|solute carrier family 34 (type II sodium/phosphate cotransporter), member 1 48 0.00657 0.8155 1 1 +6570 SLC18A1 solute carrier family 18 member A1 8 protein-coding CGAT|VAT1|VMAT1 chromaffin granule amine transporter|solute carrier family 18 (vesicular monoamine transporter), member 1|solute carrier family 18 (vesicular monoamine), member 1|solute carrier family 18 member 1|vesicular amine transporter 1 39 0.005338 1.403 1 1 +6571 SLC18A2 solute carrier family 18 member A2 10 protein-coding SVAT|SVMT|VAT2|VMAT2 synaptic vesicular amine transporter|monoamine neurotransmitter transporter|monoamine transporter|solute carrier family 18 (vesicular monoamine transporter), member 2|solute carrier family 18 (vesicular monoamine), member 2|solute carrier family 18 member 2|vesicle monoamine transporter type 2|vesicle monoamine/H+ antiporter|vesicular amine transporter 2 50 0.006844 2.893 1 1 +6572 SLC18A3 solute carrier family 18 member A3 10 protein-coding VACHT vesicular acetylcholine transporter|solute carrier family 18 (vesicular acetylcholine transporter), member 3|solute carrier family 18 (vesicular acetylcholine), member 3|solute carrier family 18, member 3 61 0.008349 1.21 1 1 +6573 SLC19A1 solute carrier family 19 member 1 21 protein-coding CHMD|FOLT|IFC1|REFC|RFC1 folate transporter 1|IFC-1|RFC|intestinal folate carrier 1|placental folate transporter|reduced folate carrier protein|solute carrier family 19 (folate transporter), member 1 44 0.006022 8.398 1 1 +6574 SLC20A1 solute carrier family 20 member 1 2 protein-coding GLVR1|Glvr-1|PIT1|PiT-1 sodium-dependent phosphate transporter 1|gibbon ape leukemia virus receptor 1|leukemia virus receptor 1 homolog|solute carrier family 20 (phosphate transporter), member 1 44 0.006022 10.21 1 1 +6575 SLC20A2 solute carrier family 20 member 2 8 protein-coding GLVR-2|GLVR2|IBGC1|IBGC3|MLVAR|PIT-2|PIT2|RAM1|Ram-1 sodium-dependent phosphate transporter 2|gibbon ape leukemia virus receptor 2|murine leukemia virus, amphotropic, receptor for|murine leukemia virus, amphotropic; receptor|solute carrier family 20 (phosphate transporter), member 2 39 0.005338 10.23 1 1 +6576 SLC25A1 solute carrier family 25 member 1 22 protein-coding CTP|D2L2AD|SEA|SLC20A3 tricarboxylate transport protein, mitochondrial|citrate transport protein|solute carrier family 20 (mitochondrial citrate transporter), member 3|solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1|tricarboxylate carrier protein 16 0.00219 10.61 1 1 +6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 3 protein-coding MATR1|OATP2A1|PGT|PHOAR2|SLC21A2 solute carrier organic anion transporter family member 2A1|matrin F/G 1|solute carrier family 21 (prostaglandin transporter), member 2 67 0.009171 9.006 1 1 +6579 SLCO1A2 solute carrier organic anion transporter family member 1A2 12 protein-coding OATP|OATP-A|OATP1A2|SLC21A3 solute carrier organic anion transporter family member 1A2|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 66 0.009034 3.062 1 1 +6580 SLC22A1 solute carrier family 22 member 1 6 protein-coding HOCT1|OCT1|oct1_cds solute carrier family 22 member 1|organic cation transporter 1|solute carrier family 22 (organic cation transporter), member 1 33 0.004517 2.4 1 1 +6581 SLC22A3 solute carrier family 22 member 3 6 protein-coding EMT|EMTH|OCT3 solute carrier family 22 member 3|EMT organic cation transporter 3|extraneuronal monoamine transporter|organic cation transporter 3|solute carrier family 22 (extraneuronal monoamine transporter), member 3|solute carrier family 22 (organic cation transporter), member 3 29 0.003969 6.552 1 1 +6582 SLC22A2 solute carrier family 22 member 2 6 protein-coding OCT2 solute carrier family 22 member 2|organic cation transporter 2|solute carrier family 22 (organic cation transporter), member 2 63 0.008623 1.318 1 1 +6583 SLC22A4 solute carrier family 22 member 4 5 protein-coding OCTN1 solute carrier family 22 member 4|ET transporter|ergothioneine transporter|integral membrane transport protein|organic cation/carnitine transporter 1|solute carrier family 22 (organic cation/ergothioneine transporter), member 4|solute carrier family 22 (organic cation/zwitterion transporter), member 4 29 0.003969 5.523 1 1 +6584 SLC22A5 solute carrier family 22 member 5 5 protein-coding CDSP|OCTN2 solute carrier family 22 member 5|high-affinity sodium dependent carnitine cotransporter|organic cation/carnitine transporter 2 26 0.003559 8.365 1 1 +6585 SLIT1 slit guidance ligand 1 10 protein-coding MEGF4|SLIL1|SLIT-1|SLIT3 slit homolog 1 protein|multiple EGF-like domains protein 4|multiple epidermal growth factor-like domains protein 4|slit homolog 1 108 0.01478 4.748 1 1 +6586 SLIT3 slit guidance ligand 3 5 protein-coding MEGF5|SLIL2|SLIT1|Slit-3|slit2 slit homolog 3 protein|multiple EGF-like domains protein 5|multiple epidermal growth factor-like domains protein 5|slit homolog 3 138 0.01889 8.414 1 1 +6588 SLN sarcolipin 11 protein-coding - sarcolipin 5 0.0006844 2.063 1 1 +6590 SLPI secretory leukocyte peptidase inhibitor 20 protein-coding ALK1|ALP|BLPI|HUSI|HUSI-I|MPI|WAP4|WFDC4 antileukoproteinase|HUSI-1|WAP four-disulfide core domain protein 4|mucus proteinase inhibitor|protease inhibitor WAP4|secretory leukocyte protease inhibitor (antileukoproteinase)|seminal proteinase inhibitor 31 0.004243 8.771 1 1 +6591 SNAI2 snail family transcriptional repressor 2 8 protein-coding SLUG|SLUGH1|SNAIL2|WS2D zinc finger protein SNAI2|neural crest transcription factor SLUG|protein snail homolog 2|slug (chicken homolog), zinc finger protein|snail family zinc finger 2|snail homolog 2 38 0.005201 7.975 1 1 +6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 X protein-coding ISWI|NURF140|SNF2L|SNF2L1|SNF2LB|SNF2LT|SWI|SWI2|hSNF2L probable global transcription activator SNF2L1|ATP-dependent helicase SMARCA1|SNF2-like 1|global transcription activator homologous sequence|nucleosome-remodeling factor subunit SNF2L|sucrose nonfermenting 2-like protein 1 96 0.01314 9.907 1 1 +6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 9 protein-coding BAF190|BRM|NCBRS|SNF2|SNF2L2|SNF2LA|SWI2|Sth1p|hBRM|hSNF2a probable global transcription activator SNF2L2|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|protein brahma homolog|sucrose nonfermenting 2-like protein 2 140 0.01916 10.95 1 1 +6596 HLTF helicase like transcription factor 3 protein-coding HIP116|HIP116A|HLTF1|RNF80|SMARCA3|SNF2L3|ZBU1 helicase-like transcription factor|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 54 0.007391 9.825 1 1 +6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 19 protein-coding BAF190|BAF190A|BRG1|CSS4|MRD16|RTPS2|SNF2|SNF2L4|SNF2LB|SWI2|hSNF2b transcription activator BRG1|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 226 0.03093 11.76 1 1 +6598 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 22 protein-coding BAF47|CSS3|INI1|MRD15|PPP1R144|RDT|RTPS1|SNF5|SNF5L1|SWNTS1|Sfh1p|Snr1|hSNFS SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily B member 1|BRG1-associated factor 47|SNF5 homolog|SWI/SNF-related matrix-associated protein|hSNF5|integrase interactor 1 protein|malignant rhabdoid tumor suppressor|protein phosphatase 1, regulatory subunit 144|sucrose nonfermenting, yeast, homolog-like 1 44 0.006022 10.75 1 1 +6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 3 protein-coding BAF155|CRACC1|Rsc8|SRG3|SWI3 SWI/SNF complex subunit SMARCC1|BRG1-associated factor 155|SWI/SNF complex 155 kDa subunit|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 64 0.00876 11.26 1 1 +6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 12 protein-coding BAF170|CRACC2|Rsc8 SWI/SNF complex subunit SMARCC2|SWI/SNF complex 170 kDa subunit|SWI3-like protein|chromatin remodeling complex BAF170 subunit|mammalian chromatin remodeling complex BRG1-associated factor 170 113 0.01547 11.39 1 1 +6602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 12 protein-coding BAF60A|CRACD1|Rsc6p SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 1|60 kDa BRG-1/Brm-associated factor subunit A|BRG1-associated factor 60A|SWI/SNF complex 60 kDa subunit A|Swp73-like protein|chromatin remodeling complex BAF60A subunit|mammalian chromatin remodeling complex BRG1-associated factor 60A 21 0.002874 10.51 1 1 +6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 17 protein-coding BAF60B|CRACD2|PRO2451|Rsc6p SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 2|60 kDa BRG-1/Brm-associated factor subunit B|BRG1-associated factor 60B|SWI/SNF complex 60 kDa subunit B|Swp73-like protein|chromatin remodeling complex BAF60B subunit|mammalian chromatin remodeling complex BRG1-associated factor 60B 42 0.005749 11.03 1 1 +6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 7 protein-coding BAF60C|CRACD3|Rsc6p SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 3|60 kDa BRG-1/Brm-associated factor subunit C|BRG1-associated factor 60C|SWI/SNF complex 60 kDa subunit C|Swp73-like protein|chromatin remodeling complex BAF60C subunit|mammalian chromatin remodeling complex BRG1-associated factor 60C 27 0.003696 8.547 1 1 +6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 17 protein-coding BAF57|CSS5 SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1|BRG1-associated factor 57|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin e1|chromatin remodeling complex BRG1-associated factor 57 28 0.003832 11.31 1 1 +6606 SMN1 survival of motor neuron 1, telomeric 5 protein-coding BCD541|GEMIN1|SMA|SMA1|SMA2|SMA3|SMA4|SMA@|SMN|SMNT|T-BCD541|TDRD16A survival motor neuron protein|component of gems 1|gemin-1|survival motor neuron 1 protein|tudor domain containing 16A 2.37 0 1 +6607 SMN2 survival of motor neuron 2, centromeric 5 protein-coding BCD541|C-BCD541|GEMIN1|SMNC|TDRD16B survival motor neuron protein|component of gems 1|gemin-1|tudor domain containing 16B 3 0.0004106 9.944 1 1 +6608 SMO smoothened, frizzled class receptor 7 protein-coding CRJS|FZD11|Gx|SMOH smoothened homolog|frizzled family member 11|protein Gx|seven transmembrane helix receptor|smoothened, frizzled family receptor|smoothened, seven transmembrane spanning receptor 63 0.008623 8.946 1 1 +6609 SMPD1 sphingomyelin phosphodiesterase 1 11 protein-coding ASM|ASMASE|NPD sphingomyelin phosphodiesterase|acid sphingomyelinase|sphingomyelin phosphodiesterase 1, acid lysosomal 54 0.007391 9.808 1 1 +6610 SMPD2 sphingomyelin phosphodiesterase 2 6 protein-coding ISC1|NSMASE|NSMASE1 sphingomyelin phosphodiesterase 2|N-SMase|lyso-PAF-PLC|lyso-platelet-activating factor-phospholipase C|neutral sphingomyelinase|sphingomyelin phosphodiesterase 2, neutral membrane (neutral sphingomyelinase) 23 0.003148 7.918 1 1 +6611 SMS spermine synthase X protein-coding MRSR|SPMSY|SRS|SpS spermine synthase|spermidine aminopropyltransferase 23 0.003148 10.68 1 1 +6612 SUMO3 small ubiquitin-like modifier 3 21 protein-coding SMT3A|SMT3H1|SUMO-3|Smt3B small ubiquitin-related modifier 3|SMT3 suppressor of mif two 3 homolog 1|SMT3 suppressor of mif two 3 homolog 3|ubiquitin-like protein SMT3B 22 0.003011 11.14 1 1 +6613 SUMO2 small ubiquitin-like modifier 2 17 protein-coding HSMT3|SMT3B|SMT3H2|SUMO3|Smt3A small ubiquitin-related modifier 2|SMT3 homolog 2|SMT3 suppressor of mif two 3 homolog 2|sentrin 2|ubiquitin-like protein SMT3A|ubiquitin-like protein SMT3B 3 0.0004106 11.64 1 1 +6614 SIGLEC1 sialic acid binding Ig like lectin 1 20 protein-coding CD169|SIGLEC-1|SN|dJ1009E24.1 sialoadhesin|sialic acid binding Ig-like lectin 1, sialoadhesin|sialic acid-binding immunoglobulin-like lectin 1 132 0.01807 7.656 1 1 +6615 SNAI1 snail family transcriptional repressor 1 20 protein-coding SLUGH2|SNA|SNAH|SNAIL|SNAIL1|dJ710H13.1 zinc finger protein SNAI1|protein sna|protein snail homolog 1|snail 1 homolog|snail 1 zinc finger protein|snail family zinc finger 1|snail homolog 1 33 0.004517 6.25 1 1 +6616 SNAP25 synaptosome associated protein 25 20 protein-coding CMS18|RIC-4|RIC4|SEC9|SNAP|SNAP-25|SUP|bA416N4.2|dJ1068F16.2 synaptosomal-associated protein 25|resistance to inhibitors of cholinesterase 4 homolog|synaptosomal-associated protein, 25kDa|synaptosome associated protein 25kDa 32 0.00438 5.269 1 1 +6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 14 protein-coding PTFgamma|SNAP43 snRNA-activating protein complex subunit 1|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, 43kD|small nuclear RNA activating complex, polypeptide 1, 43kDa|snRNA-activating protein complex 43 kDa subunit 30 0.004106 7.895 1 1 +6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 19 protein-coding PTFDELTA|SNAP45 snRNA-activating protein complex subunit 2|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, 45kD|small nuclear RNA activating complex, polypeptide 2, 45kDa|snRNA-activating protein complex 45 kDa subunit 26 0.003559 8.771 1 1 +6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 9 protein-coding PTFbeta|SNAP50 snRNA-activating protein complex subunit 3|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, 50kD|small nuclear RNA activating complex, polypeptide 3, 50kDa|snRNA-activating protein complex 50 kDa subunit 22 0.003011 8.858 1 1 +6620 SNCB synuclein beta 5 protein-coding - beta-synuclein 14 0.001916 2.282 1 1 +6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 9 protein-coding PTFalpha|SNAP190 snRNA-activating protein complex subunit 4|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 92 0.01259 8.638 1 1 +6622 SNCA synuclein alpha 4 protein-coding NACP|PARK1|PARK4|PD1 alpha-synuclein|non A-beta component of AD amyloid|synuclein alpha-140|synuclein, alpha (non A4 component of amyloid precursor) 13 0.001779 6.117 1 1 +6623 SNCG synuclein gamma 10 protein-coding BCSG1|SR gamma-synuclein|breast cancer-specific gene 1 protein|persyn|synoretin|synuclein, gamma (breast cancer-specific protein 1) 9 0.001232 7.415 1 1 +6624 FSCN1 fascin actin-bundling protein 1 7 protein-coding FAN1|HSN|SNL|p55 fascin|55 kDa actin-bundling protein|fascin homolog 1, actin-bundling protein|singed-like (fascin homolog, sea urchin) 33 0.004517 11.03 1 1 +6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 19 protein-coding RNPU1Z|RPU1|SNRP70|Snp1|U1-70K|U170K|U1AP|U1RNP U1 small nuclear ribonucleoprotein 70 kDa|U1 snRNP 70 kDa|small nuclear ribonucleoprotein 70kDa (U1)|small nuclear ribonucleoprotein, U1 70kDa subunit 24 0.003285 11.62 1 1 +6626 SNRPA small nuclear ribonucleoprotein polypeptide A 19 protein-coding Mud1|U1-A|U1A U1 small nuclear ribonucleoprotein A|U1 small nuclear RNP-specific A|U1 snRNP A|U1 snRNP-specific protein A 27 0.003696 10.4 1 1 +6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' 15 protein-coding Lea1 U2 small nuclear ribonucleoprotein A'|U2 small nuclear ribonucleoprotein polypeptide A'|U2 snRNP A' 19 0.002601 8.731 1 1 +6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 20 protein-coding CCMS|COD|SNRPB1|Sm-B/B'|SmB/B'|SmB/SmB'|snRNP-B small nuclear ribonucleoprotein-associated proteins B and B'|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' 24 0.003285 11.77 1 1 +6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 20 protein-coding Msl1|U2B'' U2 small nuclear ribonucleoprotein B''|U2 snRNP B''|small nuclear ribonucleoprotein polypeptide B 15 0.002053 10.03 1 1 +6631 SNRPC small nuclear ribonucleoprotein polypeptide C 6 protein-coding U1C|Yhc1 U1 small nuclear ribonucleoprotein C|U1 small nuclear RNP specific C|U1 snRNP C|U1 snRNP protein C|U1-C|U1C 14 0.001916 10.37 1 1 +6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide 18 protein-coding HsT2456|SMD1|SNRPD|Sm-D1 small nuclear ribonucleoprotein Sm D1|Sm-D autoantigen|small nuclear ribonucleoprotein D1 polypeptide 16kDa pseudogene|snRNP core protein D1 8 0.001095 9.73 1 1 +6633 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide 19 protein-coding SMD2|SNRPD1|Sm-D2 small nuclear ribonucleoprotein Sm D2|small nuclear ribonucleoprotein D2 polypeptide 16.5kDa|snRNP core protein D2 17 0.002327 11.44 1 1 +6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide 22 protein-coding SMD3|Sm-D3 small nuclear ribonucleoprotein Sm D3|small nuclear ribonucleoprotein D3 polypeptide 18kDa|snRNP core protein D3 11 0.001506 10.74 1 1 +6635 SNRPE small nuclear ribonucleoprotein polypeptide E 1 protein-coding HYPT11|SME|Sm-E|snRNP-E small nuclear ribonucleoprotein E|sm protein E 12 0.001642 9.702 1 1 +6636 SNRPF small nuclear ribonucleoprotein polypeptide F 12 protein-coding SMF|Sm-F|snRNP-F small nuclear ribonucleoprotein F|sm protein F 2 0.0002737 9.725 1 1 +6637 SNRPG small nuclear ribonucleoprotein polypeptide G 2 protein-coding SMG|Sm-G small nuclear ribonucleoprotein G|sm protein G|snRNP-G 6 0.0008212 9.591 1 1 +6638 SNRPN small nuclear ribonucleoprotein polypeptide N 15 protein-coding HCERN3|PWCR|RT-LI|SM-D|SMN|SNRNP-N|SNURF-SNRPN|sm-N small nuclear ribonucleoprotein-associated protein N|SM protein N|sm protein D|tissue-specific splicing protein 62 0.008486 10.76 1 1 +6640 SNTA1 syntrophin alpha 1 20 protein-coding LQT12|SNT1|TACIP1|dJ1187J4.5 alpha-1-syntrophin|59 kDa dystrophin-associated protein A1 acidic component 1|acidic 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 27 0.003696 9.138 1 1 +6641 SNTB1 syntrophin beta 1 8 protein-coding 59-DAP|A1B|BSYN2|DAPA1B|SNT2|SNT2B1|TIP-43 beta-1-syntrophin|59 kDa dystrophin-associated protein A1 basic component 1|dystrophin-associated protein A1, 59kD, basic component 1|syntrophin, beta 1 (dystrophin-associated protein A1, 59kDa, basic component 1)|syntrophin-2|tax interaction protein 43 45 0.006159 8.904 1 1 +6642 SNX1 sorting nexin 1 15 protein-coding HsT17379|VPS5 sorting nexin-1|sorting nexin 1A 35 0.004791 11.33 1 1 +6643 SNX2 sorting nexin 2 5 protein-coding TRG-9 sorting nexin-2|CTB-36H16.2|transformation-related gene 9 protein 27 0.003696 10.38 1 1 +6645 SNTB2 syntrophin beta 2 16 protein-coding D16S2531E|EST25263|SNT2B2|SNT3|SNTL beta-2-syntrophin|59 kDa dystrophin-associated protein A1 basic component 2|dystrophin-associated protein A1, 59kD, basic component 2|syntrophin, beta 2 (dystrophin-associated protein A1, 59kDa, basic component 2)|syntrophin-3 15 0.002053 9.553 1 1 +6646 SOAT1 sterol O-acyltransferase 1 1 protein-coding ACACT|ACAT|ACAT-1|ACAT1|SOAT|STAT sterol O-acyltransferase 1|acyl-coenzyme A:cholesterol acyltransferase 1|sterol O-acyltransferase (acyl-Coenzyme A: cholesterol acyltransferase) 1 36 0.004927 9.458 1 1 +6647 SOD1 superoxide dismutase 1, soluble 21 protein-coding ALS|ALS1|HEL-S-44|IPOA|SOD|hSod1|homodimer superoxide dismutase [Cu-Zn]|Cu/Zn superoxide dismutase|SOD, soluble|epididymis secretory protein Li 44|indophenoloxidase A|superoxide dismutase, cystolic 8 0.001095 12.02 1 1 +6648 SOD2 superoxide dismutase 2, mitochondrial 6 protein-coding IPO-B|IPOB|MNSOD|MVCD6|Mn-SOD superoxide dismutase [Mn], mitochondrial|Mn superoxide dismutase|indophenoloxidase B|manganese-containing superoxide dismutase|mangano-superoxide dismutase 14 0.001916 12.29 1 1 +6649 SOD3 superoxide dismutase 3, extracellular 4 protein-coding EC-SOD extracellular superoxide dismutase [Cu-Zn]|testicular tissue protein Li 175 14 0.001916 8.459 1 1 +6650 CAPN15 calpain 15 16 protein-coding SOLH calpain-15|small optic lobes homolog 61 0.008349 9.862 1 1 +6651 SON SON DNA binding protein 21 protein-coding BASS1|C21orf50|DBP-5|NREBP|SON3 protein SON|Bax antagonist selected in Saccharomyces 1|NRE-binding protein|negative regulatory element-binding protein 129 0.01766 12.21 1 1 +6652 SORD sorbitol dehydrogenase 15 protein-coding HEL-S-95n|SORD1 sorbitol dehydrogenase|L-iditol 2-dehydrogenase|epididymis secretory sperm binding protein Li 95n 12 0.001642 9.854 1 1 +6653 SORL1 sortilin related receptor 1 11 protein-coding C11orf32|LR11|LRP9|SORLA|SorLA-1|gp250 sortilin-related receptor|LDLR relative with 11 ligand-binding repeats|low-density lipoprotein receptor relative with 11 ligand-binding repeats|mosaic protein LR11|sortilin-related receptor, L(DLR class) A repeats containing|sorting protein-related receptor containing LDLR class A repeats 139 0.01903 10.81 1 1 +6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 2 protein-coding GF1|GGF1|GINGF|HGF|NS4 son of sevenless homolog 1|SOS-1|gingival fibromatosis, hereditary, 1|guanine nucleotide exchange factor 105 0.01437 10.17 1 1 +6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 14 protein-coding NS9|SOS-2 son of sevenless homolog 2|guanine nucleotide releasing factor 94 0.01287 9.762 1 1 +6656 SOX1 SRY-box 1 13 protein-coding - transcription factor SOX-1|SRY (sex determining region Y)-box 1|SRY-related HMG-box gene 1 30 0.004106 1.451 1 1 +6657 SOX2 SRY-box 2 3 protein-coding ANOP3|MCOPS3 transcription factor SOX-2|SRY (sex determining region Y)-box 2|SRY-related HMG-box gene 2|sex determining region Y-box 2|transcription factor SOX2 36 0.004927 5.161 1 1 +6658 SOX3 SRY-box 3 X protein-coding GHDX|MRGH|PHP|PHPX|SOXB transcription factor SOX-3|SRY (sex determining region Y)-box 3 32 0.00438 1.154 1 1 +6659 SOX4 SRY-box 4 6 protein-coding EVI16 transcription factor SOX-4|SRY (sex determining region Y)-box 4|SRY-related HMG-box gene 4|ecotropic viral integration site 16 20 0.002737 11.32 1 1 +6660 SOX5 SRY-box 5 12 protein-coding L-SOX5|L-SOX5B|L-SOX5F|LAMSHF transcription factor SOX-5|SRY (sex determining region Y)-box 5 109 0.01492 4.195 1 1 +6661 SOX5P1 SRY-box 5 pseudogene 1 8 pseudo SOX29|SOX5P SOX5 pseudogene|SRY (sex determining region Y)-box 5 pseudogene 1 0.0001369 1 0 +6662 SOX9 SRY-box 9 17 protein-coding CMD1|CMPD1|SRA1|SRXX2|SRXY10 transcription factor SOX-9|SRY (sex determining region Y)-box9|SRY (sex-determining region Y)-box 9 protein|SRY-related HMG-box, gene 9 74 0.01013 9.937 1 1 +6663 SOX10 SRY-box 10 22 protein-coding DOM|PCWH|WS2E|WS4|WS4C transcription factor SOX-10|SRY (sex determining region Y)-box 10|SRY-related HMG-box gene 10|dominant megacolon, mouse, human homolog of 29 0.003969 3.396 1 1 +6664 SOX11 SRY-box 11 2 protein-coding MRD27 transcription factor SOX-11|SRY (sex-determining region Y)-box 11|SRY-related HMG-box gene 11 32 0.00438 4.596 1 1 +6665 SOX15 SRY-box 15 17 protein-coding SOX20|SOX26|SOX27 protein SOX-15|SRY (sex determining region Y)-box 15|SRY (sex determining region Y)-box 20 10 0.001369 5.467 1 1 +6666 SOX12 SRY-box 12 20 protein-coding SOX22 transcription factor SOX-12|SOX-22 protein|SRY (sex determining region Y)-box 12|SRY-related HMG-box gene 22 13 0.001779 9.519 1 1 +6667 SP1 Sp1 transcription factor 12 protein-coding - transcription factor Sp1|specificity protein 1 53 0.007254 11.23 1 1 +6668 SP2 Sp2 transcription factor 17 protein-coding - transcription factor Sp2 24 0.003285 9.259 1 1 +6670 SP3 Sp3 transcription factor 2 protein-coding SPR2 transcription factor Sp3|GC-binding transcription factor Sp3|specificity protein 3 42 0.005749 10.67 1 1 +6671 SP4 Sp4 transcription factor 7 protein-coding HF1B|SPR-1 transcription factor Sp4 66 0.009034 7.663 1 1 +6672 SP100 SP100 nuclear antigen 2 protein-coding lysp100b nuclear autoantigen Sp-100|SP100-HMG nuclear autoantigen|nuclear dot-associated Sp100 protein|speckled 100 kDa 101 0.01382 10.32 1 1 +6674 SPAG1 sperm associated antigen 1 8 protein-coding CILD28|CT140|HEL-S-268|HSD-3.8|SP75|TPIS sperm-associated antigen 1|TPR-containing protein involved in spermatogenesis|epididymis secretory protein Li 268|infertility-related sperm protein Spag-1|tetratricopeptide repeat-containing protein 60 0.008212 7.69 1 1 +6675 UAP1 UDP-N-acetylglucosamine pyrophosphorylase 1 1 protein-coding AGX|AGX1|AGX2|SPAG2 UDP-N-acetylhexosamine pyrophosphorylase|UDP-N-acetylglucosamine diphosphorylase 1|UDP-N-acetylhexosamine pyrophosphorylase 1|antigen X|sperm associated antigen 2|testis tissue sperm-binding protein Li 37a 37 0.005064 10.13 1 1 +6676 SPAG4 sperm associated antigen 4 20 protein-coding CT127|SUN4 sperm-associated antigen 4 protein|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 28 0.003832 5.977 1 1 +6677 SPAM1 sperm adhesion molecule 1 7 protein-coding HEL-S-96n|HYA1|HYAL1|HYAL3|HYAL5|PH-20|PH20|SPAG15 hyaluronidase PH-20|PH-20 hyaluronidase|epididymis secretory sperm binding protein Li 96n|hyal-PH20|hyaluronoglucosaminidase PH-20|sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)|sperm surface protein PH-20 76 0.0104 0.1294 1 1 +6678 SPARC secreted protein acidic and cysteine rich 5 protein-coding BM-40|OI17|ON SPARC|basement-membrane protein 40|secreted protein, acidic, cysteine-rich (osteonectin) 24 0.003285 14.59 1 1 +6683 SPAST spastin 2 protein-coding ADPSP|FSP2|SPG4 spastin|spastic paraplegia 4 (autosomal dominant; spastin)|spastic paraplegia 4 protein 40 0.005475 9.129 1 1 +6687 SPG7 SPG7, paraplegin matrix AAA peptidase subunit 16 protein-coding CAR|CMAR|PGN|SPG5C paraplegin|cell matrix adhesion regulator|spastic paraplegia 7 (pure and complicated autosomal recessive)|spastic paraplegia 7 protein 49 0.006707 10.34 1 1 +6688 SPI1 Spi-1 proto-oncogene 11 protein-coding OF|PU.1|SFPI1|SPI-1|SPI-A transcription factor PU.1|31 kDa transforming protein|hematopoietic transcription factor PU.1|spleen focus forming virus (SFFV) proviral integration oncogene spi1 28 0.003832 8.516 1 1 +6689 SPIB Spi-B transcription factor 19 protein-coding SPI-B transcription factor Spi-B|Spi-B transcription factor (Spi-1/PU.1 related) 27 0.003696 3.725 1 1 +6690 SPINK1 serine peptidase inhibitor, Kazal type 1 5 protein-coding PCTT|PSTI|Spink3|TATI|TCP serine protease inhibitor Kazal-type 1|pancreatic secretory trypsin inhibitor|serine protease inhibitor, Kazal type 1|tumor-associated trypsin inhibitor 5 0.0006844 3.883 1 1 +6691 SPINK2 serine peptidase inhibitor, Kazal type 2 4 protein-coding HUSI-II serine protease inhibitor Kazal-type 2|epididymis tissue protein Li 172|serine peptidase inhibitor, Kazal type 2 (acrosin-trypsin inhibitor) 10 0.001369 1.727 1 1 +6692 SPINT1 serine peptidase inhibitor, Kunitz type 1 15 protein-coding HAI|HAI1|MANSC2 kunitz-type protease inhibitor 1|HAI-1|hepatocyte growth factor activator inhibitor type 1|serine protease inhibitor, Kunitz type 1 27 0.003696 10.57 1 1 +6693 SPN sialophorin 16 protein-coding CD43|GALGP|GPL115|LSN leukosialin|galactoglycoprotein|leukocyte sialoglycoprotein|sialophorin (gpL115, leukosialin, CD43) 32 0.00438 6.967 1 1 +6694 SPP2 secreted phosphoprotein 2 2 protein-coding SPP-24|SPP24 secreted phosphoprotein 24|secreted phosphoprotein 2, 24kD|secreted phosphoprotein 2, 24kDa 26 0.003559 0.6552 1 1 +6695 SPOCK1 SPARC/osteonectin, cwcv and kazal like domains proteoglycan 1 5 protein-coding SPOCK|TESTICAN|TIC1 testican-1|sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 49 0.006707 8.742 1 1 +6696 SPP1 secreted phosphoprotein 1 4 protein-coding BNSP|BSPI|ETA-1|OPN osteopontin|SPP1/CALPHA1 fusion|early T-lymphocyte activation 1|nephropontin|osteopontin/immunoglobulin alpha 1 heavy chain constant region fusion protein|secreted phosphoprotein 1 (osteopontin, bone sialoprotein I, early T-lymphocyte activation 1)|secreted phosphoprotein 1 variant 6|urinary stone protein|uropontin 27 0.003696 11.25 1 1 +6697 SPR sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) 2 protein-coding SDR38C1 sepiapterin reductase|short chain dehydrogenase/reductase family 38C, member 1 11 0.001506 9.496 1 1 +6698 SPRR1A small proline rich protein 1A 1 protein-coding SPRK cornifin-A|19 kDa pancornulin|SPR-IA|small proline-rich protein IA 14 0.001916 2.727 1 1 +6699 SPRR1B small proline rich protein 1B 1 protein-coding CORNIFIN|GADD33|SPR-IB|SPRR1 cornifin-B|14.9 kDa pancornulin|small proline-rich protein IB 17 0.002327 3.04 1 1 +6700 SPRR2A small proline rich protein 2A 1 protein-coding - small proline-rich protein 2A|2-1|SPR-2A 6 0.0008212 2.323 1 1 +6701 SPRR2B small proline rich protein 2B 1 protein-coding - small proline-rich protein 2B|SPR-2B 9 0.001232 0.9518 1 1 +6702 SPRR2C small proline rich protein 2C (pseudogene) 1 pseudo - small proline-rich protein 2C 0.9545 0 1 +6703 SPRR2D small proline rich protein 2D 1 protein-coding - small proline-rich protein 2D|SPR-2D|SPR-II|small proline-rich protein II 9 0.001232 2.345 1 1 +6704 SPRR2E small proline rich protein 2E 1 protein-coding - small proline-rich protein 2E|SPR-2E|SPR-II|small proline-rich protein II 9 0.001232 1.753 1 1 +6705 SPRR2F small proline rich protein 2F 1 protein-coding - small proline-rich protein 2F|SPR-2F 9 0.001232 1.286 1 1 +6706 SPRR2G small proline rich protein 2G 1 protein-coding - small proline-rich protein 2G|SPR-2G 10 0.001369 1.203 1 1 +6707 SPRR3 small proline rich protein 3 1 protein-coding - small proline-rich protein 3|22 kDa pancornulin|cornifin beta|esophagin 54 0.007391 2.746 1 1 +6708 SPTA1 spectrin alpha, erythrocytic 1 1 protein-coding EL2|HPP|HS3|SPH3|SPTA spectrin alpha chain, erythrocytic 1|alpha-I spectrin|elliptocytosis 2|erythroid alpha-spectrin|mutant alpha spectrin|spectrin alpha chain, erythrocyte|spectrin, alpha, erythrocytic 1 (elliptocytosis 2) 508 0.06953 1.165 1 1 +6709 SPTAN1 spectrin alpha, non-erythrocytic 1 9 protein-coding EIEE5|NEAS|SPTA2 spectrin alpha chain, non-erythrocytic 1|alpha-II spectrin|alpha-fodrin|fodrin alpha chain|spectrin, non-erythroid alpha chain|spectrin, non-erythroid alpha subunit 187 0.0256 12.83 1 1 +6710 SPTB spectrin beta, erythrocytic 14 protein-coding EL3|HS2|HSPTB1|SPH2 spectrin beta chain, erythrocytic|Sp beta|beta-I spectrin|membrane cytoskeletal protein|spectrin beta Tandil|spectrin beta chain, erythrocyte 153 0.02094 6.747 1 1 +6711 SPTBN1 spectrin beta, non-erythrocytic 1 2 protein-coding ELF|HEL102|SPTB2|betaSpII spectrin beta chain, non-erythrocytic 1|beta-G spectrin|beta-II spectrin|beta-fodrin|beta-spectrin 2|beta-spectrin II|beta-spectrin non-erythrocytic 1|embryonic liver beta-fodrin|epididymis luminal protein 102|fodrin beta chain|spectrin beta chain, brain 1|spectrin, non-erythroid beta chain 1 152 0.0208 12.91 1 1 +6712 SPTBN2 spectrin beta, non-erythrocytic 2 11 protein-coding GTRAP41|SCA5|SCAR14 spectrin beta chain, non-erythrocytic 2|beta-III spectrin|glutamate transporter EAAT4-associated protein 41|spectrin beta III sigma 2|spectrin beta chain, brain 2|spectrin, non-erythroid beta chain 2|spinocerebellar ataxia 5 protein 134 0.01834 9.533 1 1 +6713 SQLE squalene epoxidase 8 protein-coding - squalene monooxygenase|SE 32 0.00438 10.1 1 1 +6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase 20 protein-coding ASV|SRC1|THC6|c-SRC|p60-Src proto-oncogene tyrosine-protein kinase Src|proto-oncogene c-Src|protooncogene SRC, Rous sarcoma|tyrosine kinase pp60c-src|tyrosine-protein kinase SRC-1|v-src avian sarcoma (Schmidt-Ruppin A-2) viral oncogene homolog 34 0.004654 10.57 1 1 +6715 SRD5A1 steroid 5 alpha-reductase 1 5 protein-coding S5AR 1 3-oxo-5-alpha-steroid 4-dehydrogenase 1|SR type 1|steroid 5-alpha-reductase type I|steroid-5-alpha-reductase, alpha polypeptide 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1) 20 0.002737 8.407 1 1 +6716 SRD5A2 steroid 5 alpha-reductase 2 2 protein-coding - 3-oxo-5-alpha-steroid 4-dehydrogenase 2|5 alpha-SR2|S5AR 2|SR type 2|steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)|type II 5-alpha reductase 31 0.004243 2.064 1 1 +6717 SRI sorcin 7 protein-coding CP-22|CP22|SCN|V19 sorcin|22 kDa protein|H_RG167B05.1|calcium binding protein amplified in mutlidrug-resistant cells 5 0.0006844 10.85 1 1 +6718 AKR1D1 aldo-keto reductase family 1 member D1 7 protein-coding 3o5bred|CBAS2|SRD5B1 3-oxo-5-beta-steroid 4-dehydrogenase|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) 42 0.005749 1.084 1 1 +6720 SREBF1 sterol regulatory element binding transcription factor 1 17 protein-coding SREBP-1c|SREBP1|SREBP1a|bHLHd1 sterol regulatory element-binding protein 1|class D basic helix-loop-helix protein 1 71 0.009718 11.49 1 1 +6721 SREBF2 sterol regulatory element binding transcription factor 2 22 protein-coding SREBP-2|SREBP2|bHLHd2 sterol regulatory element-binding protein 2|class D basic helix-loop-helix protein 2 67 0.009171 11.76 1 1 +6722 SRF serum response factor 6 protein-coding MCM1 serum response factor|c-fos serum response element-binding transcription factor|minichromosome maintenance 1 homolog|serum response factor (c-fos serum response element-binding transcription factor) 14 0.001916 10.41 1 1 +6723 SRM spermidine synthase 1 protein-coding PAPT|SPDSY|SPS1|SRML1 spermidine synthase|putrescine aminopropyltransferase|spermidine synthase-1 20 0.002737 10.48 1 1 +6725 SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites 20 protein-coding C20orf148|PTK70|SRM|dJ697K14.1 tyrosine-protein kinase Srms 41 0.005612 2.522 1 1 +6726 SRP9 signal recognition particle 9 1 protein-coding ALURBP signal recognition particle 9 kDa protein|signal recognition particle 9kD|signal recognition particle 9kDa 3 0.0004106 12 1 1 +6727 SRP14 signal recognition particle 14 15 protein-coding ALURBP signal recognition particle 14 kDa protein|18 kDa Alu RNA-binding protein|homologous Alu RNA binding protein|signal recognition particle 14kDa (homologous Alu RNA binding protein) 8 0.001095 12.03 1 1 +6728 SRP19 signal recognition particle 19 5 protein-coding - signal recognition particle 19 kDa protein|signal recognition particle 19kD|signal recognition particle 19kDa 18 0.002464 9.3 1 1 +6729 SRP54 signal recognition particle 54 14 protein-coding - signal recognition particle 54 kDa protein|signal recognition particle 54kD|signal recognition particle 54kDa 25 0.003422 10.21 1 1 +6730 SRP68 signal recognition particle 68 17 protein-coding - signal recognition particle subunit SRP68|signal recognition particle 68 kDa protein|signal recognition particle 68kD|signal recognition particle 68kDa 47 0.006433 11.04 1 1 +6731 SRP72 signal recognition particle 72 4 protein-coding BMFF|BMFS1|HEL103 signal recognition particle subunit SRP72|epididymis luminal protein 103|signal recognition particle 72 kDa protein|signal recognition particle 72kD|signal recognition particle 72kDa 48 0.00657 11.13 1 1 +6732 SRPK1 SRSF protein kinase 1 6 protein-coding SFRSK1 SRSF protein kinase 1|SFRS protein kinase 1|SR-protein-specific kinase 1|serine/arginine-rich splicing factor kinase 1|serine/threonine-protein kinase SRPK1 34 0.004654 10.2 1 1 +6733 SRPK2 SRSF protein kinase 2 7 protein-coding SFRSK2 SRSF protein kinase 2|SFRS protein kinase 2|SR protein kinase 2|SR-protein-specific kinase 2|serine kinase SRPK2|serine/arginine-rich protein-specific kinase 2|serine/arginine-rich splicing factor kinase 2|serine/threonine-protein kinase SRPK2 49 0.006707 9.883 1 1 +6734 SRPRA SRP receptor alpha subunit 11 protein-coding DP|SRPR|Sralpha signal recognition particle receptor subunit alpha|DP-alpha|SR-alpha|SRP-alpha|docking protein alpha|signal recognition particle receptor (docking protein) 54 0.007391 11.76 1 1 +6736 SRY sex determining region Y Y protein-coding SRXX1|SRXY1|TDF|TDY sex-determining region Y protein|essential protein for sex determination in human males|sex-determining region on Y|testis-determining factor on Y 7 0.0009581 0.3842 1 1 +6737 TRIM21 tripartite motif containing 21 11 protein-coding RNF81|RO52|Ro/SSA|SSA|SSA1 E3 ubiquitin-protein ligase TRIM21|52 kDa Ro protein|52 kDa ribonucleoprotein autoantigen Ro/SS-A|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 protein 21 38 0.005201 8.728 1 1 +6738 TROVE2 TROVE domain family member 2 1 protein-coding RO60|RORNP|SSA2 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 35 0.004791 10 1 1 +6741 SSB Sjogren syndrome antigen B 2 protein-coding LARP3|La|La/SSB lupus La protein|La ribonucleoprotein domain family, member 3|SS-B|SS-B/La protein|Sjogren syndrome antigen B (autoantigen La)|autoantigen La|la autoantigen|lupus La antigen|sjoegren syndrome type B antigen 16 0.00219 10.98 1 1 +6742 SSBP1 single stranded DNA binding protein 1 7 protein-coding Mt-SSB|SOSS-B1|SSBP|mtSSB single-stranded DNA-binding protein, mitochondrial|PWP1-interacting protein 17|single-stranded DNA binding protein 1, mitochondrial 14 0.001916 10.24 1 1 +6744 SSFA2 sperm specific antigen 2 2 protein-coding CS-1|CS1|KRAP|SPAG13 sperm-specific antigen 2|KRAS-induced actin-interacting protein|cleavage signal-1 protein|ki-ras-induced actin-interacting protein|sperm associated antigen 13 80 0.01095 11.12 1 1 +6745 SSR1 signal sequence receptor subunit 1 6 protein-coding TRAPA translocon-associated protein subunit alpha|SSR alpha subunit|SSR-alpha|TRAP alpha|signal sequence receptor subunit alpha|signal sequence receptor, alpha|translocon-associated protein alpha subunit 15 0.002053 11.89 1 1 +6746 SSR2 signal sequence receptor subunit 2 1 protein-coding HSD25|TLAP|TRAP-BETA|TRAPB translocon-associated protein subunit beta|SSR-beta|signal sequence receptor subunit beta|signal sequence receptor, beta (translocon-associated protein beta)|translocon-associated protein beta 12 0.001642 12.3 1 1 +6747 SSR3 signal sequence receptor subunit 3 3 protein-coding TRAPG translocon-associated protein subunit gamma|SSR gamma|TRAP-complex gamma subunit|TRAP-gamma|signal sequence receptor subunit gamma|signal sequence receptor, gamma (translocon-associated protein gamma)|translocon-associated protein gamma subunit 12 0.001642 11.61 1 1 +6748 SSR4 signal sequence receptor subunit 4 X protein-coding CDG1Y|TRAPD translocon-associated protein subunit delta|SSR-delta|TRAP-delta|signal sequence receptor, delta 12 0.001642 11.72 1 1 +6749 SSRP1 structure specific recognition protein 1 11 protein-coding FACT|FACT80|T160 FACT complex subunit SSRP1|FACT 80 kDa subunit|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 43 0.005886 11.84 1 1 +6750 SST somatostatin 3 protein-coding SMST somatostatin|growth hormone release-inhibiting factor|prepro-somatostatin|somatostatin-14|somatostatin-28 10 0.001369 2.249 1 1 +6751 SSTR1 somatostatin receptor 1 14 protein-coding SRIF-2|SS-1-R|SS1-R|SS1R somatostatin receptor type 1 45 0.006159 4.405 1 1 +6752 SSTR2 somatostatin receptor 2 17 protein-coding - somatostatin receptor type 2|SRIF-1|SS2R 24 0.003285 5.075 1 1 +6753 SSTR3 somatostatin receptor 3 22 protein-coding SS-3-R|SS3-R|SS3R|SSR-28 somatostatin receptor type 3 52 0.007117 1.324 1 1 +6754 SSTR4 somatostatin receptor 4 20 protein-coding SS-4-R|SS4-R|SS4R somatostatin receptor type 4|G-protein coupled receptor 66 0.009034 0.192 1 1 +6755 SSTR5 somatostatin receptor 5 16 protein-coding SS-5-R somatostatin receptor type 5|somatostatin receptor subtype 5 27 0.003696 1.469 1 1 +6756 SSX1 SSX family member 1 X protein-coding CT5.1|SSRC protein SSX1|cancer/testis antigen 5.1|cancer/testis antigen family 5, member 1|sarcoma, synovial, X-chromosome-related 1|synovial sarcoma, X breakpoint 1 21 0.002874 1.05 1 1 +6757 SSX2 SSX family member 2 X protein-coding CT5.2|CT5.2A|HD21|HOM-MEL-40|SSX protein SSX2|cancer/testis antigen 5.2|cancer/testis antigen family 5, member 2a|sarcoma, synovial, X-chromosome-related 2|synovial sarcoma, X breakpoint 2|synovial sarcoma, X breakpoint 2B|tumor antigen HOM-MEL-40 0.8205 0 1 +6758 SSX5 SSX family member 5 X protein-coding - protein SSX5|synovial sarcoma, X breakpoint 5 28 0.003832 0.4577 1 1 +6759 SSX4 SSX family member 4 X protein-coding CT5.4 protein SSX4|cancer/testis antigen 5.4|synovial sarcoma, X breakpoint 4 2 0.0002737 0.6333 1 1 +6760 SS18 SS18, nBAF chromatin remodeling complex subunit 18 protein-coding SSXT|SYT protein SSXT|synovial sarcoma translocated to X chromosome protein|synovial sarcoma translocation, chromosome 18|synovial sarcoma, translocated to X chromosome 32 0.00438 10.7 1 1 +6764 ST5 suppression of tumorigenicity 5 11 protein-coding DENND2B|HTS1|p126 suppression of tumorigenicity 5 protein|DENN/MADD domain containing 2B|heLa tumor suppression 1 75 0.01027 10.51 1 1 +6767 ST13 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) 22 protein-coding AAG2|FAM10A1|FAM10A4|HIP|HOP|HSPABP|HSPABP1|P48|PRO0786|SNC6 hsc70-interacting protein|Hsp70-interacting protein|aging-associated protein 2|heat shock 70kD protein binding protein|progesterone receptor-associated p48 protein|putative tumor suppressor ST13|renal carcinoma antigen NY-REN-33|suppression of tumorigenicity 13 protein|testis secretory sperm-binding protein Li 233m 24 0.003285 12.11 1 1 +6768 ST14 suppression of tumorigenicity 14 11 protein-coding ARCI11|HAI|MT-SP1|MTSP1|PRSS14|SNC19|TADG15|TMPRSS14 suppressor of tumorigenicity 14 protein|membrane-type serine protease 1|prostamin|serine protease 14|serine protease TADG-15|suppression of tumorigenicity 14 (colon carcinoma)|suppression of tumorigenicity 14 (colon carcinoma, matriptase, epithin)|tumor associated differentially expressed gene 15 protein 47 0.006433 10.93 1 1 +6769 STAC SH3 and cysteine rich domain 3 protein-coding STAC1 SH3 and cysteine-rich domain-containing protein|SRC homology 3 and cysteine-rich domain-containing protein 57 0.007802 4.692 1 1 +6770 STAR steroidogenic acute regulatory protein 8 protein-coding STARD1 steroidogenic acute regulatory protein, mitochondrial|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|testis secretory sperm-binding protein Li 241mP 19 0.002601 3.602 1 1 +6772 STAT1 signal transducer and activator of transcription 1 2 protein-coding CANDF7|IMD31A|IMD31B|IMD31C|ISGF-3|STAT91 signal transducer and activator of transcription 1-alpha/beta|signal transducer and activator of transcription 1, 91kD|signal transducer and activator of transcription 1, 91kDa|transcription factor ISGF-3 components p91/p84 74 0.01013 12.23 1 1 +6773 STAT2 signal transducer and activator of transcription 2 12 protein-coding IMD44|ISGF-3|P113|STAT113 signal transducer and activator of transcription 2|interferon alpha induced transcriptional activator|signal transducer and activator of transcription 2, 113kDa 65 0.008897 10.99 1 1 +6774 STAT3 signal transducer and activator of transcription 3 17 protein-coding ADMIO|ADMIO1|APRF|HIES signal transducer and activator of transcription 3|DNA-binding protein APRF|acute-phase response factor|signal transducer and activator of transcription 3 (acute-phase response factor) 62 0.008486 12.22 1 1 +6775 STAT4 signal transducer and activator of transcription 4 2 protein-coding SLEB11 signal transducer and activator of transcription 4 67 0.009171 5.477 1 1 +6776 STAT5A signal transducer and activator of transcription 5A 17 protein-coding MGF|STAT5 signal transducer and activator of transcription 5A 40 0.005475 9.498 1 1 +6777 STAT5B signal transducer and activator of transcription 5B 17 protein-coding STAT5 signal transducer and activator of transcription 5B|transcription factor STAT5B 57 0.007802 10.57 1 1 +6778 STAT6 signal transducer and activator of transcription 6 12 protein-coding D12S1644|IL-4-STAT|STAT6B|STAT6C signal transducer and activator of transcription 6|STAT, interleukin4-induced|signal transducer and activator of transcription 6, interleukin-4 induced|transcription factor IL-4 STAT 62 0.008486 11.58 1 1 +6779 STATH statherin 4 protein-coding STR statherin 6 0.0008212 0.267 1 1 +6780 STAU1 staufen double-stranded RNA binding protein 1 20 protein-coding PPP1R150|STAU double-stranded RNA-binding protein Staufen homolog 1|protein phosphatase 1, regulatory subunit 150|staufen, RNA binding protein, homolog 1 46 0.006296 11.71 1 1 +6781 STC1 stanniocalcin 1 8 protein-coding STC stanniocalcin-1 24 0.003285 8.444 1 1 +6782 HSPA13 heat shock protein family A (Hsp70) member 13 21 protein-coding STCH heat shock 70 kDa protein 13|heat shock protein 70kDa family, member 13|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|testis secretory sperm-binding protein Li 199a 41 0.005612 9.659 1 1 +6783 SULT1E1 sulfotransferase family 1E member 1 4 protein-coding EST|EST-1|ST1E1|STE estrogen sulfotransferase|estrone sulfotransferase|sulfotransferase 1E1|sulfotransferase family 1E, estrogen-preferring, member 1|sulfotransferase, estrogen-preferring 38 0.005201 2.315 1 1 +6785 ELOVL4 ELOVL fatty acid elongase 4 6 protein-coding ADMD|CT118|ISQMR|SCA34|STGD2|STGD3 elongation of very long chain fatty acids protein 4|3-keto acyl-CoA synthase ELOVL4|ELOVL FA elongase 4|cancer/testis antigen 118|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 4|very long chain 3-ketoacyl-CoA synthase 4|very long chain 3-oxoacyl-CoA synthase 4 25 0.003422 5.658 1 1 +6786 STIM1 stromal interaction molecule 1 11 protein-coding D11S4896E|GOK|IMD10|STRMK|TAM|TAM1 stromal interaction molecule 1 43 0.005886 10.61 1 1 +6787 NEK4 NIMA related kinase 4 3 protein-coding NRK2|STK2|pp12301 serine/threonine-protein kinase Nek4|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 NRK2|serine/threonine-protein kinase Nek4 variant 2 43 0.005886 8.734 1 1 +6788 STK3 serine/threonine kinase 3 8 protein-coding KRS1|MST2 serine/threonine-protein kinase 3|KB-1458E12.1|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 Krs-1 44 0.006022 8.813 1 1 +6789 STK4 serine/threonine kinase 4 20 protein-coding KRS2|MST1|YSK3 serine/threonine-protein kinase 4|STE20-like kinase MST1|kinase responsive to stress 2|mammalian STE20-like protein kinase 1|mammalian sterile 20-like 1|serine/threonine-protein kinase Krs-2 35 0.004791 9.916 1 1 +6790 AURKA aurora kinase A 20 protein-coding AIK|ARK1|AURA|BTAK|PPP1R47|STK15|STK6|STK7 aurora kinase A|aurora 2|aurora/IPL1-like kinase|aurora/IPL1-related kinase 1|breast tumor-amplified kinase|protein phosphatase 1, regulatory subunit 47|serine/threonine protein kinase 15|serine/threonine-protein kinase 6|serine/threonine-protein kinase aurora-A 23 0.003148 8.229 1 1 +6791 AURKAPS1 aurora kinase A pseudogene 1 1 pseudo AurAps1|STK6P serine/threonine kinase 6 pseudogene 1 0.0001369 3.547 1 1 +6792 CDKL5 cyclin dependent kinase like 5 X protein-coding CFAP247|EIEE2|ISSX|STK9 cyclin-dependent kinase-like 5|cyclin dependent kinase 5 transcript|serine/threonine kinase 9|serine/threonine-protein kinase 9 68 0.009307 4.541 1 1 +6793 STK10 serine/threonine kinase 10 5 protein-coding LOK|PRO2729 serine/threonine-protein kinase 10|lymphocyte-oriented kinase 62 0.008486 9.55 1 1 +6794 STK11 serine/threonine kinase 11 19 protein-coding LKB1|PJS|hLKB1 serine/threonine-protein kinase STK11|liver kinase B1|polarization-related protein LKB1|renal carcinoma antigen NY-REN-19|serine/threonine-protein kinase 11|serine/threonine-protein kinase LKB1 112 0.01533 10.15 1 1 +6795 AURKC aurora kinase C 19 protein-coding AIE2|AIK3|ARK3|AurC|HEL-S-90|SPGF5|STK13|aurora-C aurora kinase C|ARK-3|aurora 3|aurora-related kinase 3|aurora/IPL1-related kinase 3|aurora/IPL1/EG2 protein 2|epididymis secretory protein Li 90|serine/threonine kinase 13 (aurora/IPL1-like)|serine/threonine-protein kinase 13|serine/threonine-protein kinase aurora-C 40 0.005475 3.56 1 1 +6799 SULT1A2 sulfotransferase family 1A member 2 16 protein-coding HAST4|P-PST|ST1A2|STP2|TSPST2 sulfotransferase 1A2|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 family, cytosolic, 1A, phenol-preferring, member 2|thermostable phenol sulfotransferase 22 0.003011 4.327 1 1 +6801 STRN striatin 2 protein-coding PPP2R6A|SG2NA striatin|protein phosphatase 2 regulatory subunit B'''alpha|striatin, calmodulin binding protein 60 0.008212 7.805 1 1 +6804 STX1A syntaxin 1A 7 protein-coding HPC-1|P35-1|STX1|SYN1A syntaxin-1A|neuron-specific antigen HPC-1|syntaxin 1A (brain) 21 0.002874 7.025 1 1 +6809 STX3 syntaxin 3 11 protein-coding STX3A syntaxin-3|syntaxin 3A 20 0.002737 9.516 1 1 +6810 STX4 syntaxin 4 16 protein-coding STX4A|p35-2 syntaxin-4|renal carcinoma antigen NY-REN-31|syntaxin 4A (placental) 26 0.003559 9.719 1 1 +6811 STX5 syntaxin 5 11 protein-coding SED5|STX5A syntaxin-5|syntaxin 5A 20 0.002737 10.02 1 1 +6812 STXBP1 syntaxin binding protein 1 9 protein-coding MUNC18-1|NSEC1|P67|RBSEC1|UNC18 syntaxin-binding protein 1|N-Sec1|neuronal SEC1|protein unc-18 homolog 1|protein unc-18 homolog A|unc-18A|unc18-1 44 0.006022 9.571 1 1 +6813 STXBP2 syntaxin binding protein 2 19 protein-coding FHL5|Hunc18b|MUNC18-2|UNC18-2|UNC18B|pp10122 syntaxin-binding protein 2|protein unc-18 homolog B|unc-18B 34 0.004654 10.32 1 1 +6814 STXBP3 syntaxin binding protein 3 1 protein-coding MUNC18-3|MUNC18C|PSP|UNC-18C syntaxin-binding protein 3|platelet Sec1 protein|protein unc-18 homolog 3|protein unc-18 homolog C|syntaxin 4 binding protein|unc18-3 46 0.006296 9.66 1 1 +6815 STYX serine/threonine/tyrosine interacting protein 14 protein-coding - serine/threonine/tyrosine-interacting protein|protein tyrosine phosphatase-like protein 14 0.001916 8.822 1 1 +6817 SULT1A1 sulfotransferase family 1A member 1 16 protein-coding HAST1/HAST2|P-PST|PST|ST1A1|ST1A3|STP|STP1|TSPST1 sulfotransferase 1A1|P-PST 1|aryl sulfotransferase 1|phenol-sulfating phenol sulfotransferase 1|sulfotransferase family, cytosolic, 1A, phenol-preferring, member 1|thermostable phenol sulfotransferase1|ts-PST 29 0.003969 8.278 1 1 +6818 SULT1A3 sulfotransferase family 1A member 3 16 protein-coding HAST|HAST3|M-PST|ST1A3|ST1A3/ST1A4|ST1A5|STM|TL-PST sulfotransferase 1A3|aryl sulfotransferase 1A3/1A4|catecholamine-sulfating phenol sulfotransferase|dopamine-specific sulfotransferase|monoamine-sulfating phenosulfotransferase|phenol sulfotransferase 1A5|placental estrogen sulfotransferase|sulfokinase|sulfotransferase family, cytosolic, 1A, phenol-preferring, member 3|thermolabile (monoamine, M form) phenol sulfotransferase 1 0.0001369 9.256 1 1 +6819 SULT1C2 sulfotransferase family 1C member 2 2 protein-coding ST1C1|ST1C2|SULT1C1|humSULTC2 sulfotransferase 1C2|SULT1C#1|sulfotransferase 1C1|sulfotransferase family, cytosolic, 1C, member 1|sulfotransferase family, cytosolic, 1C, member 2 27 0.003696 4.712 1 1 +6820 SULT2B1 sulfotransferase family 2B member 1 19 protein-coding HSST2 sulfotransferase family cytosolic 2B member 1|ST2B1|alcohol sulfotransferase|hydroxysteroid sulfotransferase 2|sulfotransferase 2B1|sulfotransferase family, cytosolic, 2B, member 1 19 0.002601 5.779 1 1 +6821 SUOX sulfite oxidase 12 protein-coding - sulfite oxidase, mitochondrial 39 0.005338 9.274 1 1 +6822 SULT2A1 sulfotransferase family 2A member 1 19 protein-coding DHEA-ST|DHEAS|HST|ST2|ST2A1|ST2A3|STD|hSTa bile salt sulfotransferase|alcohol/hydroxysteroid sulfotransferase|bile-salt sulfotranasferase 2A1|sulfotransferase family, cytosolic, 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 26 0.003559 1.332 1 1 +6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit 17 protein-coding SPT4|SPT4H|SUPT4H|Supt4a transcription elongation factor SPT4|DRB sensitivity-inducing factor 14 kDa subunit|DSIF p14|small hSpt4 subunit|suppressor of Ty 4 homolog 1 6 0.0008212 10.41 1 1 +6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit 19 protein-coding SPT5|SPT5H|Tat-CT1 transcription elongation factor SPT5|DRB sensitivity-inducing factor 160 kDa subunit|DRB sensitivity-inducing factor large subunit|DSIF large subunit|DSIF p160|Tat-cotransactivator 1 protein|hSPT5|suppressor of Ty 5 homolog 78 0.01068 11.71 1 1 +6830 SUPT6H SPT6 homolog, histone chaperone 17 protein-coding SPT6|SPT6H|emb-5 transcription elongation factor SPT6|histone chaperone suppressor of Ty6|suppressor of Ty 6 homolog|tat-CT2 protein|tat-cotransactivator 2 protein 129 0.01766 11.54 1 1 +6832 SUPV3L1 Suv3 like RNA helicase 10 protein-coding SUV3 ATP-dependent RNA helicase SUPV3L1, mitochondrial|SUV3-like helicase|SUV3-like protein 1|suppressor of var1, 3-like 1|suppressor of var1, 3-like 1(SUV3) 29 0.003969 9.08 1 1 +6833 ABCC8 ATP binding cassette subfamily C member 8 11 protein-coding ABC36|HHF1|HI|HRINS|MRP8|PHHI|SUR|SUR1|SUR1delta2|TNDM2 ATP-binding cassette sub-family C member 8|ATP-binding cassette transporter sub-family C member 8|ATP-binding cassette, sub-family C (CFTR/MRP), member 8|sulfonylurea receptor (hyperinsulinemia)|sulfonylurea receptor 1 130 0.01779 3.302 1 1 +6834 SURF1 SURF1, cytochrome c oxidase assembly factor 9 protein-coding CMT4K surfeit locus protein 1|surfeit 1 9 0.001232 9.674 1 1 +6835 SURF2 surfeit 2 9 protein-coding SURF-2 surfeit locus protein 2 16 0.00219 8.298 1 1 +6836 SURF4 surfeit 4 9 protein-coding ERV29 surfeit locus protein 4|surface 4 integral membrane protein 16 0.00219 12.49 1 1 +6837 MED22 mediator complex subunit 22 9 protein-coding MED24|SURF5|surf-5 mediator of RNA polymerase II transcription subunit 22|surfeit locus protein 5 20 0.002737 9.604 1 1 +6838 SURF6 surfeit 6 9 protein-coding RRP14 surfeit locus protein 6 22 0.003011 9.674 1 1 +6839 SUV39H1 suppressor of variegation 3-9 homolog 1 X protein-coding H3-K9-HMTase 1|KMT1A|MG44|SUV39H histone-lysine N-methyltransferase SUV39H1|Su(var)3-9 homolog 1|histone H3-K9 methyltransferase 1|histone-lysine N-methyltransferase, H3 lysine-9 specific 1|lysine N-methyltransferase 1A|position-effect variegation 3-9 homolog 31 0.004243 8.223 1 1 +6840 SVIL supervillin 10 protein-coding - supervillin|archvillin|membrane-associated F-actin binding protein p205|p205/p250 178 0.02436 10.43 1 1 +6843 VAMP1 vesicle associated membrane protein 1 12 protein-coding SPAX1|SYB1|VAMP-1 vesicle-associated membrane protein 1|vesicle-associated membrane protein 1 (synaptobrevin 1) 10 0.001369 7.494 1 1 +6844 VAMP2 vesicle associated membrane protein 2 17 protein-coding SYB2|VAMP-2 vesicle-associated membrane protein 2|synaptobrevin 2|vesicle-associated membrane protein 2 (synaptobrevin 2) 6 0.0008212 10.62 1 1 +6845 VAMP7 vesicle associated membrane protein 7 X|Y protein-coding SYBL1|TI-VAMP|TIVAMP|VAMP-7 vesicle-associated membrane protein 7|synaptobrevin-like 1|synaptobrevin-like protein 1|tetanus neurotoxin-insensitive VAMP|tetanus-insensitive VAMP 9.945 0 1 +6846 XCL2 X-C motif chemokine ligand 2 1 protein-coding SCM-1b|SCM1B|SCYC2 cytokine SCM-1 beta|XC chemokine ligand 2|c motif chemokine 2|chemokine (C motif) ligand 2|small inducible cytokine subfamily C, member 2 13 0.001779 2.892 1 1 +6847 SYCP1 synaptonemal complex protein 1 1 protein-coding CT8|HOM-TES-14|SCP-1|SCP1 synaptonemal complex protein 1|cancer/testis antigen 8|testicular tissue protein Li 191 110 0.01506 0.2311 1 1 +6850 SYK spleen associated tyrosine kinase 9 protein-coding p72-Syk tyrosine-protein kinase SYK|spleen tyrosine kinase 52 0.007117 9.534 1 1 +6853 SYN1 synapsin I X protein-coding SYN1a|SYN1b|SYNI synapsin-1|brain protein 4.1|synapsin Ib 33 0.004517 5.575 1 1 +6854 SYN2 synapsin II 3 protein-coding SYNII synapsin-2 69 0.009444 3.83 1 1 +6855 SYP synaptophysin X protein-coding MRX96|MRXSYP synaptophysin|major synaptic vesicle protein P38 21 0.002874 6.12 1 1 +6856 SYPL1 synaptophysin like 1 7 protein-coding H-SP1|SYPL synaptophysin-like protein 1|pantophysin 15 0.002053 11.41 1 1 +6857 SYT1 synaptotagmin 1 12 protein-coding P65|SVP65|SYT synaptotagmin-1|synaptotagmin I|sytI 51 0.006981 6.214 1 1 +6860 SYT4 synaptotagmin 4 18 protein-coding HsT1192 synaptotagmin-4|synaptotagmin IV|sytIV 73 0.009992 2.102 1 1 +6861 SYT5 synaptotagmin 5 19 protein-coding - synaptotagmin-5|synaptotagmin V|sytV 40 0.005475 2.952 1 1 +6862 T T brachyury transcription factor 6 protein-coding SAVA|TFT brachyury protein|T, brachyury homolog|protein T 60 0.008212 0.584 1 1 +6863 TAC1 tachykinin precursor 1 7 protein-coding Hs.2563|NK2|NKNA|NPK|TAC2 protachykinin-1|PPT|neurokinin 1|neurokinin 2|neurokinin A|neurokinin alpha|neuromedin L|neuropeptide K|neuropeptide gamma|preprotachykinin|protachykinin|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) 13 0.001779 1.751 1 1 +6865 TACR2 tachykinin receptor 2 10 protein-coding NK2R|NKNAR|SKR|TAC2R substance-K receptor|NK-2 receptor|NK-2R|neurokinin 2 receptor|neurokinin A receptor|seven transmembrane helix receptor 28 0.003832 3.945 1 1 +6866 TAC3 tachykinin 3 12 protein-coding HH10|NKB|NKNB|PRO1155|ZNEUROK1 tachykinin-3|gamma tachykinin 3|neurokinin b|neuromedin K|preprotachykinin B 11 0.001506 1.512 1 1 +6867 TACC1 transforming acidic coiled-coil containing protein 1 8 protein-coding Ga55 transforming acidic coiled-coil-containing protein 1|gastric cancer antigen Ga55|taxin-1 43 0.005886 10.86 1 1 +6868 ADAM17 ADAM metallopeptidase domain 17 2 protein-coding ADAM18|CD156B|CSVP|NISBD|NISBD1|TACE disintegrin and metalloproteinase domain-containing protein 17|ADAM metallopeptidase domain 18|TNF-alpha convertase|TNF-alpha converting enzyme|snake venom-like protease|tumor necrosis factor, alpha, converting enzyme 51 0.006981 9.137 1 1 +6869 TACR1 tachykinin receptor 1 2 protein-coding NK1R|NKIR|SPR|TAC1R substance-P receptor|NK-1 receptor|NK-1R|tachykinin receptor 1 (substance P receptor; neurokinin-1 receptor) 36 0.004927 4.01 1 1 +6870 TACR3 tachykinin receptor 3 4 protein-coding HH11|NK-3R|NK3R|NKR|TAC3RL neuromedin-K receptor|NK-3 receptor|neurokinin B receptor|neurokinin beta receptor 75 0.01027 0.3127 1 1 +6871 TADA2A transcriptional adaptor 2A 17 protein-coding ADA2|ADA2A|KL04P|TADA2L|hADA2 transcriptional adapter 2-alpha|ADA2-like protein|transcriptional adaptor 2 alpha 31 0.004243 7.476 1 1 +6872 TAF1 TATA-box binding protein associated factor 1 X protein-coding BA2R|CCG1|CCGS|DYT3|DYT3/TAF1|KAT4|MRXS33|N-TAF1|NSCL2|OF|P250|TAF(II)250|TAF2A|TAFII-250|TAFII250|XDP transcription initiation factor TFIID subunit 1|TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 250kDa|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 127 0.01738 9.712 1 1 +6873 TAF2 TATA-box binding protein associated factor 2 8 protein-coding CIF150|MRT40|TAF2B|TAFII150 transcription initiation factor TFIID subunit 2|150 kDa cofactor of initiator function|RNA polymerase II TBP-associated factor subunit B|TAF(II)150|TAF2 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 150kDa|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 87 0.01191 9.395 1 1 +6874 TAF4 TATA-box binding protein associated factor 4 20 protein-coding TAF2C|TAF2C1|TAF4A|TAFII130|TAFII135 transcription initiation factor TFIID subunit 4|RNA polymerase II TBP-associated factor subunit C|TAF(II)130|TAF(II)135|TAF4 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135kDa|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 67 0.009171 8.876 1 1 +6875 TAF4B TATA-box binding protein associated factor 4b 18 protein-coding SPGF13|TAF2C2|TAFII105 transcription initiation factor TFIID subunit 4B|TAF(II)105|TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa|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 kDa subunit 52 0.007117 6.867 1 1 +6876 TAGLN transgelin 11 protein-coding SM22|SMCC|TAGLN1|WS3-10 transgelin|22 kDa actin-binding protein|SM22-alpha|smooth muscle protein 22-alpha|transgelin variant 2 7 0.0009581 11.73 1 1 +6877 TAF5 TATA-box binding protein associated factor 5 10 protein-coding TAF(II)100|TAF2D|TAFII-100|TAFII100 transcription initiation factor TFIID subunit 5|TAF5 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 100kDa|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 39 0.005338 6.77 1 1 +6878 TAF6 TATA-box binding protein associated factor 6 7 protein-coding ALYUS|MGC:8964|TAF(II)70|TAF(II)80|TAF2E|TAFII-70|TAFII-80|TAFII70|TAFII80|TAFII85 transcription initiation factor TFIID subunit 6|RNA polymerase II TBP-associated factor subunit E|TAF6 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 80kDa|TATA box binding protein (TBP)-associated factor, RNA polymerase II, E, 70/85kD|transcription initiation factor TFIID 70 kDa subunit 52 0.007117 10.47 1 1 +6879 TAF7 TATA-box binding protein associated factor 7 5 protein-coding TAF2F|TAFII55 transcription initiation factor TFIID subunit 7|RNA polymerase II TBP-associated factor subunit F|TAF(II)55|TAF7 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 55kDa|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 21 0.002874 11.3 1 1 +6880 TAF9 TATA-box binding protein associated factor 9 5 protein-coding MGC:5067|STAF31/32|TAF2G|TAFII-31|TAFII-32|TAFII31|TAFII32|TAFIID32 transcription initiation factor TFIID subunit 9|RNA polymerase II TBP-associated factor subunit G|TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa|transcription initiation factor TFIID 31 kD subunit|transcription initiation factor TFIID 31 kDa subunit|transcription initiation factor TFIID 32 kDa subunit 21 0.002874 10.2 1 1 +6881 TAF10 TATA-box binding protein associated factor 10 11 protein-coding TAF2A|TAF2H|TAFII30 transcription initiation factor TFIID subunit 10|STAF28|TAF(II)30|TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa|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 13 0.001779 9.894 1 1 +6882 TAF11 TATA-box binding protein associated factor 11 6 protein-coding MGC:15243|PRO2134|TAF2I|TAFII28 transcription initiation factor TFIID subunit 11|TAF(II)28|TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa|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 19 0.002601 9.207 1 1 +6883 TAF12 TATA-box binding protein associated factor 12 1 protein-coding TAF2J|TAFII20 transcription initiation factor TFIID subunit 12|TAF12 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 20kDa|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 4 0.0005475 8.71 1 1 +6884 TAF13 TATA-box binding protein associated factor 13 1 protein-coding TAF(II)18|TAF2K|TAFII-18|TAFII18 transcription initiation factor TFIID subunit 13|TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa|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 9 0.001232 7.182 1 1 +6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 6 protein-coding MEKK7|TAK1|TGF1a mitogen-activated protein kinase kinase kinase 7|TGF-beta activated kinase 1|transforming growth factor-beta-activated kinase 1 57 0.007802 9.264 1 1 +6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor 1 protein-coding SCL|TCL5|bHLHa17|tal-1 T-cell acute lymphocytic leukemia protein 1|T-cell acute lymphocytic leukemia 1|T-cell leukemia/lymphoma protein 5|class A basic helix-loop-helix protein 17|stem cell protein|tal-1 product 28 0.003832 5.367 1 1 +6887 TAL2 TAL bHLH transcription factor 2 9 protein-coding - T-cell acute lymphocytic leukemia protein 2|T-cell acute lymphocytic leukemia 2|TAL-2|class A basic helix-loop-helix protein 19 7 0.0009581 1.156 1 1 +6888 TALDO1 transaldolase 1 11 protein-coding TAL|TAL-H|TALDOR|TALH transaldolase|dihydroxyacetone transferase|glycerone transferase|testicular secretory protein Li 56 22 0.003011 11.8 1 1 +6890 TAP1 transporter 1, ATP binding cassette subfamily B member 6 protein-coding ABC17|ABCB2|APT1|D6S114E|PSF-1|PSF1|RING4|TAP1*0102N|TAP1N antigen peptide transporter 1|ABC transporter, MHC 1|ATP-binding cassette sub-family B member 2|ATP-binding cassette, sub-family B (MDR/TAP), member 2|peptide supply factor 1|peptide transporter PSF1|peptide transporter TAP1|peptide transporter involved in antigen processing 1|really interesting new gene 4 protein|transporter 1 ATP-binding cassette sub-family B|transporter 1, ATP-binding cassette, sub-family B (MDR/TAP)|transporter associated with antigen processing|transporter, ATP-binding cassette, major histocompatibility complex, 1 41 0.005612 11.43 1 1 +6891 TAP2 transporter 2, ATP binding cassette subfamily B member 6 protein-coding ABC18|ABCB3|APT2|D6S217E|PSF-2|PSF2|RING11 antigen peptide transporter 2|ABC transporter, MHC 2|ATP-binding cassette, sub-family B (MDR/TAP), member 3|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)|transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) 43 0.005886 10.63 1 1 +6892 TAPBP TAP binding protein 6 protein-coding NGS17|TAPA|TPN|TPSN tapasin|NGS-17|TAP binding protein (tapasin)|TAP-associated protein 37 0.005064 12.44 1 1 +6894 TARBP1 TAR (HIV-1) RNA binding protein 1 1 protein-coding TRM3|TRP-185|TRP185 probable methyltransferase TARBP1|TAR (HIV) RNA-binding protein 1|TAR RNA loop binding protein|TAR RNA-binding protein 1|TAR RNA-binding protein of 185 kDa|tRNA methyltransferase 3 homolog 101 0.01382 9.264 1 1 +6895 TARBP2 TARBP2, RISC loading complex RNA binding subunit 12 protein-coding LOQS|TRBP|TRBP1|TRBP2 RISC-loading complex subunit TARBP2|TAR (HIV) RNA-binding protein 2|TAR (HIV) RNA-binding protein TRBP1|TAR (HIV-1) RNA binding protein 2|TAR RNA binding protein 2|trans-activation responsive RNA-binding protein 34 0.004654 8.952 1 1 +6897 TARS threonyl-tRNA synthetase 5 protein-coding ThrRS threonine--tRNA ligase, cytoplasmic|threonine tRNA ligase 1, cytoplasmic|threonyl-tRNA synthetase, cytoplasmic 67 0.009171 10.92 1 1 +6898 TAT tyrosine aminotransferase 16 protein-coding - tyrosine aminotransferase|L-tyrosine:2-oxoglutarate aminotransferase|testis tissue sperm-binding protein Li 34a|tyrosine aminotransferase, cytosolic 43 0.005886 2.257 1 1 +6899 TBX1 T-box 1 22 protein-coding CAFS|CATCH22|CTHM|DGCR|DGS|DORV|TBX1C|TGA|VCF|VCFS T-box transcription factor TBX1|T-box 1 transcription factor C|Testis-specific T-box protein|brachyury 21 0.002874 4.79 1 1 +6900 CNTN2 contactin 2 1 protein-coding AXT|FAME5|TAG-1|TAX|TAX1 contactin-2|axonal glycoprotein TAG-1|axonin-1 cell adhesion molecule|contactin 2 (axonal)|contactin 2 (transiently expressed)|transient axonal glycoprotein 1 86 0.01177 3.023 1 1 +6901 TAZ tafazzin X protein-coding BTHS|CMD3A|EFE|EFE2|G4.5|LVNCX|Taz1 tafazzin|protein G4.5 27 0.003696 8.732 1 1 +6902 TBCA tubulin folding cofactor A 5 protein-coding - tubulin-specific chaperone A|CFA|TCP1-chaperonin cofactor A|chaperonin cofactor A 9 0.001232 10.41 1 1 +6903 TBCC tubulin folding cofactor C 6 protein-coding CFC tubulin-specific chaperone C 21 0.002874 9 1 1 +6904 TBCD tubulin folding cofactor D 17 protein-coding SSD-1|tfcD tubulin-specific chaperone D|beta-tubulin cofactor D 78 0.01068 10.87 1 1 +6905 TBCE tubulin folding cofactor E 1 protein-coding HRD|KCS|KCS1|pac2 tubulin-specific chaperone E|hypoparathyroidism, growth and mental retardation, and dysmorphism 29 0.003969 8.697 1 1 +6906 SERPINA7 serpin family A member 7 X protein-coding TBG|TBGQTL thyroxine-binding globulin|T4-binding globulin|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7|serpin A7|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7|thyroxin-binding globulin 51 0.006981 0.9718 1 1 +6907 TBL1X transducin beta like 1X-linked X protein-coding EBI|SMAP55|TBL1 F-box-like/WD repeat-containing protein TBL1X|transducin beta-like protein 1X|transducin-beta-like protein 1, X-linked 39 0.005338 9.765 1 1 +6908 TBP TATA-box binding protein 6 protein-coding GTF2D|GTF2D1|HDL4|SCA17|TFIID TATA-box-binding protein|TATA sequence-binding protein|TATA-box binding protein N-terminal domain|TATA-box factor|transcription initiation factor TFIID TBP subunit 136 0.01861 8.071 1 1 +6909 TBX2 T-box 2 17 protein-coding - T-box transcription factor TBX2|T-box protein 2 42 0.005749 8.323 1 1 +6910 TBX5 T-box 5 12 protein-coding HOS T-box transcription factor TBX5|T-box protein 5 99 0.01355 3.131 1 1 +6911 TBX6 T-box 6 16 protein-coding SCDO5 T-box transcription factor TBX6|T-box protein 6 38 0.005201 5.453 1 1 +6913 TBX15 T-box 15 1 protein-coding TBX14 T-box transcription factor TBX15|T-box 14|T-box protein 14|T-box protein 15|T-box transcription factor TBX14 50 0.006844 5.408 1 1 +6915 TBXA2R thromboxane A2 receptor 19 protein-coding BDPLT13|TXA2-R thromboxane A2 receptor|prostanoid TP receptor 28 0.003832 5.707 1 1 +6916 TBXAS1 thromboxane A synthase 1 7 protein-coding BDPLT14|CYP5|CYP5A1|GHOSAL|THAS|TS|TXAS|TXS thromboxane-A synthase|TXA synthase|cytochrome P450 5A1|cytochrome P450, family 5, subfamily A, polypeptide 1|platelet, cytochrome P450, subfamily V|thromboxane A synthase 1 (platelet) 54 0.007391 7.755 1 1 +6917 TCEA1 transcription elongation factor A1 8 protein-coding GTF2S|SII|TCEA|TF2S|TFIIS transcription elongation factor A protein 1|transcription elongation factor A (SII), 1|transcription elongation factor S-II protein 1|transcription elongation factor TFIIS.o|transcription factor IIS 18 0.002464 10.53 1 1 +6919 TCEA2 transcription elongation factor A2 20 protein-coding TFIIS transcription elongation factor A protein 2|testis-specific S-II|transcription elongation factor A (SII), 2|transcription elongation factor S-II protein 2|transcription elongation factor TFIIS.1|transcription elongation factor TFIIS.l 27 0.003696 8.599 1 1 +6920 TCEA3 transcription elongation factor A3 1 protein-coding TFIIS|TFIIS.H transcription elongation factor A protein 3|rhabdomyosarcoma antigen MU-RMS-40.22|transcription elongation factor A (SII), 3|transcription elongation factor S-II protein 3|transcription elongation factor TFIIS.h 28 0.003832 9.098 1 1 +6921 TCEB1 transcription elongation factor B subunit 1 8 protein-coding SIII|eloC transcription elongation factor B polypeptide 1|RNA polymerase II transcription factor SIII subunit C|SIII p15|elongin 15 kDa subunit|elongin C|transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) 11 0.001506 9.585 1 1 +6923 TCEB2 transcription elongation factor B subunit 2 16 protein-coding ELOB|SIII transcription elongation factor B polypeptide 2|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 (SIII), polypeptide 2 (18kDa, elongin B) 7 0.0009581 11.3 1 1 +6924 TCEB3 transcription elongation factor B subunit 3 1 protein-coding EloA|SIII|SIII p110|TCEB3A transcription elongation factor B polypeptide 3|RNA polymerase II transcription factor SIII subunit A1|elongin 110 kDa subunit|elongin-A|transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A)|transcription elongation factor B alpha subunit 51 0.006981 10.44 1 1 +6925 TCF4 transcription factor 4 18 protein-coding E2-2|FECD3|ITF-2|ITF2|PTHS|SEF-2|SEF2|SEF2-1|SEF2-1A|SEF2-1B|SEF2-1D|TCF-4|bHLHb19 transcription factor 4|SL3-3 enhancer factor 2|class B basic helix-loop-helix protein 19|immunoglobulin transcription factor 2 80 0.01095 10.03 1 1 +6926 TBX3 T-box 3 12 protein-coding TBX3-ISO|UMS|XHL T-box transcription factor TBX3|T-box protein 3|bladder cancer related protein XHL 96 0.01314 8.94 1 1 +6927 HNF1A HNF1 homeobox A 12 protein-coding HNF-1A|HNF1|IDDM20|LFB1|MODY3|TCF-1|TCF1 hepatocyte nuclear factor 1-alpha|HNF-1-alpha|albumin proximal factor|hepatic nuclear factor 1|interferon production regulator factor|liver-specific transcription factor LF-B1|transcription factor 1, hepatic 71 0.009718 5.545 1 1 +6928 HNF1B HNF1 homeobox B 17 protein-coding FJHN|HNF-1-beta|HNF-1B|HNF1beta|HNF2|HPC11|LF-B3|LFB3|MODY5|TCF-2|TCF2|VHNF1 hepatocyte nuclear factor 1-beta|HNF1 beta A|homeoprotein LFB3|transcription factor 2, hepatic 48 0.00657 4.162 1 1 +6929 TCF3 transcription factor 3 19 protein-coding AGM8|E2A|E47|ITF1|TCF-3|VDIR|bHLHb21 transcription factor E2-alpha|NOL1-TCF3 fusion|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 3 (E2A immunoglobulin enhancer binding factors E12/E47)|transcription factor 3 variant 3|transcription factor ITF-1|vitamin D receptor-interacting repressor 39 0.005338 10.69 1 1 +6932 TCF7 transcription factor 7 (T-cell specific, HMG-box) 5 protein-coding TCF-1 transcription factor 7|T-cell-specific transcription factor 1 47 0.006433 8.17 1 1 +6934 TCF7L2 transcription factor 7 like 2 10 protein-coding TCF-4|TCF4 transcription factor 7-like 2|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 (T-cell specific, HMG-box) 74 0.01013 9.163 1 1 +6935 ZEB1 zinc finger E-box binding homeobox 1 10 protein-coding AREB6|BZP|DELTAEF1|FECD6|NIL2A|PPCD3|TCF8|ZFHEP|ZFHX1A zinc finger E-box-binding homeobox 1|delta-crystallin enhancer binding factor 1|negative regulator of IL2|posterior polymorphous corneal dystrophy 3|transcription factor 8 (represses interleukin 2 expression)|zinc finger homeodomain enhancer-binding protein 131 0.01793 9.095 1 1 +6936 GCFC2 GC-rich sequence DNA-binding factor 2 2 protein-coding C2orf3|DNABF|GCF|TCF9 GC-rich sequence DNA-binding factor 2|GC binding factor|GC bindng factor|TCF-9|transcription factor 9 (binds GC-rich sequences) 51 0.006981 8.552 1 1 +6938 TCF12 transcription factor 12 15 protein-coding CRS3|HEB|HTF4|HsT17266|TCF-12|bHLHb20 transcription factor 12|DNA-binding protein HTF4|E-box-binding protein|class B basic helix-loop-helix protein 20|helix-loop-helix transcription factor 4|transcription factor HTF-4 57 0.007802 10.57 1 1 +6939 TCF15 transcription factor 15 (basic helix-loop-helix) 20 protein-coding EC2|PARAXIS|bHLHa40 transcription factor 15|TCF-15|basic helix-loop-helix transcription factor 15|class A basic helix-loop-helix protein 40|protein bHLH-EC2 16 0.00219 3.231 1 1 +6940 ZNF354A zinc finger protein 354A 5 protein-coding EZNF|HEL104|HKL1|KID-1|KID1|TCF17 zinc finger protein 354A|epididymis luminal protein 104|transcription factor 17|zinc finger protein eZNF 46 0.006296 7.875 1 1 +6941 TCF19 transcription factor 19 6 protein-coding SC1|TCF-19 transcription factor 19|transcription factor SC1 22 0.003011 8.885 1 1 +6942 TCF20 transcription factor 20 22 protein-coding AR1|SPBP|TCF-20 transcription factor 20|SPRE-binding protein|nuclear factor SPBP|stromelysin-1 PDGF-responsive element-binding protein|stromelysin-1 platelet-derived growth factor-responsive element binding protein|transcription factor 20 (AR1) 131 0.01793 10.16 1 1 +6943 TCF21 transcription factor 21 6 protein-coding POD1|bHLHa23 transcription factor 21|capsulin|class A basic helix-loop-helix protein 23|epicardin|pod-1|podocyte-expressed 1 31 0.004243 3.891 1 1 +6944 VPS72 vacuolar protein sorting 72 homolog 1 protein-coding CFL1|Swc2|TCFL1|YL-1|YL1 vacuolar protein sorting-associated protein 72 homolog|transcription factor-like 1|transformation suppressor gene YL-1 23 0.003148 10.05 1 1 +6945 MLX MLX, MAX dimerization protein 17 protein-coding MAD7|MXD7|TCFL4|TF4|bHLHd13 max-like protein X|BigMax protein|MAX-like bHLHZIP protein|class D basic helix-loop-helix protein 13|transcription factor-like protein 4 24 0.003285 10.24 1 1 +6947 TCN1 transcobalamin 1 11 protein-coding HC|TC-1|TC1|TCI transcobalamin-1|haptocorin|haptocorrin|protein R|transcobalamin I (vitamin B12 binding protein, R binder family) 54 0.007391 3.582 1 1 +6948 TCN2 transcobalamin 2 22 protein-coding D22S676|D22S750|II|TC|TC II|TC-2|TC2|TCII transcobalamin-2|macrocytic anemia|transcobalamin II|transcobalamin II; macrocytic anemia|vitamin B12-binding protein 2 38 0.005201 9.227 1 1 +6949 TCOF1 treacle ribosome biogenesis factor 1 5 protein-coding MFD1|TCS|TCS1|treacle treacle protein|Treacher Collins syndrome protein|Treacher Collins-Franceschetti syndrome 1|nucleolar trafficking phosphoprotein 73 0.009992 10.4 1 1 +6950 TCP1 t-complex 1 6 protein-coding CCT-alpha|CCT1|CCTa|D6S230E|TCP-1-alpha T-complex protein 1 subunit alpha|T-complex protein 1, alpha subunit|t-complex 1 protein|tailless complex polypeptide 1 27 0.003696 11.86 1 1 +6953 TCP10 t-complex 10 6 protein-coding TCP10A T-complex protein 10A homolog|t-complex 10 (a murine tcp homolog)|t-complex 10 homolog 39 0.005338 0.2564 1 1 +6954 TCP11 t-complex 11 6 protein-coding D6S230E|FPPR T-complex protein 11 homolog|fertilization-promoting peptide receptor|t-complex 11 (a murine tcp homolog)|t-complex 11 homolog|t-complex 11, testis-specific|testis secretory sperm-binding protein Li 222n 40 0.005475 1.754 1 1 +6955 TRA T-cell receptor alpha locus 14 protein-coding IMD7|TCRA|TCRD|TRA@|TRAC T-cell antigen receptor, alpha polypeptide|T-cell receptor, alpha (V,D,J,C) 2 0.0002737 1 0 +6956 TRAV6 T cell receptor alpha variable 6 14 other TCRAV5S1|TCRAV6S1 T-cell receptor, alpha variable region 5, segment 1 14 0.001916 1 0 +6960 TRBV25OR9-2 T cell receptor beta variable 25/OR9-2 (pseudogene) 9 pseudo TCRBV11O|TCRBV11S2O|TCRBV25S2 T-cell receptor, beta variable region 11, orphon|TRBV25/OR9-2 0 0 1 0 +6962 TRBV20OR9-2 T cell receptor beta variable 20/OR9-2 (non-functional) 9 pseudo CDR3|TCR|TCRB|TCRBV20S2|TCRBV2O|TCRBV2S2O|TRB T cell receptor beta variable 20/OR9-2 pseudogene|T-cell receptor beta chain variable region|T-cell receptor, beta variable region 2, orphon|TRBV20/OR9-2 3 0.0004106 1 0 +6966 TRGC1 T cell receptor gamma constant 1 7 other C1|TCRG|TCRGC1 T-cell receptor, gamma, constant region C1 29 0.003969 1 0 +6967 TRGC2 T cell receptor gamma constant 2 7 other TCRGC2|TRGC2(2X)|TRGC2(3X) T-cell receptor, gamma, constant region C2 57 0.007802 1 0 +6969 TRGJ2 T cell receptor gamma joining 2 7 other J2|TCRGJ2 T-cell receptor gamma joining segment J2 1 0.0001369 1 0 +6970 TRGJP T cell receptor gamma joining P 7 other JP|TCRGJP T-cell receptor, gamma, joining segment JP 2 0.0002737 1 0 +6972 TRGJP2 T cell receptor gamma joining P2 7 other JP2|TCRGJP2 T-cell receptor, gamma, joining segment JP2 3 0.0004106 1 0 +6973 TRGV1 T cell receptor gamma variable 1 (non-functional) 7 pseudo TCRGV1|V1S1P T cell receptor gamma variable 1 pseudogene|T-cell receptor, gamma, variable region V1 (pseudogene) 1 0.0001369 1 0 +6974 TRGV2 T cell receptor gamma variable 2 7 other TCRGV2|VIS2 T-cell receptor, gamma, variable region V2 22 0.003011 1 0 +6975 TECTB tectorin beta 10 protein-coding - beta-tectorin 33 0.004517 0.1709 1 1 +6976 TRGV3 T cell receptor gamma variable 3 7 other TCRGV3|V1S3 T-cell receptor, gamma, variable region V3 20 0.002737 1 0 +6977 TRGV4 T cell receptor gamma variable 4 7 other TCRGV4|V1S4 T-cell receptor, gamma, variable region V4 13 0.001779 1 0 +6978 TRGV5 T cell receptor gamma variable 5 7 other TCRGV5|V1S5 T-cell gamma precursor protein|T-cell receptor, gamma, variable region V5 17 0.002327 1 0 +6982 TRGV8 T cell receptor gamma variable 8 7 other TCRGV8|V1S8 T-cell receptor, gamma, variable region V8 11 0.001506 1 0 +6983 TRGV9 T cell receptor gamma variable 9 7 other TCRGV9|TRGC1|V2 T-cell receptor, gamma, variable region V9 8 0.001095 1 0 +6984 TRGV10 T cell receptor gamma variable 10 (non-functional) 7 pseudo TCRGV10|V3P T cell receptor gamma variable 10 pseudogene|T-cell receptor, gamma, variable region V10 0 0 1 0 +6985 TRGV11 T cell receptor gamma variable 11 (non-functional) 7 pseudo TCRGV11|V4P T cell receptor gamma variable 11 pseudogene|T-cell receptor, gamma, variable region V11 1 0.0001369 1 0 +6988 TCTA T-cell leukemia translocation altered 3 protein-coding - T-cell leukemia translocation-altered gene protein|T-cell leukemia translocation-associated gene protein 7 0.0009581 9.809 1 1 +6990 DYNLT3 dynein light chain Tctex-type 3 X protein-coding RP3|TCTE1L|TCTEX1L dynein light chain Tctex-type 3|protein 91/23 6 0.0008212 9.421 1 1 +6991 TCTE3 t-complex-associated-testis-expressed 3 6 protein-coding TCTEX1D3 tctex1 domain-containing protein 3|T-complex testis-specific protein 3|T-complex-associated testis-expressed protein 3|Tctex1 domain containing 3 7 0.0009581 5.436 1 1 +6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 6 protein-coding CFAP255|HCG-V|HCGV|IPP3|TCTE5|TCTEX5 protein phosphatase 1 regulatory subunit 11|HCG V|hemochromatosis candidate gene V protein|inhibitor-3|protein phosphatase 1, regulatory (inhibitor) subunit 11|protein phosphatase inhibitor 3|t-complex-associated-testis-expressed 5 12 0.001642 10.72 1 1 +6993 DYNLT1 dynein light chain Tctex-type 1 6 protein-coding CW-1|TCTEL1|tctex-1 dynein light chain Tctex-type 1|T-complex testis-specific protein 1 homolog|t-complex-associated-testis-expressed 1-like 1 9 0.001232 10.24 1 1 +6996 TDG thymine DNA glycosylase 12 protein-coding hTDG G/T mismatch-specific thymine DNA glycosylase 43 0.005886 8.712 1 1 +6997 TDGF1 teratocarcinoma-derived growth factor 1 3 protein-coding CR|CRGF|CRIPTO teratocarcinoma-derived growth factor 1|cripto-1 growth factor|epidermal growth factor-like cripto protein CR1 22 0.003011 2.633 1 1 +6998 TDGF1P3 teratocarcinoma-derived growth factor 1 pseudogene 3 X pseudo CR-3|CRIPTO|CRIPTO-3|CRIPTO3|TDGF1|TDGF2|TDGF3 Teratocarcinoma-derived growth factor-2|teratocarcinoma-derived growth factor 2 (retroposin, possibly expressed)|teratocarcinoma-derived growth factor 3, pseudogene 24 0.003285 1.231 1 1 +6999 TDO2 tryptophan 2,3-dioxygenase 4 protein-coding TDO|TO|TPH2|TRPO tryptophan 2,3-dioxygenase|TDO|TO|TRPO|tryptamin 2,3-dioxygenase|tryptophan oxygenase|tryptophan pyrrolase|tryptophanase 40 0.005475 5.26 1 1 +7001 PRDX2 peroxiredoxin 2 19 protein-coding HEL-S-2a|NKEF-B|NKEFB|PRP|PRX2|PRXII|PTX1|TDPX1|TPX1|TSA peroxiredoxin-2|epididymis secretory sperm binding protein Li 2a|natural killer cell-enhancing factor B|thiol-specific antioxidant 1|thioredoxin peroxidase 1|thioredoxin-dependent peroxide reductase 1|torin 18 0.002464 11.95 1 1 +7003 TEAD1 TEA domain transcription factor 1 11 protein-coding AA|NTEF-1|REF1|TCF-13|TCF13|TEAD-1|TEF-1 transcriptional enhancer factor TEF-1|TEA domain family member 1 (SV40 transcriptional enhancer factor)|protein GT-IIC|transcription factor 13|transcriptional enhancer factor 1 31 0.004243 10.51 1 1 +7004 TEAD4 TEA domain transcription factor 4 12 protein-coding EFTR-2|RTEF1|TCF13L1|TEF-3|TEF3|TEFR-1|hRTEF-1B transcriptional enhancer factor TEF-3|TEA domain family member 4|related transcription enhancer factor 1B|transcription factor 13-like 1|transcription factor RTEF-1|transcriptional enhancer factor 1-related|transcriptional enhancer factor 3 43 0.005886 7.949 1 1 +7005 TEAD3 TEA domain transcription factor 3 6 protein-coding DTEF-1|ETFR-1|TEAD-3|TEAD5|TEF-5|TEF5 transcriptional enhancer factor TEF-5|TEA domain family member 3|TEA domain family member 5|transcriptional enhancer factor 5|transcriptional enhancer factor TEF-5 (DTEF-1) 21 0.002874 9.338 1 1 +7006 TEC tec protein tyrosine kinase 4 protein-coding PSCTK4 tyrosine-protein kinase Tec 56 0.007665 5.464 1 1 +7007 TECTA tectorin alpha 11 protein-coding DFNA12|DFNA8|DFNB21 alpha-tectorin 186 0.02546 3.721 1 1 +7008 TEF TEF, PAR bZIP transcription factor 22 protein-coding - thyrotroph embryonic factor|thyrotrophic embryonic factor 16 0.00219 9.448 1 1 +7009 TMBIM6 transmembrane BAX inhibitor motif containing 6 12 protein-coding BAXI1|BI-1|TEGT bax inhibitor 1|testis enhanced gene transcript|testis-enhanced gene transcript protein|transmembrane BAX inhibitor motif-containing protein 6 20 0.002737 14.28 1 1 +7010 TEK TEK receptor tyrosine kinase 9 protein-coding CD202B|TIE-2|TIE2|VMCM|VMCM1 angiopoietin-1 receptor|TEK tyrosine kinase, endothelial|endothelial tyrosine kinase|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 91 0.01246 7.176 1 1 +7011 TEP1 telomerase associated protein 1 14 protein-coding TLP1|TP1|TROVE1|VAULT2|p240 telomerase protein component 1|TROVE domain family, member 1|p80 telomerase homolog|telomerase protein 1 181 0.02477 9.414 1 1 +7012 TERC telomerase RNA component 3 ncRNA DKCA1|PFBMFT2|SCARNA19|TR|TRC3|hTR small Cajal body-specific RNA 19 17 0.002327 0.9177 1 1 +7013 TERF1 telomeric repeat binding factor 1 8 protein-coding PIN2|TRBF1|TRF|TRF1|hTRF1-AS|t-TRF1 telomeric repeat-binding factor 1|NIMA-interacting protein 2|TTAGGG repeat-binding factor 1|telomeric protein Pin2/TRF1|telomeric repeat binding factor (NIMA-interacting) 1 37 0.005064 9.112 1 1 +7014 TERF2 telomeric repeat binding factor 2 16 protein-coding TRBF2|TRF2 telomeric repeat-binding factor 2|TTAGGG repeat-binding factor 2|telomeric DNA-binding protein|telomeric repeat binding protein 2 28 0.003832 9.291 1 1 +7015 TERT telomerase reverse transcriptase 5 protein-coding CMM9|DKCA2|DKCB4|EST2|PFBMFT1|TCS1|TP2|TRT|hEST2|hTRT telomerase reverse transcriptase|telomerase catalytic subunit|telomerase-associated protein 2 54 0.007391 2.532 1 1 +7016 TESK1 testis-specific kinase 1 9 protein-coding - dual specificity testis-specific protein kinase 1|testicular protein kinase 1 36 0.004927 9.871 1 1 +7018 TF transferrin 3 protein-coding HEL-S-71p|PRO1557|PRO2086|TFQTL1 serotransferrin|beta-1 metal-binding globulin|epididymis secretory sperm binding protein Li 71p|siderophilin 71 0.009718 5.819 1 1 +7019 TFAM transcription factor A, mitochondrial 10 protein-coding MTTF1|MTTFA|TCF6|TCF6L1|TCF6L2|TCF6L3 transcription factor A, mitochondrial|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 21 0.002874 8.959 1 1 +7020 TFAP2A transcription factor AP-2 alpha 6 protein-coding AP-2|AP-2alpha|AP2TF|BOFS|TFAP2 transcription factor AP-2-alpha|AP-2 transcription factor|AP2-alpha|activating enhancer-binding protein 2-alpha|activator protein 2|transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha) 48 0.00657 7.604 1 1 +7021 TFAP2B transcription factor AP-2 beta 6 protein-coding AP-2B|AP2-B|PDA2 transcription factor AP-2-beta|AP2-beta|activating enhancer binding protein 2 beta|transcription factor AP-2 beta (activating enhancer binding protein 2 beta) 60 0.008212 2.124 1 1 +7022 TFAP2C transcription factor AP-2 gamma 20 protein-coding AP2-GAMMA|ERF1|TFAP2G|hAP-2g transcription factor AP-2 gamma|activating enhancer-binding protein 2 gamma|estrogen receptor factor 1|transcription factor AP-2 gamma (activating enhancer-binding protein 2 gamma)|transcription factor ERF-1 41 0.005612 6.867 1 1 +7023 TFAP4 transcription factor AP-4 16 protein-coding AP-4|bHLHc41 transcription factor AP-4|activating enhancer-binding protein 4|class C basic helix-loop-helix protein 41|transcription factor AP-4 (activating enhancer binding protein 4) 25 0.003422 8.22 1 1 +7024 TFCP2 transcription factor CP2 12 protein-coding LBP1C|LSF|LSF1D|SEF|TFCP2C alpha-globin transcription factor CP2|SAA3 enhancer factor 34 0.004654 9.174 1 1 +7025 NR2F1 nuclear receptor subfamily 2 group F member 1 5 protein-coding BBOAS|BBSOAS|COUP-TFI|EAR-3|EAR3|ERBAL3|NR2F2|SVP44|TCFCOUP1|TFCOUP1 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) 36 0.004927 7.548 1 1 +7026 NR2F2 nuclear receptor subfamily 2 group F member 2 15 protein-coding ARP1|CHTD4|COUPTFB|COUPTFII|NF-E3|NR2F1|SVP40|TFCOUP2 COUP transcription factor 2|ADP-ribosylation factor related protein 1|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 38 0.005201 9.831 1 1 +7027 TFDP1 transcription factor Dp-1 13 protein-coding DILC|DP1|DRTF1|Dp-1 transcription factor Dp-1|DRTF1-polypeptide 1|E2F dimerization partner 1|E2F-related transcription factor|down-regulated in liver cancer stem cells 41 0.005612 10.72 1 1 +7029 TFDP2 transcription factor Dp-2 3 protein-coding DP2 transcription factor Dp-2|transcription factor Dp-2 (E2F dimerization partner 2) 33 0.004517 8.256 1 1 +7030 TFE3 transcription factor binding to IGHM enhancer 3 X protein-coding RCCP2|RCCX1|TFEA|bHLHe33 transcription factor E3|class E basic helix-loop-helix protein 33|transcription factor E family, member A|transcription factor for IgH enhancer|transcription factor for immunoglobulin heavy-chain enhancer 3 67 0.009171 10.56 1 1 +7031 TFF1 trefoil factor 1 21 protein-coding BCEI|D21S21|HP1.A|HPS2|pNR-2|pS2 trefoil factor 1|breast cancer estrogen-inducible protein|breast cancer estrogen-inducible sequence|gastrointestinal trefoil protein pS2|polypeptide P1.A|protein pS2 2 0.0002737 3.591 1 1 +7032 TFF2 trefoil factor 2 21 protein-coding SML1|SP trefoil factor 2|spasmolysin|spasmolytic polypeptide|spasmolytic protein 1 5 0.0006844 1.696 1 1 +7033 TFF3 trefoil factor 3 21 protein-coding ITF|P1B|TFI trefoil factor 3|polypeptide P1.B|trefoil factor 3 (intestinal) 8 0.001095 6.653 1 1 +7035 TFPI tissue factor pathway inhibitor 2 protein-coding EPI|LACI|TFI|TFPI1 tissue factor pathway inhibitor|anti-convertin|extrinsic pathway inhibitor|tissue factor pathway inhibitor (lipoprotein-associated coagulation inhibitor) 34 0.004654 8.715 1 1 +7036 TFR2 transferrin receptor 2 7 protein-coding HFE3|TFRC2 transferrin receptor protein 2 40 0.005475 5.219 1 1 +7037 TFRC transferrin receptor 3 protein-coding CD71|IMD46|T9|TFR|TFR1|TR|TRFR|p90 transferrin receptor protein 1 48 0.00657 11.13 1 1 +7038 TG thyroglobulin 8 protein-coding AITD3|TGN thyroglobulin 303 0.04147 5.051 1 1 +7039 TGFA transforming growth factor alpha 2 protein-coding TFGA protransforming growth factor alpha|TGF-alpha 11 0.001506 8.152 1 1 +7040 TGFB1 transforming growth factor beta 1 19 protein-coding CED|DPD1|LAP|TGFB|TGFbeta transforming growth factor beta-1|TGF-beta-1|latency-associated peptide|prepro-transforming growth factor beta-1 33 0.004517 10.29 1 1 +7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 16 protein-coding ARA55|HIC-5|HIC5|TSC-5 transforming growth factor beta-1-induced transcript 1 protein|androgen receptor coactivator 55 kDa protein|androgen receptor coactivator ARA55|androgen receptor-associated protein of 55 kDa|hydrogen peroxide-inducible clone 5 protein|hydrogen peroxide-inducible clone-5 35 0.004791 8.796 1 1 +7042 TGFB2 transforming growth factor beta 2 1 protein-coding G-TSF|LDS4|TGF-beta2 transforming growth factor beta-2|BSC-1 cell growth inhibitor|cetermin|glioblastoma-derived T-cell suppressor factor|polyergin|prepro-transforming growth factor beta-2 36 0.004927 7.767 1 1 +7043 TGFB3 transforming growth factor beta 3 14 protein-coding ARVD|ARVD1|LDS5|RNHF|TGF-beta3 transforming growth factor beta-3|prepro-transforming growth factor beta-3 20 0.002737 8.763 1 1 +7044 LEFTY2 left-right determination factor 2 1 protein-coding EBAF|LEFTA|LEFTYA|TGFB4 left-right determination factor 2|TGF-beta-4|endometrial bleeding-associated factor|left-right determination factor A|protein lefty-2|protein lefty-A|transforming growth factor beta-4 18 0.002464 2.693 1 1 +7045 TGFBI transforming growth factor beta induced 5 protein-coding BIGH3|CDB1|CDG2|CDGG1|CSD|CSD1|CSD2|CSD3|EBMD|LCD1 transforming growth factor-beta-induced protein ig-h3|RGD-CAP|RGD-containing collagen-associated protein|beta ig-h3|betaig-h3|kerato-epithelin|transforming growth factor beta-induced 68kDa|transforming growth factor, beta-induced, 68kD 51 0.006981 11.59 1 1 +7046 TGFBR1 transforming growth factor beta receptor 1 9 protein-coding AAT5|ACVRLK4|ALK-5|ALK5|ESS1|LDS1|LDS1A|LDS2A|MSSE|SKR4|TGFR-1|tbetaR-I TGF-beta receptor type-1|activin A receptor type II-like kinase, 53kDa|activin A receptor type II-like protein kinase of 53kD|activin receptor-like kinase 5|mutant transforming growth factor beta receptor I|serine/threonine-protein kinase receptor R4|transforming growth factor beta receptor I|transforming growth factor-beta receptor type I 48 0.00657 10.38 1 1 +7047 TGM4 transglutaminase 4 3 protein-coding TGP|hTGP protein-glutamine gamma-glutamyltransferase 4|TG(P)|TGase P|TGase-4|fibrinoligase|prostate transglutaminase|prostate-specific transglutaminase|transglutaminase 4 (prostate)|transglutaminase P 75 0.01027 1.349 1 1 +7048 TGFBR2 transforming growth factor beta receptor 2 3 protein-coding AAT3|FAA3|LDS1B|LDS2|LDS2B|MFS2|RIIC|TAAD2|TGFR-2|TGFbeta-RII TGF-beta receptor type-2|TGF-beta receptor type IIB|TGF-beta type II receptor|tbetaR-II|transforming growth factor beta receptor II|transforming growth factor beta receptor type IIC|transforming growth factor, beta receptor II (70/80kDa)|transforming growth factor, beta receptor II alpha|transforming growth factor, beta receptor II beta|transforming growth factor, beta receptor II delta|transforming growth factor, beta receptor II epsilon|transforming growth factor, beta receptor II gamma 101 0.01382 10.85 1 1 +7049 TGFBR3 transforming growth factor beta receptor 3 1 protein-coding BGCAN|betaglycan transforming growth factor beta receptor type 3|TGF-beta receptor type 3|TGF-beta receptor type III|TGFR-3|betaglycan proteoglycan|transforming growth factor beta receptor III 78 0.01068 8.746 1 1 +7050 TGIF1 TGFB induced factor homeobox 1 18 protein-coding HPE4|TGIF homeobox protein TGIF1|5'-TG-3'-interacting factor 1|TALE homeobox TG-interacting factor|transforming growth factor-beta-induced factor 47 0.006433 10.24 1 1 +7051 TGM1 transglutaminase 1 14 protein-coding ARCI1|ICR2|KTG|LI|LI1|TGASE|TGK protein-glutamine gamma-glutamyltransferase K|K polypeptide epidermal type I, protein-glutamine-gamma-glutamyltransferase|TG(K)|TGase K|TGase-1|epidermal TGase|transglutaminase 1 isoform|transglutaminase K|transglutaminase, keratinocyte 56 0.007665 5.239 1 1 +7052 TGM2 transglutaminase 2 20 protein-coding TG(C)|TGC protein-glutamine gamma-glutamyltransferase 2|C polypeptide, protein-glutamine-gamma-glutamyltransferase|TGase C|TGase H|TGase-2|tissue transglutaminase|transglutaminase C|transglutaminase H 47 0.006433 11.32 1 1 +7053 TGM3 transglutaminase 3 20 protein-coding TGE protein-glutamine gamma-glutamyltransferase E|E polypeptide, protein-glutamine-gamma-glutamyltransferase|TG(E)|TGase E|TGase-3|transglutaminase E 67 0.009171 3.264 1 1 +7054 TH tyrosine hydroxylase 11 protein-coding DYT14|DYT5b|TYH tyrosine 3-monooxygenase|dystonia 14|tyrosine 3-hydroxylase 35 0.004791 2.174 1 1 +7056 THBD thrombomodulin 20 protein-coding AHUS6|BDCA3|CD141|THPH12|THRM|TM thrombomodulin|CD141 antigen|fetomodulin 24 0.003285 8.94 1 1 +7057 THBS1 thrombospondin 1 15 protein-coding THBS|THBS-1|TSP|TSP-1|TSP1 thrombospondin-1|thrombospondin-1p180|thrombospondin-p50 84 0.0115 11.36 1 1 +7058 THBS2 thrombospondin 2 6 protein-coding TSP2 thrombospondin-2 128 0.01752 10.58 1 1 +7059 THBS3 thrombospondin 3 1 protein-coding TSP3 thrombospondin-3 56 0.007665 8.978 1 1 +7060 THBS4 thrombospondin 4 5 protein-coding TSP-4|TSP4 thrombospondin-4 57 0.007802 7.226 1 1 +7062 TCHH trichohyalin 1 protein-coding THH|THL|TRHY trichohyalin 245 0.03353 3.709 1 1 +7064 THOP1 thimet oligopeptidase 1 19 protein-coding EP24.15|MEPD_HUMAN|MP78|TOP thimet oligopeptidase|endopeptidase 24.15 43 0.005886 9.754 1 1 +7066 THPO thrombopoietin 3 protein-coding MGDF|MKCSF|ML|MPLLG|THCYT1|TPO thrombopoietin|MPL ligand|c-mpl ligand|megakaryocyte colony-stimulating factor|megakaryocyte growth and development factor|megakaryocyte stimulating factor|myeloproliferative leukemia virus oncogene ligand|prepro-thrombopoietin 37 0.005064 3.193 1 1 +7067 THRA thyroid hormone receptor, alpha 17 protein-coding AR7|CHNG6|EAR7|ERB-T-1|ERBA|ERBA1|NR1A1|THRA1|THRA2|c-ERBA-1 thyroid hormone receptor alpha|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 1|thyroid hormone receptor, alpha (erythroblastic leukemia viral (v-erb-a) oncogene homolog, avian)|thyroid normone nuclear receptor alpha variant 1|triiodothyronine receptor 38 0.005201 9.76 1 1 +7068 THRB thyroid hormone receptor beta 3 protein-coding C-ERBA-2|C-ERBA-BETA|ERBA2|GRTH|NR1A2|PRTH|THR1|THRB1|THRB2 thyroid hormone receptor beta|nuclear receptor subfamily 1 group A member 2|oncogene ERBA2|thyroid hormone nuclear receptor beta variant 1|thyroid hormone receptor, beta (erythroblastic leukemia viral (v-erb-a) oncogene homolog 2, avian) 35 0.004791 7.759 1 1 +7069 THRSP thyroid hormone responsive 11 protein-coding LPGP1|Lpgp|S14|SPOT14|THRP thyroid hormone-inducible hepatic protein|SPOT14 homolog|lipogenic protein 1|spot 14 protein|thyroid hormone responsive (SPOT14 homolog, rat)|thyroid hormone responsive SPOT14 14 0.001916 2.745 1 1 +7070 THY1 Thy-1 cell surface antigen 11 protein-coding CD90|CDw90 thy-1 membrane glycoprotein|Thy-1 T-cell antigen|thy-1 antigen 19 0.002601 11.14 1 1 +7071 KLF10 Kruppel like factor 10 8 protein-coding EGR-alpha|EGRA|TIEG|TIEG1 Krueppel-like factor 10|TGFB-inducible early growth response protein 1|early growth response-alpha|transforming growth factor-beta-inducible early growth response protein 1|zinc finger transcription factor TIEG 37 0.005064 10.33 1 1 +7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein 2 protein-coding TIA-1|WDM nucleolysin TIA-1 isoform p40|T-cell-restricted intracellular antigen-1|p40-TIA-1 (containing p15-TIA-1) 27 0.003696 10.34 1 1 +7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 10 protein-coding TCBP|TIAR nucleolysin TIAR|T-cluster binding protein|TIA-1-related nucleolysin|aging-associated gene 7 protein 31 0.004243 10.36 1 1 +7074 TIAM1 T-cell lymphoma invasion and metastasis 1 21 protein-coding - T-lymphoma invasion and metastasis-inducing protein 1|TIAM-1|human T-lymphoma invasion and metastasis inducing TIAM1 protein 196 0.02683 8.481 1 1 +7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 1 protein-coding JTK14|TIE tyrosine-protein kinase receptor Tie-1|tyrosine kinase with immunoglobulin and epidermal growth factor homology domains 1 106 0.01451 8.636 1 1 +7076 TIMP1 TIMP metallopeptidase inhibitor 1 X protein-coding CLGI|EPA|EPO|HCI|TIMP|TIMP-1 metalloproteinase inhibitor 1|collagenase inhibitor|erythroid potentiating activity|fibroblast collagenase inhibitor|tissue inhibitor of metalloproteinases 1 17 0.002327 12.3 1 1 +7077 TIMP2 TIMP metallopeptidase inhibitor 2 17 protein-coding CSC-21K|DDC8 metalloproteinase inhibitor 2|testicular secretory protein Li 57|tissue inhibitor of metalloproteinases 2 15 0.002053 12.55 1 1 +7078 TIMP3 TIMP metallopeptidase inhibitor 3 22 protein-coding HSMRK222|K222|K222TA2|SFD metalloproteinase inhibitor 3|MIG-5 protein|TIMP-3|protein MIG-5|tissue inhibitor of metalloproteinases 3 29 0.003969 12.54 1 1 +7079 TIMP4 TIMP metallopeptidase inhibitor 4 3 protein-coding - metalloproteinase inhibitor 4|TIMP-4|tissue inhibitor of metalloproteinase 4|tissue inhibitor of metalloproteinases 4 16 0.00219 4.693 1 1 +7080 NKX2-1 NK2 homeobox 1 14 protein-coding BCH|BHC|NK-2|NKX2.1|NKX2A|NMTC1|T/EBP|TEBP|TITF1|TTF-1|TTF1 homeobox protein Nkx-2.1|NK-2 homolog A|homeobox protein NK-2 homolog A|thyroid nuclear factor 1|thyroid transcription factor 1|thyroid-specific enhancer-binding protein 26 0.003559 2.473 1 1 +7082 TJP1 tight junction protein 1 15 protein-coding ZO-1 tight junction protein ZO-1|zona occludens 1|zonula occludens 1 protein 122 0.0167 10.99 1 1 +7083 TK1 thymidine kinase 1 17 protein-coding TK2 thymidine kinase, cytosolic|thymidine kinase 1 soluble isoform|thymidine kinase 1, soluble 13 0.001779 9.405 1 1 +7084 TK2 thymidine kinase 2, mitochondrial 16 protein-coding MTDPS2|MTTK|PEOB3|SCA31 thymidine kinase 2, mitochondrial|thymidine kinase 2|mt-TK 14 0.001916 9.542 1 1 +7086 TKT transketolase 3 protein-coding HEL-S-48|HEL107|SDDHD|TK|TKT1 transketolase|epididymis luminal protein 107|epididymis secretory protein Li 48 26 0.003559 12.45 1 1 +7087 ICAM5 intercellular adhesion molecule 5 19 protein-coding TLCN|TLN intercellular adhesion molecule 5|ICAM-5|intercellular adhesion molecule 5, telencephalin|telencephalin 57 0.007802 4.209 1 1 +7088 TLE1 transducin like enhancer of split 1 9 protein-coding ESG|ESG1|GRG1 transducin-like enhancer protein 1|enhancer of split groucho-like protein 1|transducin-like enhancer of split 1 (E(sp1) homolog, Drosophila) 57 0.007802 9.655 1 1 +7089 TLE2 transducin like enhancer of split 2 19 protein-coding ESG|ESG2|GRG2 transducin-like enhancer protein 2|enhancer of split groucho-like protein 2|transducin-like enhancer of split 2 (E(sp1) homolog, Drosophila)|transducin-like enhancer of split 2, homolog of Drosophila E(sp1) 62 0.008486 8.827 1 1 +7090 TLE3 transducin like enhancer of split 3 15 protein-coding ESG|ESG3|GRG3|HsT18976 transducin-like enhancer protein 3|enhancer of split groucho 3|enhancer of split groucho-like protein 3|transducin-like enhancer of split 3 (E(sp1) homolog, Drosophila)|transducin-like enhancer of split 3 short isoform|transducin-like enhancer of split 3, homolog of Drosophila E(sp1) 52 0.007117 10.51 1 1 +7091 TLE4 transducin like enhancer of split 4 9 protein-coding BCE-1|BCE1|E(spI)|ESG|ESG4|GRG4|Grg-4 transducin-like enhancer protein 4|B lymphocyte gene 1|enhancer of split groucho 4|groucho-related protein 4|transducin-like enhancer of split 4 (E(sp1) homolog, Drosophila)|transducin-like enhancer of split 4, homolog of Drosophila E(sp1) 75 0.01027 8.363 1 1 +7092 TLL1 tolloid like 1 4 protein-coding ASD6|TLL tolloid-like protein 1 136 0.01861 4.737 1 1 +7093 TLL2 tolloid like 2 10 protein-coding - tolloid-like protein 2 86 0.01177 3.952 1 1 +7094 TLN1 talin 1 9 protein-coding ILWEQ|TLN talin-1 163 0.02231 12.84 1 1 +7095 SEC62 SEC62 homolog, preprotein translocation factor 3 protein-coding Dtrp1|HTP1|TLOC1|TP-1 translocation protein SEC62|SEC62 homolog|SEC62 preprotein translocation factor|hTP-1|membrane protein SEC62, S.cerevisiae, homolog of|translocation protein 1 25 0.003422 11.72 1 1 +7096 TLR1 toll like receptor 1 4 protein-coding CD281|TIL|TIL. LPRS5|rsc786 toll-like receptor 1|toll/interleukin-1 receptor-like protein 50 0.006844 6.672 1 1 +7097 TLR2 toll like receptor 2 4 protein-coding CD282|TIL4 toll-like receptor 2|toll/interleukin-1 receptor-like protein 4 53 0.007254 8.05 1 1 +7098 TLR3 toll like receptor 3 4 protein-coding CD283|IIAE2 toll-like receptor 3 70 0.009581 6.825 1 1 +7099 TLR4 toll like receptor 4 9 protein-coding ARMD10|CD284|TLR-4|TOLL toll-like receptor 4|hToll|homolog of Drosophila toll 164 0.02245 8.177 1 1 +7100 TLR5 toll like receptor 5 1 protein-coding MELIOS|SLE1|SLEB1|TIL3 toll-like receptor 5|systemic lupus erythematosus susceptibility 1|toll/interleukin-1 receptor-like protein 3 62 0.008486 6.827 1 1 +7101 NR2E1 nuclear receptor subfamily 2 group E member 1 6 protein-coding TLL|TLX|XTLL nuclear receptor subfamily 2 group E member 1|nuclear receptor TLX|protein tailless homolog|tailes-related receptor 45 0.006159 1.871 1 1 +7102 TSPAN7 tetraspanin 7 X protein-coding A15|CCG-B7|CD231|DXS1692E|MRX58|MXS1|TALLA-1|TM4SF2|TM4SF2b tetraspanin-7|CD231 antigen|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|transmembrane 4 superfamily 2b|transmembrane 4 superfamily member 2|transmembrane protein A15|tspan-7 21 0.002874 8.717 1 1 +7103 TSPAN8 tetraspanin 8 12 protein-coding CO-029|TM4SF3 tetraspanin-8|transmembrane 4 superfamily member 3|tspan-8|tumor-associated antigen CO-029 25 0.003422 5.482 1 1 +7104 TM4SF4 transmembrane 4 L six family member 4 3 protein-coding ILTMP|il-TMP transmembrane 4 L6 family member 4|intestinal and liver (il) tetraspan membrane protein|intestine and liver tetraspan membrane protein|transmembrane 4 superfamily member 4 22 0.003011 2.917 1 1 +7105 TSPAN6 tetraspanin 6 X protein-coding T245|TM4SF6|TSPAN-6 tetraspanin-6|A15 homolog|putative NF-kappa-B-activating protein 321|tetraspan TM4SF|tetraspanin TM4-D|transmembrane 4 superfamily member 6 15 0.002053 9.978 1 1 +7106 TSPAN4 tetraspanin 4 11 protein-coding NAG-2|NAG2|TETRASPAN|TM4SF7|TSPAN-4 tetraspanin-4|novel antigen 2|tetraspan TM4SF|transmembrane 4 superfamily member 7 16 0.00219 9.416 1 1 +7107 GPR137B G protein-coupled receptor 137B 1 protein-coding TM7SF1 integral membrane protein GPR137B|transmembrane 7 superfamily member 1 (upregulated in kidney)|transmembrane 7 superfamily member 1 protein 36 0.004927 8.969 1 1 +7108 TM7SF2 transmembrane 7 superfamily member 2 11 protein-coding ANG1|DHCR14A|NET47 delta(14)-sterol reductase|C-14 sterol reductase|another new gene 1 protein|delta-14-SR|putative sterol reductase SR-1|sterol C14-reductase 27 0.003696 9.178 1 1 +7109 TRAPPC10 trafficking protein particle complex 10 21 protein-coding EHOC-1|EHOC1|GT334|TMEM1|TRS130|TRS30 trafficking protein particle complex subunit 10|TRAPP 130 kDa subunit|TRAPP subunit TMEM1|epilepsy holoprosencephaly candidate-1 protein|trafficking protein particle complex subunit 130|trafficking protein particle complex subunit TMEM1|transmembrane protein 1|transport protein particle subunit TMEM1 71 0.009718 10.1 1 1 +7110 TMF1 TATA element modulatory factor 1 3 protein-coding ARA160|TMF TATA element modulatory factor|androgen receptor coactivator 160 kDa protein|androgen receptor-associated protein of 160 kDa 70 0.009581 9.829 1 1 +7111 TMOD1 tropomodulin 1 9 protein-coding D9S57E|ETMOD|TMOD tropomodulin-1|E-Tmod|e-tropomodulin|erythrocyte tropomodulin 23 0.003148 8.234 1 1 +7112 TMPO thymopoietin 12 protein-coding CMD1T|LAP2|LEMD4|PRO0868|TP thymopoietin|LEM domain containing 4|TP alpha|TP beta/gamma|lamina-associated polypeptide 2|thymopoietin beta|thymopoietin-related peptide isoform alpha|thymopoietin-related peptide isoforms beta/gamma 58 0.007939 10.47 1 1 +7113 TMPRSS2 transmembrane protease, serine 2 21 protein-coding PP9284|PRSS10 transmembrane protease serine 2|epitheliasin|serine protease 10 31 0.004243 7.2 1 1 +7114 TMSB4X thymosin beta 4, X-linked X protein-coding FX|PTMB4|TB4X|TMSB4 thymosin beta-4|prothymosin beta-4|t beta-4|thymosin, beta 4, X chromosome 9 0.001232 1 0 +7117 TMSB4XP8 thymosin beta 4, X-linked pseudogene 8 4 pseudo TMSL3 thymosin beta-4-like protein 3|thymosin-like 3 1 0.0001369 14.6 1 1 +7118 TMSB4XP4 thymosin beta 4, X-linked pseudogene 4 9 pseudo TMSL4 thymosin-like 4 (pseudogene) 0 0 1 0 +7122 CLDN5 claudin 5 22 protein-coding AWAL|BEC1|CPETRL1|TMVCF claudin-5|TMDVCF|transmembrane protein deleted in VCFS|transmembrane protein deleted in velocardiofacial syndrome 19 0.002601 8.004 1 1 +7123 CLEC3B C-type lectin domain family 3 member B 3 protein-coding TN|TNA tetranectin|plasminogen kringle 4-binding protein|tetranectin (plasminogen-binding protein) 19 0.002601 7.284 1 1 +7124 TNF tumor necrosis factor 6 protein-coding DIF|TNF-alpha|TNFA|TNFSF2|TNLG1F tumor necrosis factor|APC1 protein|TNF, macrophage-derived|TNF, monocyte-derived|TNF-a|cachectin|tumor necrosis factor ligand 1F|tumor necrosis factor ligand superfamily member 2|tumor necrosis factor-alpha 17 0.002327 4.205 1 1 +7125 TNNC2 troponin C2, fast skeletal type 20 protein-coding - troponin C, skeletal muscle|troponin C type 2 (fast)|troponin C2, fast 11 0.001506 3.205 1 1 +7126 TNFAIP1 TNF alpha induced protein 1 17 protein-coding B12|B61|BTBD34|EDP1|hBACURD2 BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 2|BTB/POZ domain-containing protein TNFAIP1|tumor necrosis factor, alpha induced protein 1|tumor necrosis factor, alpha-induced protein 1 (endothelial) 19 0.002601 10.55 1 1 +7127 TNFAIP2 TNF alpha induced protein 2 14 protein-coding B94|EXOC3L3 tumor necrosis factor alpha-induced protein 2|exocyst complex component 3-like 3|primary response gene B94 protein|tumor necrosis factor, alpha induced protein 2 34 0.004654 10.53 1 1 +7128 TNFAIP3 TNF alpha induced protein 3 6 protein-coding A20|AISBL|OTUD7C|TNFA1P2 tumor necrosis factor alpha-induced protein 3|OTU domain-containing protein 7C|putative DNA-binding protein A20|tumor necrosis factor inducible protein A20|tumor necrosis factor, alpha induced protein 3|zinc finger protein A20 65 0.008897 9.527 1 1 +7130 TNFAIP6 TNF alpha induced protein 6 2 protein-coding TSG-6|TSG6 tumor necrosis factor-inducible gene 6 protein|TNF-stimulated gene 6 protein|hyaluronate-binding protein|tumor necrosis factor alpha-inducible protein 6|tumor necrosis factor, alpha induced protein 6|tumor necrosis factor-stimulated gene-6 protein 41 0.005612 5.69 1 1 +7132 TNFRSF1A TNF receptor superfamily member 1A 12 protein-coding CD120a|FPF|TBP1|TNF-R|TNF-R-I|TNF-R55|TNFAR|TNFR1|TNFR55|TNFR60|p55|p55-R|p60 tumor necrosis factor receptor superfamily member 1A|TNF-R1|TNF-RI|TNFR-I|tumor necrosis factor binding protein 1|tumor necrosis factor receptor 1A isoform beta|tumor necrosis factor receptor type 1|tumor necrosis factor-alpha receptor 34 0.004654 11.36 1 1 +7133 TNFRSF1B TNF receptor superfamily member 1B 1 protein-coding CD120b|TBPII|TNF-R-II|TNF-R75|TNFBR|TNFR1B|TNFR2|TNFR80|p75|p75TNFR tumor necrosis factor receptor superfamily member 1B|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 type II 28 0.003832 9.702 1 1 +7134 TNNC1 troponin C1, slow skeletal and cardiac type 3 protein-coding CMD1Z|CMH13|TN-C|TNC|TNNC troponin C, slow skeletal and cardiac muscles|cardiac troponin C|slow twitch skeletal/cardiac muscle troponin C|troponin C type 1 (slow)|troponin C1, slow 10 0.001369 3.817 1 1 +7135 TNNI1 troponin I1, slow skeletal type 1 protein-coding SSTNI|TNN1 troponin I, slow skeletal muscle|troponin I type 1 (skeletal, slow)|troponin I, slow-twitch isoform 14 0.001916 4.807 1 1 +7136 TNNI2 troponin I2, fast skeletal type 11 protein-coding AMCD2B|DA2B|FSSV|fsTnI troponin I, fast skeletal muscle|troponin I fast twitch 2|troponin I type 2 (skeletal, fast)|troponin I, fast-twitch isoform|troponin I, fast-twitch skeletal muscle isoform|troponin I, skeletal, fast 25 0.003422 3.514 1 1 +7137 TNNI3 troponin I3, cardiac type 19 protein-coding CMD1FF|CMD2A|CMH7|RCM1|TNNC1|cTnI troponin I, cardiac muscle|cardiomyopathy, dilated 2A (autosomal recessive)|troponin I type 3 (cardiac) 20 0.002737 2.611 1 1 +7138 TNNT1 troponin T1, slow skeletal type 19 protein-coding ANM|NEM5|STNT|TNT|TNTS troponin T, slow skeletal muscle|slow skeletal muscle troponin T|troponin T type 1 (skeletal, slow)|troponin-T1, skeletal, slow 28 0.003832 5.074 1 1 +7139 TNNT2 troponin T2, cardiac type 1 protein-coding CMD1D|CMH2|CMPD2|LVNC6|RCM3|TnTC|cTnT troponin T, cardiac muscle|cardiomyopathy, dilated 1D (autosomal dominant)|cardiomyopathy, hypertrophic 2|troponin T type 2 (cardiac)|troponin T2, cardiac|truncated cardiac troponin T 26 0.003559 2.932 1 1 +7140 TNNT3 troponin T3, fast skeletal type 11 protein-coding TNTF troponin T, fast skeletal muscle|beta-TnTF|fTnT|fast skeletal muscle troponin T|troponin T type 3 (skeletal, fast)|troponin-T3, skeletal, fast 30 0.004106 2.439 1 1 +7141 TNP1 transition protein 1 2 protein-coding TP1 spermatid nuclear transition protein 1|STP-1|TP-1|transition protein 1 (during histone to protamine replacement) 7 0.0009581 0.1003 1 1 +7142 TNP2 transition protein 2 16 protein-coding TP2 nuclear transition protein 2|TP-2|transition protein 2 (during histone to protamine replacement) 14 0.001916 0.01989 1 1 +7143 TNR tenascin R 1 protein-coding TN-R tenascin-R|janusin|restrictin 236 0.0323 1.719 1 1 +7145 TNS1 tensin 1 2 protein-coding MST091|MST122|MST127|MSTP091|MSTP122|MSTP127|MXRA6|PPP1R155|TNS tensin-1|Matrix-remodelling-associated protein 6|matrix-remodelling associated 6|protein phosphatase 1, regulatory subunit 155 148 0.02026 11.54 1 1 +7148 TNXB tenascin XB 6 protein-coding EDS3|HXBL|TENX|TN-X|TNX|TNXB1|TNXB2|TNXBS|VUR8|XB|XBS tenascin-X|growth-inhibiting protein 45|hexabrachion-like protein|tenascin XB1|tenascin XB2 260 0.03559 8.467 1 1 +7150 TOP1 topoisomerase (DNA) I 20 protein-coding TOPI DNA topoisomerase 1|type I DNA topoisomerase 49 0.006707 11.19 1 1 +7151 TOP1P1 topoisomerase (DNA) I pseudogene 1 1 pseudo - - 6.664 0 1 +7152 TOP1P2 topoisomerase (DNA) I pseudogene 2 22 pseudo - - 2.522 0 1 +7153 TOP2A topoisomerase (DNA) II alpha 17 protein-coding TOP2|TP2A DNA topoisomerase 2-alpha|DNA gyrase|DNA topoisomerase (ATP-hydrolyzing)|DNA topoisomerase II, 170 kD|DNA topoisomerase II, alpha isozyme|topoisomerase (DNA) II alpha 170kDa 65 0.008897 10.27 1 1 +7155 TOP2B topoisomerase (DNA) II beta 3 protein-coding TOPIIB|top2beta 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 (DNA) II beta 180kDa|topoisomerase II beta|topoisomerase IIb 77 0.01054 11.57 1 1 +7156 TOP3A topoisomerase (DNA) III alpha 17 protein-coding TOP3|ZGRF7 DNA topoisomerase 3-alpha|DNA topoisomerase III alpha|topo III-alpha|zinc finger, GRF-type containing 7 63 0.008623 8.764 1 1 +7157 TP53 tumor protein p53 17 protein-coding BCC7|LFS1|P53|TRP53 cellular tumor antigen p53|antigen NY-CO-13|mutant tumor protein 53|p53 tumor suppressor|phosphoprotein p53|transformation-related protein 53|tumor protein 53|tumor supressor p53 2587 0.3541 10.27 1 1 +7158 TP53BP1 tumor protein p53 binding protein 1 15 protein-coding 53BP1|TDRD30|TP53|p202|p53BP1 tumor suppressor p53-binding protein 1|p53-binding protein 1|tumor protein 53-binding protein, 1 139 0.01903 9.99 1 1 +7159 TP53BP2 tumor protein p53 binding protein 2 1 protein-coding 53BP2|ASPP2|BBP|P53BP2|PPP1R13A apoptosis-stimulating of p53 protein 2|BCL2-binding protein|apoptosis-stimulating protein of p53, 2|renal carcinoma antigen NY-REN-51|tumor suppressor p53-binding protein 2 79 0.01081 10.17 1 1 +7161 TP73 tumor protein p73 1 protein-coding P73 tumor protein p73|p53-like transcription factor|p53-related protein 47 0.006433 5.303 1 1 +7162 TPBG trophoblast glycoprotein 6 protein-coding 5T4|5T4AG|M6P1|WAIF1 trophoblast glycoprotein|5T4 oncofetal antigen|5T4 oncofetal trophoblast glycoprotein|5T4 oncotrophoblast glycoprotein|wnt-activated inhibitory factor 1 26 0.003559 8.707 1 1 +7163 TPD52 tumor protein D52 8 protein-coding D52|N8L|PC-1|PrLZ|hD52 tumor protein D52|prostate and colon associated protein|prostate leucine zipper|protein N8 25 0.003422 10.96 1 1 +7164 TPD52L1 tumor protein D52-like 1 6 protein-coding D53 tumor protein D53 24 0.003285 8.955 1 1 +7165 TPD52L2 tumor protein D52 like 2 20 protein-coding D54|TPD54 tumor protein D54|HCCR-binding protein 2 22 0.003011 11.45 1 1 +7166 TPH1 tryptophan hydroxylase 1 11 protein-coding TPRH|TRPH tryptophan 5-hydroxylase 1|L-tryptophan hydroxylase|indoleacetic acid-5-hydroxylase|tryptophan 5-monooxygenase 1|tryptophan hydroxylase (tryptophan 5-monooxygenase) 37 0.005064 1.599 1 1 +7167 TPI1 triosephosphate isomerase 1 12 protein-coding HEL-S-49|TIM|TPI|TPID triosephosphate isomerase|epididymis secretory protein Li 49|triose-phosphate isomerase 26 0.003559 13.13 1 1 +7168 TPM1 tropomyosin 1 (alpha) 15 protein-coding C15orf13|CMD1Y|CMH3|HEL-S-265|HTM-alpha|LVNC9|TMSA tropomyosin alpha-1 chain|alpha-tropomyosin|cardiomyopathy, hypertrophic 3|epididymis secretory protein Li 265|sarcomeric tropomyosin kappa 23 0.003148 11.71 1 1 +7169 TPM2 tropomyosin 2 (beta) 9 protein-coding AMCD1|DA1|DA2B|HEL-S-273|NEM4|TMSB tropomyosin beta chain|epididymis secretory protein Li 273|nemaline myopathy type 4 28 0.003832 10.73 1 1 +7170 TPM3 tropomyosin 3 1 protein-coding CAPM1|CFTD|HEL-189|HEL-S-82p|NEM1|OK/SW-cl.5|TM-5|TM3|TM30|TM30nm|TM5|TPMsk3|TRK|hscp30 tropomyosin alpha-3 chain|alpha-tropomyosin, slow skeletal|cytoskeletal tropomyosin TM30|epididymis luminal protein 189|epididymis secretory sperm binding protein Li 82p|heat-stable cytoskeletal protein 30 kDa|tropomyosin gamma|tropomyosin-5 21 0.002874 12.82 1 1 +7171 TPM4 tropomyosin 4 19 protein-coding HEL-S-108 tropomyosin alpha-4 chain|TM30p1|epididymis secretory protein Li 108 20 0.002737 13.06 1 1 +7172 TPMT thiopurine S-methyltransferase 6 protein-coding TPMTD thiopurine S-methyltransferase|S-adenosyl-L-methionine:thiopurine S-methyltransferase 13 0.001779 9.751 1 1 +7173 TPO thyroid peroxidase 2 protein-coding MSA|TDH2A|TPX thyroid peroxidase|thyroid microsomal antigen|thyroperoxidase 173 0.02368 2.156 1 1 +7174 TPP2 tripeptidyl peptidase 2 13 protein-coding TPP-2|TPP-II|TPPII tripeptidyl-peptidase 2|tripeptidyl aminopeptidase|tripeptidyl-peptidase II 84 0.0115 9.82 1 1 +7175 TPR translocated promoter region, nuclear basket protein 1 protein-coding - nucleoprotein TPR|NPC-associated intranuclear protein|megator|nuclear pore complex-associated protein TPR|translocated promoter region (to activated MET oncogene)|translocated promoter region protein|tumor potentiating region 165 0.02258 11.46 1 1 +7177 TPSAB1 tryptase alpha/beta 1 16 protein-coding TPS1|TPS2|TPSB1 tryptase alpha/beta-1|mast cell alpha II tryptase|mast cell beta I tryptase|tryptase alpha II|tryptase alpha-1|tryptase beta I|tryptase beta-1|tryptase-1|tryptase-I|tryptase-III 25 0.003422 6.354 1 1 +7178 TPT1 tumor protein, translationally-controlled 1 13 protein-coding HRF|TCTP|p02|p23 translationally-controlled tumor protein|fortilin|histamine-releasing factor 7 0.0009581 15.54 1 1 +7179 TPTE transmembrane phosphatase with tensin homology 21 protein-coding CT44|PTEN2 putative tyrosine-protein phosphatase TPTE|PTEN-related tyrosine phosphatase|cancer/testis antigen 44|tensin, putative protein-tyrosine phosphatase|tumor antigen BJ-HCC-5 239 0.03271 1.197 1 1 +7180 CRISP2 cysteine rich secretory protein 2 6 protein-coding CRISP-2|CT36|GAPDL5|TPX1|TSP1 cysteine-rich secretory protein 2|cancer/testis antigen 36|glyceraldehyde-3-phosphate dehydrogenase-like 5|testicular tissue protein Li 43|testis specific protein 1 (probe H4-1 p3-1)|testis-specific protein TPX-1 30 0.004106 0.7792 1 1 +7181 NR2C1 nuclear receptor subfamily 2 group C member 1 12 protein-coding TR2 nuclear receptor subfamily 2 group C member 1|TR2 nuclear hormone receptor|nuclear receptor subfamily 2, group C isoform|orphan nuclear receptor TR2 26 0.003559 8.433 1 1 +7182 NR2C2 nuclear receptor subfamily 2 group C member 2 3 protein-coding TAK1|TR4 nuclear receptor subfamily 2 group C member 2|Nuclear hormone receptor TR4|orphan nuclear receptor TAK1|orphan nuclear receptor TR4|orphan receptor TR4|testicular nuclear receptor 4 32 0.00438 9.654 1 1 +7184 HSP90B1 heat shock protein 90 beta family member 1 12 protein-coding ECGP|GP96|GRP94|HEL-S-125m|HEL35|TRA1 endoplasmin|94 kDa glucose-regulated protein|endothelial cell (HBMEC) glycoprotein|epididymis luminal protein 35|epididymis secretory sperm binding protein Li 125m|heat shock protein 90 kDa beta member 1|heat shock protein 90kDa beta (Grp94), member 1|heat shock protein 90kDa beta family member 1|stress-inducible tumor rejection antigen gp96|tumor rejection antigen (gp96) 1|tumor rejection antigen 1 61 0.008349 14.19 1 1 +7185 TRAF1 TNF receptor associated factor 1 9 protein-coding EBI6|MGC:10353 TNF receptor-associated factor 1|Epstein-Bar virus-induced protein 6 21 0.002874 8.022 1 1 +7186 TRAF2 TNF receptor associated factor 2 9 protein-coding MGC:45012|TRAP|TRAP3 TNF receptor-associated factor 2|E3 ubiquitin-protein ligase TRAF2|tumor necrosis factor type 2 receptor associated protein 3 32 0.00438 9.013 1 1 +7187 TRAF3 TNF receptor associated factor 3 14 protein-coding CAP-1|CAP1|CD40bp|CRAF1|IIAE5|LAP1 TNF receptor-associated factor 3|CD40 associated protein 1|CD40 binding protein|CD40 receptor associated factor 1|LMP1-associated protein 1 34 0.004654 7.898 1 1 +7188 TRAF5 TNF receptor associated factor 5 1 protein-coding MGC:39780|RNF84 TNF receptor-associated factor 5|RING finger protein 84 31 0.004243 8.308 1 1 +7189 TRAF6 TNF receptor associated factor 6 11 protein-coding MGC:3310|RNF85 TNF receptor-associated factor 6|E3 ubiquitin-protein ligase TRAF6|RING finger protein 85|TNF receptor-associated factor 6, E3 ubiquitin protein ligase|interleukin-1 signal transducer 33 0.004517 7.406 1 1 +7190 HSP90B2P heat shock protein 90 beta family member 2, pseudogene 15 pseudo GRP94P1|GRP94b|HSP|HSPCP2|TRA1P1|TRAP1 heat shock protein 90kDa beta (Grp94), member 1 pseudogene|heat shock protein 90kDa beta (Grp94), member 2, pseudogene|heat shock protein 90kDa beta family member 2, pseudogene|heat shock protein 94b|tumor rejection antigen (gp96) 1 pseudogene 1 0 0 1 0 +7200 TRH thyrotropin releasing hormone 3 protein-coding Pro-TRH|TRF thyrotropin releasing hormone|TSH-releasing factor|pro-thyrotropin-releasing hormone|prothyroliberin|protirelin|thyrotropin-releasing factor 34 0.004654 1.557 1 1 +7201 TRHR thyrotropin releasing hormone receptor 8 protein-coding TRH-R thyrotropin-releasing hormone receptor|thyroliberin receptor 49 0.006707 0.2069 1 1 +7203 CCT3 chaperonin containing TCP1 subunit 3 1 protein-coding CCT-gamma|CCTG|PIG48|TCP-1-gamma|TRIC5 T-complex protein 1 subunit gamma|T-complex protein 1, gamma subunit|TCP1 (t-complex-1) ring complex, polypeptide 5|chaperonin containing TCP1, subunit 3 (gamma)|hTRiC5 39 0.005338 12.73 1 1 +7204 TRIO trio Rho guanine nucleotide exchange factor 5 protein-coding ARHGEF23|MEBAS|MRD44|tgat triple functional domain protein|PTPRF-interacting protein|triple functional domain (PTPRF interacting) 192 0.02628 10.46 1 1 +7205 TRIP6 thyroid hormone receptor interactor 6 7 protein-coding OIP-1|OIP1|TRIP-6|TRIP6i2|ZRP-1 thyroid receptor-interacting protein 6|OPA-interacting protein 1|TR-interacting protein 6|thyroid hormone receptor interacting protein 6|zyxin related protein 1 42 0.005749 10.31 1 1 +7216 TRO trophinin X protein-coding MAGE-d3|MAGED3 trophinin|MAGE superfamily protein|MAGE-D3 antigen|magphinin|melanoma antigen, family D, 3 106 0.01451 7.356 1 1 +7220 TRPC1 transient receptor potential cation channel subfamily C member 1 3 protein-coding HTRP-1|TRP1 short transient receptor potential channel 1|TRP-1|capacitative calcium channel protein Trp1|transient receptor potential canonical 1|transient receptor protein 1 78 0.01068 6.539 1 1 +7221 TRPC2 transient receptor potential cation channel subfamily C member 2, pseudogene 11 pseudo - transient receptor potential channel 2 (pseudogene) 5 0.0006844 1.248 1 1 +7222 TRPC3 transient receptor potential cation channel subfamily C member 3 4 protein-coding SCA41|TRP3 short transient receptor potential channel 3|hTrp-3|transient receptor potential cation channel subfamily C member 3 variant c|transient receptor protein 3 87 0.01191 2.581 1 1 +7223 TRPC4 transient receptor potential cation channel subfamily C member 4 13 protein-coding HTRP-4|HTRP4|TRP4 short transient receptor potential channel 4|trp-related protein 4 142 0.01944 3.618 1 1 +7224 TRPC5 transient receptor potential cation channel subfamily C member 5 X protein-coding PPP1R159|TRP5 short transient receptor potential channel 5|TRP-5|hTRP5|protein phosphatase 1, regulatory subunit 159|transient receptor potential channel 5|transient receptor protein 5 116 0.01588 1.287 1 1 +7225 TRPC6 transient receptor potential cation channel subfamily C member 6 11 protein-coding FSGS2|TRP6 short transient receptor potential channel 6|TRP-6|focal segmental glomerulosclerosis 2|transient receptor protein 6 110 0.01506 5.627 1 1 +7226 TRPM2 transient receptor potential cation channel subfamily M member 2 21 protein-coding EREG1|KNP3|LTRPC2|LTrpC-2|NUDT9H|NUDT9L1|TRPC7 transient receptor potential cation channel subfamily M member 2|estrogen-responsive element-associated gene 1 protein|long transient receptor potential channel 2|transient receptor potential channel 7 134 0.01834 7.716 1 1 +7227 TRPS1 transcriptional repressor GATA binding 1 8 protein-coding GC79|LGCR zinc finger transcription factor Trps1|tricho-rhino-phalangeal syndrome type I protein|trichorhinophalangeal syndrome I|zinc finger protein GC79 204 0.02792 8.956 1 1 +7247 TSN translin 2 protein-coding BCLF-1|C3PO|RCHF1|REHF-1|TBRBP|TRSLN translin|component 3 of promoter of RISC|recombination hotspot associated factor|recombination hotspot-binding protein|testis brain-RNA binding protein 22 0.003011 10.92 1 1 +7248 TSC1 tuberous sclerosis 1 9 protein-coding LAM|TSC hamartin|tuberous sclerosis 1 protein|tumor suppressor 102 0.01396 9.617 1 1 +7249 TSC2 tuberous sclerosis 2 16 protein-coding LAM|PPP1R160|TSC4 tuberin|protein phosphatase 1, regulatory subunit 160|tuberous sclerosis 2 protein 111 0.01519 10.83 1 1 +7251 TSG101 tumor susceptibility 101 11 protein-coding TSG10|VPS23 tumor susceptibility gene 101 protein|ESCRT-I complex subunit TSG101|tumor susceptibility gene 10|tumor susceptibility gene 101|tumor susceptibility protein 28 0.003832 10.49 1 1 +7252 TSHB thyroid stimulating hormone beta 1 protein-coding TSH-B|TSH-BETA thyrotropin subunit beta|thyrotropin beta chain 16 0.00219 0.05601 1 1 +7253 TSHR thyroid stimulating hormone receptor 14 protein-coding CHNG1|LGR3|hTSHR-I thyrotropin receptor|TSH receptor|seven transmembrane helix receptor|thyrotropin receptor-I, hTSHR-I 75 0.01027 3.264 1 1 +7257 TSNAX translin associated factor X 1 protein-coding TRAX translin-associated protein X|translin-like protein 18 0.002464 9.926 1 1 +7258 TSPY1 testis specific protein, Y-linked 1 Y protein-coding CT78|DYS14|TSPY|pJA923 testis-specific Y-encoded protein 1|cancer/testis antigen 78 2 0.0002737 0.1732 1 1 +7259 TSPYL1 TSPY like 1 6 protein-coding TSPYL testis-specific Y-encoded-like protein 1|TSPY-like protein 1 27 0.003696 11 1 1 +7260 TSSC1 tumor suppressing subtransferable candidate 1 2 protein-coding - protein TSSC1|tumor-suppressing STF cDNA 1 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 1 protein|tumor-suppressing subtransferable fragment candidate gene 1 33 0.004517 9.143 1 1 +7262 PHLDA2 pleckstrin homology like domain family A member 2 11 protein-coding BRW1C|BWR1C|HLDA2|IPL|TSSC3 pleckstrin homology-like domain family A member 2|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|tumor suppressing subchromosomal transferable fragment cDNA 3|tumor suppressing subtransferable candidate 3|tumor-suppressing subchromosomal transferable fragment candidate gene 3 protein|tumor-supressing STF cDNA 3 13 0.001779 7.252 1 1 +7263 TST thiosulfate sulfurtransferase 22 protein-coding RDS thiosulfate sulfurtransferase|thiosulfate sulfurtransferase (rhodanese) 21 0.002874 9.61 1 1 +7264 TSTA3 tissue specific transplantation antigen P35B 8 protein-coding FX|P35B|SDR4E1 GDP-L-fucose synthase|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|red cell NADP(H)-binding protein|short chain dehydrogenase/reductase family 4E, member 1|testis tissue sperm-binding protein Li 45a|tissue specific transplantation antigen 3 21 0.002874 10.73 1 1 +7265 TTC1 tetratricopeptide repeat domain 1 5 protein-coding TPR1 tetratricopeptide repeat protein 1|TPR repeat protein 1 20 0.002737 9.957 1 1 +7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 17 protein-coding DJ11|DJC7|TPR2|TTC2 dnaJ homolog subfamily C member 7|DnaJ (Hsp40) homolog, subfamily C, member 7|TPR repeat protein 2|tetratricopeptide repeat domain 2|tetratricopeptide repeat protein 2 25 0.003422 10.74 1 1 +7267 TTC3 tetratricopeptide repeat domain 3 21 protein-coding DCRR1|RNF105|TPRDIII E3 ubiquitin-protein ligase TTC3|RING finger protein 105|TPR repeat protein 3|TPR repeat protein D|tetratricopeptide repeat protein 3 129 0.01766 11.98 1 1 +7268 TTC4 tetratricopeptide repeat domain 4 1 protein-coding - tetratricopeptide repeat protein 4|TPR repeat protein 4 21 0.002874 9.125 1 1 +7270 TTF1 transcription termination factor 1 9 protein-coding TTF-1|TTF-I transcription termination factor 1|transcription termination factor, RNA polymerase I 69 0.009444 8.37 1 1 +7272 TTK TTK protein kinase 6 protein-coding CT96|ESK|MPH1|MPS1|MPS1L1|PYT dual specificity protein kinase TTK|cancer/testis antigen 96|monopolar spindle 1 kinase|monopolar spindle 1-like 1|phosphotyrosine picked threonine kinase|phosphotyrosine picked threonine-protein kinase 83 0.01136 7.139 1 1 +7273 TTN titin 2 protein-coding CMD1G|CMH9|CMPD4|EOMFC|HMERF|LGMD2J|MYLK5|TMD titin|connectin|rhabdomyosarcoma antigen MU-RMS-40.14 1977 0.2706 6.836 1 1 +7274 TTPA alpha tocopherol transfer protein 8 protein-coding ATTP|AVED|TTP1|alphaTTP alpha-tocopherol transfer protein|alpha-TTP|tocopherol (alpha) transfer protein (ataxia (Friedreich-like) with vitamin E deficiency) 26 0.003559 1.899 1 1 +7275 TUB tubby bipartite transcription factor 11 protein-coding RDOB|rd5 tubby protein homolog|tubby homolog|tubby homologue 58 0.007939 7.405 1 1 +7276 TTR transthyretin 18 protein-coding CTS|CTS1|HEL111|HsT2651|PALB|TBPA transthyretin|ATTR|carpal tunnel syndrome 1|epididymis luminal protein 111|prealbumin, amyloidosis type I|thyroxine-binding prealbumin 14 0.001916 2.313 1 1 +7277 TUBA4A tubulin alpha 4a 2 protein-coding ALS22|H2-ALPHA|TUBA1 tubulin alpha-4A chain|tubulin H2-alpha|tubulin alpha-1 chain|tubulin, alpha 1 (testis specific) 20 0.002737 10.14 1 1 +7278 TUBA3C tubulin alpha 3c 13 protein-coding TUBA2|bA408E5.3 tubulin alpha-3C/D chain|alpha-tubulin 2|alpha-tubulin 3C/D|tubulin alpha-2 chain|tubulin, alpha 2 110 0.01506 0.8906 1 1 +7280 TUBB2A tubulin beta 2A class IIa 6 protein-coding CDCBM5|TUBB|TUBB2 tubulin beta-2A chain|class IIa beta-tubulin|tubulin, beta 2A|tubulin, beta polypeptide 2 16 0.00219 10.12 1 1 +7283 TUBG1 tubulin gamma 1 17 protein-coding CDCBM4|GCP-1|TUBG|TUBGCP1 tubulin gamma-1 chain|gamma-tubulin complex component 1|tubulin, gamma polypeptide 29 0.003969 9.987 1 1 +7284 TUFM Tu translation elongation factor, mitochondrial 16 protein-coding COXPD4|EF-TuMT|EFTU|P43 elongation factor Tu, mitochondrial|EF-Tu 27 0.003696 12.12 1 1 +7286 TUFT1 tuftelin 1 1 protein-coding - tuftelin 29 0.003969 9.127 1 1 +7287 TULP1 tubby like protein 1 6 protein-coding LCA15|RP14|TUBL1 tubby-related protein 1 45 0.006159 1.365 1 1 +7288 TULP2 tubby like protein 2 19 protein-coding CT65|TUBL2 tubby-related protein 2|cancer testis antigen 65 35 0.004791 0.7155 1 1 +7289 TULP3 tubby like protein 3 12 protein-coding TUBL3 tubby-related protein 3 42 0.005749 9.238 1 1 +7290 HIRA histone cell cycle regulator 22 protein-coding DGCR1|TUP1|TUPLE1 protein HIRA|DiGeorge critical region gene 1|HIR histone cell cycle regulation defective homolog A|TUP1-like enhancer of split protein 1 72 0.009855 9.912 1 1 +7291 TWIST1 twist family bHLH transcription factor 1 7 protein-coding ACS3|BPES2|BPES3|CRS|CRS1|CSO|SCS|TWIST|bHLHa38 twist-related protein 1|B-HLH DNA binding protein|H-twist|TWIST homolog of drosophila|class A basic helix-loop-helix protein 38|twist basic helix-loop-helix transcription factor 1|twist homolog 1 17 0.002327 5.793 1 1 +7292 TNFSF4 tumor necrosis factor superfamily member 4 1 protein-coding CD134L|CD252|GP34|OX-40L|OX4OL|TNLG2B|TXGP1 tumor necrosis factor ligand superfamily member 4|CD134 ligand|OX40 antigen ligand|glycoprotein Gp34|tax-transcriptionally activated glycoprotein 1 (34kD)|tumor necrosis factor (ligand) superfamily member 4|tumor necrosis factor ligand 2B 16 0.00219 6.184 1 1 +7293 TNFRSF4 TNF receptor superfamily member 4 1 protein-coding ACT35|CD134|IMD16|OX40|TXGP1L tumor necrosis factor receptor superfamily member 4|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 15 0.002053 5.68 1 1 +7294 TXK TXK tyrosine kinase 4 protein-coding BTKL|PSCTK5|PTK4|RLK|TKL tyrosine-protein kinase TXK|PTK4 protein tyrosine kinase 4|protein-tyrosine kinase 4|resting lymphocyte kinase|tyrosine kinase 46 0.006296 3.312 1 1 +7295 TXN thioredoxin 9 protein-coding TRDX|TRX|TRX1 thioredoxin|ADF|ATL-derived factor|SASP|TXN delta 3|surface-associated sulphydryl protein|testicular tissue protein Li 199|thioredoxin delta 3 9 0.001232 11.46 1 1 +7296 TXNRD1 thioredoxin reductase 1 12 protein-coding GRIM-12|TR|TR1|TRXR1|TXNR thioredoxin reductase 1, cytoplasmic|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|testis tissue sperm-binding protein Li 46a|thioredoxin reductase GRIM-12|thioredoxin reductase TR1 48 0.00657 11.08 1 1 +7297 TYK2 tyrosine kinase 2 19 protein-coding IMD35|JTK1 non-receptor tyrosine-protein kinase TYK2 85 0.01163 10.49 1 1 +7298 TYMS thymidylate synthetase 18 protein-coding HST422|TMS|TS thymidylate synthase|TSase 13 0.001779 9.19 1 1 +7299 TYR tyrosinase 11 protein-coding ATN|CMM8|OCA1|OCA1A|OCAIA|SHEP3 tyrosinase|LB24-AB|SK29-AB|monophenol monooxygenase|oculocutaneous albinism IA|tumor rejection antigen AB 91 0.01246 0.5903 1 1 +7300 TYRL tyrosinase-like (pseudogene) 11 pseudo - - 1 0.0001369 1 0 +7301 TYRO3 TYRO3 protein tyrosine kinase 15 protein-coding BYK|Dtk|Etk-2|RSE|Rek|Sky|Tif tyrosine-protein kinase receptor TYRO3|tyrosine-protein kinase DTK|tyrosine-protein kinase RSE|tyrosine-protein kinase SKY|tyrosine-protein kinase TIF|tyrosine-protein kinase byk 78 0.01068 8.349 1 1 +7305 TYROBP TYRO protein tyrosine kinase binding protein 19 protein-coding DAP12|KARAP|PLOSL TYRO protein tyrosine kinase-binding protein|DNAX-activation protein 12|KAR-associated protein|killer-activating receptor-associated protein 12 0.001642 9.422 1 1 +7306 TYRP1 tyrosinase related protein 1 9 protein-coding CAS2|CATB|GP75|OCA3|TRP|TRP1|TYRP|b-PROTEIN 5,6-dihydroxyindole-2-carboxylic acid oxidase|DHICA oxidase|catalase B|glycoprotein 75|melanoma antigen gp75 48 0.00657 2.821 1 1 +7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 21 protein-coding FP793|RN|RNU2AF1|U2AF35|U2AFBP splicing factor U2AF 35 kDa subunit|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 35kDa subunit 42 0.005749 10.74 1 1 +7310 ZRSR1 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 1 5 pseudo U2AF1-RS1|U2AF1L1|U2AF1P|U2AF1RS1|U2AFBPL|ZC3H21 U2 small nuclear RNA auxillary factor 1-like 1|U2 small nuclear ribonucleoprotein auxiliary factor, small subunit 1|U2(RNU2) small nuclear RNA auxiliary factor pseudogene 1|zinc finger (CCCH type), RNA binding motif and serine/arginine rich 1 21 0.002874 1 0 +7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 19 protein-coding CEP52|HUBCEP52|L40|RPL40 ubiquitin-60S ribosomal protein L40|ubiquitin carboxyl extension protein 52|ubiquitin-52 amino acid fusion protein|ubiquitin-CEP52 19 0.002601 13.19 1 1 +7314 UBB ubiquitin B 17 protein-coding HEL-S-50 polyubiquitin-B|epididymis secretory protein Li 50|polyubiquitin B 11 0.001506 13.86 1 1 +7316 UBC ubiquitin C 12 protein-coding HMG20 polyubiquitin-C 56 0.007665 15.05 1 1 +7317 UBA1 ubiquitin like modifier activating enzyme 1 X protein-coding A1S9|A1S9T|A1ST|AMCX1|CFAP124|GXP1|POC20|SMAX2|UBA1A|UBE1|UBE1X ubiquitin-like modifier-activating enzyme 1|A1S9T and BN75 temperature sensitivity complementing|POC20 centriolar protein homolog|UBA1, ubiquitin-activating enzyme E1 homolog A|testicular secretory protein Li 63 46 0.006296 13.01 1 1 +7318 UBA7 ubiquitin like modifier activating enzyme 7 3 protein-coding D8|UBA1B|UBE1L|UBE2 ubiquitin-like modifier-activating enzyme 7|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 44 0.006022 9.639 1 1 +7319 UBE2A ubiquitin conjugating enzyme E2 A X protein-coding HHR6A|MRXS30|MRXSN|RAD6A|UBC2 ubiquitin-conjugating enzyme E2 A|E2 ubiquitin-conjugating enzyme A|RAD6 homolog A|ubiquitin carrier protein A|ubiquitin-conjugating enzyme E2A|ubiquitin-protein ligase A 21 0.002874 10.5 1 1 +7320 UBE2B ubiquitin conjugating enzyme E2 B 5 protein-coding E2-17kDa|HHR6B|HR6B|RAD6B|UBC2 ubiquitin-conjugating enzyme E2 B|E2 protein|E2 ubiquitin-conjugating enzyme B|RAD6 homolog B|ubiquitin carrier protein B|ubiquitin conjugating enzyme E2B|ubiquitin-conjugating enzyme E2-17 kDa|ubiquitin-conjugating enzyme E2B (RAD6 homolog)|ubiquitin-protein ligase B 7 0.0009581 10.15 1 1 +7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 10 protein-coding E2(17)KB1|SFT|UBC4/5|UBCH5|UBCH5A ubiquitin-conjugating enzyme E2 D1|(E3-independent) E2 ubiquitin-conjugating enzyme D1|E2 ubiquitin-conjugating enzyme D1|UBC4/5 homolog|stimulator of Fe transport|ubiquitin carrier protein D1|ubiquitin conjugating enzyme E2D 1|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 10 0.001369 8.711 1 1 +7322 UBE2D2 ubiquitin conjugating enzyme E2 D2 5 protein-coding E2(17)KB2|PUBC1|UBC4|UBC4/5|UBCH4|UBCH5B ubiquitin-conjugating enzyme E2 D2|(E3-independent) E2 ubiquitin-conjugating enzyme D2|E2 ubiquitin-conjugating enzyme D2|p53-regulated ubiquitin-conjugating enzyme 1|ubiquitin carrier protein D2|ubiquitin conjugating enzyme E2D 2|ubiquitin-conjugating enzyme E2-17 kDa 2|ubiquitin-conjugating enzyme E2D 2 (homologous to yeast UBC4/5)|ubiquitin-protein ligase D2 13 0.001779 10.84 1 1 +7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 4 protein-coding E2(17)KB3|UBC4/5|UBCH5C ubiquitin-conjugating enzyme E2 D3|(E3-independent) E2 ubiquitin-conjugating enzyme D3|E2 ubiquitin-conjugating enzyme D3|E2(17)KB 3|PRO2116|ubiquitin carrier protein D3|ubiquitin conjugating enzyme E2D 3|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 23 0.003148 12.19 1 1 +7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 3 protein-coding UBCH6 ubiquitin-conjugating enzyme E2 E1|(E3-independent) E2 ubiquitin-conjugating enzyme E1|E2 ubiquitin-conjugating enzyme E1|ubiquitin carrier protein E1|ubiquitin conjugating enzyme E2E 1|ubiquitin-conjugating enzyme E2E 1 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2E 1 (homologous to yeast UBC4/5)|ubiquitin-protein ligase E1 9 0.001232 10.36 1 1 +7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 3 protein-coding UBCH8 ubiquitin-conjugating enzyme E2 E2|E2 ubiquitin-conjugating enzyme E2|ubiquitin carrier protein E2|ubiquitin conjugating enzyme E2E 2|ubiquitin-conjugating enzyme E2E 2 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2E 2 (homologous to yeast UBC4/5)|ubiquitin-protein ligase E2 11 0.001506 8.395 1 1 +7326 UBE2G1 ubiquitin conjugating enzyme E2 G1 17 protein-coding E217K|UBC7|UBE2G ubiquitin-conjugating enzyme E2 G1|E2 ubiquitin-conjugating enzyme G1|ubiquitin carrier protein G1|ubiquitin conjugating enzyme E2G 1|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 5 0.0006844 10.19 1 1 +7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 21 protein-coding UBC7 ubiquitin-conjugating enzyme E2 G2|E2 ubiquitin-conjugating enzyme G2|ubiquitin carrier protein G2|ubiquitin conjugating enzyme 7|ubiquitin conjugating enzyme E2G 2|ubiquitin conjugating enzyme G2|ubiquitin-conjugating enzyme E2G 2 (UBC7 homolog, yeast)|ubiquitin-conjugating enzyme E2G 2 (homologous to yeast UBC7)|ubiquitin-protein ligase G2 7 0.0009581 10.49 1 1 +7328 UBE2H ubiquitin conjugating enzyme E2 H 7 protein-coding E2-20K|GID3|UBC8|UBCH|UBCH2 ubiquitin-conjugating enzyme E2 H|(E3-independent) E2 ubiquitin-conjugating enzyme H|E2 ubiquitin-conjugating enzyme H|GID complex subunit 3, UBC8 homolog|ubiquitin carrier protein H|ubiquitin conjugating enzyme E2H|ubiquitin-conjugating enzyme E2-20K|ubiquitin-conjugating enzyme E2H (UBC8 homolog, yeast)|ubiquitin-conjugating enzyme E2H (homologous to yeast UBC8)|ubiquitin-protein ligase H 8 0.001095 10.46 1 1 +7329 UBE2I ubiquitin conjugating enzyme E2 I 16 protein-coding C358B7.1|P18|UBC9 SUMO-conjugating enzyme UBC9|SUMO-1-protein ligase|SUMO-protein ligase|ubiquitin carrier protein 9|ubiquitin carrier protein I|ubiquitin conjugating enzyme 9|ubiquitin conjugating enzyme E2I|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 15 0.002053 11.02 1 1 +7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 22 protein-coding E2-F1|L-UBC|UBCH7|UbcM4 ubiquitin-conjugating enzyme E2 L3|E2 ubiquitin-conjugating enzyme L3|ubiquitin carrier protein L3|ubiquitin conjugating enzyme E2L 3|ubiquitin-conjugating enzyme E2-F1|ubiquitin-conjugating enzyme UBCH7|ubiquitin-protein ligase L3 11 0.001506 10.99 1 1 +7334 UBE2N ubiquitin conjugating enzyme E2 N 12 protein-coding HEL-S-71|UBC13|UBCHBEN; UBC13|UbcH-ben|UbcH13 ubiquitin-conjugating enzyme E2 N|E2 ubiquitin-conjugating enzyme N|bendless-like ubiquitin conjugating enzyme|epididymis secretory protein Li 71|ubiquitin carrier protein N|ubiquitin conjugating enzyme E2N|ubiquitin-conjugating enzyme E2N (UBC13 homolog, yeast)|ubiquitin-conjugating enzyme E2N (homologous to yeast UBC13)|ubiquitin-protein ligase N|yeast UBC13 homolog 14 0.001916 10.89 1 1 +7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 20 protein-coding CIR1|CROC-1|CROC1|UBE2V|UEV-1|UEV1|UEV1A ubiquitin-conjugating enzyme E2 variant 1|DNA-binding protein|TRAF6-regulated IKK activator 1 beta Uev1A 2 0.0002737 11.58 1 1 +7336 UBE2V2 ubiquitin conjugating enzyme E2 V2 8 protein-coding DDVIT1|DDVit-1|EDAF-1|EDPF-1|EDPF1|MMS2|UEV-2|UEV2 ubiquitin-conjugating enzyme E2 variant 2|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 9 0.001232 9.759 1 1 +7337 UBE3A ubiquitin protein ligase E3A 15 protein-coding ANCR|AS|E6-AP|EPVE6AP|HPVE6A ubiquitin-protein ligase E3A|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 71 0.009718 10.64 1 1 +7339 UBE3AP2 ubiquitin protein ligase E3A pseudogene 2 21 pseudo - ubiquitin protein ligase, processed pseudogene 1 0.0001369 1 0 +7341 SUMO1 small ubiquitin-like modifier 1 2 protein-coding DAP1|GMP1|OFC10|PIC1|SENP2|SMT3|SMT3C|SMT3H3|UBL1 small ubiquitin-related modifier 1|GAP modifying protein 1|SMT3 homolog 3|SMT3 suppressor of mif two 3 homolog 1|sentrin|ubiquitin-homology domain protein PIC1|ubiquitin-like protein SMT3C|ubiquitin-like protein UBL1 14 0.001916 10.92 1 1 +7342 UBP1 upstream binding protein 1 (LBP-1a) 3 protein-coding LBP-1B|LBP-1a|LBP1A|LBP1B upstream-binding protein 1|transcription factor LBP-1 31 0.004243 10.51 1 1 +7343 UBTF upstream binding transcription factor, RNA polymerase I 17 protein-coding NOR-90|UBF|UBF-1|UBF1|UBF2 nucleolar transcription factor 1|90-kDa nucleolus organizer region autoantigen|autoantigen NOR-90 59 0.008076 11.53 1 1 +7345 UCHL1 ubiquitin C-terminal hydrolase L1 4 protein-coding HEL-117|HEL-S-53|NDGOA|PARK5|PGP 9.5|PGP9.5|PGP95|Uch-L1 ubiquitin carboxyl-terminal hydrolase isozyme L1|epididymis luminal protein 117|epididymis secretory protein Li 53|neuron cytoplasmic protein 9.5|ubiquitin C-terminal hydrolase|ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase)|ubiquitin thioesterase L1|ubiquitin thiolesterase 12 0.001642 8.098 1 1 +7347 UCHL3 ubiquitin C-terminal hydrolase L3 13 protein-coding UCH-L3 ubiquitin carboxyl-terminal hydrolase isozyme L3|testicular tissue protein Li 221|ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase)|ubiquitin thioesterase L3|ubiquitin thiolesterase 15 0.002053 8.573 1 1 +7348 UPK1B uroplakin 1B 3 protein-coding TSPAN20|UPIB|UPK1 uroplakin-1b|UP1b|tetraspan|tetraspanin-20|tspan-20|uroplakin Ib 14 0.001916 2.79 1 1 +7349 UCN urocortin 2 protein-coding UI|UROC urocortin|prepro-urocortin|urocortin, preproprotein 5 0.0006844 2.876 1 1 +7350 UCP1 uncoupling protein 1 4 protein-coding SLC25A7|UCP mitochondrial brown fat uncoupling protein 1|solute carrier family 25 member 7|thermogenin|uncoupling protein 1 (mitochondrial, proton carrier) 26 0.003559 0.3914 1 1 +7351 UCP2 uncoupling protein 2 11 protein-coding BMIQ4|SLC25A8|UCPH mitochondrial uncoupling protein 2|solute carrier family 25 member 8|uncoupling protein 2 (mitochondrial, proton carrier) 20 0.002737 10.61 1 1 +7352 UCP3 uncoupling protein 3 11 protein-coding SLC25A9 mitochondrial uncoupling protein 3|solute carrier family 25 member 9|uncoupling protein 3 (mitochondrial, proton carrier) 20 0.002737 4.337 1 1 +7353 UFD1L ubiquitin fusion degradation 1 like (yeast) 22 protein-coding UFD1 ubiquitin fusion degradation protein 1 homolog|UB fusion protein 1 19 0.002601 10.2 1 1 +7355 SLC35A2 solute carrier family 35 member A2 X protein-coding CDG2M|CDGX|UDP-Gal-Tr|UGALT|UGAT|UGT|UGT1|UGT2|UGTL UDP-galactose translocator|solute carrier family 35 (UDP-galactose transporter), member 2|solute carrier family 35 (UDP-galactose transporter), member A2 27 0.003696 9.763 1 1 +7356 SCGB1A1 secretoglobin family 1A member 1 11 protein-coding CC10|CC16|CCPBP|CCSP|UGB|UP-1|UP1 uteroglobin|blastokinin|clara cell phospholipid-binding protein|clara cells 10 kDa secretory protein|secretoglobin, family 1A, member 1 (uteroglobin)|urinary protein 1|urine protein 1 7 0.0009581 1.551 1 1 +7357 UGCG UDP-glucose ceramide glucosyltransferase 9 protein-coding GCS|GLCT1 ceramide glucosyltransferase|UDP-glucose:N-acylsphingosine D-glucosyltransferase|glucosylceramide synthase 21 0.002874 7.873 1 1 +7358 UGDH UDP-glucose 6-dehydrogenase 4 protein-coding GDH|UDP-GlcDH|UDPGDH|UGD UDP-glucose 6-dehydrogenase|UDP-Glc dehydrogenase|UDP-glucose dehydrogenase|uridine diphospho-glucose dehydrogenase 29 0.003969 10.17 1 1 +7360 UGP2 UDP-glucose pyrophosphorylase 2 2 protein-coding UDPG|UDPGP|UDPGP2|UGP1|UGPP1|UGPP2|pHC379 UTP--glucose-1-phosphate uridylyltransferase|UDP-glucose diphosphorylase|UDP-glucose pyrophosphorylase 1|UGPase 2|UTP--glucose-1-phosphate uridylyltransferase 2|UTP-glucose-1-phosphate uridyltransferase|Uridyl diphosphate glucose pyrophosphorylase-1|testis tissue sperm-binding protein Li 58p|uridyl diphosphate glucose pyrophosphorylase 2 45 0.006159 11.03 1 1 +7363 UGT2B4 UDP glucuronosyltransferase family 2 member B4 4 protein-coding HLUG25|UDPGT2B4|UDPGTH1|UDPGTh-1|UGT2B11 UDP-glucuronosyltransferase 2B4|UDP glucuronosyltransferase 2 family, polypeptide B4|UDP-glucuronyltransferase, family 2, beta-4|UDPGT 2B4|hyodeoxycholic acid|hyodeoxycholic acid-specific UDPGT 83 0.01136 1.667 1 1 +7364 UGT2B7 UDP glucuronosyltransferase family 2 member B7 4 protein-coding UDPGT 2B7|UDPGT 2B9|UDPGT2B7|UDPGTH2|UDPGTh-2|UGT2B9 UDP-glucuronosyltransferase 2B7|3,4-catechol estrogen specific|3,4-catechol estrogen-specific UDPGT|UDP glucuronosyltransferase 2 family, polypeptide B7|UDP-glucuronosyltransferase 2B9|UDP-glucuronyltransferase, family 2, beta-7 64 0.00876 2.92 1 1 +7365 UGT2B10 UDP glucuronosyltransferase family 2 member B10 4 protein-coding UDPGT2B10 UDP-glucuronosyltransferase 2B10|UDP glucuronosyltransferase 2 family, polypeptide B10|UDPGT 2B10 53 0.007254 1.251 1 1 +7366 UGT2B15 UDP glucuronosyltransferase family 2 member B15 4 protein-coding HLUG4|UDPGT 2B8|UDPGT2B15|UDPGTH3|UGT2B8 UDP-glucuronosyltransferase 2B15|UDP glucuronosyltransferase 2 family, member 15|UDP glucuronosyltransferase 2 family, member B8|UDP glucuronosyltransferase 2 family, polypeptide B15|UDP glycosyltransferase 2B15|UDP gycosyltransferase 2 family, member B15|UDP-glucuronosyltransferase 2B8|UDP-glucuronosyltransferase UGT2B15|UDP-glucuronyltransferase, family 2, beta-15|uridine diphosphate glucuronosyltransferase 2 family, member B8|uridine diphosphate glycosyltransferase 2 family, member B15 67 0.009171 2.69 1 1 +7367 UGT2B17 UDP glucuronosyltransferase family 2 member B17 4 protein-coding BMND12|UDPGT2B17 UDP-glucuronosyltransferase 2B17|C19-steroid-specific UDP-glucuronosyltransferase|C19-steroid-specific UDPGT|UDP glucuronosyltransferase 2 family, polypeptide B17|UDP glycosyltransferase 2 family, member B17|UDP-glucuronyltransferase, family 2, beta-17 43 0.005886 1 0 +7368 UGT8 UDP glycosyltransferase 8 4 protein-coding CGT|UGT4 2-hydroxyacylsphingosine 1-beta-galactosyltransferase|UDP-galactose-ceramide galactosyltransferase|ceramide UDP-galactosyltransferase|cerebroside synthase|uridine diphosphate glycosyltransferase 8 39 0.005338 5.492 1 1 +7369 UMOD uromodulin 16 protein-coding ADMCKD2|FJHN|HNFJ|HNFJ1|MCKD2|THGP|THP uromodulin|Tamm-Horsfall urinary glycoprotein|uromucoid 69 0.009444 0.5777 1 1 +7371 UCK2 uridine-cytidine kinase 2 1 protein-coding TSA903|UK|UMPK uridine-cytidine kinase 2|cytidine monophosphokinase 2|testis-specific protein TSA903|uridine kinase|uridine monophosphate kinase|uridine monophosphokinase 2 25 0.003422 8.43 1 1 +7372 UMPS uridine monophosphate synthetase 3 protein-coding OPRT uridine 5'-monophosphate synthase|OMPdecase|OPRTase|UMP synthase|orotate phosphoribosyltransferase|orotidine 5'-phosphate decarboxylase 31 0.004243 9.355 1 1 +7373 COL14A1 collagen type XIV alpha 1 chain 8 protein-coding UND collagen alpha-1(XIV) chain|collagen, type XIV, alpha 1|undulin (fibronectin-tenascin-related) 212 0.02902 9.155 1 1 +7374 UNG uracil DNA glycosylase 12 protein-coding DGU|HIGM4|HIGM5|UDG|UNG1|UNG15|UNG2 uracil-DNA glycosylase|UDG|uracil-DNA glycosylase 1, uracil-DNA glycosylase 2 15 0.002053 10.04 1 1 +7375 USP4 ubiquitin specific peptidase 4 3 protein-coding UNP|Unph ubiquitin carboxyl-terminal hydrolase 4|deubiquitinating enzyme 4|ubiquitin carboxyl-terminal esterase 4|ubiquitin specific peptidase 4 (proto-oncogene)|ubiquitin specific protease 4 (proto-oncogene)|ubiquitin thioesterase 4|ubiquitin thiolesterase 4|ubiquitin-specific processing protease 4|ubiquitous nuclear protein homolog 57 0.007802 10.19 1 1 +7376 NR1H2 nuclear receptor subfamily 1 group H member 2 19 protein-coding LXR-b|LXRB|NER|NER-I|RIP15|UNR oxysterols receptor LXR-beta|LX receptor beta|liver X nuclear receptor beta|nuclear orphan receptor LXR-beta|nuclear receptor NER|steroid hormone-nuclear receptor NER|ubiquitously-expressed nuclear receptor 39 0.005338 10.69 1 1 +7378 UPP1 uridine phosphorylase 1 7 protein-coding UDRPASE|UP|UPASE|UPP uridine phosphorylase 1|UPase 1|urdPase 1 29 0.003969 8.766 1 1 +7379 UPK2 uroplakin 2 11 protein-coding UP2|UPII uroplakin-2|uroplakin II 11 0.001506 2.701 1 1 +7380 UPK3A uroplakin 3A 22 protein-coding UP3A|UPIII|UPIIIA|UPK3 uroplakin-3a|uroplakin 3|uroplakin III 15 0.002053 2.721 1 1 +7381 UQCRB ubiquinol-cytochrome c reductase binding protein 8 protein-coding MC3DN3|QCR7|QP-C|QPC|UQBC|UQBP|UQCR6|UQPC cytochrome b-c1 complex subunit 7|complex III subunit 7|complex III subunit VII|mitochondrial ubiquinone-binding protein|ubiquinol-cytochrome c reductase complex 14 kDa protein|ubiquinol-cytochrome c reductase, complex III subunit VI 13 0.001779 11.76 1 1 +7384 UQCRC1 ubiquinol-cytochrome c reductase core protein I 3 protein-coding D3S3191|QCR1|UQCR1 cytochrome b-c1 complex subunit 1, mitochondrial|complex III subunit 1|core protein I|ubiquinol-cytochrome-c reductase complex core protein 1 21 0.002874 11.87 1 1 +7385 UQCRC2 ubiquinol-cytochrome c reductase core protein II 16 protein-coding MC3DN5|QCR2|UQCR2 cytochrome b-c1 complex subunit 2, mitochondrial|complex III subunit 2|cytochrome bc-1 complex core protein II|ubiquinol-cytochrome-c reductase complex core protein 2 29 0.003969 11.64 1 1 +7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 19 protein-coding RIP1|RIS1|RISP|UQCR5 cytochrome b-c1 complex subunit Rieske, mitochondrial|Rieske iron-sulfur protein|complex III subunit 5|cytochrome b-c1 complex subunit 5|ubiquinol-cytochrome c reductase iron-sulfur subunit 24 0.003285 10.7 1 1 +7388 UQCRH ubiquinol-cytochrome c reductase hinge protein 1 protein-coding QCR6|UQCR8 cytochrome b-c1 complex subunit 6, mitochondrial|complex III subunit 6|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 5 0.0006844 10.82 1 1 +7389 UROD uroporphyrinogen decarboxylase 1 protein-coding PCT|UPD uroporphyrinogen decarboxylase|uroporphyrinogen III decarboxylase 22 0.003011 10.29 1 1 +7390 UROS uroporphyrinogen III synthase 10 protein-coding UROIIIS uroporphyrinogen-III synthase|hydroxymethylbilane hydrolyase|uroporphyrinogen-III cosynthase 22 0.003011 9.317 1 1 +7391 USF1 upstream transcription factor 1 1 protein-coding FCHL|FCHL1|HYPLIP1|MLTF|MLTFI|UEF|bHLHb11 upstream stimulatory factor 1|class B basic helix-loop-helix protein 11|major late transcription factor 1 22 0.003011 9.989 1 1 +7392 USF2 upstream transcription factor 2, c-fos interacting 19 protein-coding FIP|bHLHb12 upstream stimulatory factor 2|c-fos interacting protein|class B basic helix-loop-helix protein 12|major late transcription factor 2 19 0.002601 11.25 1 1 +7398 USP1 ubiquitin specific peptidase 1 1 protein-coding UBP ubiquitin carboxyl-terminal hydrolase 1|deubiquitinating enzyme 1|hUBP|ubiquitin specific processing protease 1|ubiquitin specific protease 1|ubiquitin thioesterase 1|ubiquitin thiolesterase 1 48 0.00657 9.958 1 1 +7399 USH2A usherin 1 protein-coding RP39|US2|USH2|dJ1111A8.1 usherin|Usher syndrome 2A (autosomal recessive, mild)|usher syndrome 2A|usher syndrome type IIa protein|usher syndrome type-2A protein 630 0.08623 2.377 1 1 +7401 CLRN1 clarin 1 3 protein-coding RP61|USH3|USH3A clarin-1|Usher syndrome type-3 protein 26 0.003559 0.2146 1 1 +7402 UTRN utrophin 6 protein-coding DMDL|DRP|DRP1 utrophin|DRP-1|dystrophin-related protein 1 229 0.03134 10.59 1 1 +7403 KDM6A lysine demethylase 6A X protein-coding KABUK2|UTX|bA386N14.2 lysine-specific demethylase 6A|bA386N14.2 (ubiquitously transcribed X chromosome tetratricopeptide repeat protein (UTX))|histone demethylase UTX|lysine (K)-specific demethylase 6A|ubiquitously transcribed tetratricopeptide repeat protein X-linked|ubiquitously-transcribed TPR gene on the X chromosome 214 0.02929 9.188 1 1 +7404 UTY ubiquitously transcribed tetratricopeptide repeat containing, Y-linked Y protein-coding KDM6AL|UTY1 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 25 0.003422 3.846 1 1 +7405 UVRAG UV radiation resistance associated 11 protein-coding DHTX|VPS38|p63 UV radiation resistance-associated gene protein|beclin 1 binding protein|disrupted in heterotaxy 51 0.006981 9.13 1 1 +7407 VARS valyl-tRNA synthetase 6 protein-coding G7A|VARS1|VARS2 valine--tRNA ligase|protein G7a|valRS|valine tRNA ligase 1, cytoplasmic|valyl-tRNA synthetase 2 78 0.01068 11.08 1 1 +7408 VASP vasodilator-stimulated phosphoprotein 19 protein-coding - vasodilator-stimulated phosphoprotein 13 0.001779 10.92 1 1 +7409 VAV1 vav guanine nucleotide exchange factor 1 19 protein-coding VAV proto-oncogene vav|vav 1 guanine nucleotide exchange factor|vav 1 oncogene 78 0.01068 7.176 1 1 +7410 VAV2 vav guanine nucleotide exchange factor 2 9 protein-coding VAV-2 guanine nucleotide exchange factor VAV2|vav 2 guanine nucleotide exchange factor|vav 2 oncogene 64 0.00876 10.27 1 1 +7411 VBP1 VHL binding protein 1 X protein-coding HIBBJ46|PFD3|PFDN3|VBP-1 prefoldin subunit 3|von Hippel-Lindau binding protein 1 15 0.002053 9.912 1 1 +7412 VCAM1 vascular cell adhesion molecule 1 1 protein-coding CD106|INCAM-100 vascular cell adhesion protein 1|CD106 antigen 97 0.01328 8.901 1 1 +7414 VCL vinculin 10 protein-coding CMD1W|CMH15|HEL114|MV|MVCL vinculin|epididymis luminal protein 114|meta-vinculin|metavinculin 54 0.007391 11.49 1 1 +7415 VCP valosin containing protein 9 protein-coding ALS14|CMT2Y|HEL-220|HEL-S-70|IBMPFD|IBMPFD1|TERA|p97 transitional endoplasmic reticulum ATPase|15S Mg(2+)-ATPase p97 subunit|TER ATPase|epididymis luminal protein 220|epididymis secretory protein Li 70|yeast Cdc48p homolog 52 0.007117 12.89 1 1 +7416 VDAC1 voltage dependent anion channel 1 5 protein-coding PORIN|VDAC-1 voltage-dependent anion-selective channel protein 1|outer mitochondrial membrane protein porin 1|plasmalemmal porin|porin 31HL|porin 31HM 22 0.003011 12.1 1 1 +7417 VDAC2 voltage dependent anion channel 2 10 protein-coding POR voltage-dependent anion-selective channel protein 2|outer mitochondrial membrane protein porin 2 17 0.002327 10.64 1 1 +7419 VDAC3 voltage dependent anion channel 3 8 protein-coding HD-VDAC3|VDAC-3 voltage-dependent anion-selective channel protein 3|outer mitochondrial membrane protein porin 3 13 0.001779 10.83 1 1 +7421 VDR vitamin D (1,25- dihydroxyvitamin D3) receptor 12 protein-coding NR1I1|PPP1R163 vitamin D3 receptor|1,25-dihydroxyvitamin D3 receptor|nuclear receptor subfamily 1 group I member 1|protein phosphatase 1, regulatory subunit 163|vitamin D nuclear receptor variant 1|vitamin D receptor 23 0.003148 8.416 1 1 +7422 VEGFA vascular endothelial growth factor A 6 protein-coding MVCD1|VEGF|VPF vascular endothelial growth factor A|vascular endothelial growth factor A121|vascular endothelial growth factor A165|vascular permeability factor 22 0.003011 11.37 1 1 +7423 VEGFB vascular endothelial growth factor B 11 protein-coding VEGFL|VRF vascular endothelial growth factor B|VEGF-related factor 14 0.001916 10.49 1 1 +7424 VEGFC vascular endothelial growth factor C 4 protein-coding Flt4-L|LMPH1D|VRP vascular endothelial growth factor C|FLT4 ligand DHM|vascular endothelial growth factor-related protein 68 0.009307 7.097 1 1 +7425 VGF VGF nerve growth factor inducible 7 protein-coding SCG7|SgVII neurosecretory protein VGF|neuro-endocrine specific protein VGF 27 0.003696 4.155 1 1 +7428 VHL von Hippel-Lindau tumor suppressor 3 protein-coding HRCA1|RCA1|VHL1|pVHL von Hippel-Lindau disease tumor suppressor|elongin binding protein|protein G7|von Hippel-Lindau tumor suppressor, E3 ubiquitin protein ligase 135 0.01848 9.42 1 1 +7429 VIL1 villin 1 2 protein-coding D2S1471|VIL villin-1 57 0.007802 3.014 1 1 +7430 EZR ezrin 6 protein-coding CVIL|CVL|HEL-S-105|VIL2 ezrin|cytovillin 2|epididymis secretory protein Li 105|p81|villin 2 (ezrin)|villin-2 37 0.005064 12.79 1 1 +7431 VIM vimentin 10 protein-coding CTRCT30|HEL113 vimentin|epididymis luminal protein 113 50 0.006844 14.06 1 1 +7432 VIP vasoactive intestinal peptide 6 protein-coding PHM27 VIP peptides|prepro-VIP 26 0.003559 1.98 1 1 +7433 VIPR1 vasoactive intestinal peptide receptor 1 3 protein-coding HVR1|II|PACAP-R-2|PACAP-R2|RDC1|V1RG|VAPC1|VIP-R-1|VIPR|VIRG|VPAC1|VPAC1R|VPCAP1R vasoactive intestinal polypeptide receptor 1|PACAP type II receptor|VIP and PACAP receptor 1|VIP receptor, type I|VPAC1 receptor|pituitary adenylate cyclase activating polypeptide receptor, type II|type 1 vasoactive intestinal peptide receptor 21 0.002874 6.55 1 1 +7434 VIPR2 vasoactive intestinal peptide receptor 2 7 protein-coding C16DUPq36.3|DUP7q36.3|PACAP-R-3|PACAP-R3|VIP-R-2|VPAC2|VPAC2R|VPCAP2R vasoactive intestinal polypeptide receptor 2|PACAP type III receptor|VIP and PACAP receptor 2|helodermin-preferring VIP receptor|pituitary adenylate cyclase-activating polypeptide type III receptor 35 0.004791 4.066 1 1 +7436 VLDLR very low density lipoprotein receptor 9 protein-coding CAMRQ1|CARMQ1|CHRMQ1|VLDL-R|VLDLRCH very low-density lipoprotein receptor|VLDL receptor 56 0.007665 8.163 1 1 +7439 BEST1 bestrophin 1 11 protein-coding ARB|BEST|BMD|RP50|TU15B|VMD2 bestrophin-1|Best disease|Best1V1Delta2|vitelliform macular dystrophy protein 2 40 0.005475 5.468 1 1 +7441 VPREB1 pre-B lymphocyte 1 22 protein-coding CD179a|IGI|IGVPB|VPREB immunoglobulin iota chain|CD179 antigen-like family member A|v(pre)B protein 14 0.001916 0.1348 1 1 +7442 TRPV1 transient receptor potential cation channel subfamily V member 1 17 protein-coding VR1 transient receptor potential cation channel subfamily V member 1|OTRPC1|capsaicin receptor|osm-9-like TRP channel 1|transient receptor potential vanilloid 1a|transient receptor potential vanilloid 1b|vanilloid receptor subtype 1 38 0.005201 7.184 1 1 +7443 VRK1 vaccinia related kinase 1 14 protein-coding PCH1|PCH1A serine/threonine-protein kinase VRK1|vaccinia virus B1R-related kinase 1 26 0.003559 8.047 1 1 +7444 VRK2 vaccinia related kinase 2 2 protein-coding - serine/threonine-protein kinase VRK2|vaccinia virus B1R-related kinase 2 33 0.004517 8.465 1 1 +7447 VSNL1 visinin like 1 2 protein-coding HLP3|HPCAL3|HUVISL1|VILIP|VILIP-1 visinin-like protein 1|VLP-1|hippocalcin-like protein 3 16 0.00219 5.921 1 1 +7448 VTN vitronectin 17 protein-coding V75|VN|VNT vitronectin|S-protein|complement S-protein|epibolin|serum spreading factor|somatomedin B 34 0.004654 4.44 1 1 +7450 VWF von Willebrand factor 12 protein-coding F8VWF|VWD von Willebrand factor|coagulation factor VIII VWF 216 0.02956 11.44 1 1 +7453 WARS tryptophanyl-tRNA synthetase 14 protein-coding GAMMA-2|IFI53|IFP53 tryptophan--tRNA ligase, cytoplasmic|hWRS|interferon-induced protein 53|trpRS|tryptophan tRNA ligase 1, cytoplasmic 37 0.005064 11.79 1 1 +7454 WAS Wiskott-Aldrich syndrome X protein-coding IMD2|SCNX|THC|THC1|WASP|WASPA wiskott-Aldrich syndrome protein|eczema-thrombocytopenia|thrombocytopenia 1 (X-linked) 34 0.004654 7.397 1 1 +7455 ZAN zonadhesin (gene/pseudogene) 7 protein-coding - zonadhesin 326 0.04462 0.7653 1 1 +7456 WIPF1 WAS/WASL interacting protein family member 1 2 protein-coding PRPL-2|WAS2|WASPIP|WIP WAS/WASL-interacting protein family member 1|WASP-interacting protein|Wiskott-Aldrich syndrome protein interacting protein|protein PRPL-2|testicular tissue protein Li 226 61 0.008349 9.913 1 1 +7458 EIF4H eukaryotic translation initiation factor 4H 7 protein-coding WBSCR1|WSCR1|eIF-4H eukaryotic translation initiation factor 4H|Williams-Beuren syndrome chromosome region 1 18 0.002464 12.21 1 1 +7461 CLIP2 CAP-Gly domain containing linker protein 2 7 protein-coding CLIP|CLIP-115|CYLN2|WBSCR3|WBSCR4|WSCR3|WSCR4 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|testicular tissue protein Li 40|williams-Beuren syndrome chromosomal region 3 protein|williams-Beuren syndrome chromosomal region 4 protein 88 0.01204 9.677 1 1 +7462 LAT2 linker for activation of T-cells family member 2 7 protein-coding HSPC046|LAB|NTAL|WBSCR15|WBSCR5|WSCR5 linker for activation of T-cells family member 2|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|membrane-associated adapter molecule|non-T-cell activation linker 17 0.002327 7.492 1 1 +7464 CORO2A coronin 2A 9 protein-coding CLIPINB|IR10|WDR2 coronin-2A|WD protein IR10|WD repeat-containing protein 2|WD-repeat protein 2|coronin, actin binding protein, 2A|coronin-like protein B 36 0.004927 8.754 1 1 +7465 WEE1 WEE1 G2 checkpoint kinase 11 protein-coding WEE1A|WEE1hu wee1-like protein kinase|WEE1 homolog|WEE1+ homolog|wee1A kinase 30 0.004106 9.54 1 1 +7466 WFS1 wolframin ER transmembrane glycoprotein 4 protein-coding CTRCT41|WFRS|WFS|WFSL wolframin|Wolfram syndrome 1 (wolframin) 52 0.007117 10.22 1 1 +7468 WHSC1 Wolf-Hirschhorn syndrome candidate 1 4 protein-coding MMSET|NSD2|REIIBP|TRX5|WHS histone-lysine N-methyltransferase NSD2|IL5 promoter REII region-binding protein|multiple myeloma SET domain containing protein type III|nuclear SET domain-containing protein 2|nuclear receptor binding SET domain protein 2|probable histone-lysine N-methyltransferase NSD2|trithorax/ash1-related protein 5 97 0.01328 10.67 1 1 +7469 NELFA negative elongation factor complex member A 4 protein-coding NELF-A|P/OKcl.15|WHSC2 negative elongation factor A|wolf-Hirschhorn syndrome candidate 2 protein 31 0.004243 9.62 1 1 +7471 WNT1 Wnt family member 1 12 protein-coding BMND16|INT1|OI15 proto-oncogene Wnt-1|proto-oncogene Int-1 homolog|wingless-type MMTV integration site family member 1|wingless-type MMTV integration site family, member 1 (oncogene INT1) 28 0.003832 1.313 1 1 +7472 WNT2 Wnt family member 2 7 protein-coding INT1L1|IRP protein Wnt-2|Int-1-related protein|int-1-like protein 1|secreted growth factor|wingless-type MMTV integration site family member 2 40 0.005475 5.022 1 1 +7473 WNT3 Wnt family member 3 17 protein-coding INT4|TETAMS proto-oncogene Wnt-3|WNT-3 proto-oncogene protein|proto-oncogene Int-4 homolog|wingless-type MMTV integration site family, member 3 22 0.003011 4.61 1 1 +7474 WNT5A Wnt family member 5A 3 protein-coding hWNT5A protein Wnt-5a|WNT-5A protein|wingless-type MMTV integration site family, member 5A 31 0.004243 8.477 1 1 +7475 WNT6 Wnt family member 6 2 protein-coding - protein Wnt-6|wingless-type MMTV integration site family, member 6 17 0.002327 3.032 1 1 +7476 WNT7A Wnt family member 7A 3 protein-coding - protein Wnt-7a|proto-oncogene Wnt7a protein|wingless-type MMTV integration site family, member 7A 46 0.006296 2.896 1 1 +7477 WNT7B Wnt family member 7B 22 protein-coding - protein Wnt-7b|wingless-type MMTV integration site family, member 7B 29 0.003969 6.843 1 1 +7478 WNT8A Wnt family member 8A 5 protein-coding WNT8D protein Wnt-8a|WNT8d|protein Wnt-8d|wingless-type MMTV integration site family, member 8A 22 0.003011 0.1888 1 1 +7479 WNT8B Wnt family member 8B 10 protein-coding - protein Wnt-8b|wingless-type MMTV integration site family, member 8B 26 0.003559 1.231 1 1 +7480 WNT10B Wnt family member 10B 12 protein-coding SHFM6|STHAG8|WNT-12 protein Wnt-10b|WNT-10B protein|wingless-type MMTV integration site family, member 10B 27 0.003696 3.522 1 1 +7481 WNT11 Wnt family member 11 11 protein-coding HWNT11 protein Wnt-11|wingless-type MMTV integration site family, member 11 24 0.003285 5.134 1 1 +7482 WNT2B Wnt family member 2B 1 protein-coding WNT13 protein Wnt-2b|XWNT2, Xenopus, homolog of|wingless-type MMTV integration site family, member 13|wingless-type MMTV integration site family, member 2B 36 0.004927 4.61 1 1 +7483 WNT9A Wnt family member 9A 1 protein-coding WNT14 protein Wnt-9a|wingless-type MMTV integration site family, member 14|wingless-type MMTV integration site family, member 9A 45 0.006159 3.604 1 1 +7484 WNT9B Wnt family member 9B 17 protein-coding WNT14B|WNT15 protein Wnt-9b|protein Wnt-14b|wingless-type MMTV integration site family member 9B|wingless-type MMTV integration site family, member 15 24 0.003285 1.574 1 1 +7485 WRB tryptophan rich basic protein 21 protein-coding CHD5|GET1 tail-anchored protein insertion receptor WRB|congenital heart disease 5 protein 13 0.001779 9.102 1 1 +7486 WRN Werner syndrome RecQ like helicase 8 protein-coding RECQ3|RECQL2|RECQL3 Werner syndrome ATP-dependent helicase|DNA helicase, RecQ-like type 3|Werner syndrome, RecQ helicase-like|exonuclease WRN|recQ protein-like 2 104 0.01423 7.994 1 1 +7490 WT1 Wilms tumor 1 11 protein-coding AWT1|EWS-WT1|GUD|NPHS4|WAGR|WIT-2|WT33 Wilms tumor protein|Wilms tumor protein isoform Ex4a(+) 59 0.008076 3.093 1 1 +7494 XBP1 X-box binding protein 1 22 protein-coding TREB-5|TREB5|XBP-1|XBP2 X-box-binding protein 1|tax-responsive element-binding protein 5 23 0.003148 12.24 1 1 +7498 XDH xanthine dehydrogenase 2 protein-coding XAN1|XO|XOR xanthine dehydrogenase/oxidase|xanthine oxidoreductase 112 0.01533 5.388 1 1 +7499 XG Xg blood group X protein-coding PBDX glycoprotein Xg|XG glycoprotein|Xg blood group (pseudoautosomal boundary-divided on the X chromosome) 19 0.002601 3.972 1 1 +7503 XIST X inactive specific transcript (non-protein coding) X ncRNA DXS1089|DXS399E|LINC00001|NCRNA00001|SXI1|swd66 long intergenic non-protein coding RNA 1 236 0.0323 7.244 1 1 +7504 XK X-linked Kx blood group X protein-coding KX|NA|NAC|X1k|XKR1 membrane transport protein XK|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 35 0.004791 5.72 1 1 +7507 XPA XPA, DNA damage recognition and repair factor 9 protein-coding XP1|XPAC DNA repair protein complementing XP-A cells|excision repair-controlling|mutant xeroderma pigmentosum complementation group A|xeroderma pigmentosum group A-complementing protein|xeroderma pigmentosum, complementation group A 21 0.002874 7.932 1 1 +7508 XPC XPC complex subunit, DNA damage recognition and repair factor 3 protein-coding RAD4|XP3|XPCC|p125 DNA repair protein complementing XP-C cells|mutant xeroderma pigmentosum group C|xeroderma pigmentosum, complementation group C 47 0.006433 9.972 1 1 +7511 XPNPEP1 X-prolyl aminopeptidase 1 10 protein-coding APP1|SAMP|XPNPEP|XPNPEPL|XPNPEPL1 xaa-Pro aminopeptidase 1|X-Pro aminopeptidase 1|X-prolyl aminopeptidase (aminopeptidase P) 1, soluble|X-prolyl aminopeptidase 1, soluble|aminoacylproline aminopeptidase|aminopeptidase P, cytosolic|cytosolic aminopeptidase P|soluble aminopeptidase P 43 0.005886 10.15 1 1 +7512 XPNPEP2 X-prolyl aminopeptidase 2 X protein-coding AEACEI|APP2 xaa-Pro aminopeptidase 2|X-Pro aminopeptidase 2|X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound|aminoacylproline aminopeptidase|mAmP|membrane-bound APP|membrane-bound AmP|membrane-bound aminopeptidase P 49 0.006707 3.716 1 1 +7514 XPO1 exportin 1 2 protein-coding CRM1|emb|exp1 exportin-1|chromosome region maintenance 1 homolog|chromosome region maintenance 1 protein homolog|exportin 1 (CRM1 homolog, yeast)|exportin-1 (required for chromosome region maintenance) 66 0.009034 11.8 1 1 +7515 XRCC1 X-ray repair cross complementing 1 19 protein-coding RCC DNA repair protein XRCC1|X-ray repair complementing defective repair in Chinese hamster cells 1|X-ray repair cross-complementing protein 1 42 0.005749 9.721 1 1 +7516 XRCC2 X-ray repair cross complementing 2 7 protein-coding FANCU DNA repair protein XRCC2|X-ray repair complementing defective repair in Chinese hamster cells 2|X-ray repair cross-complementing protein 2 27 0.003696 5.537 1 1 +7517 XRCC3 X-ray repair cross complementing 3 14 protein-coding CMM6 DNA repair protein XRCC3|X-ray repair complementing defective repair in Chinese hamster cells 3|X-ray repair cross-complementing protein 3 11 0.001506 8.191 1 1 +7518 XRCC4 X-ray repair cross complementing 4 5 protein-coding SSMED DNA repair protein XRCC4|X-ray repair complementing defective repair in Chinese hamster cells 4 27 0.003696 6.92 1 1 +7520 XRCC5 X-ray repair cross complementing 5 2 protein-coding KARP-1|KARP1|KU80|KUB2|Ku86|NFIV X-ray repair cross-complementing protein 5|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 complementing defective repair in Chinese hamster cells 5 (double-strand-break rejoining)|lupus Ku autoantigen protein p86|nuclear factor IV|thyroid-lupus autoantigen 52 0.007117 12.65 1 1 +7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase 18 protein-coding HsT441|P61-YES|Yes|c-yes tyrosine-protein kinase Yes|YES1 proto-oncogene, Src family tyrosine kinase|Yamaguchi sarcoma oncogene|cellular yes-1 protein|proto-oncogene c-Yes|proto-oncogene tyrosine-protein kinase YES|v-yes-1 Yamaguchi sarcoma viral oncogene homolog 1 41 0.005612 10.3 1 1 +7528 YY1 YY1 transcription factor 14 protein-coding DELTA|INO80S|NF-E1|UCRBP|YIN-YANG-1 transcriptional repressor protein YY1|INO80 complex subunit S|YY-1|Yin and Yang 1 protein|delta transcription factor 34 0.004654 10.28 1 1 +7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta 20 protein-coding GW128|HEL-S-1|HS1|KCIP-1|YWHAA 14-3-3 protein beta/alpha|14-3-3 alpha|brain protein 14-3-3, beta isoform|epididymis secretory protein Li 1|protein 1054|protein kinase C inhibitor protein-1|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, alpha polypeptide|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide 17 0.002327 12.84 1 1 +7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon 17 protein-coding 14-3-3E|HEL2|KCIP-1|MDCR|MDS 14-3-3 protein epsilon|14-3-3 epsilon|epididymis luminal protein 2|mitochondrial import stimulation factor L subunit|protein kinase C inhibitor protein-1|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide|tyrosine 3/tryptophan 5 -monooxygenase activation protein, epsilon polypeptide 15 0.002053 13.43 1 1 +7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma 7 protein-coding 14-3-3GAMMA|PPP1R170 14-3-3 protein gamma|14-3-3 gamma|KCIP-1|protein kinase C inhibitor protein 1|protein phosphatase 1, regulatory subunit 170|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide 16 0.00219 12.18 1 1 +7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta 22 protein-coding YWHA1 14-3-3 protein eta|14-3-3 eta|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide 12 0.001642 11.66 1 1 +7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta 8 protein-coding 14-3-3-zeta|HEL-S-3|HEL-S-93|HEL4|KCIP-1|YWHAD 14-3-3 protein zeta/delta|14-3-3 delta|14-3-3 protein/cytosolic phospholipase A2|14-3-3 zeta|epididymis luminal protein 4|epididymis secretory protein Li 3|epididymis secretory protein Li 93|phospholipase A2|protein kinase C inhibitor protein-1|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, delta polypeptide|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide|tyrosine 3/tryptophan 5 -monooxygenase activation protein, zeta polypeptide 23 0.003148 14.06 1 1 +7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 2 protein-coding ADMIO2|IMD48|SRK|STCD|STD|TZK|ZAP-70 tyrosine-protein kinase ZAP-70|70 kDa zeta-associated protein|70 kDa zeta-chain associated protein|syk-related tyrosine kinase|zeta chain of T cell receptor associated protein kinase 70kDa|zeta-chain (TCR) associated protein kinase 70kDa|zeta-chain associated protein kinase, 70kD 69 0.009444 5.844 1 1 +7536 SF1 splicing factor 1 11 protein-coding BBP|D11S636|MBBP|ZCCHC25|ZFM1|ZNF162 splicing factor 1|mammalian branch point-binding protein|transcription factor ZFM1|zinc finger gene in MEN1 locus|zinc finger protein 162 81 0.01109 12.15 1 1 +7538 ZFP36 ZFP36 ring finger protein 19 protein-coding G0S24|GOS24|NUP475|RNF162A|TIS11|TTP|zfp-36 tristetraprolin|G0/G1 switch regulatory protein 24|growth factor-inducible nuclear protein NUP475|tristetraproline|zinc finger protein 36 homolog|zinc finger protein 36, C3H type, homolog|zinc finger protein, C3H type, 36 homolog 32 0.00438 11.49 1 1 +7539 ZFP37 ZFP37 zinc finger protein 9 protein-coding ZNF906|zfp-37 zinc finger protein 37 homolog|zinc finger protein homologous to Zfp37 in mouse 59 0.008076 5.705 1 1 +7541 ZBTB14 zinc finger and BTB domain containing 14 18 protein-coding ZF5|ZFP-161|ZFP-5|ZFP161|ZNF478 zinc finger and BTB domain-containing protein 14|ZFP161 zinc finger protein|zinc finger protein 161 homolog|zinc finger protein 478|zinc finger protein 5 homolog|zinc finger protein homologous to Zfp161 in mouse 39 0.005338 8.359 1 1 +7542 ZFPL1 zinc finger protein like 1 11 protein-coding D11S750|MCG4 zinc finger protein-like 1|zinc finger protein MCG4|zinc-finger protein in MEN1 region 26 0.003559 9.439 1 1 +7543 ZFX zinc finger protein, X-linked X protein-coding ZNF926 zinc finger X-chromosomal protein|X-linked zinc finger protein 52 0.007117 9.041 1 1 +7544 ZFY zinc finger protein, Y-linked Y protein-coding ZNF911 zinc finger Y-chromosomal protein 21 0.002874 3.846 1 1 +7545 ZIC1 Zic family member 1 3 protein-coding CRS6|ZIC|ZNF201 zinc finger protein ZIC 1|Zic family member 1 (odd-paired homolog, Drosophila)|Zinc finger protein of the cerebellum 1|zinc finger protein 201 106 0.01451 2.91 1 1 +7546 ZIC2 Zic family member 2 13 protein-coding HPE5 zinc finger protein ZIC 2|Zic family member 2 (odd-paired homolog, Drosophila)|Zinc finger protein of the cerebellum 2 45 0.006159 4.14 1 1 +7547 ZIC3 Zic family member 3 X protein-coding HTX|HTX1|VACTERLX|ZNF203 zinc finger protein ZIC 3|Zic family member 3 (odd-paired homolog, Drosophila)|heterotaxy 1|zinc finger protein 203|zinc finger protein of the cerebellum 3 58 0.007939 1.082 1 1 +7549 ZNF2 zinc finger protein 2 2 protein-coding A1-5|ZNF661|Zfp661 zinc finger protein 2|zinc finger protein 2.2|zinc finger protein 661 30 0.004106 6.914 1 1 +7551 ZNF3 zinc finger protein 3 7 protein-coding A8-51|HF.12|KOX25|PP838|Zfp113 zinc finger protein 3|C2-H2 type zinc finger protein|zinc finger protein HF.12|zinc finger protein HZF3.1|zinc finger protein KOX25 37 0.005064 9.472 1 1 +7552 ZNF711 zinc finger protein 711 X protein-coding CMPX1|MRX97|ZNF4|ZNF5|ZNF6|Zfp711|dJ75N13.1 zinc finger protein 711|dJ75N13.1 (znf6-like)|zinc finger protein 6 (CMPX1) 92 0.01259 6.988 1 1 +7553 ZNF7 zinc finger protein 7 8 protein-coding HF.16|KOX4|zf30 zinc finger protein 7|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 42 0.005749 8.835 1 1 +7554 ZNF8 zinc finger protein 8 19 protein-coding HF.18|Zfp128 zinc finger protein 8|zinc finger protein 272|zinc finger protein 8 (clone HF.18)|zinc finger protein HF.18 40 0.005475 6.566 1 1 +7555 CNBP CCHC-type zinc finger nucleic acid binding protein 3 protein-coding CNBP1|DM2|PROMM|RNF163|ZCCHC22|ZNF9 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) 12 0.001642 12.75 1 1 +7556 ZNF10 zinc finger protein 10 12 protein-coding KOX1 zinc finger protein 10|zinc finger protein 10 (KOX 1)|zinc finger protein KOX1 43 0.005886 7.493 1 1 +7559 ZNF12 zinc finger protein 12 7 protein-coding GIOT-3|HZF11|KOX3|ZNF325 zinc finger protein 12|gonadotropin inducible transcription repressor 3|gonadotropin-inducible ovary transcription repressor 3|zinc finger protein 11|zinc finger protein 325|zinc finger protein KOX3 59 0.008076 9.39 1 1 +7561 ZNF14 zinc finger protein 14 19 protein-coding GIOT-4|KOX6 zinc finger protein 14|gonadotropin inducible transcription repressor-4|gonadotropin-inducible ovary transcription repressor 4|zinc finger protein 14 (KOX 6)|zinc finger protein KOX6 50 0.006844 7.302 1 1 +7562 ZNF708 zinc finger protein 708 19 protein-coding KOX8|ZNF15|ZNF15L1 zinc finger protein 708|zinc finger protein 15-like 1 (KOX 8) 45 0.006159 7.133 1 1 +7564 ZNF16 zinc finger protein 16 8 protein-coding HZF1|KOX9 zinc finger protein 16|zinc finger protein KOX9|zinc finger protein Kruppel type 9 55 0.007528 8.011 1 1 +7565 ZNF17 zinc finger protein 17 19 protein-coding HPF3|KOX10 zinc finger protein 17|zinc finger protein 17 (HPF3, KOX 10)|zinc finger protein HPF3|zinc finger protein KOX10 39 0.005338 6.897 1 1 +7566 ZNF18 zinc finger protein 18 17 protein-coding HDSG1|KOX11|ZKSCAN6|ZNF535|ZSCAN38|Zfp535 zinc finger protein 18|heart development-specific gene 1 protein|zinc finger protein 18 (KOX 11)|zinc finger protein 535|zinc finger protein with KRAB and SCAN domains 6 28 0.003832 7.561 1 1 +7567 ZNF19 zinc finger protein 19 16 protein-coding KOX12 zinc finger protein 19|zinc finger protein 19 (KOX 12)|zinc finger protein KOX12 22 0.003011 5.928 1 1 +7568 ZNF20 zinc finger protein 20 19 protein-coding KOX13 zinc finger protein 20|zinc finger protein KOX13 37 0.005064 6.792 1 1 +7569 ZNF182 zinc finger protein 182 X protein-coding HHZ150|KOX14|ZNF21|Zfp182 zinc finger protein 182|zinc finger protein 21 (KOX 14)|zinc finger protein KOX14 30 0.004106 7.453 1 1 +7570 ZNF22 zinc finger protein 22 10 protein-coding HKR-T1|KOX15|ZNF422|Zfp422 zinc finger protein 22|krox-26 protein|zinc finger protein 22 (KOX 15)|zinc finger protein KOX15|zinc finger protein Krox-26 19 0.002601 9.335 1 1 +7571 ZNF23 zinc finger protein 23 16 protein-coding KOX16|ZNF359|ZNF612|Zfp612 zinc finger protein 23|kruppel-like zinc finger factor X31|zinc finger protein 23 (KOX 16)|zinc finger protein 32|zinc finger protein 359|zinc finger protein 612 36 0.004927 7.75 1 1 +7572 ZNF24 zinc finger protein 24 18 protein-coding KOX17|RSG-A|ZNF191|ZSCAN3|Zfp191 zinc finger protein 24|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 19 0.002601 10.78 1 1 +7574 ZNF26 zinc finger protein 26 12 protein-coding HEL-179|KOX20 zinc finger protein 26|epididymis luminal protein 179|zinc finger protein KOX20 1 0.0001369 7.734 1 1 +7576 ZNF28 zinc finger protein 28 19 protein-coding KOX24 zinc finger protein 28|zinc finger protein KOX24 58 0.007939 8.212 1 1 +7579 ZSCAN20 zinc finger and SCAN domain containing 20 1 protein-coding KOX29|ZFP-31|ZNF31|ZNF360 zinc finger and SCAN domain-containing protein 20|zinc finger protein 31|zinc finger protein 360|zinc finger protein KOX29 71 0.009718 5.743 1 1 +7580 ZNF32 zinc finger protein 32 10 protein-coding KOX30 zinc finger protein 32|C2H2-546|zinc finger protein 32 (KOX 30)|zinc finger protein KOX30 23 0.003148 9.302 1 1 +7581 ZNF33A zinc finger protein 33A 10 protein-coding KOX2|KOX31|KOX5|NF11A|ZNF11|ZNF11A|ZNF33|ZZAPK zinc finger protein 33A|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 83 0.01136 9.73 1 1 +7582 ZNF33B zinc finger protein 33B 10 protein-coding KOX2|KOX31|ZNF11B zinc finger protein 33B|zinc finger protein 11b (KOX 2)|zinc finger protein 33b (KOX 31) 59 0.008076 9.152 1 1 +7584 ZNF35 zinc finger protein 35 3 protein-coding HF.10|HF10|Zfp105 zinc finger protein 35|zinc finger protein 35 (clone HF.10)|zinc finger protein HF.10 37 0.005064 7.068 1 1 +7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 7 protein-coding 9130423L19Rik|KOX18|PHZ-37|ZNF139|ZNF36|ZSCAN33 zinc finger protein with KRAB and SCAN domains 1|zinc finger protein 139|zinc finger protein 36 (KOX 18)|zinc finger protein KOX18 39 0.005338 9.505 1 1 +7587 ZNF37A zinc finger protein 37A 10 protein-coding KOX21|ZNF37 zinc finger protein 37A|zinc finger protein 37a (KOX 21)|zinc finger protein KOX21 55 0.007528 8.643 1 1 +7589 ZSCAN21 zinc finger and SCAN domain containing 21 7 protein-coding NY-REN-21|ZNF38|Zipro1 zinc finger and SCAN domain-containing protein 21|renal carcinoma antigen NY-REN-21|zfp-38|zinc finger protein 38 (KOX 25)|zinc finger protein 38 homolog|zinc finger protein NY-REN-21 antigen 39 0.005338 7.763 1 1 +7592 ZNF41 zinc finger protein 41 X protein-coding MRX89 zinc finger protein 41|mental retardation, X-linked 89 56 0.007665 7.715 1 1 +7593 MZF1 myeloid zinc finger 1 19 protein-coding MZF-1|MZF1B|ZFP98|ZNF42|ZSCAN6 myeloid zinc finger 1|zinc finger and SCAN domain-containing protein 6|zinc finger protein 42 (myeloid-specific retinoic acid-responsive) 45 0.006159 8.331 1 1 +7594 ZNF43 zinc finger protein 43 19 protein-coding HTF6|KOX27|ZNF39L1 zinc finger protein 43|zinc finger protein 39-like 1 (KOX 27)|zinc finger protein HTF6|zinc finger protein KOX27 111 0.01519 7.803 1 1 +7596 ZNF45 zinc finger protein 45 19 protein-coding KOX5|ZNF13 zinc finger protein 45|BRC1744|zinc finger protein 13|zinc finger protein 45 (a Kruppel-associated box (KRAB) domain polypeptide)|zinc finger protein KOX5 43 0.005886 7.826 1 1 +7597 ZBTB25 zinc finger and BTB domain containing 25 14 protein-coding C14orf51|KUP|ZNF46 zinc finger and BTB domain-containing protein 25|zinc finger protein 46|zinc finger protein KUP 19 0.002601 6.512 1 1 +7617 ZNF66 zinc finger protein 66 19 pseudo ZNF66P zinc finger protein 486 pseudogene|zinc finger protein 66, pseudogene 17 0.002327 1 0 +7620 ZNF69 zinc finger protein 69 19 protein-coding Cos5|hZNF3 zinc finger protein 69|ZNF3 16 0.00219 5.622 1 1 +7621 ZNF70 zinc finger protein 70 22 protein-coding Cos17 zinc finger protein 70|zinc finger protein N27C7-1 28 0.003832 6.968 1 1 +7625 ZNF74 zinc finger protein 74 22 protein-coding COS52|ZFP520|ZNF520|hZNF7 zinc finger protein 74|zinc finger protein 520 57 0.007802 8.273 1 1 +7626 ZNF75D zinc finger protein 75D X protein-coding D8C6|ZKSCAN24|ZNF75|ZNF82|ZSCAN28 zinc finger protein 75D|zinc finger protein 75|zinc finger protein 82 49 0.006707 8.302 1 1 +7627 ZNF75A zinc finger protein 75a 16 protein-coding - zinc finger protein 75A 28 0.003832 8.088 1 1 +7629 ZNF76 zinc finger protein 76 6 protein-coding D6S229E|ZNF523|Zfp523 zinc finger protein 76|zinc finger protein 523|zinc finger protein 76 (expressed in testis) 41 0.005612 9.33 1 1 +7633 ZNF79 zinc finger protein 79 9 protein-coding pT7 zinc finger protein 79|ZNFpT7 40 0.005475 6.724 1 1 +7634 ZNF80 zinc finger protein 80 3 protein-coding pT17 zinc finger protein 80|ZNFPT17 45 0.006159 1.879 1 1 +7637 ZNF84 zinc finger protein 84 12 protein-coding HPF2 zinc finger protein 84|zinc finger protein HPF2 0 0 9.257 1 1 +7638 ZNF221 zinc finger protein 221 19 protein-coding - zinc finger protein 221 55 0.007528 3.851 1 1 +7639 ZNF85 zinc finger protein 85 19 protein-coding HPF4|HTF1 zinc finger protein 85|zinc finger protein 85 (HPF4, HTF1) 60 0.008212 6.366 1 1 +7643 ZNF90 zinc finger protein 90 19 protein-coding HTF9 zinc finger protein 90|zinc finger protein HTF9 53 0.007254 7.604 1 1 +7644 ZNF91 zinc finger protein 91 19 protein-coding HPF7|HTF10 zinc finger protein 91|zinc finger protein 91 (HPF7, HTF10)|zinc finger protein HPF7|zinc finger protein HTF10 145 0.01985 8.347 1 1 +7652 ZNF99 zinc finger protein 99 19 protein-coding C19orf9|F8281 zinc finger protein 99|CTC-451A6.4|zinc finger protein ENSP00000375192 195 0.02669 0.6825 1 1 +7673 ZNF222 zinc finger protein 222 19 protein-coding - zinc finger protein 222 31 0.004243 5.864 1 1 +7675 ZNF121 zinc finger protein 121 19 protein-coding D19S204|ZHC32|ZNF20 zinc finger protein 121|zinc finger protein 121 (clone ZHC32)|zinc finger protein 20 22 0.003011 5.876 1 1 +7678 ZNF124 zinc finger protein 124 1 protein-coding HZF-16|HZF16|ZK7 zinc finger protein 124|zinc finger protein HZF-16 23 0.003148 5.906 1 1 +7681 MKRN3 makorin ring finger protein 3 15 protein-coding CPPB2|D15S9|RNF63|ZFP127|ZNF127 probable E3 ubiquitin-protein ligase makorin-3|RING finger protein 63|zinc finger protein 127 119 0.01629 3.098 1 1 +7690 ZNF131 zinc finger protein 131 5 protein-coding ZBTB35|pHZ-10 zinc finger protein 131|zinc finger and BTB domain containing 35|zinc finger protein 131 (clone pHZ-10) 48 0.00657 9.035 1 1 +7691 ZNF132 zinc finger protein 132 19 protein-coding pHZ-12 zinc finger protein 132 42 0.005749 6.16 1 1 +7692 ZNF133 zinc finger protein 133 20 protein-coding ZNF150|pHZ-13|pHZ-66 zinc finger protein 133|zinc finger protein 133 (clone pHZ-13)|zinc finger protein 150 (pHZ-66) 40 0.005475 8.307 1 1 +7693 ZNF134 zinc finger protein 134 19 protein-coding pHZ-15 zinc finger protein 134|zinc finger protein 134 (clone pHZ-15) 31 0.004243 7.548 1 1 +7694 ZNF135 zinc finger protein 135 19 protein-coding ZNF61|ZNF78L1|pHZ-17|pT3 zinc finger protein 135|zinc finger protein 135 (clone pHZ-17)|zinc finger protein 61|zinc finger protein 78-like 1 (pT3) 81 0.01109 6.089 1 1 +7695 ZNF136 zinc finger protein 136 19 protein-coding pHZ-20 zinc finger protein 136 34 0.004654 7.564 1 1 +7696 ZNF137P zinc finger protein 137, pseudogene 19 pseudo ZNF137|pHZ-30 zinc finger protein 137 (clone pHZ-30)|zinc finger protein pseudogene 2 0.0002737 5.464 1 1 +7697 ZNF138 zinc finger protein 138 7 protein-coding pHZ-32 zinc finger protein 138|zinc finger protein 138 (clone pHZ-32) 12 0.001642 7.496 1 1 +7699 ZNF140 zinc finger protein 140 12 protein-coding pHZ-39 zinc finger protein 140 10 0.001369 8.641 1 1 +7700 ZNF141 zinc finger protein 141 4 protein-coding D4S90|PAPA6|pHZ-44 zinc finger protein 141|zinc finger protein 141 (clone pHZ-44) 32 0.00438 6.012 1 1 +7701 ZNF142 zinc finger protein 142 2 protein-coding pHZ-49 zinc finger protein 142|HA4654|zinc finger protein 142 (clone pHZ-49) 87 0.01191 9.085 1 1 +7702 ZNF143 zinc finger protein 143 11 protein-coding SBF|STAF|pHZ-1 zinc finger protein 143|SPH-binding factor|hStaf|selenocysteine tRNA gene transcription-activating factor|transcriptional activator Staf 41 0.005612 8.253 1 1 +7703 PCGF2 polycomb group ring finger 2 17 protein-coding MEL-18|RNF110|ZNF144 polycomb group RING finger protein 2|DNA-binding protein Mel-18|ring finger protein 110|zinc finger protein 144 27 0.003696 9.742 1 1 +7704 ZBTB16 zinc finger and BTB domain containing 16 11 protein-coding PLZF|ZNF145 zinc finger and BTB domain-containing protein 16|promyelocytic leukaemia zinc finger|zinc finger protein 145 (Kruppel-like, expressed in promyelocytic leukemia)|zinc finger protein PLZF 71 0.009718 5.085 1 1 +7705 ZNF146 zinc finger protein 146 19 protein-coding OZF zinc finger protein OZF|only zinc finger protein 22 0.003011 10.87 1 1 +7706 TRIM25 tripartite motif containing 25 17 protein-coding EFP|RNF147|Z147|ZNF147 E3 ubiquitin/ISG15 ligase TRIM25|RING finger protein 147|RING-type E3 ubiquitin transferase|estrogen-responsive finger protein|tripartite motif protein TRIM25|tripartite motif-containing protein 25|ubiquitin/ISG15-conjugating enzyme TRIM25|zinc finger protein 147 (estrogen-responsive finger protein)|zinc finger protein-147 37 0.005064 10.1 1 1 +7707 ZNF148 zinc finger protein 148 3 protein-coding BERF-1|BFCOL1|HT-BETA|ZBP-89|ZFP148|pHZ-52 zinc finger protein 148|CACCC box-binding protein|CLL-associated antigen KW-10|transcription factor ZBP-89|zinc finger DNA-binding protein 89 69 0.009444 10.02 1 1 +7709 ZBTB17 zinc finger and BTB domain containing 17 1 protein-coding MIZ-1|ZNF151|ZNF60|pHZ-67 zinc finger and BTB domain-containing protein 17|Myc-interacting Zn finger protein-1|zinc finger protein 151 (pHZ-67)|zinc finger protein 60 42 0.005749 9.05 1 1 +7710 ZNF154 zinc finger protein 154 19 protein-coding pHZ-92 zinc finger protein 154 31 0.004243 5.262 1 1 +7711 ZNF155 zinc finger protein 155 19 protein-coding pHZ-96 zinc finger protein 155|KRAB A domain 33 0.004517 7.133 1 1 +7712 ZNF157 zinc finger protein 157 X protein-coding HZF22 zinc finger protein 157|zinc finger protein 22|zinc finger protein HZF22 50 0.006844 1.535 1 1 +7716 VEZF1 vascular endothelial zinc finger 1 17 protein-coding DB1|ZNF161 vascular endothelial zinc finger 1|putative transcription factor DB1|zinc finger protein 161 53 0.007254 10.34 1 1 +7718 ZNF165 zinc finger protein 165 6 protein-coding CT53|LD65|ZSCAN7 zinc finger protein 165|cancer/testis antigen 53|zinc finger and SCAN domain-containing protein 7 33 0.004517 6.161 1 1 +7726 TRIM26 tripartite motif containing 26 6 protein-coding AFP|RNF95|ZNF173 tripartite motif-containing protein 26|RING finger protein 95|acid finger protein|widely expressed acid zinc finger protein|zinc finger protein 173 37 0.005064 10.58 1 1 +7727 ZNF174 zinc finger protein 174 16 protein-coding ZSCAN8 zinc finger protein 174|AW-1|zinc finger and SCAN domain-containing protein 8 34 0.004654 7.943 1 1 +7728 ZNF175 zinc finger protein 175 19 protein-coding OTK18 zinc finger protein 175|zinc finger protein OTK18 44 0.006022 7.02 1 1 +7730 ZNF177 zinc finger protein 177 19 protein-coding PIGX zinc finger protein 177 34 0.004654 5.835 1 1 +7732 RNF112 ring finger protein 112 17 protein-coding BFP|ZNF179 RING finger protein 112|brain finger protein|neurolastin|zinc finger protein 179 43 0.005886 4.152 1 1 +7733 ZNF180 zinc finger protein 180 19 protein-coding HHZ168 zinc finger protein 180 70 0.009581 7.312 1 1 +7737 RNF113A ring finger protein 113A X protein-coding Cwc24|RNF113|TTD5|ZNF183 RING finger protein 113A|zinc finger protein 183 (RING finger, C3HC4 type) 34 0.004654 8.372 1 1 +7738 ZNF184 zinc finger protein 184 6 protein-coding kr-ZNF3 zinc finger protein 184|zinc finger protein 184 (Kruppel-like) 60 0.008212 7.752 1 1 +7739 ZNF185 zinc finger protein 185 (LIM domain) X protein-coding SCELL zinc finger protein 185|P1-A|sciellin like 57 0.007802 9.27 1 1 +7741 ZSCAN26 zinc finger and SCAN domain containing 26 6 protein-coding SRE-ZBP|SREZBP|ZNF187 zinc finger and SCAN domain-containing protein 26|zinc finger protein 187 4 0.0005475 8.025 1 1 +7743 ZNF189 zinc finger protein 189 9 protein-coding - zinc finger protein 189 50 0.006844 8.853 1 1 +7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 6 protein-coding LD5-1|ZNF192|ZSCAN40 zinc finger protein with KRAB and SCAN domains 8|zinc finger protein 192 37 0.005064 7.911 1 1 +7746 ZSCAN9 zinc finger and SCAN domain containing 9 6 protein-coding PRD51|ZNF193 zinc finger and SCAN domain-containing protein 9|cell proliferation-inducing gene 12 protein|cell proliferation-inducing protein 12|zinc finger protein 193 19 0.002601 7.355 1 1 +7748 ZNF195 zinc finger protein 195 11 protein-coding HRF1|ZNFP104 zinc finger protein 195|hypoxia-regulated factor-1|krueppel family zinc finger protein (znfp104) 31 0.004243 8.344 1 1 +7750 ZMYM2 zinc finger MYM-type containing 2 13 protein-coding FIM|MYM|RAMP|SCLL|ZNF198 zinc finger MYM-type protein 2|fused in myeloproliferative disorders protein|rearranged in an atypical myeloproliferative disorder|zinc finger protein 198|zinc finger, MYM-type 2 76 0.0104 10.27 1 1 +7752 ZNF200 zinc finger protein 200 16 protein-coding - zinc finger protein 200 27 0.003696 7.748 1 1 +7753 ZNF202 zinc finger protein 202 11 protein-coding ZKSCAN10|ZSCAN42 zinc finger protein 202|zinc finger protein with KRAB and SCAN domains 10 46 0.006296 7.879 1 1 +7754 ZNF204P zinc finger protein 204, pseudogene 6 pseudo ZNF184-Lp|ZNF204|ZNF315P|b24o18.1 zinc finger protein 315 pseudogene 1 0.0001369 6.599 1 1 +7755 ZNF205 zinc finger protein 205 16 protein-coding RhitH|ZNF210|Zfp13 zinc finger protein 205|transcriptional repressor RhitH|zinc finger protein 210 28 0.003832 8.362 1 1 +7756 ZNF207 zinc finger protein 207 17 protein-coding BuGZ|hBuGZ BUB3-interacting and GLEBS motif-containing protein ZNF207 47 0.006433 11.48 1 1 +7757 ZNF208 zinc finger protein 208 19 protein-coding PMIDP|ZNF95 zinc finger protein 208|zinc finger protein 95 249 0.03408 4.455 1 1 +7760 ZNF213 zinc finger protein 213 16 protein-coding CR53|ZKSCAN21|ZSCAN53 zinc finger protein 213|putative transcription factor CR53|zinc finger protein with KRAB and SCAN domains 21 22 0.003011 9.028 1 1 +7761 ZNF214 zinc finger protein 214 11 protein-coding BAZ-1|BAZ1 zinc finger protein 214|BAZ 1|BWSCR2-associated zinc finger protein 1 41 0.005612 4.925 1 1 +7762 ZNF215 zinc finger protein 215 11 protein-coding BAZ-2|BAZ2|ZKSCAN11|ZSCAN43 zinc finger protein 215|BAZ 2|BWSCR2-associated zinc finger protein 2|zinc finger protein with KRAB and SCAN domains 11 53 0.007254 4.394 1 1 +7763 ZFAND5 zinc finger AN1-type containing 5 9 protein-coding ZA20D2|ZFAND5A|ZNF216 AN1-type zinc finger protein 5|zinc finger A20 domain-containing protein 2|zinc finger protein 216|zinc finger, A20 domain containing 2|zinc finger, AN1-type domain 5 20 0.002737 11.83 1 1 +7764 ZNF217 zinc finger protein 217 20 protein-coding ZABC1 zinc finger protein 217 88 0.01204 10.25 1 1 +7766 ZNF223 zinc finger protein 223 19 protein-coding - zinc finger protein 223|Homo sapiens zinc finger protein 223|KRAB A domain 43 0.005886 6.298 1 1 +7767 ZNF224 zinc finger protein 224 19 protein-coding BMZF-2|BMZF2|KOX22|ZNF233|ZNF255|ZNF27 zinc finger protein 224|bone marrow zinc finger 2|zinc finger protein 233|zinc finger protein 255|zinc finger protein 27|zinc finger protein KOX22 38 0.005201 7.404 1 1 +7768 ZNF225 zinc finger protein 225 19 protein-coding - zinc finger protein 225 46 0.006296 6.023 1 1 +7769 ZNF226 zinc finger protein 226 19 protein-coding - zinc finger protein 226|Kruppel-associated box protein 62 0.008486 8.168 1 1 +7770 ZNF227 zinc finger protein 227 19 protein-coding - zinc finger protein 227 52 0.007117 8.075 1 1 +7771 ZNF112 zinc finger protein 112 19 protein-coding ZFP112|ZNF228 zinc finger protein 112|zfp-112|zinc finger protein 112 (Y14)|zinc finger protein 112 homolog|zinc finger protein 228 77 0.01054 6.657 1 1 +7772 ZNF229 zinc finger protein 229 19 protein-coding - zinc finger protein 229 76 0.0104 6.158 1 1 +7773 ZNF230 zinc finger protein 230 19 protein-coding FDZF2 zinc finger protein 230|zinc finger protein FDZF2 43 0.005886 6.578 1 1 +7775 ZNF232 zinc finger protein 232 17 protein-coding ZSCAN11 zinc finger protein 232|zinc finger and SCAN domain-containing protein 11 29 0.003969 7.358 1 1 +7776 ZNF236 zinc finger protein 236 18 protein-coding ZNF236A|ZNF236B zinc finger protein 236|regulated by glucose 136 0.01861 7.945 1 1 +7779 SLC30A1 solute carrier family 30 member 1 1 protein-coding ZNT1|ZRC1 zinc transporter 1|solute carrier family 30 (zinc transporter), member 1|znT-1 29 0.003969 8.164 1 1 +7780 SLC30A2 solute carrier family 30 member 2 1 protein-coding PP12488|TNZD|ZNT2|ZnT-2 zinc transporter 2|solute carrier family 30 (zinc transporter), member 2 20 0.002737 3.482 1 1 +7781 SLC30A3 solute carrier family 30 member 3 2 protein-coding ZNT3 zinc transporter 3|solute carrier family 30 (zinc transporter), member 3|zinc transporter ZnT-3|znT-3 36 0.004927 2.866 1 1 +7782 SLC30A4 solute carrier family 30 member 4 15 protein-coding ZNT4|znT-4 zinc transporter 4|solute carrier family 30 (zinc transporter), member 4 22 0.003011 5.962 1 1 +7783 ZP2 zona pellucida glycoprotein 2 16 protein-coding ZPA|Zp-2 zona pellucida sperm-binding protein 2|zona pellucida glycoprotein 2 (sperm receptor)|zona pellucida glycoprotein ZP2|zona pellucida protein A 59 0.008076 0.3172 1 1 +7784 ZP3 zona pellucida glycoprotein 3 7 protein-coding ZP3A|ZP3B|ZPC|Zp-3 zona pellucida sperm-binding protein 3|ZP3A/ZP3B|sperm receptor|zona pellucida glycoprotein 3 (sperm receptor)|zona pellucida glycoprotein 3A (sperm receptor)|zona pellucida glycoprotein 3B|zona pellucida glycoprotein ZP3|zona pellucida protein C 23 0.003148 7.231 1 1 +7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 12 protein-coding DLK|MEKK12|MUK|ZPK|ZPKP1 mitogen-activated protein kinase kinase kinase 12|MAPK-upstream kinase|dual leucine zipper bearing kinase|dual leucine zipper kinase DLK|leucine zipper protein kinase|mixed lineage kinase|protein kinase MUK 74 0.01013 7.532 1 1 +7789 ZXDA zinc finger, X-linked, duplicated A X protein-coding ZNF896 zinc finger X-linked protein ZXDA|zinc finger protein 896 41 0.005612 5.569 1 1 +7791 ZYX zyxin 7 protein-coding ESP-2|HED-2 zyxin|zyxin-2 38 0.005201 11.95 1 1 +7798 LUZP1 leucine zipper protein 1 1 protein-coding LUZP leucine zipper protein 1 53 0.007254 9.777 1 1 +7799 PRDM2 PR/SET domain 2 1 protein-coding HUMHOXY1|KMT8|MTB-ZF|RIZ|RIZ1|RIZ2 PR domain zinc finger protein 2|GATA-3 binding protein G3B|MTE-binding protein|PR domain 2|PR domain containing 2, with ZNF domain|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 128 0.01752 9.892 1 1 +7802 DNALI1 dynein axonemal light intermediate chain 1 1 protein-coding P28|dJ423B22.5|hp28 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 20 0.002737 7.465 1 1 +7803 PTP4A1 protein tyrosine phosphatase type IVA, member 1 6 protein-coding HH72|PRL-1|PRL1|PTP(CAAX1)|PTPCAAX1 protein tyrosine phosphatase type IVA 1|protein tyrosine phosphatase type IVA protein 1|protein-tyrosine phosphatase 4a1|protein-tyrosine phosphatase of regenerating liver 1 9 0.001232 11.67 1 1 +7804 LRP8 LDL receptor related protein 8 1 protein-coding APOER2|HSZ75190|LRP-8|MCI1 low-density lipoprotein receptor-related protein 8|ApoE receptor 2|low density lipoprotein receptor-related protein 8, apolipoprotein e receptor 51 0.006981 7.377 1 1 +7805 LAPTM5 lysosomal protein transmembrane 5 1 protein-coding CLAST6 lysosomal-associated transmembrane protein 5|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|retinoic acid-inducible E3 protein 20 0.002737 11.49 1 1 +7809 BSND barttin CLCNK type accessory beta subunit 1 protein-coding BART|DFNB73 barttin|Bartter syndrome, infantile, with sensorineural deafness (Barttin)|barttin CLCNK-type chloride channel accessory beta subunit|deafness, autosomal recessive 73 24 0.003285 0.6743 1 1 +7812 CSDE1 cold shock domain containing E1 1 protein-coding D1S155E|UNR cold shock domain-containing protein E1|N-ras upstream gene protein|NRAS-related|cold shock domain containing E1, RNA binding|upstream of NRAS 59 0.008076 13.32 1 1 +7813 EVI5 ecotropic viral integration site 5 1 protein-coding EVI-5|NB4S ecotropic viral integration site 5 protein homolog|dJ846D11.1 (ecotropic viral integration site 5)|neuroblastoma stage 4S gene protein 68 0.009307 8.668 1 1 +7818 DAP3 death associated protein 3 1 protein-coding DAP-3|MRP-S29|MRPS29|bMRP-10 28S ribosomal protein S29, mitochondrial|S29mt|ionizing radiation resistance conferring protein|mitochondrial 28S ribosomal protein S29 40 0.005475 10.98 1 1 +7827 NPHS2 NPHS2, podocin 1 protein-coding PDCN|SRN1 podocin|nephrosis 2, idiopathic, steroid-resistant (podocin) 43 0.005886 0.3076 1 1 +7832 BTG2 BTG anti-proliferation factor 2 1 protein-coding APRO1|PC3|TIS21 protein BTG2|B-cell translocation gene 2|BTG family member 2|NGF-inducible anti-proliferative protein PC3|nerve growth factor-inducible anti-proliferative|pheochromacytoma cell-3 29 0.003969 11.31 1 1 +7837 PXDN peroxidasin 2 protein-coding COPOA|D2S448|D2S448E|MG50|PRG2|PXN|VPO peroxidasin homolog|melanoma-associated antigen MG50|p53-responsive gene 2 protein|vascular peroxidase 1 175 0.02395 10.59 1 1 +7840 ALMS1 ALMS1, centrosome and basal body associated protein 2 protein-coding ALSS Alstrom syndrome protein 1|Alstrom syndrome 1 273 0.03737 9.103 1 1 +7841 MOGS mannosyl-oligosaccharide glucosidase 2 protein-coding CDG2B|CWH41|DER7|GCS1 mannosyl-oligosaccharide glucosidase|glucosidase I|processing A-glucosidase I 55 0.007528 10.56 1 1 +7844 RNF103 ring finger protein 103 2 protein-coding HKF-1|KF-1|KF1|ZFP-103|ZFP103 E3 ubiquitin-protein ligase RNF103|zinc finger protein 103 homolog|zinc finger protein expressed in cerebellum 46 0.006296 10.03 1 1 +7846 TUBA1A tubulin alpha 1a 12 protein-coding B-ALPHA-1|LIS3|TUBA3 tubulin alpha-1A chain|hum-a-tub1|hum-a-tub2|tubulin B-alpha-1|tubulin alpha-3 chain|tubulin, alpha, brain-specific 32 0.00438 11.99 1 1 +7849 PAX8 paired box 8 2 protein-coding - paired box protein Pax-8|paired domain gene 8 36 0.004927 6.85 1 1 +7850 IL1R2 interleukin 1 receptor type 2 2 protein-coding CD121b|CDw121b|IL-1R-2|IL-1RT-2|IL-1RT2|IL1R2c|IL1RB interleukin-1 receptor type 2|CD121 antigen-like family member B|IL-1 type II receptor|IL-1R-beta|antigen CDw121b|interleukin 1 receptor type II variant 3|interleukin-1 receptor beta|interleukin-1 receptor type II|type II interleukin-1 receptor, beta 40 0.005475 5.062 1 1 +7851 MALL mal, T-cell differentiation protein like 2 protein-coding BENE MAL-like protein 10 0.001369 9.337 1 1 +7852 CXCR4 C-X-C motif chemokine receptor 4 2 protein-coding CD184|D2S201E|FB22|HM89|HSY3RR|LAP-3|LAP3|LCR1|LESTR|NPY3R|NPYR|NPYRL|NPYY3R|WHIM|WHIMS C-X-C chemokine receptor type 4|CD184 antigen|LPS-associated protein 3|SDF-1 receptor|chemokine (C-X-C motif) receptor 4|chemokine receptor|fusin|leukocyte-derived seven transmembrane domain receptor|lipopolysaccharide-associated protein 3|neuropeptide Y receptor Y3|neuropeptide Y3 receptor|seven transmembrane helix receptor|seven-transmembrane-segment receptor, spleen|stromal cell-derived factor 1 receptor 41 0.005612 9.91 1 1 +7855 FZD5 frizzled class receptor 5 2 protein-coding C2orf31|HFZ5 frizzled-5|Wnt receptor|frizzled 5, seven transmembrane spanning receptor|frizzled family receptor 5|fz-5|fzE5|seven-transmembrane receptor frizzled-5 19 0.002601 8.661 1 1 +7857 SCG2 secretogranin II 2 protein-coding CHGC|EM66|SN|SgII secretogranin-2|chromogranin-C|secretoneurin 60 0.008212 5.914 1 1 +7862 BRPF1 bromodomain and PHD finger containing 1 3 protein-coding BR140 peregrin|bromodomain and PHD finger-containing protein 1|bromodomain-containing protein, 140kD 67 0.009171 9.12 1 1 +7866 IFRD2 interferon related developmental regulator 2 3 protein-coding IFNRP|SKMc15|SM15 interferon-related developmental regulator 2|interferon-related protein 40 0.005475 9.921 1 1 +7867 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 3 protein-coding 3PK|MAPKAP-K3|MAPKAP3|MAPKAPK-3|MDPT3|MK-3 MAP kinase-activated protein kinase 3|MAPK-activated protein kinase 3|MAPKAP kinase 3|chromosome 3p kinase 26 0.003559 10.11 1 1 +7869 SEMA3B semaphorin 3B 3 protein-coding LUCA-1|SEMA5|SEMAA|SemA|semaV semaphorin-3B|sema A(V)|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B|semaphorin A|semaphorin-V 30 0.004106 8.502 1 1 +7871 SLMAP sarcolemma associated protein 3 protein-coding SLAP sarcolemmal membrane-associated protein 43 0.005886 9.906 1 1 +7873 MANF mesencephalic astrocyte derived neurotrophic factor 3 protein-coding ARMET|ARP mesencephalic astrocyte-derived neurotrophic factor|arginine-rich, mutated in early stage tumors 5 0.0006844 10.36 1 1 +7874 USP7 ubiquitin specific peptidase 7 16 protein-coding HAUSP|TEF1 ubiquitin carboxyl-terminal hydrolase 7|Herpes virus-associated ubiquitin-specific protease|deubiquitinating enzyme 7|ubiquitin specific peptidase 7 (herpes virus-associated)|ubiquitin specific protease 7 (herpes virus-associated)|ubiquitin thioesterase 7|ubiquitin-specific-processing protease 7 96 0.01314 11.4 1 1 +7879 RAB7A RAB7A, member RAS oncogene family 3 protein-coding PRO2706|RAB7 ras-related protein Rab-7a|RAB7, member RAS oncogene family|Ras-associated protein RAB7 12 0.001642 12.62 1 1 +7881 KCNAB1 potassium voltage-gated channel subfamily A member regulatory beta subunit 1 3 protein-coding AKR6A3|KCNA1B|KV-BETA-1|Kvb1.3|hKvBeta3|hKvb3 voltage-gated potassium channel subunit beta-1|K(+) channel subunit beta-1|K+ channel Beta1a chain|potassium channel beta 3 chain|potassium channel beta3 subunit|potassium channel shaker chain beta 1a|potassium channel, voltage gated subfamily A regulatory beta subunit 1|potassium voltage-gated channel, shaker-related subfamily, beta member 1 56 0.007665 5.907 1 1 +7884 SLBP stem-loop binding protein 4 protein-coding HBP histone RNA hairpin-binding protein|hairpin binding protein, histone|histone binding protein|histone stem-loop binding protein|stem-loop (histone) binding protein 10 0.001369 10.06 1 1 +7903 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 5 protein-coding PST|PST1|SIAT8D|ST8SIA-IV CMP-N-acetylneuraminate-poly-alpha-2,8-sialyltransferase|CMP-N-acetylneuraminate-poly-alpha-2,8-sialyl transferase|SIAT8-D|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 4|ST8SiaIV|alpha-2,8-sialyltransferase 8D|polysialyltransferase-1|sialyltransferase 8 (alpha-2, 8-polysialytransferase) D|sialyltransferase 8D|sialyltransferase St8Sia IV|sialytransferase St8Sia IV 51 0.006981 7.746 1 1 +7905 REEP5 receptor accessory protein 5 5 protein-coding C5orf18|D5S346|DP1|TB2|YOP1|Yip2e receptor expression-enhancing protein 5|deleted in polyposis 1|polyposis coli region hypothetical protein DP1|polyposis locus protein 1 22 0.003011 11.87 1 1 +7913 DEK DEK proto-oncogene 6 protein-coding D6S231E protein DEK|DEK oncogene (DNA binding) 30 0.004106 11.33 1 1 +7915 ALDH5A1 aldehyde dehydrogenase 5 family member A1 6 protein-coding SSADH|SSDH succinate-semialdehyde dehydrogenase, mitochondrial|NAD(+)-dependent succinic semialdehyde dehydrogenase|mitochondrial succinate semialdehyde dehydrogenase 27 0.003696 9.379 1 1 +7916 PRRC2A proline rich coiled-coil 2A 6 protein-coding BAT2|D6S51|D6S51E|G2 protein PRRC2A|HLA-B-associated transcript 2|large proline-rich protein BAT2|proline-rich and coiled-coil-containing protein 2A|protein G2 138 0.01889 12.71 1 1 +7917 BAG6 BCL2 associated athanogene 6 6 protein-coding BAG-6|BAT3|D6S52E|G3 large proline-rich protein BAG6|BAG family molecular chaperone regulator 6|HLA-B-associated transcript 3|large proline-rich protein BAT3|protein G3|protein Scythe|scythe 49 0.006707 12.29 1 1 +7918 GPANK1 G-patch domain and ankyrin repeats 1 6 protein-coding ANKRD59|BAT4|D6S54E|G5|GPATCH10 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 21 0.002874 8.767 1 1 +7919 DDX39B DExD-box helicase 39B 6 protein-coding BAT1|D6S81E|UAP56 spliceosome RNA helicase DDX39B|56 kDa U2AF65-associated protein|ATP-dependent RNA helicase p47|DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B|DEAD-box helicase 39B|HLA-B-associated transcript 1 protein|nuclear RNA helicase (DEAD family)|spliceosome RNA helicase BAT1 39 0.005338 12.33 1 1 +7920 ABHD16A abhydrolase domain containing 16A 6 protein-coding BAT5|D6S82E|NG26|PP199 protein ABHD16A|HLA-B associated transcript 5|abhydrolase domain-containing protein 16A|alpha/beta hydrolase domain-containing protein 16A|protein G5 35 0.004791 10.21 1 1 +7922 SLC39A7 solute carrier family 39 member 7 6 protein-coding D6S115E|D6S2244E|H2-KE4|HKE4|KE4|RING5|ZIP7 zinc transporter SLC39A7|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 (zinc transporter), member 7|zrt-, Irt-like protein 7 39 0.005338 11.85 1 1 +7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 6 protein-coding D6S2245E|FABG|FABGL|H2-KE6|HKE6|KE6|RING2|SDR30C1|dJ1033B10.9 estradiol 17-beta-dehydrogenase 8|17-beta-HSD 8|17-beta-hydroxysteroid dehydrogenase 8|3-oxoacyl-[acyl-carrier-protein] reductase|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 9 0.001232 8.034 1 1 +7932 OR2H2 olfactory receptor family 2 subfamily H member 2 6 protein-coding FAT11|OLFR2|OLFR42B|OR2H3|dJ271M21.2|hs6M1-12 olfactory receptor 2H2|Olfactory receptor 2|olfactory receptor 2H3|olfactory receptor OR6-36|olfactory receptor, family 2, subfamily H, member 3|olfactory receptor-like protein FAT11 27 0.003696 0.6201 1 1 +7936 NELFE negative elongation factor complex member E 6 protein-coding D6S45|NELF-E|RD|RDBP|RDP negative elongation factor E|RD RNA-binding protein|RNA-binding protein RD|major histocompatibility complex gene RD|negative elongation factor polypeptide E|nuclear protein 36 0.004927 10.54 1 1 +7940 LST1 leukocyte specific transcript 1 6 protein-coding B144|D6S49E|LST-1 leukocyte-specific transcript 1 protein|lymphocyte antigen 117 6 0.0008212 6.796 1 1 +7941 PLA2G7 phospholipase A2 group VII 6 protein-coding LDL-PLA2|LP-PLA2|PAFAD|PAFAH platelet-activating factor acetylhydrolase|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|phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) 42 0.005749 6.937 1 1 +7942 TFEB transcription factor EB 6 protein-coding ALPHATFEB|BHLHE35|TCFEB transcription factor EB|T-cell transcription factor EB|class E basic helix-loop-helix protein 35 20 0.002737 8.839 1 1 +7955 RNF217-AS1 RNF217 antisense RNA 1 (head to head) 6 ncRNA STL six-twelve leukemia 2 0.0002737 2.14 1 1 +7957 EPM2A epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) 6 protein-coding EPM2|MELF laforin|LAFPTPase|epilepsy, progressive myoclonus type 2, Lafora disease (laforin)|glucan phosphatase|lafora PTPase 12 0.001642 6.961 1 1 +7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 7 protein-coding JTV-1|JTV1|P38 aminoacyl tRNA synthase complex-interacting multifunctional protein 2|ARS-interacting multi-functional protein 2|multisynthase complex auxiliary component p38|multisynthetase complex auxiliary component p38|protein JTV-1 26 0.003559 9.114 1 1 +7975 MAFK MAF bZIP transcription factor K 7 protein-coding NFE2U|P18 transcription factor MafK|basic-leucine zipper transcription factor MafK|erythroid transcription factor NF-E2 p18 subunit|nuclear factor erythroid-2, ubiquitous (p18)|v-maf avian musculoaponeurotic fibrosarcoma oncogene family, protein K|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog K|v-maf musculoaponeurotic fibrosarcoma oncogene homolog K 5 0.0006844 9.785 1 1 +7976 FZD3 frizzled class receptor 3 8 protein-coding Fz-3 frizzled-3|frizzled 3, seven transmembrane spanning receptor|frizzled family receptor 3|frizzled homolog 3 44 0.006022 6.857 1 1 +7978 MTERF1 mitochondrial transcription termination factor 1 7 protein-coding MTERF transcription termination factor 1, mitochondrial|transcription termination factor, mitochondrial 20 0.002737 7.536 1 1 +7979 SHFM1 split hand/foot malformation (ectrodactyly) type 1 7 protein-coding DSS1|ECD|SEM1|SHFD1|SHSF1|Shfdg1 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 10 0.001369 10.88 1 1 +7980 TFPI2 tissue factor pathway inhibitor 2 7 protein-coding PP5|REF1|TFPI-2 tissue factor pathway inhibitor 2|placental protein 5|retinal pigment epithelium cell factor 1 37 0.005064 5.714 1 1 +7982 ST7 suppression of tumorigenicity 7 7 protein-coding ETS7q|FAM4A|FAM4A1|HELG|RAY1|SEN4|TSG7 suppressor of tumorigenicity 7 protein|family with sequence similarity 4, subfamily A, member 1|suppression of tumorigenicity 7 (breast) 27 0.003696 9.31 1 1 +7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 7 protein-coding GEF5|P60|TIM|TIM1 rho guanine nucleotide exchange factor 5|Rho guanine nucleotide exchange factor (GEF) 5|ephexin-3|guanine nucleotide regulatory protein TIM|oncogene TIM|p60 TIM|transforming immortalized mammary oncogene 46 0.006296 8.268 1 1 +7988 ZNF212 zinc finger protein 212 7 protein-coding C2H2-150|ZNF182|ZNFC150 zinc finger protein 212|Zinc finger protein C2H2-150 35 0.004791 8.527 1 1 +7991 TUSC3 tumor suppressor candidate 3 8 protein-coding D8S1992|M33|MRT22|MRT7|N33|OST3A tumor suppressor candidate 3|Putative prostate cancer tumor suppressor|magnesium uptake/transporter TUSC3|oligosaccharyltransferase 3 homolog A 53 0.007254 8.954 1 1 +7993 UBXN8 UBX domain protein 8 8 protein-coding D8S2298E|REP8|UBXD6 UBX domain-containing protein 8|Reproduction/chromosome 8|UBX domain-containing protein 6|rep-8 protein|reproduction 8 protein 36 0.004927 7.522 1 1 +7994 KAT6A lysine acetyltransferase 6A 8 protein-coding MOZ|MRD32|MYST-3|MYST3|RUNXBP2|ZC2HC6A|ZNF220 histone acetyltransferase KAT6A|K(lysine) acetyltransferase 6A|MOZ, YBF2/SAS3, SAS2 and TIP60 protein 3|MYST histone acetyltransferase (monocytic leukemia) 3|histone acetyltransferase MYST3|monocytic leukemia zinc finger protein|runt-related transcription factor binding protein 2|zinc finger protein 220 137 0.01875 10.32 1 1 +8000 PSCA prostate stem cell antigen 8 protein-coding PRO232 prostate stem cell antigen 11 0.001506 4.703 1 1 +8001 GLRA3 glycine receptor alpha 3 4 protein-coding - glycine receptor subunit alpha-3|glycine receptor, alpha-3 polypeptide|ligand gated ion channel 56 0.007665 1.362 1 1 +8013 NR4A3 nuclear receptor subfamily 4 group A member 3 9 protein-coding CHN|CSMF|MINOR|NOR1|TEC nuclear receptor subfamily 4 group A member 3|chondrosarcoma, extraskeletal myxoid, fused to EWS|mitogen-induced nuclear orphan receptor|neuron-derived orphan receptor 1|nuclear hormone receptor NOR-1|translocated in extraskeletal chondrosarcoma 41 0.005612 6.74 1 1 +8019 BRD3 bromodomain containing 3 9 protein-coding ORFX|RING3L bromodomain-containing protein 3|RING3-like protein|bromodomain-containing protein 3 short isoform 57 0.007802 9.965 1 1 +8021 NUP214 nucleoporin 214 9 protein-coding CAIN|CAN nuclear pore complex protein Nup214|CAN protein, putative oncogene|nucleoporin 214kDa 127 0.01738 10.54 1 1 +8022 LHX3 LIM homeobox 3 9 protein-coding CPHD3|LIM3|M2-LHX3 LIM/homeobox protein Lhx3|LIM homeobox protein 3|LIM/homeodomain protein LHX3 27 0.003696 0.7935 1 1 +8027 STAM signal transducing adaptor molecule 10 protein-coding STAM-1|STAM1 signal transducing adapter molecule 1|HSE1 homolog|signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 47 0.006433 9.147 1 1 +8028 MLLT10 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 10 10 protein-coding AF10 protein AF-10|ALL1-fused gene from chromosome 10 protein|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10|type I AF10 protein|type III AF10 protein|type IV AF10 protein 80 0.01095 9.13 1 1 +8029 CUBN cubilin 10 protein-coding IFCR|MGA1|gp280 cubilin|460 kDa receptor|cubilin (intrinsic factor-cobalamin receptor)|cubilin precursor variant 1|cubilin precursor variant 2|cubilin precursor variant 3|intestinal intrinsic factor receptor|intrinsic factor-vitamin B12 receptor 369 0.05051 5.324 1 1 +8030 CCDC6 coiled-coil domain containing 6 10 protein-coding D10S170|H4|PTC|TPC|TST1 coiled-coil domain-containing protein 6|papillary thyroid carcinoma-encoded protein 36 0.004927 10.77 1 1 +8031 NCOA4 nuclear receptor coactivator 4 10 protein-coding ARA70|ELE1|PTC3|RFG nuclear receptor coactivator 4|70 kDa AR-activator|70 kDa androgen receptor coactivator|NCoA-4|RET-activating gene ELE1|androgen receptor-associated protein of 70 kDa|ret fused 51 0.006981 12.01 1 1 +8034 SLC25A16 solute carrier family 25 member 16 10 protein-coding D10S105E|GDA|GDC|HGT.1|ML7|hML7 graves disease carrier protein|mitochondrial solute carrier protein homolog|solute carrier family 25 (mitochondrial carrier; Graves disease autoantigen), member 16 15 0.002053 7.84 1 1 +8036 SHOC2 SHOC2, leucine rich repeat scaffold protein 10 protein-coding SIAA0862|SOC2|SUR8 leucine-rich repeat protein SHOC-2|soc-2 suppressor of clear homolog 39 0.005338 9.928 1 1 +8038 ADAM12 ADAM metallopeptidase domain 12 10 protein-coding ADAM12-OT1|CAR10|MCMP|MCMPMltna|MLTN|MLTNA disintegrin and metalloproteinase domain-containing protein 12|meltrin-alpha|metalloprotease-disintegrin 12 transmembrane 86 0.01177 7.847 1 1 +8045 RASSF7 Ras association domain family member 7 11 protein-coding C11orf13|HRAS1|HRC1 ras association domain-containing protein 7|HRAS1-related cluster protein 1|HRAS1-related cluster-1|Ras association (RalGDS/AF-6) domain family (N-terminal) member 7|Ras association (RalGDS/AF-6) domain family 7 20 0.002737 9.133 1 1 +8048 CSRP3 cysteine and glycine rich protein 3 11 protein-coding CLP|CMD1M|CMH12|CRP3|LMO4|MLP cysteine and glycine-rich protein 3|LIM domain only 4|cardiac LIM domain protein|cysteine and glycine-rich protein 3 (cardiac LIM protein)|muscle lim protein isoform 15 0.002053 0.5709 1 1 +8050 PDHX pyruvate dehydrogenase complex component X 11 protein-coding DLDBP|E3BP|OPDX|PDX1|proX pyruvate dehydrogenase protein X component, mitochondrial|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 37 0.005064 9.238 1 1 +8061 FOSL1 FOS like 1, AP-1 transcription factor subunit 11 protein-coding FRA|FRA1|fra-1 fos-related antigen 1|FOS like 1, AP-1 trancription factor subunit|FOS-like antigen-1 14 0.001916 6.766 1 1 +8065 CUL5 cullin 5 11 protein-coding VACM-1|VACM1 cullin-5|CUL-5|Cullin-5 (vasopressin-activated calcium-mobilizing receptor-1)|Vasopressin-activated calcium-mobilizing receptor-1|vasopressin-activated calcium-mobilizing receptor 1 47 0.006433 9.601 1 1 +8073 PTP4A2 protein tyrosine phosphatase type IVA, member 2 1 protein-coding HH13|HH7-2|HU-PP-1|OV-1|PRL-2|PRL2|PTP4A|PTPCAAX2|ptp-IV1a|ptp-IV1b protein tyrosine phosphatase type IVA 2|PTP(CAAXII)|phosphatase of regenerating liver 2|protein tyrosine phosphatase IVA|protein tyrosine phosphatase IVA2|protein-tyrosine phosphatase 4a2|protein-tyrosine phosphatase of regenerating liver 2 11 0.001506 11.09 1 1 +8074 FGF23 fibroblast growth factor 23 12 protein-coding ADHR|FGFN|HPDR2|HYPF|PHPTC fibroblast growth factor 23|phosphatonin|tumor-derived hypophosphatemia inducing factor 41 0.005612 0.3566 1 1 +8076 MFAP5 microfibrillar associated protein 5 12 protein-coding AAT9|MAGP-2|MAGP2|MFAP-5|MP25 microfibrillar-associated protein 5|THE1A-MFAP5|microfibril-associated glycoprotein-2 20 0.002737 5.963 1 1 +8078 USP5 ubiquitin specific peptidase 5 12 protein-coding ISOT ubiquitin carboxyl-terminal hydrolase 5|deubiquitinating enzyme 5|isopeptidase T|testicular tissue protein Li 218|ubiquitin isopeptidase T|ubiquitin specific peptidase 5 (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 45 0.006159 11.21 1 1 +8079 MLF2 myeloid leukemia factor 2 12 protein-coding NTN4 myeloid leukemia factor 2|myelodysplasia-myeloid leukemia factor 2 21 0.002874 12.17 1 1 +8082 SSPN sarcospan 12 protein-coding DAGA5|KRAG|NSPN|SPN1|SPN2 sarcospan|K-ras oncogene-associated protein|Kras oncogene-associated|kirsten-ras-associated protein|microspan|nanospan|sarcospan (Kras oncogene-associated gene) 16 0.00219 8.548 1 1 +8085 KMT2D lysine methyltransferase 2D 12 protein-coding AAD10|ALR|CAGL114|KABUK1|KMS|MLL2|MLL4|TNRC21 histone-lysine N-methyltransferase 2D|ALL1-related protein|Kabuki make-up syndrome|Kabuki mental retardation syndrome|histone-lysine N-methyltransferase MLL2|lysine (K)-specific methyltransferase 2D|lysine N-methyltransferase 2D|myeloid/lymphoid or mixed-lineage leukemia 2|trinucleotide repeat containing 21 551 0.07542 10.94 1 1 +8086 AAAS aladin WD repeat nucleoporin 12 protein-coding AAA|AAASb|ADRACALA|ADRACALIN|ALADIN|GL003 aladin|Allgrove, triple-A|achalasia, adrenocortical insufficiency, alacrimia 34 0.004654 9.649 1 1 +8087 FXR1 FMR1 autosomal homolog 1 3 protein-coding FXR1P fragile X mental retardation syndrome-related protein 1|fragile X mental retardation autosomal homolog variant p1K|fragile X mental retardation autosomal homolog variant p2K|fragile X mental retardation autosomal homolog variant p4K|fragile X mental retardation autosomal homolog variant p5FK|fragile X mental retardation, autosomal homolog 1|hFXR1p 59 0.008076 11.08 1 1 +8089 YEATS4 YEATS domain containing 4 12 protein-coding 4930573H17Rik|B230215M10Rik|GAS41|NUBI-1|YAF9 YEATS domain-containing protein 4|NuMA binding protein 1|glioma-amplified sequence 41|nuBI1|nuMA-binding protein 1 14 0.001916 8.453 1 1 +8091 HMGA2 high mobility group AT-hook 2 12 protein-coding BABL|HMGI-C|HMGIC|LIPO|STQTL9 high mobility group protein HMGI-C|high-mobility group (nonhistone chromosomal) protein isoform I-C 16 0.00219 4.811 1 1 +8092 ALX1 ALX homeobox 1 12 protein-coding CART1|FND3|HEL23 ALX homeobox protein 1|CART-1|cartilage paired-class homeoprotein 1|epididymis luminal protein 23 47 0.006433 1.435 1 1 +8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 12 protein-coding DOC1|DORC1|ST19|doc-1|p12DOC-1 cyclin-dependent kinase 2-associated protein 1|CDK2-associated protein 1|Deleted in oral cancer-1|deleted in oral cancer 1|putative oral cancer suppressor 3 0.0004106 11.34 1 1 +8100 IFT88 intraflagellar transport 88 13 protein-coding D13S1056E|DAF19|TG737|TTC10|hTg737 intraflagellar transport protein 88 homolog|TPR repeat protein 10|intraflagellar transport 88 homolog|polaris homolog|probe hTg737 (polycystic kidney disease, autosomal recessive)|recessive polycystic kidney disease protein Tg737 homolog|testicular tissue protein Li 93|tetratricopeptide repeat domain 10|tetratricopeptide repeat protein 10 56 0.007665 7.979 1 1 +8106 PABPN1 poly(A) binding protein nuclear 1 14 protein-coding OPMD|PAB2|PABII|PABP-2|PABP2 polyadenylate-binding protein 2|poly(A) binding protein 2|poly(A) binding protein II 22 0.003011 11.4 1 1 +8110 DPF3 double PHD fingers 3 14 protein-coding BAF45C|CERD4 zinc finger protein DPF3|BRG1-associated factor 45C|D4, zinc and double PHD fingers, family 3|zinc finger protein cer-d4 50 0.006844 4.026 1 1 +8111 GPR68 G protein-coupled receptor 68 14 protein-coding GPR12A|OGR1 ovarian cancer G-protein coupled receptor 1|ovarian cancer G protein-coupled receptor, 1|sphingosylphosphorylcholine receptor 27 0.003696 6.694 1 1 +8115 TCL1A T-cell leukemia/lymphoma 1A 14 protein-coding TCL1 T-cell leukemia/lymphoma protein 1A|T-cell lymphoma-1|oncogene TCL-1|oncogene TCL1|protein p14 TCL1 14 0.001916 2.409 1 1 +8120 AP3B2 adaptor related protein complex 3 beta 2 subunit 15 protein-coding NAPTB 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|adaptor-related protein complex 3 subunit beta-2|beta-3B-adaptin|clathrin assembly protein complex 3 beta-2 large chain|neuron-specific vesicle coat protein beta-NAP 82 0.01122 5.141 1 1 +8123 PWAR5 Prader Willi/Angelman region RNA 5 15 ncRNA D15S226E|PAR-5|PAR5 Prader-Willi/Angelman syndrome-5 3.657 0 1 +8125 ANP32A acidic nuclear phosphoprotein 32 family member A 15 protein-coding C15orf1|HPPCn|I1PP2A|LANP|MAPM|PHAP1|PHAPI|PP32 acidic leucine-rich nuclear phosphoprotein 32 family member A|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 20 0.002737 11.34 1 1 +8128 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 15 protein-coding HsT19690|SIAT8-B|SIAT8B|ST8SIA-II|ST8SiaII|STX alpha-2,8-sialyltransferase 8B|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 2|alpha-2,8-sialyltransferase 8B 1|sialyltransferase 8 (alpha-2, 8-sialytransferase) B|sialyltransferase 8B|sialyltransferase St8Sia II|sialyltransferase X 49 0.006707 3.412 1 1 +8131 NPRL3 NPR3 like, GATOR1 complex subunit 16 protein-coding C16orf35|CGTHBA|FFEVF3|HS-40|MARE|NPR3|RMD11 nitrogen permease regulator 3-like protein|-14 gene protein|alpha-globin regulatory element-containing gene protein|conserved gene telomeric to alpha globin cluster 17 0.002327 9.885 1 1 +8139 GAN gigaxonin 16 protein-coding GAN1|KLHL16 gigaxonin|kelch-like family member 16|kelch-like protein 16 41 0.005612 5.696 1 1 +8140 SLC7A5 solute carrier family 7 member 5 16 protein-coding 4F2LC|CD98|D16S469E|E16|LAT1|MPE16 large neutral amino acids transporter small subunit 1|4F2 light chain|CD98 light chain|L-type amino acid transporter 1|integral membrane protein E16|sodium-independent neutral amino acid transporter LAT1|solute carrier family 7 (amino acid transporter light chain, L system), member 5|solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 29 0.003969 10.68 1 1 +8148 TAF15 TATA-box binding protein associated factor 15 17 protein-coding Npl3|RBP56|TAF2N|TAFII68 TATA-binding protein-associated factor 2N|RBP56/CSMF fusion|TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa|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)|TBP-associated factor 15 54 0.007391 11.49 1 1 +8153 RND2 Rho family GTPase 2 17 protein-coding ARHN|RHO7|RhoN rho-related GTP-binding protein RhoN|CTD-3199J23.4|GTP-binding protein Rho7|ras homolog gene family, member N|rho-related GTP-binding protein Rho7 12 0.001642 6.419 1 1 +8161 COIL coilin 17 protein-coding CLN80|p80-coilin coilin|coilin p80|p80 41 0.005612 8.872 1 1 +8165 AKAP1 A-kinase anchoring protein 1 17 protein-coding AKAP|AKAP121|AKAP149|AKAP84|D-AKAP1|PPP1R43|PRKA1|SAKAP84|TDRD17 A-kinase anchor protein 1, mitochondrial|A kinase (PRKA) anchor protein 1|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|testicular secretory protein Li 5|tudor domain containing 17 56 0.007665 10.66 1 1 +8170 SLC14A2 solute carrier family 14 member 2 18 protein-coding HUT2|UT-A2|UT2|UTA|UTR|hUT-A6 urea transporter 2|solute carrier family 14 (urea transporter), member 2|urea transporter, kidney 77 0.01054 1.948 1 1 +8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 19 protein-coding MACAM1 mucosal addressin cell adhesion molecule 1|MAdCAM-1|hMAdCAM-1 21 0.002874 2.054 1 1 +8175 SF3A2 splicing factor 3a subunit 2 19 protein-coding PRP11|PRPF11|SAP62|SF3a66 splicing factor 3A subunit 2|SAP 62|pre-mRNA splicing factor SF3A, subunit 2|spliceosome associated protein 62|splicing factor 3a, subunit 2, 66kD|splicing factor 3a, subunit 2, 66kDa 23 0.003148 10.52 1 1 +8178 ELL elongation factor for RNA polymerase II 19 protein-coding C19orf17|ELL1|MEN|PPP1R68 RNA polymerase II elongation factor ELL|ELL gene (11-19 lysine-rich leukemia gene)|eleven-nineteen lysine-rich leukemia protein|elongation factor RNA polymerase II|protein phosphatase 1, regulatory subunit 68 31 0.004243 9.014 1 1 +8187 ZNF239 zinc finger protein 239 10 protein-coding HOK-2|MOK2 zinc finger protein 239|zinc finger protein (C2H2) homologous to mouse MOK-2|zinc finger protein HOK-2|zinc finger protein MOK-2 37 0.005064 6.437 1 1 +8189 SYMPK symplekin 19 protein-coding SPK|SYM symplekin 87 0.01191 11.09 1 1 +8190 MIA melanoma inhibitory activity 19 protein-coding CD-RAP melanoma-derived growth regulatory protein 4 0.0005475 3.376 1 1 +8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit 19 protein-coding DFNB81|PRLTS3 ATP-dependent Clp protease proteolytic subunit, mitochondrial|ATP-dependent protease ClpAP, proteolytic subunit, human|ClpP caseinolytic peptidase ATP-dependent, proteolytic subunit|ClpP caseinolytic peptidase, ATP-dependent, proteolytic subunit homolog|ClpP caseinolytic protease, ATP-dependent, proteolytic subunit homolog|endopeptidase Clp|putative ATP-dependent Clp protease proteolytic subunit, mitochondrial 13 0.001779 9.835 1 1 +8193 DPF1 double PHD fingers 1 19 protein-coding BAF45b|NEUD4|neuro-d4 zinc finger protein neuro-d4|BRG1-associated factor 45B|D4, zinc and double PHD fingers family 1|neuro-d4 homolog 27 0.003696 3.404 1 1 +8195 MKKS McKusick-Kaufman syndrome 20 protein-coding BBS6|HMCS|KMS|MKS McKusick-Kaufman/Bardet-Biedl syndromes putative chaperonin|Bardet-Biedl syndrome 6 protein 25 0.003422 9.878 1 1 +8200 GDF5 growth differentiation factor 5 20 protein-coding BDA1C|BMP-14|BMP14|CDMP1|LAP-4|LAP4|OS5|SYM1B|SYNS2 growth/differentiation factor 5|LPS-associated protein 4|bone morphogenetic protein 14|cartilage-derived morphogenetic protein-1|lipopolysaccharide-associated protein 4|radotermin 63 0.008623 2.886 1 1 +8202 NCOA3 nuclear receptor coactivator 3 20 protein-coding ACTR|AIB-1|AIB1|CAGH16|CTG26|KAT13B|RAC3|SRC-3|SRC3|TNRC14|TNRC16|TRAM-1|bHLHe42|pCIP nuclear receptor coactivator 3|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 119 0.01629 10.29 1 1 +8204 NRIP1 nuclear receptor interacting protein 1 21 protein-coding RIP140 nuclear receptor-interacting protein 1|nuclear factor RIP140|receptor-interacting protein 140 80 0.01095 10.26 1 1 +8208 CHAF1B chromatin assembly factor 1 subunit B 21 protein-coding CAF-1|CAF-IP60|CAF1|CAF1A|CAF1P60|MPHOSPH7|MPP7 chromatin assembly factor 1 subunit B|CAF-1 subunit B|CAF-I 60 kDa subunit|CAF-I p60|M-phase phosphoprotein 7|chromatin assembly factor I p60 subunit|human chromatin assembly factor-I p60 subunit 30 0.004106 7.569 1 1 +8209 C21orf33 chromosome 21 open reading frame 33 21 protein-coding ES1|GT335|HES1|KNPH|KNPI ES1 protein homolog, mitochondrial|Keio novel protein I|human HES1 protein, homolog to E.coli and zebrafish ES1 protein|testis secretory sperm-binding protein Li 237E 19 0.002601 10.86 1 1 +8214 DGCR6 DiGeorge syndrome critical region gene 6 22 protein-coding - protein DGCR6|DiGeorge syndrome critical region protein 6 17 0.002327 8.817 1 1 +8216 LZTR1 leucine zipper like transcription regulator 1 22 protein-coding BTBD29|LZTR-1|NS10|SWNTS2 leucine-zipper-like transcriptional regulator 1 107 0.01465 9.982 1 1 +8218 CLTCL1 clathrin heavy chain like 1 22 protein-coding CHC22|CLH22|CLTCL|CLTD clathrin heavy chain 2|CLH-22|Clathrin, heavy polypeptide D|clathrin heavy chain on chromosome 22|clathrin, heavy polypeptide-like 1 99 0.01355 6.748 1 1 +8220 DGCR14 DiGeorge syndrome critical region gene 14 22 protein-coding DGCR13|DGS-H|DGS-I|DGSH|DGSI|ES2|Es2el protein DGCR14|DiGeorge syndrome critical region gene 13|DiGeorge syndrome critical region gene DGSI|DiGeorge syndrome gene H|DiGeorge syndrome gene I|Protein DGCR13|diGeorge syndrome protein H 36 0.004927 8.864 1 1 +8224 SYN3 synapsin III 22 protein-coding - synapsin-3|cN28H9.2 (synapsin III) 49 0.006707 2.719 1 1 +8225 GTPBP6 GTP binding protein 6 (putative) X|Y protein-coding PGPL putative GTP-binding protein 6 9.346 0 1 +8226 PUDP pseudouridine 5'-phosphatase X protein-coding DXF68S1E|FAM16AX|GS1|HDHD1|HDHD1A pseudouridine-5'-phosphatase|5'-PsiMPase|family with sequence similarity 16, member A, X-linked|haloacid dehalogenase-like hydrolase domain containing 1|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 26 0.003559 8.681 1 1 +8227 AKAP17A A-kinase anchoring protein 17A X|Y protein-coding 721P|AKAP-17A|CCDC133|CXYorf3|DXYS155E|PRKA17A|SFRS17A|XE7|XE7Y A-kinase anchor protein 17A|A kinase (PRKA) anchor protein 17A|B-lymphocyte surface antigen|protein kinase A-anchoring protein 17A|pseudoautosomal gene XE7|splicing factor, arginine/serine-rich 17A 9.8 0 1 +8228 PNPLA4 patatin like phospholipase domain containing 4 X protein-coding DXS1283E|GS2|iPLA2eta patatin-like phospholipase domain-containing protein 4|IPLA2 eta|calcium independent phospholipases A2 eta 17 0.002327 8.479 1 1 +8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 X protein-coding U2AF1-RS2|U2AF1L2|U2AF1RS2|URP|ZC3H22 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|zinc finger (CCCH type), RNA binding motif and serine/arginine rich 2 18 0.002464 7.86 1 1 +8237 USP11 ubiquitin specific peptidase 11 X protein-coding UHX1 ubiquitin carboxyl-terminal hydrolase 11|deubiquitinating enzyme 11|ubiquitin carboxyl-terminal hydrolase, X-linked|ubiquitin thioesterase 11|ubiquitin thiolesterase 11|ubiquitin-specific processing protease 11 62 0.008486 10.97 1 1 +8239 USP9X ubiquitin specific peptidase 9, X-linked X protein-coding DFFRX|FAF|FAM|MRX99|MRXS99F probable ubiquitin carboxyl-terminal hydrolase FAF-X|Drosophila fat facets related, X-linked|deubiquitinating enzyme FAF-X|fat facets in mammals|fat facets protein related, X-linked|hFAM|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 192 0.02628 11.67 1 1 +8241 RBM10 RNA binding motif protein 10 X protein-coding DXS8237E|GPATC9|GPATCH9|S1-1|TARPS|ZRANB5 RNA-binding protein 10|RNA-binding protein S1-1|g patch domain-containing protein 9 119 0.01629 10.59 1 1 +8242 KDM5C lysine demethylase 5C X protein-coding DXS1272E|JARID1C|MRX13|MRXJ|MRXSCJ|MRXSJ|SMCX|XE169 lysine-specific demethylase 5C|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 (K)-specific demethylase 5C 107 0.01465 11.34 1 1 +8243 SMC1A structural maintenance of chromosomes 1A X protein-coding CDLS2|DXS423E|SB1.8|SMC1|SMC1L1|SMC1alpha|SMCB structural maintenance of chromosomes protein 1A|SMC protein 1A|SMC-1-alpha|SMC1 (structural maintenance of chromosomes 1, yeast)-like 1|segregation of mitotic chromosomes 1 83 0.01136 11.17 1 1 +8260 NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit X protein-coding ARD1|ARD1A|ARD1P|DXS707|MCOPS1|NATD|OGDNS|TE2 N-alpha-acetyltransferase 10|ARD1 homolog A, N-acetyltransferase|N-acetyltransferase ARD1, human homolog of|N-terminal acetyltransferase complex ARD1 subunit homolog A|natA catalytic subunit Naa10 17 0.002327 10.02 1 1 +8263 F8A1 coagulation factor VIII-associated 1 X protein-coding DXS522E|F8A|HAP40 factor VIII intron 22 protein|coagulation factor VIII-associated (intronic transcript) 1|cpG island protein|factor VIII associated protein|huntingtin-associated protein 40 4 0.0005475 7.597 1 1 +8266 UBL4A ubiquitin like 4A X protein-coding DX254E|DXS254E|G6PD|GDX|GET5|MDY2|TMA24|UBL4 ubiquitin-like protein 4A|ubiquitin-like 4|ubiquitin-like protein GDX 17 0.002327 10.21 1 1 +8269 TMEM187 transmembrane protein 187 X protein-coding CXorf12|DXS9878E|ITBA1 transmembrane protein 187 19 0.002601 7.852 1 1 +8270 LAGE3 L antigen family member 3 X protein-coding CVG5|DXS9879E|DXS9951E|ESO3|ITBA2|Pcc1 EKC/KEOPS complex subunit LAGE3|protein ESO-3 7 0.0009581 8.878 1 1 +8273 SLC10A3 solute carrier family 10 member 3 X protein-coding DXS253E|P3 P3 protein|Protein P3|solute carrier family 10 (sodium/bile acid cotransporter family), member 3 31 0.004243 9.43 1 1 +8277 TKTL1 transketolase like 1 X protein-coding TKR|TKT2 transketolase-like protein 1|TK 2|transketolase-2|transketolase-related protein 52 0.007117 1.961 1 1 +8284 KDM5D lysine demethylase 5D Y protein-coding HY|HYA|JARID1D|SMCY lysine-specific demethylase 5D|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 (K)-specific demethylase 5D|protein SmcY|selected mouse cDNA on Y, human homolog of 21 0.002874 4.614 1 1 +8287 USP9Y ubiquitin specific peptidase 9, Y-linked Y protein-coding DFFRY|SPGFY2 probable ubiquitin carboxyl-terminal hydrolase FAF-Y|deubiquitinating enzyme FAF-Y|fat facets protein-related, Y-linked|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 42 0.005749 4.104 1 1 +8288 EPX eosinophil peroxidase 17 protein-coding EPO|EPP|EPX-PEN|EPXD eosinophil peroxidase 74 0.01013 1.032 1 1 +8289 ARID1A AT-rich interaction domain 1A 1 protein-coding B120|BAF250|BAF250a|BM029|C1orf4|CSS2|ELD|MRD14|OSA1|P270|SMARCF1|hELD|hOSA1 AT-rich interactive domain-containing protein 1A|ARID domain-containing protein 1A|AT rich interactive domain 1A (SWI-like)|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 447 0.06118 11.22 1 1 +8290 HIST3H3 histone cluster 3 H3 1 protein-coding H3.4|H3/g|H3FT|H3t histone H3.1t|H3 histone family, member T|H3/t|histone 3, H3 20 0.002737 0.2082 1 1 +8291 DYSF dysferlin 2 protein-coding FER1L1|LGMD2B|MMD1 dysferlin|dystrophy-associated fer-1-like 1|fer-1-like family member 1|fer-1-like protein 1|limb girdle muscular dystrophy 2B (autosomal recessive) 209 0.02861 9.014 1 1 +8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase 3 protein-coding CMS5|EAD acetylcholinesterase collagenic tail peptide|AChE Q subunit|acetylcholinesterase-associated collagen|collagen-like tail subunit (single strand of homotrimer) of asymmetric acetylcholinesterase|collagenic tail of endplate acetylcholinesterase|single strand of homotrimeric collagen-like tail subunit of asymmetric acetylcholinesterase 32 0.00438 5.454 1 1 +8293 SERF1A small EDRK-rich factor 1A 5 protein-coding 4F5|FAM2A|H4F5|SERF1|SMAM1 small EDRK-rich factor 1|SMA modifier 1|protein 4F5|small EDRK-rich factor 1A (telomeric)|spinal muscular atrophy-related gene H4F5 8.909 0 1 +8294 HIST1H4I histone cluster 1 H4 family member i 6 protein-coding H4/m|H4FM|H4M histone H4|H4 histone family, member M|Histone 4 family, member M|histone 1, H4i|histone cluster 1, H4i|histone family member 22 0.003011 1.307 1 1 +8295 TRRAP transformation/transcription domain associated protein 7 protein-coding PAF350/400|PAF400|STAF40|TR-AP|Tra1 transformation/transcription domain-associated protein|350/400 kDa PCAF-associated factor|tra1 homolog 243 0.03326 10.87 1 1 +8301 PICALM phosphatidylinositol binding clathrin assembly protein 11 protein-coding CALM|CLTH|LAP phosphatidylinositol-binding clathrin assembly protein|clathrin assembly lymphoid myeloid leukemia protein 46 0.006296 11.74 1 1 +8302 KLRC4 killer cell lectin like receptor C4 12 protein-coding NKG2-F|NKG2F NKG2-F type II integral membrane protein|NK cell receptor F|NKG2-F-activating NK receptor|killer cell lectin-like receptor subfamily C, member 4|natual killer cell group 2-F 7 0.0009581 1.426 1 1 +8303 SNN stannin 16 protein-coding - stannin|AG8_1 5 0.0006844 9.877 1 1 +8309 ACOX2 acyl-CoA oxidase 2 3 protein-coding BCOX|BRCACOX|BRCOX|THCCox peroxisomal acyl-coenzyme A oxidase 2|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-CoA oxidase 2, branched chain|acyl-Coenzyme A oxidase 2, branched chain|branched chain acyl-CoA oxidase|peroxisomal branched chain acyl-CoA oxidase|trihydroxycoprostanoyl-CoA oxidase 42 0.005749 6.803 1 1 +8310 ACOX3 acyl-CoA oxidase 3, pristanoyl 4 protein-coding - peroxisomal acyl-coenzyme A oxidase 3|BRCACox|acyl-Coenzyme A oxidase 3, pristanoyl|branched-chain acyl-CoA oxidase|pristanoyl-CoA oxidase 49 0.006707 8.694 1 1 +8312 AXIN1 axin 1 16 protein-coding AXIN|PPP1R49 axin-1|axis inhibition protein 1|axis inhibitor 1|fused, mouse, homolog of|protein phosphatase 1, regulatory subunit 49 80 0.01095 9.876 1 1 +8313 AXIN2 axin 2 17 protein-coding AXIL|ODCRCS axin-2|axin-like protein|axis inhibition protein 2|conductin 86 0.01177 7.87 1 1 +8314 BAP1 BRCA1 associated protein 1 3 protein-coding HUCEP-13|UCHL2|hucep-6 ubiquitin carboxyl-terminal hydrolase BAP1|BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase)|cerebral protein 6|cerebral protein-13 154 0.02108 10.8 1 1 +8315 BRAP BRCA1 associated protein 12 protein-coding BRAP2|IMP|RNF52 BRCA1-associated protein|RING finger protein 52|galectin-2-binding protein|impedes mitogenic signal propagation|renal carcinoma antigen NY-REN-63 42 0.005749 9.23 1 1 +8317 CDC7 cell division cycle 7 1 protein-coding CDC7L1|HsCDC7|Hsk1|huCDC7 cell division cycle 7-related protein kinase|CDC7 (cell division cycle 7, S. cerevisiae, homolog)-like 1|CDC7-related kinase|cell division cycle 7 homolog|cell division cycle 7-like protein 1 42 0.005749 7.372 1 1 +8318 CDC45 cell division cycle 45 22 protein-coding CDC45L|CDC45L2|MGORS7|PORC-PI-1 cell division control protein 45 homolog|CDC45 cell division cycle 45 homolog|CDC45-related protein|cell division cycle 45 homolog|cell division cycle 45-like 2|human CDC45 39 0.005338 6.982 1 1 +8320 EOMES eomesodermin 3 protein-coding TBR2 eomesodermin homolog|T-box brain protein 2 50 0.006844 3.806 1 1 +8321 FZD1 frizzled class receptor 1 7 protein-coding - frizzled-1|Wnt receptor|frizzled 1, seven transmembrane spanning receptor|frizzled family receptor 1|frizzled homolog 1|frizzled, Drosophila, homolog of, 1|fz-1|fzE1|hFz1 50 0.006844 9.589 1 1 +8322 FZD4 frizzled class receptor 4 11 protein-coding CD344|EVR1|FEVR|FZD4S|Fz-4|Fz4|FzE4|GPCR|hFz4 frizzled-4|WNT receptor frizzled-4|frizzled 4, seven transmembrane spanning receptor|frizzled family receptor 4|frizzled homolog 4 27 0.003696 9.373 1 1 +8323 FZD6 frizzled class receptor 6 8 protein-coding FZ-6|FZ6|HFZ6|NDNC10 frizzled-6|frizzled 6, seven transmembrane spanning receptor|frizzled family receptor 6|frizzled homolog 6|seven transmembrane helix receptor 50 0.006844 9.431 1 1 +8324 FZD7 frizzled class receptor 7 2 protein-coding FzE3 frizzled-7|Frizzled, drosophila, homolog of, 7|frizzled 7, seven transmembrane spanning receptor|frizzled family receptor 7|frizzled homolog 7|fz-7|hFz7 44 0.006022 8.654 1 1 +8325 FZD8 frizzled class receptor 8 10 protein-coding FZ-8|hFZ8 frizzled-8|frizzled 8, seven transmembrane spanning receptor|frizzled family receptor 8|frizzled homolog 8 40 0.005475 7.441 1 1 +8326 FZD9 frizzled class receptor 9 7 protein-coding CD349|FZD3 frizzled-9|frizzled 9, seven transmembrane spanning receptor|frizzled family receptor 9|frizzled homolog 9|fz-9|fzE6|hFz9 34 0.004654 3.622 1 1 +8328 GFI1B growth factor independent 1B transcriptional repressor 9 protein-coding BDPLT17|ZNF163B zinc finger protein Gfi-1b|growth factor independent 1B (potential regulator of CDKN1A, translocated in CML)|growth factor independent 1B transcription repressor 30 0.004106 1.108 1 1 +8329 HIST1H2AI histone cluster 1 H2A family member i 6 protein-coding H2A/c|H2AFC histone H2A type 1|H2A histone family, member C|H2A.1|histone 1, H2ai|histone cluster 1, H2ai 16 0.00219 1 0 +8330 HIST1H2AK histone cluster 1 H2A family member k 6 protein-coding H2A/d|H2AFD histone H2A type 1|H2A histone family, member D|H2A.1|histone 1, H2ak|histone H2A type 1-J|histone cluster 1, H2ak 29 0.003969 1.916 1 1 +8331 HIST1H2AJ histone cluster 1 H2A family member j 6 protein-coding H2A/E|H2AFE|dJ160A22.4 histone cluster 1, H2aj|H2A histone family, member E|histone 1, H2aj 17 0.002327 0.9403 1 1 +8332 HIST1H2AL histone cluster 1 H2A family member l 6 protein-coding H2A.i|H2A/i|H2AFI|dJ193B12.9 histone H2A type 1|H2A histone family, member I|H2A.1|histone 1, H2al|histone cluster 1, H2al 20 0.002737 1.115 1 1 +8334 HIST1H2AC histone cluster 1 H2A family member c 6 protein-coding H2A/l|H2AFL|dJ221C16.4 histone H2A type 1-C|H2A histone family, member L|histone 1, H2ac|histone H2A/l|histone H2AC|histone cluster 1, H2ac 31 0.004243 9.775 1 1 +8335 HIST1H2AB histone cluster 1 H2A family member b 6 protein-coding H2A/m|H2AFM histone H2A type 1-B/E|H2A histone family, member M|histone 1, H2ab|histone H2A/m|histone cluster 1, H2ab 21 0.002874 0.5661 1 1 +8336 HIST1H2AM histone cluster 1 H2A family member m 6 protein-coding H2A.1|H2A/n|H2AFN|dJ193B12.1 histone H2A type 1|H2A histone family, member N|histone 1, H2am|histone cluster 1, H2am 23 0.003148 2.851 1 1 +8337 HIST2H2AA3 histone cluster 2 H2A family member a3 1 protein-coding H2A|H2A.2|H2A/O|H2A/q|H2AFO|H2a-615|HIST2H2AA histone H2A type 2-A|H2A histone family, member O|histone 2, H2aa3|histone cluster 2, H2aa3 8.854 0 1 +8338 HIST2H2AC histone cluster 2 H2A family member c 1 protein-coding H2A|H2A-GL101|H2A/q|H2AFQ histone H2A type 2-C|H2A histone family, member Q|histone 2, H2ac|histone H2A-GL101|histone H2A/q|histone IIa|histone cluster 2, H2ac 35 0.004791 3.138 1 1 +8339 HIST1H2BG histone cluster 1 H2B family member g 6 protein-coding H2B.1A|H2B/a|H2BFA|dJ221C16.8 histone H2B type 1-C/E/F/G/I|H2B histone family, member A|histone 1, H2bg|histone H2B.1 A|histone H2B.a|histone cluster 1, H2bg 34 0.004654 3.789 1 1 +8340 HIST1H2BL histone cluster 1 H2B family member l 6 protein-coding H2B/c|H2BFC|dJ97D16.4 histone H2B type 1-L|H2B histone family, member C|histone 1, H2bl|histone H2B.c|histone cluster 1, H2bl 22 0.003011 1.387 1 1 +8341 HIST1H2BN histone cluster 1 H2B family member n 6 protein-coding H2B/d|H2BFD histone H2B type 1-N|H2B histone family, member D|histone 1, H2bn|histone H2B.d|histone cluster 1, H2bn 14 0.001916 3.2 1 1 +8342 HIST1H2BM histone cluster 1 H2B family member m 6 protein-coding H2B/e|H2BFE|dJ160A22.3 histone H2B type 1-M|H2B histone family, member E|histone 1, H2bm|histone H2B.e|histone cluster 1, H2bm 24 0.003285 0.6564 1 1 +8343 HIST1H2BF histone cluster 1 H2B family member f 6 protein-coding H2B/g|H2BFG histone H2B type 1-C/E/F/G/I|H2B histone family, member G|histone 1, H2bf|histone H2B.1 A|histone H2B.g|histone cluster 1, H2bf 28 0.003832 1.539 1 1 +8344 HIST1H2BE histone cluster 1 H2B family member e 6 protein-coding H2B.h|H2B/h|H2BFH|dJ221C16.8 histone H2B type 1-C/E/F/G/I|H2B histone family, member H|histone 1, H2be|histone H2B.1 A|histone H2B.h|histone cluster 1, H2be 14 0.001916 3.109 1 1 +8345 HIST1H2BH histone cluster 1 H2B family member h 6 protein-coding H2B/j|H2BFJ histone H2B type 1-H|H2B histone family, member J|histone 1, H2bh|histone H2B.j|histone cluster 1, H2bh 28 0.003832 2.75 1 1 +8346 HIST1H2BI histone cluster 1 H2B family member i 6 protein-coding H2B/k|H2BFK histone H2B type 1-C/E/F/G/I|H2B histone family, member K|histone 1, H2bi|histone H2B.1 A|histone H2B.k|histone cluster 1, H2bi 18 0.002464 0.4701 1 1 +8347 HIST1H2BC histone cluster 1 H2B family member c 6 protein-coding H2B.1|H2B/l|H2BFL|dJ221C16.3 histone H2B type 1-C/E/F/G/I|H2B histone family, member L|histone 1, H2bc|histone H2B.1 A|histone H2B.l|histone cluster 1, H2bc 33 0.004517 5.84 1 1 +8348 HIST1H2BO histone cluster 1 H2B family member o 6 protein-coding H2B.2|H2B/n|H2BFN|dJ193B12.2 histone H2B type 1-O|H2B histone family, member N|histone 1, H2bo|histone H2B.2|histone H2B.n|histone cluster 1, H2bo 13 0.001779 1.858 1 1 +8349 HIST2H2BE histone cluster 2 H2B family member e 1 protein-coding GL105|H2B|H2B.1|H2BFQ|H2BGL105|H2BQ histone H2B type 2-E|H2B histone family, member Q|histone 2, H2be|histone H2B-GL105|histone H2B.q|histone cluster 2, H2be 29 0.003969 9.068 1 1 +8350 HIST1H3A histone cluster 1 H3 family member a 6 protein-coding H3/A|H3FA histone H3.1|H3 histone family, member A|histone 1, H3a|histone H3/a|histone cluster 1, H3a 10 0.001369 0.844 1 1 +8351 HIST1H3D histone cluster 1 H3 family member d 6 protein-coding H3/b|H3FB histone H3.1|H3 histone family, member B|histone 1, H3d|histone H3/b|histone cluster 1, H3d 24 0.003285 4.017 1 1 +8352 HIST1H3C histone cluster 1 H3 family member c 6 protein-coding H3.1|H3/c|H3FC histone H3.1|H3 histone family, member C|histone 1, H3c|histone H3/c|histone cluster 1, H3c 34 0.004654 1.097 1 1 +8353 HIST1H3E histone cluster 1 H3 family member e 6 protein-coding H3.1|H3/d|H3FD histone H3.1|H3 histone family, member D|histone 1, H3e|histone H3/d|histone cluster 1, H3e 23 0.003148 4.876 1 1 +8354 HIST1H3I histone cluster 1 H3 family member i 6 protein-coding H3.f|H3/f|H3FF histone H3.1|H3 histone family, member F|histone 1, H3i|histone H3/f|histone cluster 1, H3i 30 0.004106 0.5733 1 1 +8355 HIST1H3G histone cluster 1 H3 family member g 6 protein-coding H3/h|H3FH histone H3.1|H3 histone family, member H|histone 1, H3g|histone H3/h|histone cluster 1, H3g 21 0.002874 1.775 1 1 +8356 HIST1H3J histone cluster 1 H3 family member j 6 protein-coding H3/j|H3FJ histone H3.1|H3 histone family, member J|histone 1, H3j|histone H3/j|histone cluster 1, H3j 13 0.001779 0.9404 1 1 +8357 HIST1H3H histone cluster 1 H3 family member h 6 protein-coding H3/k|H3F1K|H3FK histone H3.1|H3 histone family, member K|histone 1, H3h|histone H3/k|histone cluster 1, H3h 23 0.003148 3.576 1 1 +8358 HIST1H3B histone cluster 1 H3 family member b 6 protein-coding H3/l|H3FL histone H3.1|H3 histone family, member L|histone 1, H3b|histone H3/l|histone cluster 1, H3b 60 0.008212 1.133 1 1 +8359 HIST1H4A histone cluster 1 H4 family member a 6 protein-coding H4FA histone H4|H4 histone family, member A|histone 1, H4a|histone cluster 1, H4a 9 0.001232 0.4585 1 1 +8360 HIST1H4D histone cluster 1 H4 family member d 6 protein-coding H4/b|H4FB|dJ221C16.9 histone H4|H4 histone family, member B|histone 1, H4d|histone cluster 1, H4d 25 0.003422 1.053 1 1 +8361 HIST1H4F histone cluster 1 H4 family member f 6 protein-coding H4|H4/c|H4FC histone H4|H4 histone family, member C|histone 1, H4f|histone cluster 1, H4f 14 0.001916 0.2006 1 1 +8362 HIST1H4K histone cluster 1 H4 family member k 6 protein-coding H4/d|H4F2iii|H4FD|dJ160A22.1 histone H4|H4 histone family, member D|histone 1, H4k|histone cluster 1, H4k 12 0.001642 0.2886 1 1 +8363 HIST1H4J histone cluster 1 H4 family member j 6 protein-coding H4/e|H4F2iv|H4FE|dJ160A22.2 histone H4|H4 histone family, member E|histone 1, H4j|histone cluster 1, H4j 7 0.0009581 4.759 1 1 +8364 HIST1H4C histone cluster 1 H4 family member c 6 protein-coding H4/g|H4FG|dJ221C16.1 histone H4|H4 histone family, member G|histone 1, H4c|histone cluster 1, H4c 20 0.002737 1.317 1 1 +8365 HIST1H4H histone cluster 1 H4 family member h 6 protein-coding H4/h|H4FH histone H4|H4 histone family, member H|histone 1, H4h|histone cluster 1, H4h 14 0.001916 6.189 1 1 +8366 HIST1H4B histone cluster 1 H4 family member b 6 protein-coding H4/I|H4FI histone H4|H4 histone family, member I|histone 1, H4b|histone cluster 1, H4b 21 0.002874 0.6804 1 1 +8367 HIST1H4E histone cluster 1 H4 family member e 6 protein-coding H4/j|H4FJ histone H4|H4 histone family, member J|histone 1, H4e|histone cluster 1, H4e 29 0.003969 2.127 1 1 +8368 HIST1H4L histone cluster 1 H4 family member l 6 protein-coding H4.k|H4/k|H4FK histone H4|H4 histone family, member K|histone 1, H4l|histone cluster 1, H4l 13 0.001779 0.2201 1 1 +8369 HIST1H4G histone cluster 1 H4 family member g 6 protein-coding H4/l|H4FL histone H4-like protein type G|H4 histone family, member L|histone 1, H4g|histone cluster 1, H4g 17 0.002327 0.01472 1 1 +8370 HIST2H4A histone cluster 2 H4 family member a 1 protein-coding FO108|H4|H4/n|H4F2|H4FN|HIST2H4 histone H4|H4 histone family, member N|H4 histone, family 2|histone 2, H4a|histone IV, family 2|histone cluster 2, H4a 8.187 0 1 +8372 HYAL3 hyaluronoglucosaminidase 3 3 protein-coding HYAL-3|LUCA-3|LUCA3 hyaluronidase-3|lung carcinoma protein 3 26 0.003559 6.336 1 1 +8379 MAD1L1 MAD1 mitotic arrest deficient like 1 7 protein-coding MAD1|PIG9|TP53I9|TXBP181 mitotic spindle assembly checkpoint protein MAD1|MAD1-like protein 1|mitotic arrest deficient 1-like protein 1|mitotic checkpoint MAD1 protein homolog|mitotic-arrest deficient 1, yeast, homolog-like 1|tax-binding protein 181|tumor protein p53 inducible protein 9 51 0.006981 9.145 1 1 +8382 NME5 NME/NM23 family member 5 5 protein-coding NM23-H5|NM23H5|RSPH23 nucleoside diphosphate kinase homolog 5|IPIA-beta|NDK-H 5|NDP kinase homolog 5|inhibitor of p53-induced apoptosis-beta|non-metastatic cells 5 protein expressed in|non-metastatic cells 5, protein expressed in (nucleoside-diphosphate kinase)|radial spoke 23 homolog|testis-specific nm23 homolog 12 0.001642 4.705 1 1 +8383 OR1A1 olfactory receptor family 1 subfamily A member 1 17 protein-coding OR17-7 olfactory receptor 1A1|olfactory receptor 17-7|olfactory receptor OR17-11 45 0.006159 0.01576 1 1 +8385 0.04966 0 1 +8386 OR1D5 olfactory receptor family 1 subfamily D member 5 17 protein-coding C17orf2|OR17-2|OR17-30|OR17-31|OR1D4 olfactory receptor 1D5|olfactory receptor 17-31|olfactory receptor OR17-2 19 0.002601 1 0 +8387 OR1E1 olfactory receptor family 1 subfamily E member 1 17 protein-coding HGM071|OR13-66|OR17-2|OR17-32|OR1E5|OR1E6|OR1E8P|OR1E9P|OST547 olfactory receptor 1E1|OR5-85|olfactory receptor 13-66|olfactory receptor 17-2/17-32|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 23 0.003148 0.1412 1 1 +8388 OR1E2 olfactory receptor family 1 subfamily E member 2 17 protein-coding OR17-135|OR17-136|OR17-93|OR1E4|OR1E7|OST529 olfactory receptor 1E2|olfactory receptor 17-93/17-135/17-136|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 21 0.002874 0.04851 1 1 +8390 OR1G1 olfactory receptor family 1 subfamily G member 1 17 protein-coding OR17-130|OR17-209|OR1G2 olfactory receptor 1G1|olfactory receptor 17-209|olfactory receptor 1G2|olfactory receptor OR17-8|olfactory receptor, family 1, subfamily G, member 2 26 0.003559 0.1156 1 1 +8392 OR3A3 olfactory receptor family 3 subfamily A member 3 17 protein-coding OR17-137|OR17-16|OR17-201|OR3A6|OR3A7|OR3A8P olfactory receptor 3A3|olfactory receptor 17-201|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 17 0.002327 0.1008 1 1 +8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha 1 protein-coding - phosphatidylinositol 4-phosphate 5-kinase type-1 alpha|68 kDa type I phosphatidylinositol 4-phosphate 5-kinase alpha|PIP5K1-alpha|PIP5KIalpha|phosphatidylinositol 4-phosphate 5-kinase type I alpha|ptdIns(4)P-5-kinase 1 alpha 40 0.005475 10.3 1 1 +8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta 9 protein-coding MSS4|STM7 phosphatidylinositol 4-phosphate 5-kinase type-1 beta|PIP5K1-beta|PIP5KIbeta|phosphatidylinositol 4-phosphate 5-kinase type I beta|protein STM-7|ptdIns(4)P-5-kinase 1 beta|type I phosphatidylinositol 4-phosphate 5-kinase beta 39 0.005338 5.64 1 1 +8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta 17 protein-coding PI5P4KB|PIP5K2B|PIP5KIIB|PIP5KIIbeta|PIP5P4KB phosphatidylinositol 5-phosphate 4-kinase type-2 beta|1-phosphatidylinositol 5-phosphate 4-kinase 2-beta|1-phosphatidylinositol-4-phosphate kinase|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-4-phosphate 5-kinase, type II, beta|ptdIns(5)P-4-kinase isoform 2-beta 27 0.003696 10.93 1 1 +8398 PLA2G6 phospholipase A2 group VI 22 protein-coding CaI-PLA2|GVI|INAD1|IPLA2-VIA|NBIA2|NBIA2A|NBIA2B|PARK14|PLA2|PNPLA9|iPLA2|iPLA2beta 85/88 kDa calcium-independent phospholipase A2|85 kDa calcium-independent phospholipase A2|GVI PLA2|iPLA2-beta|intracellular membrane-associated calcium-independent phospholipase A2 beta|neurodegeneration with brain iron accumulation 2|patatin-like phospholipase domain-containing protein 9|phospholipase A2, group VI (cytosolic, calcium-independent) 47 0.006433 8.233 1 1 +8399 PLA2G10 phospholipase A2 group X 16 protein-coding GXPLA2|GXSPLA2|SPLA2|sPLA2-X group 10 secretory phospholipase A2|group X secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 10 1 0.0001369 2.862 1 1 +8402 SLC25A11 solute carrier family 25 member 11 17 protein-coding OGC|SLC20A4 mitochondrial 2-oxoglutarate/malate carrier protein|OGCP|solute carrier family 20 (oxoglutarate carrier), member 4|solute carrier family 25 (mitochondrial carrier; oxoglutarate carrier), member 11 21 0.002874 10.25 1 1 +8403 SOX14 SRY-box 14 3 protein-coding SOX28 transcription factor SOX-14|HMG box transcription factor SOX-14|SRY (sex determining region Y)-box 14 27 0.003696 0.5036 1 1 +8404 SPARCL1 SPARC like 1 4 protein-coding MAST 9|MAST9|PIG33|SC1 SPARC-like protein 1|SPARC-like 1 (hevin)|high endothelial venule protein|proliferation-inducing protein 33 51 0.006981 11.77 1 1 +8405 SPOP speckle type BTB/POZ protein 17 protein-coding BTBD32|TEF2 speckle-type POZ protein|HIB homolog 1|roadkill homolog 1 76 0.0104 10.21 1 1 +8406 SRPX sushi repeat containing protein, X-linked X protein-coding DRS|ETX1|HEL-S-83p|SRPX1 sushi repeat-containing protein SRPX|epididymis secretory sperm binding protein Li 83p|sushi-repeat-containing protein, X chromosome 57 0.007802 7.379 1 1 +8407 TAGLN2 transgelin 2 1 protein-coding HA1756 transgelin-2|SM22-alpha homolog|epididymis tissue protein Li 7e 21 0.002874 13.35 1 1 +8408 ULK1 unc-51 like autophagy activating kinase 1 12 protein-coding ATG1|ATG1A|UNC51|Unc51.1|hATG1 serine/threonine-protein kinase ULK1|ATG1 autophagy related 1 homolog|autophagy-related protein 1 homolog 78 0.01068 10.42 1 1 +8409 UXT ubiquitously expressed prefoldin like chaperone X protein-coding ART-27|STAP1 protein UXT|SKP2-associated alpha PFD 1|androgen receptor trapped clone 27 protein|ubiquitously expressed transcript protein 12 0.001642 9.98 1 1 +8411 EEA1 early endosome antigen 1 12 protein-coding MST105|MSTP105|ZFYVE2 early endosome antigen 1|early endosome antigen 1, 162kD|early endosome-associated protein|endosome-associated protein p162|zinc finger FYVE domain-containing protein 2 85 0.01163 9.429 1 1 +8412 BCAR3 breast cancer anti-estrogen resistance 3 1 protein-coding NSP2|SH2D3B breast cancer anti-estrogen resistance protein 3|SH2 domain-containing protein 3B|breast cancer antiestrogen resistance 3 protein|dJ1033H22.2 (breast cancer anti-estrogen resistance 3)|novel SH2-containing protein 2 52 0.007117 8.798 1 1 +8416 ANXA9 annexin A9 1 protein-coding ANX31 annexin A9|annexin 31|annexin XXXI|annexin-9|pemphaxin 24 0.003285 6.613 1 1 +8417 STX7 syntaxin 7 6 protein-coding - syntaxin-7 20 0.002737 10.2 1 1 +8418 CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene 6 pseudo CMAH|CSAH CMP-N-acetylneuraminic acid hydroxylase|CMP-Neu5Ac hydroxylase|CMP-NeuAc hydroxylase|CMP-sialic acid hydroxylase|cytidine monophosphate-N-acetylneuraminic acid hydroxylase (CMP-N-acetylneuraminate monooxygenase)(pseudogene) 14 0.001916 6.806 1 1 +8419 BFSP2 beaded filament structural protein 2 3 protein-coding CP47|CP49|CTRCT12|LIFL-L|PHAKOSIN phakinin|49 kDa cytoskeletal protein|beaded filament protein CP49|beaded filament structural protein 2, phakinin|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 40 0.005475 1.409 1 1 +8420 SNHG3 small nucleolar RNA host gene 3 1 ncRNA NCRNA00014|RNU17C|RNU17D|U17HG|U17HG-A|U17HG-AB U17 small nucleolar RNA host|small nucleolar RNA host gene (non-protein coding) 3|small nucleolar RNA host gene 3 (non-protein coding) 1 0.0001369 5.936 1 1 +8424 BBOX1 gamma-butyrobetaine hydroxylase 1 11 protein-coding BBH|BBOX|G-BBH|gamma-BBH gamma-butyrobetaine dioxygenase|butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 1|gamma-butyrobetaine hydroxylase|gamma-butyrobetaine,2-oxoglutarate dioxygenase 1 42 0.005749 4.831 1 1 +8425 LTBP4 latent transforming growth factor beta binding protein 4 19 protein-coding ARCL1C|LTBP-4|LTBP4L|LTBP4S latent-transforming growth factor beta-binding protein 4|latent transforming growth factor-beta binding protein 4L 84 0.0115 10.66 1 1 +8427 ZNF282 zinc finger protein 282 7 protein-coding HUB1 zinc finger protein 282|HTLV-I U5 repressive element-binding protein 1|HTLV-I U5RE-binding protein 1|HUB-1 48 0.00657 9.718 1 1 +8428 STK24 serine/threonine kinase 24 13 protein-coding HEL-S-95|MST3|MST3B|STE20|STK3 serine/threonine-protein kinase 24|STE20-like kinase 3|STE20-like kinase MST3|epididymis secretory protein Li 95|mammalian STE20-like protein kinase 3|serine/threonine kinase 24 (STE20 homolog, yeast)|sterile 20-like kinase 3 26 0.003559 11.51 1 1 +8431 NR0B2 nuclear receptor subfamily 0 group B member 2 1 protein-coding SHP|SHP1 nuclear receptor subfamily 0 group B member 2|nuclear receptor SHP|orphan nuclear receptor SHP|small heterodimer partner 20 0.002737 2.236 1 1 +8433 UTF1 undifferentiated embryonic cell transcription factor 1 10 protein-coding - undifferentiated embryonic cell transcription factor 1 3 0.0004106 0.6135 1 1 +8434 RECK reversion inducing cysteine rich protein with kazal motifs 9 protein-coding ST15 reversion-inducing cysteine-rich protein with Kazal motifs|membrane-anchored glycoprotein (metastasis and invasion)|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 60 0.008212 7.482 1 1 +8435 SOAT2 sterol O-acyltransferase 2 12 protein-coding ACACT2|ACAT2|ARGP2 sterol O-acyltransferase 2|ACAT-2|acyl Co-A: cholesterol acyltransferase 2|acyl coenzyme A:cholesterol acyltransferase 2|acyl-CoA:cholesterol acyltransferase 2|cholesterol acyltransferase 2 29 0.003969 1.477 1 1 +8436 SDPR serum deprivation response 2 protein-coding CAVIN2|PS-p68|SDR|cavin-2 serum deprivation-response protein|phosphatidylserine-binding protein 50 0.006844 8.024 1 1 +8437 RASAL1 RAS protein activator like 1 12 protein-coding RASAL rasGAP-activating-like protein 1|GAP1 like protein|ras GTPase-activating-like protein 66 0.009034 6.018 1 1 +8438 RAD54L RAD54-like (S. cerevisiae) 1 protein-coding HR54|RAD54A|hHR54|hRAD54 DNA repair and recombination protein RAD54-like|RAD54 homolog 44 0.006022 6.79 1 1 +8439 NSMAF neutral sphingomyelinase activation associated factor 8 protein-coding FAN|GRAMD5 protein FAN|factor associated with N-SMase activation|factor associated with neutral sphingomyelinase activation|neutral sphingomyelinase (N-SMase) activation associated factor 74 0.01013 9.446 1 1 +8440 NCK2 NCK adaptor protein 2 2 protein-coding GRB4|NCKbeta cytoplasmic protein NCK2|SH2/SH3 adaptor protein NCK-beta|growth factor receptor-bound protein 4|noncatalytic region of tyrosine kinase, beta 37 0.005064 10.11 1 1 +8443 GNPAT glyceronephosphate O-acyltransferase 1 protein-coding DAP-AT|DAPAT|DHAPAT|RCDP2 dihydroxyacetone phosphate acyltransferase|DHAP-AT|acyl-CoA:dihydroxyacetonephosphateacyltransferase|glycerone-phosphate O-acyltransferase 42 0.005749 10.23 1 1 +8444 DYRK3 dual specificity tyrosine phosphorylation regulated kinase 3 1 protein-coding DYRK5|RED|REDK|hYAK3-2 dual specificity tyrosine-phosphorylation-regulated kinase 3|dual specificity tyrosine-(Y)-phosphorylation regulated kinase 3|dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 5|protein kinase Dyrk3|regulatory erythroid kinase 42 0.005749 6.943 1 1 +8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 12 protein-coding - dual specificity tyrosine-phosphorylation-regulated kinase 2|dual specificity tyrosine-(Y)-phosphorylation regulated kinase 2 28 0.003832 9.305 1 1 +8446 DUSP11 dual specificity phosphatase 11 2 protein-coding PIR1 RNA/RNP complex-1-interacting phosphatase|RNA/RNP complex 1-interacting|RNA/RNP complex-interacting phosphatase|dual specificity phosphatase 11 (RNA/RNP complex 1-interacting)|dual specificity protein phosphatase 11|phosphatase that interacts with RNA/RNP complex 1|serine/threonine specific protein phosphatase 25 0.003422 8.966 1 1 +8447 DOC2B double C2 domain beta 17 protein-coding DOC2BL double C2-like domain-containing protein beta|doc2-beta|double C2-like domains, beta 7 0.0009581 3.509 1 1 +8448 DOC2A double C2 domain alpha 16 protein-coding Doc2 double C2-like domain-containing protein alpha|doc2-alpha|double C2-like domains, alpha 37 0.005064 4.133 1 1 +8449 DHX16 DEAH-box helicase 16 6 protein-coding DBP2|DDX16|PRO2014|PRP8|PRPF2|Prp2 putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX16|ATP-dependent RNA helicase #3|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 16|DEAD/H box 16|DEAH (Asp-Glu-Ala-His) box polypeptide 16|DEAH-box protein 16|RNA helicase 57 0.007802 9.866 1 1 +8450 CUL4B cullin 4B X protein-coding CUL-4B|MRXHF2|MRXS15|MRXSC|SFM2 cullin-4B 68 0.009307 10.66 1 1 +8451 CUL4A cullin 4A 13 protein-coding - cullin-4A|CUL-4A 37 0.005064 10.75 1 1 +8452 CUL3 cullin 3 2 protein-coding CUL-3|PHA2E cullin-3 86 0.01177 10.64 1 1 +8453 CUL2 cullin 2 10 protein-coding - cullin-2|CUL-2|testis secretory sperm-binding protein Li 238E 59 0.008076 9.462 1 1 +8454 CUL1 cullin 1 7 protein-coding - cullin-1|CUL-1 93 0.01273 10.58 1 1 +8455 ATRN attractin 20 protein-coding DPPT-L|MGCA attractin|attractin-2|mahogany homolog|mahogany protein 73 0.009992 10.88 1 1 +8456 FOXN1 forkhead box N1 17 protein-coding FKHL20|RONU|WHN forkhead box protein N1|Rowett nude|winged-helix nude|winged-helix transcription factor nude 49 0.006707 2.631 1 1 +8458 TTF2 transcription termination factor 2 1 protein-coding HuF2|ZGRF6 transcription termination factor 2|F2|RNA polymerase II termination factor|human factor 2|lodestar homolog|lodestar protein|transcription release factor 2|transcription termination factor, RNA polymerase II|zinc finger, GRF-type containing 6 79 0.01081 8.217 1 1 +8459 TPST2 tyrosylprotein sulfotransferase 2 22 protein-coding TANGO13B protein-tyrosine sulfotransferase 2|TPST-2|transport and golgi organization 13 homolog B|tyrosylprotein phosphotransferase 2 30 0.004106 9.286 1 1 +8460 TPST1 tyrosylprotein sulfotransferase 1 7 protein-coding TANGO13A protein-tyrosine sulfotransferase 1|TPST-1|transport and golgi organization 13 homolog A 31 0.004243 8.383 1 1 +8462 KLF11 Kruppel like factor 11 2 protein-coding FKLF|FKLF1|MODY7|TIEG2|Tieg3 Krueppel-like factor 11|TGFB-inducible early growth response protein 2|TIEG-2|transforming growth factor-beta-inducible early growth response protein 2 31 0.004243 8.936 1 1 +8463 TEAD2 TEA domain transcription factor 2 19 protein-coding ETF|TEAD-2|TEF-4|TEF4 transcriptional enhancer factor TEF-4|TEA domain family member 2 46 0.006296 9.076 1 1 +8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component 6 protein-coding SPT3|SPT3L transcription initiation protein SPT3 homolog|SPT3-like protein|suppressor of Ty 3 homolog 28 0.003832 6.824 1 1 +8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 4 protein-coding ISWI|SNF2H|WCRF135|hISWI|hSNF2H SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin A5|sucrose nonfermenting protein 2 homolog|sucrose nonfermenting-like 5 54 0.007391 10.87 1 1 +8468 FKBP6 FK506 binding protein 6 7 protein-coding FKBP36 inactive peptidyl-prolyl cis-trans isomerase FKBP6|36 kDa FKBP|FK506 binding protein 6, 36kDa|PPIase FKBP6|immunophilin FKBP36|inactive PPIase FKBP6|peptidyl-prolyl cis-trans isomerase FKBP6|rotamase 35 0.004791 1.006 1 1 +8470 SORBS2 sorbin and SH3 domain containing 2 4 protein-coding ARGBP2|PRO0618 sorbin and SH3 domain-containing protein 2|Arg binding protein 2|Arg/Abl-interacting protein 2|arg-binding protein 2 105 0.01437 8.885 1 1 +8471 IRS4 insulin receptor substrate 4 X protein-coding IRS-4|PY160 insulin receptor substrate 4|160 kDa phosphotyrosine protein|phosphoprotein of 160 kDa|pp160 135 0.01848 1.2 1 1 +8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase X protein-coding HINCUT-1|HRNT1|O-GLCNAC UDP-N-acetylglucosamine--peptide N-acetylglucosaminyltransferase 110 kDa subunit|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:polypeptide-N-acetylglucosaminyl transferase|uridinediphospho-N-acetylglucosamine:polypeptide beta-N-acetylglucosaminyl transferase 67 0.009171 11.32 1 1 +8475 7.664 0 1 +8476 CDC42BPA CDC42 binding protein kinase alpha 1 protein-coding MRCK|MRCKA|PK428 serine/threonine-protein kinase MRCK alpha|CDC42 binding protein kinase alpha (DMPK-like)|CDC42 binidng protein kinase beta|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 114 0.0156 10.35 1 1 +8477 GPR65 G protein-coupled receptor 65 14 protein-coding TDAG8|hTDAG8 psychosine receptor|T-cell death-associated gene 8 protein 31 0.004243 5.577 1 1 +8479 HIRIP3 HIRA interacting protein 3 16 protein-coding - HIRA-interacting protein 3 37 0.005064 9.013 1 1 +8480 RAE1 ribonucleic acid export 1 20 protein-coding MIG14|MRNP41|Mnrp41|dJ481F12.3|dJ800J21.1 mRNA export factor|RAE1 RNA export 1 homolog|homolog of yeast Rae1 (Bharathi) mRNA-associated protein of 41 kDa (Kraemer)|mRNA export protein|mRNA-associated protein MRNP 41|mRNA-binding protein, 41-kD|migration-inducing gene 14|rae1 protein homolog 29 0.003969 9.629 1 1 +8481 OFD1 OFD1, centriole and centriolar satellite protein X protein-coding 71-7A|CXorf5|JBTS10|RP23|SGBS2 oral-facial-digital syndrome 1 protein|protein 71-7A 82 0.01122 9.35 1 1 +8482 SEMA7A semaphorin 7A (John Milton Hagen blood group) 15 protein-coding CD108|CDw108|H-SEMA-K1|H-Sema-L|JMH|SEMAK1|SEMAL semaphorin-7A|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 7A, GPI membrane anchor (John Milton Hagen blood group)|semaphorin-K1|semaphorin-L 40 0.005475 7.777 1 1 +8483 CILP cartilage intermediate layer protein 15 protein-coding CILP-1|HsT18872 cartilage intermediate layer protein 1|cartilage intermediate layer protein 1 C1|cartilage intermediate layer protein 1 C2|cartilage intermediate layer protein, nucleotide pyrophosphohydrolase 94 0.01287 6.215 1 1 +8484 GALR3 galanin receptor 3 22 protein-coding - galanin receptor type 3|GAL3-R|GALR-3|galanin receptor, family member 3 12 0.001642 0.6224 1 1 +8487 GEMIN2 gem nuclear organelle associated protein 2 14 protein-coding SIP1|SIP1-delta gem-associated protein 2|SMN interacting protein 1-delta|component of gems 2|gemin-2|survival of motor neuron protein interacting protein 1 18 0.002464 7.17 1 1 +8490 RGS5 regulator of G-protein signaling 5 1 protein-coding MST092|MST106|MST129|MSTP032|MSTP092|MSTP106|MSTP129 regulator of G-protein signaling 5 27 0.003696 11.05 1 1 +8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 2 protein-coding GLK|MAPKKKK3|MEKKK 3|MEKKK3|RAB8IPL1 mitogen-activated protein kinase kinase kinase kinase 3|MAPK/ERK kinase kinase kinase 3|MEK kinase kinase 3|germinal center kinase-like kinase|germinal center kinase-related protein kinase 63 0.008623 9.435 1 1 +8492 PRSS12 protease, serine 12 4 protein-coding BSSP-3|BSSP3|MRT1 neurotrypsin|brain-specific serine protease 3|leydin|protease, serine, 12 (neurotrypsin, motopsin) 51 0.006981 5.331 1 1 +8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D 17 protein-coding PP2C-DELTA|WIP1 protein phosphatase 1D|protein phosphatase 1D magnesium-dependent, delta isoform|protein phosphatase 2C delta isoform|protein phosphatase Wip1|wild-type p53-induced phosphatase 1 46 0.006296 8.229 1 1 +8495 PPFIBP2 PPFIA binding protein 2 11 protein-coding Cclp1 liprin-beta-2|PTPRF interacting protein, binding protein 2 (liprin beta 2)|liprin beta 2|protein tyrosine phosphatase receptor type f polypeptide-interacting protein-binding protein 2 57 0.007802 9.366 1 1 +8496 PPFIBP1 PPFIA binding protein 1 12 protein-coding L2|SGT2|hSGT2|hSgt2p liprin-beta-1|PTPRF interacting protein, binding protein 1 (liprin beta 1)|PTPRF-interacting protein-binding protein 1|liprin related protein|protein-tyrosine phosphatase receptor-type f polypeptide-interacting protein-binding protein 1 63 0.008623 9.999 1 1 +8497 PPFIA4 PTPRF interacting protein alpha 4 1 protein-coding - liprin-alpha-4|protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 70 0.009581 5.557 1 1 +8498 RANBP3 RAN binding protein 3 19 protein-coding - ran-binding protein 3 38 0.005201 10.43 1 1 +8499 PPFIA2 PTPRF interacting protein alpha 2 12 protein-coding - liprin-alpha-2|protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 172 0.02354 3.005 1 1 +8500 PPFIA1 PTPRF interacting protein alpha 1 11 protein-coding LIP.1|LIP1|LIPRIN liprin-alpha-1|LAR-interacting protein 1|LIP-1|Liprin-alpha1|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-1|protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 77 0.01054 10.34 1 1 +8501 SLC43A1 solute carrier family 43 member 1 11 protein-coding LAT3|PB39|POV1|R00504 large neutral amino acids transporter small subunit 3|L-type amino acid transporter 3|prostate cancer overexpressed gene 1 protein|solute carrier family 43 (amino acid system L transporter), member 1 29 0.003969 7.754 1 1 +8502 PKP4 plakophilin 4 2 protein-coding p0071 plakophilin-4|catenin 4 91 0.01246 10.84 1 1 +8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 1 protein-coding p55|p55-GAMMA|p55PIK phosphatidylinositol 3-kinase regulatory subunit gamma|PI3-kinase regulatory subunit gamma|PI3-kinase subunit p55-gamma|PI3K regulatory subunit gamma|phosphatidylinositol 3-kinase 55 kDa regulatory subunit gamma|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 3 (p55, gamma)|phosphoinositide-3-kinase, regulatory subunit 3 (gamma)|ptdIns-3-kinase regulatory subunit p55-gamma 45 0.006159 9.727 1 1 +8504 PEX3 peroxisomal biogenesis factor 3 6 protein-coding PBD10A|TRG18 peroxisomal biogenesis factor 3|peroxin-3|peroxisomal assembly protein PEX3|transformation-related protein 18 20 0.002737 8.269 1 1 +8505 PARG poly(ADP-ribose) glycohydrolase 10 protein-coding PARG99 poly(ADP-ribose) glycohydrolase|mitochondrial poly(ADP-ribose) glycohydrolase|poly(ADP-ribose) glycohydrolase 60 kDa isoform 65 0.008897 8.696 1 1 +8506 CNTNAP1 contactin associated protein 1 17 protein-coding CASPR|CNTNAP|NRXN4|P190 contactin-associated protein 1|caspr1|neurexin IV|neurexin-4 96 0.01314 7.712 1 1 +8507 ENC1 ectodermal-neural cortex 1 5 protein-coding CCL28|ENC-1|KLHL35|KLHL37|NRPB|PIG10|TP53I10 ectoderm-neural cortex protein 1|ectodermal-neural cortex 1 (with BTB domain)|ectodermal-neural cortex 1 (with BTB-like domain)|kelch-like 35|kelch-like family member 37|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 40 0.005475 10.05 1 1 +8508 NIPSNAP1 nipsnap homolog 1 (C. elegans) 22 protein-coding - protein NipSnap homolog 1|4-nitrophenylphosphatase domain and non-neuronal SNAP25-like 1 14 0.001916 10.58 1 1 +8509 NDST2 N-deacetylase and N-sulfotransferase 2 10 protein-coding HSST2|NST2 bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 2|N-HSST 2|N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2|N-deacetylase/N-sulfotransferase 2|N-heparan sulfate sulfotransferase 2|NDST-2|glucosaminyl N-deacetylase/N-sulfotransferase 2 44 0.006022 8.951 1 1 +8510 MMP23B matrix metallopeptidase 23B 1 protein-coding MIFR|MIFR-1|MMP22|MMP23A matrix metalloproteinase-23|MMP-21|MMP-22|MMP-23|femalysin|matrix metalloproteinase 22|matrix metalloproteinase 23B|matrix metalloproteinase in the female reproductive tract|matrix metalloproteinase-21 1 0.0001369 5.616 1 1 +8511 MMP23A matrix metallopeptidase 23A (pseudogene) 1 pseudo MIFR|MIFR-1|MMP21 femalysin|matrix metalloproteinase 21|matrix metalloproteinase 23 pseudogene|matrix metalloproteinase 23A|matrix metalloproteinase in the female reproductive tract 0.7184 0 1 +8512 MBL1P mannose binding lectin 1, pseudogene 10 pseudo COLEC3P|MBL1P1 mannose-binding lectin (protein A) 1, pseudogene 1 26 0.003559 2.423 1 1 +8513 LIPF lipase F, gastric type 10 protein-coding GL|HGL|HLAL gastric triacylglycerol lipase|gastric lipase|lipase, gastric 27 0.003696 0.5238 1 1 +8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 1 protein-coding AKR6A5|HKvbeta2|HKvbeta2.1|HKvbeta2.2|KCNA2B|KV-BETA-2 voltage-gated potassium channel subunit beta-2|K(+) channel subunit beta-2|potassium channel, voltage gated subfamily A regulatory beta subunit 2|potassium voltage-gated channel, shaker-related subfamily, beta member 2 31 0.004243 8.331 1 1 +8515 ITGA10 integrin subunit alpha 10 1 protein-coding PRO827 integrin alpha-10 117 0.01601 5.254 1 1 +8516 ITGA8 integrin subunit alpha 8 10 protein-coding - integrin alpha-8|integrin, alpha 8 158 0.02163 4.374 1 1 +8517 IKBKG inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase gamma X protein-coding AMCBX1|FIP-3|FIP3|Fip3p|IKK-gamma|IKKAP1|IKKG|IMD33|IP|IP1|IP2|IPD2|NEMO|ZC2HC9 NF-kappa-B essential modulator|I-kappa-B kinase subunit gamma|NF-kappa-B essential modifier|ikB kinase subunit gamma|ikB kinase-associated protein 1|incontinentia pigmenti|inhibitor of nuclear factor kappa-B kinase subunit gamma 8 0.001095 9.021 1 1 +8518 IKBKAP inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein 9 protein-coding DYS|ELP1|FD|IKAP|IKI3|TOT1 elongator complex protein 1|IKK complex-associated protein|elongator acetyltransferase complex subunit 1|ikappaB kinase complex-associated protein 80 0.01095 9.929 1 1 +8519 IFITM1 interferon induced transmembrane protein 1 11 protein-coding 9-27|CD225|DSPA2a|IFI17|LEU13 interferon-induced transmembrane protein 1|dispanin subfamily A member 2a|interferon-induced protein 17|interferon-inducible protein 9-27|leu-13 antigen 6 0.0008212 11.11 1 1 +8520 HAT1 histone acetyltransferase 1 2 protein-coding KAT1 histone acetyltransferase type B catalytic subunit 36 0.004927 9.829 1 1 +8521 GCM1 glial cells missing homolog 1 6 protein-coding GCMA|hGCMa chorion-specific transcription factor GCMa|GCM motif protein 1 37 0.005064 1.344 1 1 +8522 GAS7 growth arrest specific 7 17 protein-coding MLL/GAS7 growth arrest-specific protein 7|MLL/GAS7 fusion protein 56 0.007665 9.064 1 1 +8525 DGKZ diacylglycerol kinase zeta 11 protein-coding DAGK5|DAGK6|DGK-ZETA|hDGKzeta diacylglycerol kinase zeta|DAG kinase zeta|diacylglycerol kinase, zeta 104kDa|diglyceride kinase zeta 64 0.00876 9.745 1 1 +8526 DGKE diacylglycerol kinase epsilon 17 protein-coding AHUS7|DAGK5|DAGK6|DGK|NPHS7 diacylglycerol kinase epsilon|DAG kinase epsilon|DGK-epsilon|diacylglycerol kinase, epsilon 64kDa|diglyceride kinase epsilon 49 0.006707 7.427 1 1 +8527 DGKD diacylglycerol kinase delta 2 protein-coding DGKdelta|dgkd-2 diacylglycerol kinase delta|DAG kinase delta|DGK-delta|diacylglycerol kinase, delta 130kDa|diglyceride kinase delta 87 0.01191 9.526 1 1 +8528 DDO D-aspartate oxidase 6 protein-coding DASOX|DDO-1|DDO-2 D-aspartate oxidase|D-aspartate oxidase, DDO|aspartic oxidase 28 0.003832 5.195 1 1 +8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 19 protein-coding CPF2 phylloquinone omega-hydroxylase CYP4F2|20-HETE synthase|20-hydroxyeicosatetraenoic acid synthase|CYPIVF2|arachidonic acid omega-hydroxylase|cytochrome P450 4F2|cytochrome P450, family 4, subfamily F, polypeptide 2|cytochrome P450, subfamily IVF, polypeptide 2|cytochrome P450-LTB-omega|leukotriene-B(4) 20-monooxygenase 1|leukotriene-B(4) omega-hydroxylase 1 65 0.008897 1.881 1 1 +8530 CST7 cystatin F 20 protein-coding CMAP cystatin-F|cystatin F (leukocystatin)|cystatin-7|cystatin-like metastasis-associated protein|leukocystatin 11 0.001506 6.038 1 1 +8531 YBX3 Y-box binding protein 3 12 protein-coding CSDA|CSDA1|DBPA|ZONAB Y-box-binding protein 3|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 26 0.003559 11.36 1 1 +8532 CPZ carboxypeptidase Z 4 protein-coding - carboxypeptidase Z|metallocarboxypeptidase Z 96 0.01314 6.919 1 1 +8533 COPS3 COP9 signalosome subunit 3 17 protein-coding CSN3|SGN3 COP9 signalosome complex subunit 3|COP9 complex subunit 3|COP9 constitutive photomorphogenic homolog subunit 3|JAB1-containing signalosome subunit 3|signalosome subunit 3 30 0.004106 10.01 1 1 +8534 CHST1 carbohydrate sulfotransferase 1 11 protein-coding C6ST|GST-1|KS6ST|KSGal6ST|KSST carbohydrate sulfotransferase 1|Keratan sulfotransferase|carbohydrate (chondroitin 6/keratan) sulfotransferase 1|carbohydrate (keratan sulfate Gal-6) sulfotransferase 1|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 1 55 0.007528 7.212 1 1 +8535 CBX4 chromobox 4 17 protein-coding NBP16|PC2 E3 SUMO-protein ligase CBX4|NS5ATP1-binding protein 16|Pc class 2 homolog|chromobox homolog 4 (Pc class homolog, Drosophila)|chromobox protein homolog 4|chromobox-like protein 4|polycomb 2 homolog 55 0.007528 9.546 1 1 +8536 CAMK1 calcium/calmodulin dependent protein kinase I 3 protein-coding CAMKI calcium/calmodulin-dependent protein kinase type 1|caM kinase I alpha|caM-KI|caMKI-alpha 24 0.003285 8.428 1 1 +8537 BCAS1 breast carcinoma amplified sequence 1 20 protein-coding AIBC1|NABC1 breast carcinoma-amplified sequence 1|amplified and overexpressed in breast cancer|novel amplified in breast cancer 1 62 0.008486 6.245 1 1 +8538 BARX2 BARX homeobox 2 11 protein-coding - homeobox protein BarH-like 2|BarH-like homeobox 2 22 0.003011 5.408 1 1 +8539 API5 apoptosis inhibitor 5 11 protein-coding AAC-11|AAC11 apoptosis inhibitor 5|FIF|antiapoptosis clone 11 protein|cell migration-inducing gene 8 protein|fibroblast growth factor 2-interacting factor 2|migration-inducing protein MIG8 40 0.005475 11.04 1 1 +8540 AGPS alkylglycerone phosphate synthase 2 protein-coding ADAP-S|ADAS|ADHAPS|ADPS|ALDHPSY|RCDP3 alkyldihydroxyacetonephosphate synthase, peroxisomal|aging-associated gene 5 protein|aging-associated protein 5|alkyl-DHAP synthase 46 0.006296 9.937 1 1 +8541 PPFIA3 PTPRF interacting protein alpha 3 19 protein-coding LPNA3 liprin-alpha-3|liprin|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-3|protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3|protein tyrosine phosphatase, receptor type, f polypeptide, alpha 3 91 0.01246 7.891 1 1 +8542 APOL1 apolipoprotein L1 22 protein-coding APO-L|APOL|APOL-I|FSGS4 apolipoprotein L1|apolipoprotein L 1 21 0.002874 10.87 1 1 +8543 LMO4 LIM domain only 4 1 protein-coding - LIM domain transcription factor LMO4|LIM domain only protein 4|LIM-only 4 protein|LMO-4|breast tumor autoantigen 20 0.002737 10.19 1 1 +8544 PIR pirin X protein-coding - pirin|pirin (iron-binding nuclear protein)|probable quercetin 2,3-dioxygenase PIR|probable quercetinase 19 0.002601 7.944 1 1 +8545 CGGBP1 CGG triplet repeat binding protein 1 3 protein-coding CGGBP|p20-CGGBP CGG triplet repeat-binding protein 1|20 kDa CGG-binding protein|CGG-binding protein 1|p20-CGG binding protein|p20-CGGBP DNA-binding protein 8 0.001095 10.83 1 1 +8546 AP3B1 adaptor related protein complex 3 beta 1 subunit 5 protein-coding ADTB3|ADTB3A|HPS|HPS2|PE AP-3 complex subunit beta-1|AP-3 complex beta-3A subunit|adaptor protein complex AP-3 subunit beta-1|adaptor-related protein complex 3 subunit beta-1|beta-3A-adaptin|clathrin assembly protein complex 3 beta-1 large chain 72 0.009855 10.18 1 1 +8547 FCN3 ficolin 3 1 protein-coding FCNH|HAKA1 ficolin-3|H-ficolin|collagen/fibrinogen domain-containing lectin 3 p35|collagen/fibrinogen domain-containing protein 3|ficolin (collagen/fibrinogen domain containing) 3 (Hakata antigen) 23 0.003148 4.618 1 1 +8548 BLZF1 basic leucine zipper nuclear factor 1 1 protein-coding GOLGIN-45|JEM-1|JEM-1s|JEM1 golgin-45|JEM-1short protein|cytoplasmic protein|p45 basic leucine-zipper nuclear factor 28 0.003832 8.973 1 1 +8549 LGR5 leucine rich repeat containing G protein-coupled receptor 5 12 protein-coding FEX|GPR49|GPR67|GRP49|HG38 leucine-rich repeat-containing G-protein coupled receptor 5|G-protein coupled receptor 49|G-protein coupled receptor 67|G-protein coupled receptor HG38|orphan G protein-coupled receptor HG38 94 0.01287 4.584 1 1 +8550 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 12 protein-coding MAPKAP-K5|MK-5|MK5|PRAK MAP kinase-activated protein kinase 5|MAPK-activated protein kinase 5|MAPKAP kinase 5|MAPKAPK-5|p38-regulated/activated protein kinase 30 0.004106 9.091 1 1 +8551 INE2 inactivation escape 2 (non-protein coding) X ncRNA NCRNA00011 - 3.142 0 1 +8552 INE1 inactivation escape 1 (non-protein coding) X ncRNA NCRNA00010 - 3.958 0 1 +8553 BHLHE40 basic helix-loop-helix family member e40 3 protein-coding BHLHB2|Clast5|DEC1|HLHB2|SHARP-2|SHARP2|STRA13|Stra14 class E basic helix-loop-helix protein 40|basic helix-loop-helix domain containing, class B, 2|class B basic helix-loop-helix protein 2|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 27 0.003696 11.95 1 1 +8554 PIAS1 protein inhibitor of activated STAT 1 15 protein-coding DDXBP1|GBP|GU/RH-II|ZMIZ3 E3 SUMO-protein ligase PIAS1|AR interacting protein|DEAD/H (Asp-Glu-Ala-Asp/His) box binding protein 1|DEAD/H box-binding protein 1|RNA helicase II-binding protein|gu-binding protein|protein inhibitor of activated STAT protein 1|zinc finger, MIZ-type containing 3 40 0.005475 8.493 1 1 +8555 CDC14B cell division cycle 14B 9 protein-coding CDC14B3|Cdc14B1|Cdc14B2|hCDC14B dual specificity protein phosphatase CDC14B|CDC14 cell division cycle 14 homolog B 39 0.005338 8.699 1 1 +8556 CDC14A cell division cycle 14A 1 protein-coding DFNB105|cdc14|hCDC14 dual specificity protein phosphatase CDC14A|CDC10 (cell division cycle 10, S. cerevisiae, homolog)|CDC14 cell division cycle 14 homolog A 62 0.008486 7.072 1 1 +8557 TCAP titin-cap 17 protein-coding CMD1N|CMH25|LGMD2G|T-cap|TELE|telethonin telethonin|19 kDa sarcomeric protein|limb girdle muscular dystrophy 2G (autosomal recessive)|teneurin C-terminal associated peptide|titin cap protein 8 0.001095 3.493 1 1 +8558 CDK10 cyclin dependent kinase 10 16 protein-coding PISSLRE cyclin-dependent kinase 10|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 24 0.003285 9.713 1 1 +8559 PRPF18 pre-mRNA processing factor 18 10 protein-coding PRP18|hPrp18 pre-mRNA-splicing factor 18|PRP18 homolog|PRP18 pre-mRNA processing factor 18 homolog|PRP18 pre-mRNA processing factor 18 homolog(PRPF18) 25 0.003422 8.57 1 1 +8560 DEGS1 delta 4-desaturase, sphingolipid 1 1 protein-coding DEGS|DEGS-1|DES1|Des-1|FADS7|MIG15|MLD sphingolipid delta(4)-desaturase DES1|cell migration-inducing gene 15 protein|degenerative spermatocyte homolog 1, lipid desaturase|degenerative spermatocyte homolog, lipid desaturase|dihydroceramide desaturase 1|membrane fatty acid (lipid) desaturase|membrane lipid desaturase|migration-inducing gene 15 protein|sphingolipid delta 4 desaturase|sphingolipid delta(4)-desaturase 1 21 0.002874 10.77 1 1 +8562 DENR density regulated re-initiation and release factor 12 protein-coding DRP|DRP1|SMAP-3 density-regulated protein|smooth muscle cell associated protein-3 6 0.0008212 10.51 1 1 +8563 THOC5 THO complex 5 22 protein-coding C22orf19|Fmip|PK1.3|fSAP79 THO complex subunit 5 homolog|Fms-interacting protein|NF2/meningioma region protein pK1.3|PP39.2|functional spliceosome-associated protein 79|hTREX90|placental protein 39.2 53 0.007254 9.104 1 1 +8564 KMO kynurenine 3-monooxygenase 1 protein-coding dJ317G22.1 kynurenine 3-monooxygenase|kynurenine 3-hydroxylase|kynurenine 3-monooxygenase (kynurenine 3-hydroxylase) 42 0.005749 5.201 1 1 +8565 YARS tyrosyl-tRNA synthetase 1 protein-coding CMTDIC|TYRRS|YRS|YTS tyrosine--tRNA ligase, cytoplasmic|tyrosine tRNA ligase 1, cytoplasmic|tyrosyl--tRNA ligase|tyrosyl-tRNA synthetase, cytoplasmic 39 0.005338 11.01 1 1 +8566 PDXK pyridoxal (pyridoxine, vitamin B6) kinase 21 protein-coding C21orf124|C21orf97|HEL-S-1a|PKH|PNK|PRED79 pyridoxal kinase|epididymis secretory sperm binding protein Li 1a|pyridoxamine kinase|pyridoxine kinase|vitamin B6 kinase 23 0.003148 11.52 1 1 +8567 MADD MAP kinase activating death domain 11 protein-coding DENN|IG20|RAB3GEP MAP kinase-activating death domain protein|Rab3 GDP/GTP exchange factor|differentially expressed in normal and neoplastic cells|insulinoma glucagonoma clone 20 119 0.01629 10.29 1 1 +8568 RRP1 ribosomal RNA processing 1 21 protein-coding D21S2056E|NNP-1|NOP52|RRP1A ribosomal RNA processing protein 1 homolog A|Nnp1 homolog, nucleolar protein|RRP1-like protein|novel nuclear protein 1|nucleolar protein Nop52|protein NNP-1|ribosomal RNA processing 1 homolog 24 0.003285 9.493 1 1 +8569 MKNK1 MAP kinase interacting serine/threonine kinase 1 1 protein-coding MNK1 MAP kinase-interacting serine/threonine-protein kinase 1|MAP kinase signal-integrating kinase 1|MAPK signal-integrating kinase 1 27 0.003696 9.01 1 1 +8570 KHSRP KH-type splicing regulatory protein 19 protein-coding FBP2|FUBP2|KSRP far upstream element-binding protein 2|FUSE-binding protein 2|p75 39 0.005338 11.32 1 1 +8572 PDLIM4 PDZ and LIM domain 4 5 protein-coding RIL PDZ and LIM domain protein 4|LIM domain protein|LIM protein RIL|enigma homolog|reversion-induced LIM protein 24 0.003285 8.036 1 1 +8573 CASK calcium/calmodulin dependent serine protein kinase X protein-coding CAGH39|CAMGUK|CMG|FGS4|LIN2|MICPCH|MRXSNA|TNRC8 peripheral plasma membrane protein CASK|calcium/calmodulin-dependent serin protein kinase|calcium/calmodulin-dependent serine protein kinase (MAGUK family)|calcium/calmodulin-dependent serine protein kinase membrane-associated guanylate kinase|hCASK|protein lin-2 homolog|trinucleotide repeat containing 8 61 0.008349 10.16 1 1 +8574 AKR7A2 aldo-keto reductase family 7 member A2 1 protein-coding AFAR|AFAR1|AFB1-AR1|AKR7 aflatoxin B1 aldehyde reductase member 2|AFB1 aldehyde reductase 1|AFB1-AR 1|HEL-S-166mP|SSA reductase|aflatoxin aldehyde reductase|aflatoxin beta1 aldehyde reductase|aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase)|aldoketoreductase 7|epididymis secretory sperm binding protein Li 166mP|succinic semialdehyde reductase 26 0.003559 9.954 1 1 +8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 2 protein-coding DYT16|HSD14|PACT|RAX interferon-inducible double-stranded RNA-dependent protein kinase activator A|PKR-associated protein X|PKR-associating protein X|protein activator of the interferon-induced protein kinase|protein kinase, interferon-inducible double-stranded RNA-dependent activator 23 0.003148 9.698 1 1 +8576 STK16 serine/threonine kinase 16 2 protein-coding KRCT|MPSK|PKL12|PSK|TSF1|hPSK serine/threonine-protein kinase 16|TGF-beta-stimulated factor 1|myristoylated and palmitoylated serine/threonine-protein kinase|protein kinase PKL12|protein kinase expressed in day 12 fetal liver|tyrosine-protein kinase STK16 21 0.002874 9.308 1 1 +8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 9 protein-coding C9orf2|CT120.1|H7365|TR-1 tomoregulin-1|cancer/testis antigen family 120, member 1|transmembrane protein with EGF-like and one follistatin-like domain 22 0.003011 6.277 1 1 +8578 SCARF1 scavenger receptor class F member 1 17 protein-coding SREC|SREC-I|SREC1 scavenger receptor class F member 1|acetyl LDL receptor|scavenger receptor expressed by endothelial cells 1 50 0.006844 7.526 1 1 +8581 LY6D lymphocyte antigen 6 complex, locus D 8 protein-coding E48|Ly-6D lymphocyte antigen 6D|e48 antigen 9 0.001232 3.877 1 1 +8586 OR7E87P olfactory receptor family 7 subfamily E member 87 pseudogene 11 pseudo OR11-261|OR11-9|OR7E3P|OR7F3P olfactory receptor, family 7, subfamily E, member 3 pseudogene 0 0 1 0 +8590 OR6A2 olfactory receptor family 6 subfamily A member 2 11 protein-coding I7|OR11-55|OR6A1|OR6A2P olfactory receptor 6A2|hI7 olfactory receptor|hP2 olfactory receptor|olfactory receptor 11-55|olfactory receptor 6A1|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 44 0.006022 0.08747 1 1 +8600 TNFSF11 tumor necrosis factor superfamily member 11 13 protein-coding CD254|ODF|OPGL|OPTB2|RANKL|TNLG6B|TRANCE|hRANKL2|sOdf tumor necrosis factor ligand superfamily member 11|TNF-related activation-induced cytokine|osteoclast differentiation factor|osteoprotegerin ligand|receptor activator of nuclear factor kappa B ligand|tumor necrosis factor (ligand) superfamily, member 11|tumor necrosis factor ligand 6B 18 0.002464 3.222 1 1 +8601 RGS20 regulator of G-protein signaling 20 8 protein-coding RGSZ1|ZGAP1|g(z)GAP|gz-GAP regulator of G-protein signaling 20|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 37 0.005064 3.618 1 1 +8602 NOP14 NOP14 nucleolar protein 4 protein-coding C4orf9|NOL14|RES4-25|RES425|UTP2 nucleolar protein 14|NOP14 nucleolar protein homolog|probable nucleolar complex protein 14 65 0.008897 9.938 1 1 +8603 FAM193A family with sequence similarity 193 member A 4 protein-coding C4orf8|RES4-22 protein FAM193A 110 0.01506 9.53 1 1 +8604 SLC25A12 solute carrier family 25 member 12 2 protein-coding AGC1|ARALAR|EIEE39 calcium-binding mitochondrial carrier protein Aralar1|araceli hiperlarga|calcium binding mitochondrial carrier superfamily member Aralar1|mitochondrial aspartate glutamate carrier 1|solute carrier family 25 (aspartate/glutamate carrier), member 12|solute carrier family 25 (mitochondrial carrier, Aralar), member 12 55 0.007528 8.906 1 1 +8605 PLA2G4C phospholipase A2 group IVC 19 protein-coding CPLA2-gamma cytosolic phospholipase A2 gamma|phospholipase A2, group IVC (cytosolic, calcium-independent) 58 0.007939 7.297 1 1 +8607 RUVBL1 RuvB like AAA ATPase 1 3 protein-coding ECP-54|ECP54|INO80H|NMP 238|NMP238|PONTIN|Pontin52|RVB1|TIH1|TIP49|TIP49A ruvB-like 1|49 kDa TATA box-binding protein-interacting protein|49 kDa TBP-interacting protein|54 kDa erythrocyte cytosolic protein|INO80 complex subunit H|RuvB (E coli homolog)-like 1|RuvB-like AAA ATPase|TAP54-alpha|TATA binding protein interacting protein 49 kDa|TIP60-associated protein 54-alpha|nuclear matrix protein 238|pontin 52 30 0.004106 10.12 1 1 +8608 RDH16 retinol dehydrogenase 16 (all-trans) 12 protein-coding RODH-4|SDR9C8 retinol dehydrogenase 16|microsomal NAD+-dependent retinol dehydrogenase 4|retinol dehydrogenase 16 (all-trans and 13-cis)|short chain dehydrogenase/reductase family 9C, member 8|sterol/retinol dehydrogenase 27 0.003696 4.29 1 1 +8609 KLF7 Kruppel like factor 7 2 protein-coding UKLF Krueppel-like factor 7|Kruppel-like factor 7 (ubiquitous)|ubiquitous Kruppel-like factor|ubiquitous Kruppel-like transcription factor 17 0.002327 6.458 1 1 +8611 PLPP1 phospholipid phosphatase 1 5 protein-coding LLP1a|LPP1|PAP-2a|PAP2|PPAP2A phospholipid phosphatase 1|lipid phosphate phosphohydrolase 1a|phosphatidate phosphohydrolase type 2a|phosphatidic acid phosphatase 2a|phosphatidic acid phosphatase type 2A|phosphatidic acid phosphohydrolase type 2a|type-2 phosphatidic acid phosphatase alpha 19 0.002601 9.926 1 1 +8612 PLPP2 phospholipid phosphatase 2 19 protein-coding LPP2|PAP-2c|PAP2-g|PPAP2C phospholipid phosphatase 2|PAP2-gamma|PAP2c|lipid phosphate phosphohydrolase 2|phosphatidate phosphohydrolase type 2c|phosphatidic acid phosphatase 2c|phosphatidic acid phosphatase type 2C|phosphatidic acid phosphohydrolase type 2c|type-2 phosphatidic acid phosphatase-gamma 16 0.00219 9.027 1 1 +8613 PLPP3 phospholipid phosphatase 3 1 protein-coding Dri42|LPP3|PAP2B|PPAP2B|VCIP phospholipid phosphatase 3|PAP2 beta|lipid phosphate phosphohydrolase 3|phosphatidate phosphohydrolase type 2b|phosphatidic acid phosphatase type 2B|type-2 phosphatidic acid phosphatase-beta|vascular endothelial growth factor and type I collagen inducible 24 0.003285 10.56 1 1 +8614 STC2 stanniocalcin 2 5 protein-coding STC-2|STCRP stanniocalcin-2|STC-related protein|stanniocalcin-related protein 42 0.005749 8.534 1 1 +8615 USO1 USO1 vesicle transport factor 4 protein-coding P115|TAP|VDP general vesicular transport factor p115|USO1 vesicle docking protein homolog|transcytosis associated protein|vesicle docking protein p115 33 0.004517 10.82 1 1 +8618 CADPS calcium dependent secretion activator 3 protein-coding CADPS1|CAPS|CAPS1|UNC-31 calcium-dependent secretion activator 1|CAPS-1|Ca++-dependent secretion activator|Ca2+ dependent secretion activator|Ca2+-dependent activator protein for secretion|Ca2+-regulated cytoskeletal protein|calcium-dependent activator protein for secretion 1 143 0.01957 4.085 1 1 +8620 NPFF neuropeptide FF-amide peptide precursor 12 protein-coding FMRFAL pro-FMRFamide-related neuropeptide FF 7 0.0009581 3.207 1 1 +8621 CDK13 cyclin dependent kinase 13 7 protein-coding CDC2L|CDC2L5|CHED|hCDK13 cyclin-dependent kinase 13|CDC2-related protein kinase 5|cell division cycle 2-like protein kinase 5|cell division protein kinase 13|cholinesterase-related cell division controller 90 0.01232 9.956 1 1 +8622 PDE8B phosphodiesterase 8B 5 protein-coding ADSD|PPNAD3 high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8B|3',5' cyclic nucleotide phosphodiesterase 8B|cell proliferation-inducing gene 22 protein|hsPDE8B 58 0.007939 5.933 1 1 +8623 ASMTL acetylserotonin O-methyltransferase-like X|Y protein-coding ASMTLX|ASMTLY|ASTML N-acetylserotonin O-methyltransferase-like protein|acetylserotonin N-methyltransferase-like 9.379 0 1 +8624 PSMG1 proteasome assembly chaperone 1 21 protein-coding C21LRP|DSCR2|LRPC21|PAC-1|PAC1 proteasome assembly chaperone 1|Down syndrome critical region gene 2|Down syndrome critical region protein 2|chromosome 21 leucine-rich protein|leucine rich protein C21-LRP|proteasome (prosome, macropain) assembly chaperone 1|proteasome assembling chaperone 1 20 0.002737 8.979 1 1 +8625 RFXANK regulatory factor X associated ankyrin containing protein 19 protein-coding ANKRA1|BLS|F14150_1|RFX-B 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 15 0.002053 9.825 1 1 +8626 TP63 tumor protein p63 3 protein-coding AIS|B(p51A)|B(p51B)|EEC3|KET|LMS|NBP|OFC8|RHS|SHFM4|TP53CP|TP53L|TP73L|p40|p51|p53CP|p63|p73H|p73L tumor protein 63|amplified in squamous cell carcinoma|chronic ulcerative stomatitis protein|keratinocyte transcription factor KET|transformation-related protein 63|tumor protein p53-competing protein 101 0.01382 6.191 1 1 +8629 JRK Jrk helix-turn-helix protein 8 protein-coding JH8|jerky jerky protein homolog|Jrk homolog|jerky homolog 51 0.006981 8.628 1 1 +8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 12 protein-coding HSE|RODH|SDR9C6 17-beta-hydroxysteroid dehydrogenase type 6|17-beta-HSD 6|3(alpha->beta)-hydroxysteroid epimerase|3(alpha->beta)-hydroxysteroid epimerasel|3-alpha->beta-HSE|3-hydroxysteroid epimerase|NAD+ -dependent 3 alpha-hydroxysteroid dehydrogenase 3-hydroxysteroid epimerase|hydroxysteroid (17-beta) dehydrogenase 6 homolog|oxidative 3-alpha-hydroxysteroid-dehydrogenase|oxidoreductase|retinol dehydrogenase|short chain dehydrogenase/reductase family 9C member 6 19 0.002601 6.337 1 1 +8631 SKAP1 src kinase associated phosphoprotein 1 17 protein-coding HEL-S-81p|SCAP1|SKAP55 src kinase-associated phosphoprotein 1|SKAP-55|epididymis secretory sperm binding protein Li 81p|pp55|src family-associated phosphoprotein 1|src kinase-associated phosphoprotein of 55 kDa 37 0.005064 6.028 1 1 +8632 DNAH17 dynein axonemal heavy chain 17 17 protein-coding DNAHL1|DNEL2 dynein heavy chain 17, axonemal|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 light chain 2, axonemal|dynein, axonemal, heavy chain like 1|dynein, axonemal, heavy like 1|dynein, axonemal, heavy polypeptide 17 260 0.03559 5.411 1 1 +8633 UNC5C unc-5 netrin receptor C 4 protein-coding UNC5H3 netrin receptor UNC5C|protein unc-5 homolog 3|protein unc-5 homolog C|unc-5 homolog 3|unc-5 homolog C|unc5 (C.elegans homolog) c 109 0.01492 4.058 1 1 +8634 RTCA RNA 3'-terminal phosphate cyclase 1 protein-coding RPC|RTC1|RTCD1 RNA 3'-terminal phosphate cyclase|RNA terminal phosphate cyclase domain 1|RNA terminal phosphate cyclase domain-containing protein 1|RTC domain-containing protein 1 18 0.002464 9.281 1 1 +8635 RNASET2 ribonuclease T2 6 protein-coding RNASE6PL|bA514O12.3 ribonuclease T2|ribonuclease 6 17 0.002327 10.29 1 1 +8636 SSNA1 SS nuclear autoantigen 1 9 protein-coding N14|NA-14|NA14 Sjoegren syndrome nuclear autoantigen 1|Sjogren syndrome nuclear autoantigen 1|Sjogren's syndrome nuclear autoantigen 1|nuclear autoantigen of 14 kDa 9 0.001232 9.937 1 1 +8637 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 5 protein-coding 4E-BP3|4EBP3 eukaryotic translation initiation factor 4E-binding protein 3|eIF4E-binding protein 3|eukaryotic initiation factor 4E-binding protein 3 2 0.0002737 8.132 1 1 +8638 OASL 2'-5'-oligoadenylate synthetase like 12 protein-coding OASLd|TRIP-14|TRIP14|p59 OASL|p59-OASL|p59OASL 2'-5'-oligoadenylate synthase-like protein|2'-5'-OAS-RP|2'-5'-OAS-related 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 41 0.005612 7.297 1 1 +8639 AOC3 amine oxidase, copper containing 3 17 protein-coding HPAO|SSAO|VAP-1|VAP1 membrane primary amine oxidase|amine oxidase, copper containing 3 (vascular adhesion protein 1)|copper amine oxidase|placenta copper monamine oxidase|semicarbazide-sensitive amine oxidase 60 0.008212 8.402 1 1 +8641 PCDHGB4 protocadherin gamma subfamily B, 4 5 protein-coding CDH20|FIB2|PCDH-GAMMA-B4 protocadherin gamma-B4|cadherin 20|fibroblast cadherin FIB2|fibroblast cadherin-2 99 0.01355 4.796 1 1 +8642 DCHS1 dachsous cadherin-related 1 11 protein-coding CDH19|CDH25|CDHR6|FIB1|MVP2|PCDH16|VMLDS1 protocadherin-16|cadherin-19|cadherin-25|cadherin-related family member 6|fibroblast cadherin 1|fibroblast cadherin FIB1|protein dachsous homolog 1 245 0.03353 9.217 1 1 +8643 PTCH2 patched 2 1 protein-coding PTC2 protein patched homolog 2|patched homolog 2 78 0.01068 4.468 1 1 +8644 AKR1C3 aldo-keto reductase family 1 member C3 10 protein-coding DD3|DDX|HA1753|HAKRB|HAKRe|HSD17B5|PGFS|hluPGFS aldo-keto reductase family 1 member C3|3-alpha hydroxysteroid dehydrogenase, type II|3-alpha-HSD type II, brain|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 27 0.003696 8.977 1 1 +8645 KCNK5 potassium two pore domain channel subfamily K member 5 6 protein-coding K2p5.1|KCNK5b|TASK-2|TASK2 potassium channel subfamily K member 5|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 1 (TASK-2)|potassium channel, subfamily, member 5 (KCNK5)|potassium channel, two pore domain subfamily K, member 5 39 0.005338 7.45 1 1 +8646 CHRD chordin 3 protein-coding - chordin 82 0.01122 6.827 1 1 +8647 ABCB11 ATP binding cassette subfamily B member 11 2 protein-coding ABC16|BRIC2|BSEP|PFIC-2|PFIC2|PGY4|SPGP bile salt export pump|ABC member 16, MDR/TAP subfamily|ATP-binding cassette sub-family B member 11|ATP-binding cassette, sub-family B (MDR/TAP), member 11|progressive familial intrahepatic cholestasis 2|sister p-glycoprotein 102 0.01396 1.207 1 1 +8648 NCOA1 nuclear receptor coactivator 1 2 protein-coding F-SRC-1|KAT13A|RIP160|SRC1|bHLHe42|bHLHe74 nuclear receptor coactivator 1|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 102 0.01396 10.3 1 1 +8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 4 protein-coding MAP2K1IP1|MAPBP|MAPKSP1|MP1|PRO0633|Ragulator3 ragulator complex protein LAMTOR3|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 6 0.0008212 9.791 1 1 +8650 NUMB NUMB, endocytic adaptor protein 14 protein-coding C14orf41|S171|c14_5527 protein numb homolog|h-Numb|numb homolog 35 0.004791 10.4 1 1 +8651 SOCS1 suppressor of cytokine signaling 1 16 protein-coding CIS1|CISH1|JAB|SOCS-1|SSI-1|SSI1|TIP3 suppressor of cytokine signaling 1|JAK binding protein|STAT induced SH3 protein 1|STAT-induced STAT inhibitor 1|TIP-3|Tec-interacting protein 3|cytokine-inducible SH2 protein 1 9 0.001232 6.589 1 1 +8653 DDX3Y DEAD-box helicase 3, Y-linked Y protein-coding DBY ATP-dependent RNA helicase DDX3Y|DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked|DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked|DEAD box protein 3, Y-chromosomal|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide, Y chromosome 16 0.00219 4.918 1 1 +8654 PDE5A phosphodiesterase 5A 4 protein-coding CGB-PDE|CN5A|PDE5 cGMP-specific 3',5'-cyclic phosphodiesterase|cGMP-binding cGMP-specific 3',5'-cyclic nucleotide phosphodiesterase|cGMP-specific phosphodiesterase PDE5A2|cGMP-specific phosphodiesterase type 5A|phosphodiesterase 5A, cGMP-specific|phosphodiesterase isozyme 5 64 0.00876 8.291 1 1 +8655 DYNLL1 dynein light chain LC8-type 1 12 protein-coding DLC1|DLC8|DNCL1|DNCLC1|LC8|LC8a|PIN|hdlc1 dynein light chain 1, cytoplasmic|8 kDa dynein light chain|cytoplasmic dynein light polypeptide|dynein, cytoplasmic, light polypeptide 1|protein inhibitor of neuronal nitric oxide synthase 6 0.0008212 11.94 1 1 +8658 TNKS tankyrase 8 protein-coding ARTD5|PARP-5a|PARP5A|PARPL|TIN1|TINF1|TNKS1|pART5 tankyrase-1|ADP-ribosyltransferase diphtheria toxin-like 5|TANK1|TNKS-1|TRF1-interacting ankyrin-related ADP-ribose polymerase|TRF1-interacting ankyrin-related ADP-ribose polymerase 1|poly [ADP-ribose] polymerase 5A|tankyrase I|tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 81 0.01109 10.06 1 1 +8659 ALDH4A1 aldehyde dehydrogenase 4 family member A1 1 protein-coding ALDH4|P5CD|P5CDh delta-1-pyrroline-5-carboxylate dehydrogenase, mitochondrial|L-glutamate gamma-semialdehyde dehydrogenase|P5C dehydrogenase|aldehyde dehydrogenase family 4 member A1|mitochondrial delta-1-pyrroline 5-carboxylate dehydrogenase 37 0.005064 9.687 1 1 +8660 IRS2 insulin receptor substrate 2 13 protein-coding IRS-2 insulin receptor substrate 2 47 0.006433 9.569 1 1 +8661 EIF3A eukaryotic translation initiation factor 3 subunit A 10 protein-coding EIF3|EIF3S10|P167|TIF32|eIF3-p170|eIF3-theta|p180|p185 eukaryotic translation initiation factor 3 subunit A|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 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 98 0.01341 12.34 1 1 +8662 EIF3B eukaryotic translation initiation factor 3 subunit B 7 protein-coding EIF3-ETA|EIF3-P110|EIF3-P116|EIF3S9|PRT1 eukaryotic translation initiation factor 3 subunit B|eIF-3-eta|eIF3 p110|eIF3 p116|eukaryotic translation initiation factor 3 subunit 9|eukaryotic translation initiation factor 3, subunit 9 (eta, 116kD)|eukaryotic translation initiation factor 3, subunit 9 eta, 116kDa|hPrt1|prt1 homolog 60 0.008212 12.19 1 1 +8663 EIF3C eukaryotic translation initiation factor 3 subunit C 16 protein-coding EIF3CL|EIF3S8|eIF3-p110 eukaryotic translation initiation factor 3 subunit C|cell migration-inducing protein 17|eIF3 p110|eukaryotic translation initiation factor 3 subunit 8|eukaryotic translation initiation factor 3, subunit 8 (110kD)|eukaryotic translation initiation factor 3, subunit 8, 110kDa 8 0.001095 7.796 1 1 +8664 EIF3D eukaryotic translation initiation factor 3 subunit D 22 protein-coding EIF3S7|eIF3-p66|eIF3-zeta eukaryotic translation initiation factor 3 subunit D|eIF3 p66|eukaryotic translation initiation factor 3, subunit 7 zeta, 66/67kDa|translation initiation factor eIF3 p66 subunit 33 0.004517 12.07 1 1 +8665 EIF3F eukaryotic translation initiation factor 3 subunit F 11 protein-coding EIF3S5|eIF3-p47 eukaryotic translation initiation factor 3 subunit F|deubiquitinating enzyme eIF3f|eIF-3-epsilon|eIF3-epsilon|eukaryotic translation initiation factor 3, subunit 5 (epsilon, 47kD)|eukaryotic translation initiation factor 3, subunit 5 epsilon, 47kDa 19 0.002601 11.28 1 1 +8666 EIF3G eukaryotic translation initiation factor 3 subunit G 19 protein-coding EIF3-P42|EIF3S4|eIF3-delta|eIF3-p44 eukaryotic translation initiation factor 3 subunit G|eukaryotic translation initiation factor 3 RNA-binding subunit|eukaryotic translation initiation factor 3 subunit p42|eukaryotic translation initiation factor 3, subunit 4 delta, 44kDa 24 0.003285 11.42 1 1 +8667 EIF3H eukaryotic translation initiation factor 3 subunit H 8 protein-coding EIF3S3|eIF3-gamma|eIF3-p40 eukaryotic translation initiation factor 3 subunit H|eIF-3-gamma|eIF3 p40 subunit|eukaryotic translation initiation factor 3 subunit 3|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 16 0.00219 12.14 1 1 +8668 EIF3I eukaryotic translation initiation factor 3 subunit I 1 protein-coding EIF3S2|PRO2242|TRIP-1|TRIP1|eIF3-beta|eIF3-p36 eukaryotic translation initiation factor 3 subunit I|TGF-beta receptor-interacting protein 1|TGFbeta receptor-interacting protein 1|eukaryotic translation initiation factor 3 subunit 2|eukaryotic translation initiation factor 3, subunit 2 (beta, 36kD)|eukaryotic translation initiation factor 3, subunit 2 beta, 36kDa|predicted protein of HQ2242 32 0.00438 11.92 1 1 +8669 EIF3J eukaryotic translation initiation factor 3 subunit J 15 protein-coding EIF3S1|eIF3-alpha|eIF3-p35 eukaryotic translation initiation factor 3 subunit J|eukaryotic translation initiation factor 3, subunit 1 (alpha, 35kD) 13 0.001779 10.45 1 1 +8671 SLC4A4 solute carrier family 4 member 4 4 protein-coding HNBC1|KNBC|NBC1|NBC2|NBCe1-A|SLC4A5|hhNMC|kNBC1|pNBC electrogenic sodium bicarbonate cotransporter 1|Na(+)/HCO3(-) cotransporter|sodium bicarbonate cotransporter 1 (sodium bicarbonate cotransporter, kidney; sodium bicarbonate cotransporter, pancreas)|solute carrier family 4 (sodium bicarbonate cotransporter), member 4|solute carrier family 4, sodium bicarbonate cotransporter, member 4, brain type|solute carrier family 4, sodium bicarbonate cotransporter, member 5 111 0.01519 7.268 1 1 +8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 1 protein-coding eIF-4G 3|eIF4G 3|eIF4GII eukaryotic translation initiation factor 4 gamma 3|eIF-4-gamma 3|eIF-4-gamma II 122 0.0167 10.67 1 1 +8673 VAMP8 vesicle associated membrane protein 8 2 protein-coding EDB|VAMP-8 vesicle-associated membrane protein 8|vesicle-associated membrane protein 8 (endobrevin) 5 0.0006844 10.72 1 1 +8674 VAMP4 vesicle associated membrane protein 4 1 protein-coding VAMP-4|VAMP24 vesicle-associated membrane protein 4 10 0.001369 8.694 1 1 +8675 STX16 syntaxin 16 20 protein-coding SYN16 syntaxin-16 29 0.003969 10.7 1 1 +8676 STX11 syntaxin 11 6 protein-coding FHL4|HLH4|HPLH4 syntaxin-11 37 0.005064 6.589 1 1 +8677 STX10 syntaxin 10 19 protein-coding SYN10|hsyn10 syntaxin-10 17 0.002327 8.494 1 1 +8678 BECN1 beclin 1 17 protein-coding ATG6|VPS30|beclin1 beclin-1|ATG6 autophagy related 6 homolog|beclin 1 (coiled-coil, moesin-like BCL2-interacting protein)|beclin 1, autophagy related|coiled-coil myosin-like BCL2-interacting protein|testis secretory sperm-binding protein Li 215e 25 0.003422 10.56 1 1 +8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough 15 protein-coding HsT16992|cPLA2-beta JMJD7-PLA2G4B protein|jumonji domain containing 7-phospholipase A2, group IVB (cytosolic) read-through 56 0.007665 8.846 1 1 +8682 PEA15 phosphoprotein enriched in astrocytes 15 1 protein-coding HMAT1|HUMMAT1H|MAT1|MAT1H|PEA-15|PED astrocytic phosphoprotein PEA-15|15 kDa phosphoprotein enriched in astrocytes|homolog of mouse MAT-1 oncogene|mammary transforming gene 1, mouse, homolog of|phosphoprotein enriched in diabetes 8 0.001095 12.4 1 1 +8683 SRSF9 serine and arginine rich splicing factor 9 12 protein-coding SFRS9|SRp30c serine/arginine-rich splicing factor 9|SR splicing factor 9|pre-mRNA-splicing factor SRp30C|splicing factor, arginine/serine-rich 9 15 0.002053 11.22 1 1 +8685 MARCO macrophage receptor with collagenous structure 2 protein-coding SCARA2 macrophage receptor MARCO|scavenger receptor class A, member 2 74 0.01013 4.894 1 1 +8686 KRT41P keratin 41 pseudogene 17 pseudo HHaA|KRTHAP1|phihHaA keratin 38 pseudogene|keratin, hair, acidic pseudogene 1 1 0.0001369 1 0 +8687 KRT38 keratin 38 17 protein-coding HA8|KRTHA8|hHa8 keratin, type I cuticular Ha8|K38|hair keratin, type I Ha8|keratin 38, type I|keratin, hair, acidic, 8 49 0.006707 0.3444 1 1 +8688 KRT37 keratin 37 17 protein-coding HA7|K37|KRTHA7 keratin, type I cuticular Ha7|hair keratin, type I Ha7|keratin 37, type I|keratin, hair, acidic, 7 39 0.005338 0.569 1 1 +8689 KRT36 keratin 36 17 protein-coding HA6|KRTHA6|hHa6 keratin, type I cuticular Ha6|K36|hair keratin, type I Ha6|keratin 36, type I|keratin, hair, acidic, 6 44 0.006022 1 1 1 +8690 JRKL JRK-like 11 protein-coding HHMJG jerky protein homolog-like|human homolog of mouse jerky gene protein 24 0.003285 8.139 1 1 +8692 HYAL2 hyaluronoglucosaminidase 2 3 protein-coding LUCA2 hyaluronidase-2|PH-20 homolog|PH20 homolog|hyal-2|lung carcinoma protein 2|lysosomal hyaluronidase 25 0.003422 10.41 1 1 +8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 12 protein-coding GALNAC-T4|GALNACT4 polypeptide N-acetylgalactosaminyltransferase 4|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 4|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 4 (GalNAc-T4)|polypeptide GalNAc transferase 4|pp-GaNTase 4|protein-UDP acetylgalactosaminyltransferase 4 17 0.002327 8.546 1 1 +8694 DGAT1 diacylglycerol O-acyltransferase 1 8 protein-coding ARAT|ARGP1|DGAT|DIAR7 diacylglycerol O-acyltransferase 1|ACAT related gene product 1|acyl coenzyme A:cholesterol acyltransferase related gene 1|acyl-CoA retinol O-fatty-acyltransferase|acyl-CoA:diacylglycerol acyltransferase|diglyceride acyltransferase 31 0.004243 9.952 1 1 +8697 CDC23 cell division cycle 23 5 protein-coding ANAPC8|APC8|CUT23 cell division cycle protein 23 homolog|anaphase-promoting complex subunit 8|cell division cycle 23 homolog|cyclosome subunit 8 27 0.003696 9.528 1 1 +8698 S1PR4 sphingosine-1-phosphate receptor 4 19 protein-coding EDG6|LPC1|S1P4|SLP4 sphingosine 1-phosphate receptor 4|S1P receptor 4|S1P receptor Edg-6|endothelial differentiation G-protein coupled receptor 6|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 6|sphingosine 1-phosphate receptor Edg-6 41 0.005612 5.203 1 1 +8701 DNAH11 dynein axonemal heavy chain 11 7 protein-coding CILD7|DNAHBL|DNAHC11|DNHBL|DPL11 dynein heavy chain 11, axonemal|axonemal beta dynein heavy chain 11|axonemal dynein heavy chain 11|ciliary dynein heavy chain 11|dynein, axonemal, heavy polypeptide 11|dynein, ciliary, heavy chain 11 382 0.05229 3.686 1 1 +8702 B4GALT4 beta-1,4-galactosyltransferase 4 3 protein-coding B4Gal-T4|beta4Gal-T4 beta-1,4-galactosyltransferase 4|UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 4|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase 4|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 4|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 4|beta-1,4-GalTase 4|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 4 22 0.003011 9.394 1 1 +8703 B4GALT3 beta-1,4-galactosyltransferase 3 1 protein-coding beta4Gal-T3 beta-1,4-galactosyltransferase 3|UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 3|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 3|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 3|b4Gal-T3|beta-1,4-GalTase 3|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 3 29 0.003969 10.06 1 1 +8704 B4GALT2 beta-1,4-galactosyltransferase 2 1 protein-coding B4Gal-T2|B4Gal-T3|beta4Gal-T2 beta-1,4-galactosyltransferase 2|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-4-GalT2|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 2 22 0.003011 10.16 1 1 +8705 B3GALT4 beta-1,3-galactosyltransferase 4 6 protein-coding BETA3GALT4|GALT2|GALT4 beta-1,3-galactosyltransferase 4|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase 4|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4|UDP-galactose:beta-N-acetyl-galactosamine-beta-1,3-galactosyltransferase|b3Gal-T4|beta-1,3-GalTase 4|beta-3-galactosyltransferase 4|gal-T2|ganglioside galactosyltransferase 29 0.003969 7.644 1 1 +8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) 3 protein-coding B3GALT3|GLCT3|GLOB|Gb4Cer|P|P1|beta3Gal-T3|galT3 UDP-GalNAc:beta-1,3-N-acetylgalactosaminyltransferase 1|P antigen synthase|P blood group globoside|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 3 (Globoside blood group)|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 18 0.002464 8.329 1 1 +8707 B3GALT2 beta-1,3-galactosyltransferase 2 1 protein-coding BETA3GALT2|GLCT2|beta3Gal-T2 beta-1,3-galactosyltransferase 2|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase 2|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2|UDP-galactose:2-acetamido-2-deoxy-D-glucose 3beta-galactosyltransferase 2|beta-1,3-GalTase 2|beta-3-galt2 32 0.00438 3.687 1 1 +8708 B3GALT1 beta-1,3-galactosyltransferase 1 2 protein-coding beta3Gal-T1 beta-1,3-galactosyltransferase 1|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1|UDP-galactose:beta-N-acetyl-glucosamine-beta-1,3-galactosyltransferase 1|beta-1,3-GalTase 1|beta3GalT1 29 0.003969 1.615 1 1 +8710 SERPINB7 serpin family B member 7 18 protein-coding MEGSIN|PPKN|TP55 serpin B7|mesangium predominant gene, megsin|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 7|serpin peptidase inhibitor, clade B (ovalbumin), member 7 43 0.005886 2.676 1 1 +8711 TNK1 tyrosine kinase non receptor 1 17 protein-coding - non-receptor tyrosine-protein kinase TNK1|CD38 negative kinase 1 24 0.003285 7.471 1 1 +8712 PAGE1 PAGE family member 1 X protein-coding AL5|CT16.3|GAGE-9|GAGEB1|PAGE-1 P antigen family member 1|G antigen 9|G antigen family B member 1|G antigen, family B, 1 (prostate associated)|P antigen family, member 1 (prostate associated)|prostate associated gene 1|prostate-associated gene 1 protein 21 0.002874 0.2945 1 1 +8714 ABCC3 ATP binding cassette subfamily C member 3 17 protein-coding ABC31|EST90757|MLP2|MOAT-D|MRP3|cMOAT2 canalicular multispecific organic anion transporter 2|ATP-binding cassette sub-family C member 3|ATP-binding cassette, sub-family C (CFTR/MRP), member 3|canicular multispecific organic anion transporter|multi-specific organic anion transporter D|multidrug resistance associated protein|multidrug resistance-associated protein 3 91 0.01246 9.006 1 1 +8715 NOL4 nucleolar protein 4 18 protein-coding CT125|HRIHFB2255|NOLP nucleolar protein 4|cancer/testis antigen 125|nucleolar localized protein 100 0.01369 2.55 1 1 +8717 TRADD TNFRSF1A associated via death domain 16 protein-coding Hs.89862 tumor necrosis factor receptor type 1-associated DEATH domain protein|TNFR1-associated death domain protein|tumor necrosis factor receptor type 1 associated death domain protein|tumor necrosis factor receptor-1-associated protein 17 0.002327 8.74 1 1 +8718 TNFRSF25 TNF receptor superfamily member 25 1 protein-coding APO-3|DDR3|DR3|LARD|TNFRSF12|TR3|TRAMP|WSL-1|WSL-LR tumor necrosis factor receptor superfamily member 25|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 12 (translocating chain-association membrane protein) 22 0.003011 6.454 1 1 +8720 MBTPS1 membrane bound transcription factor peptidase, site 1 16 protein-coding PCSK8|S1P|SKI-1 membrane-bound transcription factor site-1 protease|endopeptidase S1P|proprotein convertase subtilisin/kexin type 8|site-1 protease|subtilisin/kexin isozyme-1 71 0.009718 11.37 1 1 +8721 EDF1 endothelial differentiation related factor 1 9 protein-coding CFAP280|EDF-1|MBF1 endothelial differentiation-related factor 1|multiprotein bridging factor 1 11 0.001506 12.04 1 1 +8722 CTSF cathepsin F 11 protein-coding CATSF|CLN13 cathepsin F 36 0.004927 10.03 1 1 +8723 SNX4 sorting nexin 4 3 protein-coding ATG24B sorting nexin-4 23 0.003148 9.689 1 1 +8724 SNX3 sorting nexin 3 6 protein-coding Grd19|MCOPS8|SDP3 sorting nexin-3|sorting nexin 3A 9 0.001232 11.49 1 1 +8725 URI1 URI1, prefoldin like chaperone 19 protein-coding C19orf2|NNX3|PPP1R19|RMP|URI unconventional prefoldin RPB5 interactor 1|RNA polymerase II subunit 5-mediating protein|RPB5-mediating protein|protein phosphatase 1, regulatory subunit 19 52 0.007117 10.5 1 1 +8726 EED embryonic ectoderm development 11 protein-coding HEED|WAIT1 polycomb protein EED|WD protein associating with integrin cytoplasmic tails 1 38 0.005201 8.501 1 1 +8727 CTNNAL1 catenin alpha like 1 9 protein-coding ACRP|CLLP|alpha-CATU alpha-catulin|alpha-catenin-related protein|alpha2-catulin|catenin (cadherin-associated protein), alpha-like 1|catenin alpha-like protein 1 48 0.00657 9.309 1 1 +8728 ADAM19 ADAM metallopeptidase domain 19 5 protein-coding FKSG34|MADDAM|MLTNB disintegrin and metalloproteinase domain-containing protein 19|ADAM 19|a disintegrin and metalloproteinase domain 19 (meltrin beta)|meltrin-beta|metalloprotease and disintegrin dendritic antigen marker|metalloprotease-disintegrin meltrin beta 102 0.01396 8.337 1 1 +8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 10 protein-coding ARF1GEF Golgi-specific brefeldin A-resistance guanine nucleotide exchange factor 1|BFA-resistant GEF 1 112 0.01533 11.05 1 1 +8731 RNMT RNA guanine-7 methyltransferase 18 protein-coding CMT1|CMT1c|MET|Met|RG7MT1|cm1p|hCMT1|hMet mRNA cap guanine-N7 methyltransferase|RNA (guanine-7-) methyltransferase|hcm1p|mRNA (guanine-7-)methyltransferase|mRNA (guanine-N(7)-)-methyltransferase|mRNA cap methyltransferase 44 0.006022 9.887 1 1 +8732 RNGTT RNA guanylyltransferase and 5'-phosphatase 6 protein-coding CAP1A|HCE|HCE1|hCAP mRNA-capping enzyme|HCAP1 31 0.004243 8.614 1 1 +8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 8 protein-coding GAA1|hGAA1 glycosylphosphatidylinositol anchor attachment 1 protein|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 protein 1 homolog 32 0.00438 11.38 1 1 +8735 MYH13 myosin heavy chain 13 17 protein-coding MyHC-IIL|MyHC-eo myosin-13|extraocular muscle myosin heavy chain|extraocular myosin heavy chain|myosin heavy chain, skeletal muscle, extraocular|myosin heavy chain, skeletal muscle, laryngeal|myosin, heavy chain 13, skeletal muscle|myosin, heavy polypeptide 13, skeletal muscle|superfast myosin 206 0.0282 0.8293 1 1 +8736 MYOM1 myomesin 1 18 protein-coding SKELEMIN myomesin-1|190 kDa connectin-associated protein|190 kDa titin-associated protein|EH-myomesin|myomesin (M-protein) 1 (190kD)|myomesin 1 (skelemin) 185kDa|myomesin 1 variant 1|myomesin 1, 185kDa|myomesin family member 1 140 0.01916 5.691 1 1 +8737 RIPK1 receptor interacting serine/threonine kinase 1 6 protein-coding RIP|RIP-1|RIP1 receptor-interacting serine/threonine-protein kinase 1|cell death protein RIP|receptor (TNFRSF)-interacting serine-threonine kinase 1|receptor-interacting protein 1|receptor-interacting protein kinase 1|serine/threonine-protein kinase RIP 47 0.006433 9.8 1 1 +8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain 12 protein-coding MRT34|RAIDD death domain-containing protein CRADD|RIP-associated ICH1/CED3-homologous protein with death domain|caspase and RIP adaptor with death domain|death adaptor molecule RAIDD|death domain containing protein CRADD 13 0.001779 7.336 1 1 +8739 HRK harakiri, BCL2 interacting protein 12 protein-coding DP5|HARAKIRI activator of apoptosis harakiri|BCL2-interacting protein|BH3-interacting domain-containing protein 3|activator of apoptosis Hrk|death protein 5|harakiri, BCL2 interacting protein (contains only BH3 domain)|neuronal death protein DP5 2 0.0002737 1.654 1 1 +8740 TNFSF14 tumor necrosis factor superfamily member 14 19 protein-coding CD258|HVEML|LIGHT|LTg tumor necrosis factor ligand superfamily member 14|herpesvirus entry mediator ligand|tumor necrosis factor (ligand) superfamily, member 14|tumor necrosis factor ligand 1D 29 0.003969 2.637 1 1 +8741 TNFSF13 tumor necrosis factor superfamily member 13 17 protein-coding APRIL|CD256|TALL-2|TALL2|TNLG7B|TRDL-1|UNQ383/PRO715|ZTNF2 tumor necrosis factor ligand superfamily member 13|TNF- and APOL-related leukocyte expressed ligand 2|a proliferation-inducing ligand|tumor necrosis factor (ligand) superfamily, member 13|tumor necrosis factor ligand 7B|tumor necrosis factor-like protein ZTNF2|tumor necrosis factor-related death ligand-1 6 0.0008212 9.253 1 1 +8742 TNFSF12 tumor necrosis factor superfamily member 12 17 protein-coding APO3L|DR3LG|TNLG4A|TWEAK tumor necrosis factor ligand superfamily member 12|APO3 ligand|APO3/DR3 ligand|TNF-related WEAK inducer of apoptosis|tumor necrosis factor (ligand) superfamily, member 12|tumor necrosis factor ligand 4A 4 0.0005475 8.828 1 1 +8743 TNFSF10 tumor necrosis factor superfamily member 10 3 protein-coding APO2L|Apo-2L|CD253|TL2|TNLG6A|TRAIL tumor necrosis factor ligand superfamily member 10|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 (ligand) superfamily, member 10|tumor necrosis factor apoptosis-inducing ligand splice variant delta|tumor necrosis factor ligand 6A 23 0.003148 10.39 1 1 +8744 TNFSF9 tumor necrosis factor superfamily member 9 19 protein-coding 4-1BB-L|CD137L|TNLG5A tumor necrosis factor ligand superfamily member 9|4-1BB ligand|4-1BBL|homolog of mouse 4-1BB-L|receptor 4-1BB ligand|tumor necrosis factor (ligand) superfamily, member 9|tumor necrosis factor ligand 5A 12 0.001642 5.187 1 1 +8745 ADAM23 ADAM metallopeptidase domain 23 2 protein-coding MDC-3|MDC3 disintegrin and metalloproteinase domain-containing protein 23|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 3 117 0.01601 5.052 1 1 +8747 ADAM21 ADAM metallopeptidase domain 21 14 protein-coding ADAM 21|ADAM31 disintegrin and metalloproteinase domain-containing protein 21|ADAM metallopeptidase domain 21, preproprotein|a disintegrin and metalloproteinase domain 21 82 0.01122 2.239 1 1 +8748 ADAM20 ADAM metallopeptidase domain 20 14 protein-coding - disintegrin and metalloproteinase domain-containing protein 20|ADAM 20|a disintegrin and metalloproteinase domain 20 58 0.007939 1.238 1 1 +8749 ADAM18 ADAM metallopeptidase domain 18 8 protein-coding ADAM27|tMDCIII disintegrin and metalloproteinase domain-containing protein 18|a disintegrin and metalloproteinase domain 18|transmembrane metalloproteinase-like, disintegrin-like, and cysteine-rich protein III 88 0.01204 0.1939 1 1 +8751 ADAM15 ADAM metallopeptidase domain 15 1 protein-coding MDC15 disintegrin and metalloproteinase domain-containing protein 15|MDC-15|a disintegrin and metalloproteinase domain 15 (metargidin)|metalloprotease RGD disintegrin protein|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 15 56 0.007665 11.36 1 1 +8754 ADAM9 ADAM metallopeptidase domain 9 8 protein-coding CORD9|MCMP|MDC9|Mltng disintegrin and metalloproteinase domain-containing protein 9|ADAM metallopeptidase domain 9 (meltrin gamma)|cellular disintegrin-related protein|cone rod dystrophy 9|metalloprotease/disintegrin/cysteine-rich protein 9|myeloma cell metalloproteinase 48 0.00657 11.06 1 1 +8755 ADAM6 ADAM metallopeptidase domain 6 (pseudogene) 14 pseudo C14orf96|tMDCIV a disintegrin and metalloproteinase domain 6|metalloprotease-like, disintegrin-like protein pseudogene 9 0.001232 12.01 1 1 +8756 ADAM7 ADAM metallopeptidase domain 7 8 protein-coding ADAM 7|ADAM-7|EAPI|GP-83|GP83 disintegrin and metalloproteinase domain-containing protein 7|a disintegrin and metalloproteinase domain 7|epididymal apical protein I|sperm maturation-related glycoprotein GP-83 95 0.013 0.1998 1 1 +8760 CDS2 CDP-diacylglycerol synthase 2 20 protein-coding - phosphatidate cytidylyltransferase 2|CDP-DAG synthase 2|CDP-DG synthase 2|CDP-DG synthetase 2|CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 2|CDP-diglyceride diphosphorylase 2|CDP-diglyceride pyrophosphorylase 2|CDP-diglyceride synthase 2|CDP-diglyceride synthetase 2|CDS 2|CTP:phosphatidate cytidylyltransferase 2 22 0.003011 9.693 1 1 +8761 PABPC4 poly(A) binding protein cytoplasmic 4 1 protein-coding APP-1|APP1|PABP4|iPABP polyadenylate-binding protein 4|PABP-4|activated-platelet protein 1|inducible poly(A)-binding protein|poly(A) binding protein, cytoplasmic 4 (inducible form)|poly(A)-binding protein 4 52 0.007117 11.6 1 1 +8763 CD164 CD164 molecule 6 protein-coding DFNA66|MGC-24|MUC-24|endolyn sialomucin core protein 24|CD164 antigen, sialomucin|CD164 molecule, sialomucin|CD164 variant C|MGC-24v|deafness, autosomal dominant 66|multi-glycosylated core protein 24 9 0.001232 12.63 1 1 +8764 TNFRSF14 TNF receptor superfamily member 14 1 protein-coding ATAR|CD270|HVEA|HVEM|LIGHTR|TR2 tumor necrosis factor receptor superfamily member 14|CD40-like protein|herpes virus entry mediator A|tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator)|tumor necrosis factor receptor-like gene2 15 0.002053 9.877 1 1 +8766 RAB11A RAB11A, member RAS oncogene family 15 protein-coding YL8 ras-related protein Rab-11A|RAB 11A, member oncogene family|rab-11 16 0.00219 11.66 1 1 +8767 RIPK2 receptor interacting serine/threonine kinase 2 8 protein-coding CARD3|CARDIAK|CCK|GIG30|RICK|RIP2 receptor-interacting serine/threonine-protein kinase 2|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|tyrosine-protein kinase RIPK2 35 0.004791 8.833 1 1 +8771 TNFRSF6B TNF receptor superfamily member 6b 20 protein-coding DCR3|DJ583P15.1.1|M68|M68E|TR6 tumor necrosis factor receptor superfamily member 6B|decoy receptor 3 variant 1|decoy receptor 3 variant 2|decoy receptor for Fas ligand|tumor necrosis factor receptor superfamily, member 6b, decoy 17 0.002327 6.774 1 1 +8772 FADD Fas associated via death domain 11 protein-coding GIG3|MORT1 FAS-associated death domain protein|Fas (TNFRSF6)-associated via death domain|Fas-associating death domain-containing protein|Fas-associating protein with death domain|growth-inhibiting gene 3 protein|mediator of receptor-induced toxicity 21 0.002874 9.346 1 1 +8773 SNAP23 synaptosome associated protein 23 15 protein-coding HsT17016|SNAP-23|SNAP23A|SNAP23B synaptosomal-associated protein 23|synaptosomal-associated protein, 23kD|synaptosomal-associated protein, 23kDa|synaptosome associated protein 23kDa|vesicle-membrane fusion protein SNAP-23 14 0.001916 10.22 1 1 +8774 NAPG NSF attachment protein gamma 18 protein-coding GAMMASNAP gamma-soluble NSF attachment protein|N-ethylmaleimide-sensitive factor attachment protein, gamma|SNAP-gamma|gamma SNAP|soluble NSF attachment protein 17 0.002327 9.424 1 1 +8775 NAPA NSF attachment protein alpha 19 protein-coding SNAPA alpha-soluble NSF attachment protein|N-ethylmaleimide-sensitive factor attachment protein, alpha|alpha-SNAP 18 0.002464 11.65 1 1 +8776 MTMR1 myotubularin related protein 1 X protein-coding - myotubularin-related protein 1|phosphatidylinositol-3,5-bisphosphate 3-phosphatase|phosphatidylinositol-3-phosphate phosphatase 48 0.00657 9.537 1 1 +8777 MPDZ multiple PDZ domain crumbs cell polarity complex component 9 protein-coding HYC2|MUPP1 multiple PDZ domain protein|multi-PDZ domain protein 1 144 0.01971 8.811 1 1 +8778 SIGLEC5 sialic acid binding Ig like lectin 5 19 protein-coding CD170|CD33L2|OB-BP2|OBBP2|SIGLEC-5 sialic acid-binding Ig-like lectin 5|CD33 antigen-like 2|OB-binding protein 2|obesity-binding protein 2|sialic acid-binding immunoglobulin-like lectin 5 58 0.007939 4.509 1 1 +8780 RIOK3 RIO kinase 3 18 protein-coding SUDD serine/threonine-protein kinase RIO3|homolog of the Aspergillus nidulans sudD gene product|sudD (suppressor of bimD6, Aspergillus nidulans) homolog|sudD homolog|sudD suppressor of Aspergillus nidulans bimD6 homolog|sudD suppressor of bimD6 homolog|testicular secretory protein Li 47 32 0.00438 10.51 1 1 +8781 PSPHP1 phosphoserine phosphatase pseudogene 1 7 pseudo CO9|PSPHL L-3-phosphoserine-phosphatase homolog 1 0.0001369 1 0 +8784 TNFRSF18 TNF receptor superfamily member 18 1 protein-coding AITR|CD357|GITR|GITR-D tumor necrosis factor receptor superfamily member 18|TNF receptor superfamily activation-inducible protein|activation-inducible TNFR family receptor|glucocorticoid-induced TNFR-related protein 14 0.001916 5.341 1 1 +8785 MATN4 matrilin 4 20 protein-coding - matrilin-4 78 0.01068 1.68 1 1 +8786 RGS11 regulator of G-protein signaling 11 16 protein-coding RS11 regulator of G-protein signaling 11|regulator of G-protein signalling 11 19 0.002601 5.384 1 1 +8787 RGS9 regulator of G-protein signaling 9 17 protein-coding PERRS|RGS9L regulator of G-protein signaling 9|regulator of G-protein signalling 9 55 0.007528 4.511 1 1 +8788 DLK1 delta like non-canonical Notch ligand 1 14 protein-coding DLK|DLK-1|Delta1|FA1|PREF1|Pref-1|ZOG|pG2 protein delta homolog 1|delta-like 1 homolog|fetal antigen 1|preadipocyte factor 1|secredeltin 42 0.005749 2.347 1 1 +8789 FBP2 fructose-bisphosphatase 2 9 protein-coding - fructose-1,6-bisphosphatase isozyme 2|D-fructose-1,6-bisphosphate 1-phosphohydrolase 2|FBPase 2|fructose-1,6-bisphosphatase 2|hexosediphosphatase|muscle FBPase|muscle fructose-bisphosphatase 26 0.003559 0.7802 1 1 +8790 FPGT fucose-1-phosphate guanylyltransferase 1 protein-coding GFPP fucose-1-phosphate guanylyltransferase|GDP-L-fucose diphosphorylase|GDP-beta-L-fucose pyrophosphorylase|fucose-1-phosphate guanyltransferase 45 0.006159 8.303 1 1 +8792 TNFRSF11A TNF receptor superfamily member 11a 18 protein-coding CD265|FEO|LOH18CR1|ODFR|OFE|OPTB7|OSTS|PDB2|RANK|TRANCER tumor necrosis factor receptor superfamily member 11A|Paget disease of bone 2|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, NFKB activator 35 0.004791 5.533 1 1 +8793 TNFRSF10D TNF receptor superfamily member 10d 8 protein-coding CD264|DCR2|TRAIL-R4|TRAILR4|TRUNDD tumor necrosis factor receptor superfamily member 10D|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, decoy with truncated death domain 16 0.00219 6.842 1 1 +8794 TNFRSF10C TNF receptor superfamily member 10c 8 protein-coding CD263|DCR1|DCR1-TNFR|LIT|TRAIL-R3|TRAILR3|TRID tumor necrosis factor receptor superfamily member 10C|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, decoy without an intracellular domain 27 0.003696 5.499 1 1 +8795 TNFRSF10B TNF receptor superfamily member 10b 8 protein-coding CD262|DR5|KILLER|KILLER/DR5|TRAIL-R2|TRAILR2|TRICK2|TRICK2A|TRICK2B|TRICKB|ZTNFR9 tumor necrosis factor receptor superfamily member 10B|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 23 0.003148 10.13 1 1 +8796 SCEL sciellin 13 protein-coding - sciellin 54 0.007391 4.115 1 1 +8797 TNFRSF10A TNF receptor superfamily member 10a 8 protein-coding APO2|CD261|DR4|TRAILR-1|TRAILR1 tumor necrosis factor receptor superfamily member 10A|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 variant 2|tumor necrosis factor receptor superfamily, member 10a 22 0.003011 6.184 1 1 +8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 12 protein-coding - dual specificity tyrosine-phosphorylation-regulated kinase 4|dual specificity tyrosine-(Y)-phosphorylation regulated kinase 4 59 0.008076 8.321 1 1 +8799 PEX11B peroxisomal biogenesis factor 11 beta 1 protein-coding PEX11-BETA|PEX14B peroxisomal membrane protein 11B|peroxin-11B|peroxisomal biogenesis factor 11B|protein PEX11 homolog beta 11 0.001506 9.645 1 1 +8800 PEX11A peroxisomal biogenesis factor 11 alpha 15 protein-coding PEX11-ALPHA|PMP28|hsPEX11p peroxisomal membrane protein 11A|28 kDa peroxisomal integral membrane protein|peroxin-11A|peroxisomal biogenesis factor 11A|protein PEX11 homolog alpha 20 0.002737 6.898 1 1 +8801 SUCLG2 succinate-CoA ligase GDP-forming beta subunit 3 protein-coding GBETA succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial|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 26 0.003559 10.06 1 1 +8802 SUCLG1 succinate-CoA ligase alpha subunit 2 protein-coding GALPHA|MTDPS9|SUCLA1 succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|SCS-alpha|succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|succinyl-CoA ligase [GDP-forming] subunit alpha, mitochondrial|succinyl-CoA synthetase subunit alpha 24 0.003285 10.69 1 1 +8803 SUCLA2 succinate-CoA ligase ADP-forming beta subunit 13 protein-coding A-BETA|MTDPS5|SCS-betaA succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial|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|succinate--CoA ligase (ADP-forming)|succinate-CoA ligase beta subunit|succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|succinyl-CoA synthetase beta-A chain 29 0.003969 9.504 1 1 +8804 CREG1 cellular repressor of E1A stimulated genes 1 1 protein-coding CREG protein CREG1 5 0.0006844 11.29 1 1 +8805 TRIM24 tripartite motif containing 24 7 protein-coding PTC6|RNF82|TF1A|TIF1|TIF1A|TIF1ALPHA|hTIF1 transcription intermediary factor 1-alpha|E3 ubiquitin-protein ligase TRIM24|RING finger protein 82|TIF1-alpha|transcriptional intermediary factor 1 58 0.007939 9.612 1 1 +8807 IL18RAP interleukin 18 receptor accessory protein 2 protein-coding ACPL|CD218b|CDw218b|IL-18R-beta|IL-18RAcP|IL-18Rbeta|IL-1R-7|IL-1R7|IL-1RAcPL|IL18RB interleukin-18 receptor accessory protein|CD218 antigen-like family member B|IL-18 receptor accessory protein|IL-18 receptor beta|cluster of differentiation w218b|interleukin-1 receptor 7|interleukin-18 receptor beta 74 0.01013 3.324 1 1 +8808 IL1RL2 interleukin 1 receptor like 2 2 protein-coding IL-1Rrp2|IL-36R|IL1R-rp2|IL1RRP2 interleukin-1 receptor-like 2|IL-1 receptor-related protein 2|IL-36 receptor|interleukin-1 receptor-related protein 2 43 0.005886 3.859 1 1 +8809 IL18R1 interleukin 18 receptor 1 2 protein-coding CD218a|CDw218a|IL-1Rrp|IL18RA|IL1RRP interleukin-18 receptor 1|CD218 antigen-like family member A|IL-18R-1|IL-18R1|IL1 receptor-related protein|IL18Ralpha2|IL1R-rp|cytokine receptor 50 0.006844 5.475 1 1 +8811 GALR2 galanin receptor 2 17 protein-coding GAL2-R|GALNR2|GALR-2 galanin receptor type 2 30 0.004106 1.637 1 1 +8812 CCNK cyclin K 14 protein-coding CPR4 cyclin-K 22 0.003011 10 1 1 +8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic 20 protein-coding CDGIE|MPDS dolichol-phosphate mannosyltransferase subunit 1|DPM synthase complex, catalytic subunit|DPM synthase subunit 1|MPD synthase subunit 1|dolichol monophosphate mannose synthase|dolichol-phosphate mannose synthase subunit 1|dolichyl-phosphate beta-D-mannosyltransferase subunit 1|dolichyl-phosphate mannosyltransferase polypeptide 1 catalytic subunit|mannose-P-dolichol synthase subunit 1 20 0.002737 9.245 1 1 +8814 CDKL1 cyclin dependent kinase like 1 14 protein-coding KKIALRE|P42 cyclin-dependent kinase-like 1|CDC2-related kinase 1|cyclin-dependent kinase-like 1 (CDC2-related kinase)|protein kinase p42 KKIALRE|serine/threonine protein kinase KKIALRE 22 0.003011 4.336 1 1 +8815 BANF1 barrier to autointegration factor 1 11 protein-coding BAF|BCRP1|D14S1460|NGPS barrier-to-autointegration factor|breakpoint cluster region protein 1 6 0.0008212 11.41 1 1 +8816 DCAF5 DDB1 and CUL4 associated factor 5 14 protein-coding BCRG2|BCRP2|D14S1461E|WDR22 DDB1- and CUL4-associated factor 5|WD repeat-containing protein 22|breakpoint cluster region protein, uterine leiomyoma, 2 51 0.006981 10.4 1 1 +8817 FGF18 fibroblast growth factor 18 5 protein-coding FGF-18|ZFGF5 fibroblast growth factor 18 22 0.003011 3.249 1 1 +8818 DPM2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory 9 protein-coding CDG1U dolichol phosphate-mannose biosynthesis regulatory protein|DPM synthase complex subunit|DPM synthase subunit 2|dolichol-phosphate mannose synthase subunit 2|dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit 3 0.0004106 9.925 1 1 +8819 SAP30 Sin3A associated protein 30 4 protein-coding - histone deacetylase complex subunit SAP30|30 kDa Sin3-associated polypeptide|Sin3 corepressor complex subunit SAP30|Sin3-associated polypeptide, 30kDa|Sin3A-associated protein, 30kDa|sin3-associated polypeptide p30|sin3-associated polypeptide, 30 kDa 6 0.0008212 7.522 1 1 +8820 HESX1 HESX homeobox 1 3 protein-coding ANF|CPHD5|RPX homeobox expressed in ES cells 1|Rathke pouch homeobox|hAnf|homeobox protein ANF 14 0.001916 3.482 1 1 +8821 INPP4B inositol polyphosphate-4-phosphatase type II B 4 protein-coding - type II inositol 3,4-bisphosphate 4-phosphatase|inositol polyphosphate 4-phosphatase II; 4-phosphatase II|inositol polyphosphate-4-phosphatase, type II, 105kDa 90 0.01232 7.089 1 1 +8822 FGF17 fibroblast growth factor 17 8 protein-coding FGF-13|FGF-17|HH20 fibroblast growth factor 17 15 0.002053 2.334 1 1 +8823 FGF16 fibroblast growth factor 16 X protein-coding FGF-16|MF4 fibroblast growth factor 16|metacarpal 4-5 fusion 17 0.002327 0.2681 1 1 +8824 CES2 carboxylesterase 2 16 protein-coding CE-2|CES2A1|PCE-2|iCE cocaine esterase|carboxylesterase 2 (intestine, liver)|hCE-2|intestinal carboxylesterase; liver carboxylesterase-2|methylumbelliferyl-acetate deacetylase 2 42 0.005749 10.62 1 1 +8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component 12 protein-coding LIN-7A|LIN7|MALS-1|TIP-33|VELI1 protein lin-7 homolog A|mammalian LIN-7 1|mammalian lin-seven protein 1|tax interaction protein 33|vertebrate LIN7 homolog 1 39 0.005338 4.264 1 1 +8826 IQGAP1 IQ motif containing GTPase activating protein 1 15 protein-coding HUMORFA01|SAR1|p195 ras GTPase-activating-like protein IQGAP1|RasGAP-like with IQ motifs 104 0.01423 12.25 1 1 +8828 NRP2 neuropilin 2 2 protein-coding NP2|NPN2|PRO2714|VEGF165R2 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 81 0.01109 9.884 1 1 +8829 NRP1 neuropilin 1 10 protein-coding BDCA4|CD304|NP1|NRP|VEGF165R neuropilin-1|transmembrane receptor|vascular endothelial cell growth factor 165 receptor 81 0.01109 10.64 1 1 +8831 SYNGAP1 synaptic Ras GTPase activating protein 1 6 protein-coding MRD5|RASA1|RASA5|SYNGAP ras/Rap GTPase-activating protein SynGAP|Ras GTPase-activating protein SynGAP|neuronal RasGAP|synaptic Ras GTPase activating protein 1 homolog|synaptic Ras GTPase activating protein, 135kDa 84 0.0115 8.465 1 1 +8832 CD84 CD84 molecule 1 protein-coding LY9B|SLAMF5|hCD84|mCD84 SLAM family member 5|CD84 antigen (leukocyte antigen)|cell surface antigen MAX.3|hly9-beta|leucocyte differentiation antigen CD84|leukocyte antigen CD84|leukocyte differentiation antigen CD84|signaling lymphocytic activation molecule 5 40 0.005475 5.798 1 1 +8833 GMPS guanine monophosphate synthase 3 protein-coding - GMP synthase [glutamine-hydrolyzing]|GMP synthase|GMP synthetase|MLL/GMPS fusion protein|glutamine amidotransferase|guanine monophosphate synthetase|guanosine 5'-monophosphate synthase|testicular tissue protein Li 82 53 0.007254 10.09 1 1 +8834 TMEM11 transmembrane protein 11 17 protein-coding C17orf35|PM1|PMI transmembrane protein 11, mitochondrial|putative receptor protein 12 0.001642 9.009 1 1 +8835 SOCS2 suppressor of cytokine signaling 2 12 protein-coding CIS2|Cish2|SOCS-2|SSI-2|SSI2|STATI2 suppressor of cytokine signaling 2|CIS-2|STAT-induced STAT inhibitor 2|cytokine-inducible SH2 protein 2 16 0.00219 8.043 1 1 +8836 GGH gamma-glutamyl hydrolase 8 protein-coding GH gamma-glutamyl hydrolase|gamma-Glu-X carboxypeptidase|gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase) 28 0.003832 8.877 1 1 +8837 CFLAR CASP8 and FADD like apoptosis regulator 2 protein-coding CASH|CASP8AP1|CLARP|Casper|FLAME|FLAME-1|FLAME1|FLIP|I-FLICE|MRIT|c-FLIP|c-FLIPL|c-FLIPR|c-FLIPS CASP8 and FADD-like apoptosis regulator|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|testis secretory sperm-binding protein Li 233m|usurpin beta 20 0.002737 9.691 1 1 +8838 WISP3 WNT1 inducible signaling pathway protein 3 6 protein-coding CCN6|LIBC|PPAC|PPD|WISP-3 WNT1-inducible-signaling pathway protein 3|CCN family member 6 25 0.003422 2.228 1 1 +8839 WISP2 WNT1 inducible signaling pathway protein 2 20 protein-coding CCN5|CT58|CTGF-L WNT1-inducible-signaling pathway protein 2|CCN family member 5|connective tissue growth factor-like protein|connective tissue growth factor-related protein 58 32 0.00438 5.104 1 1 +8840 WISP1 WNT1 inducible signaling pathway protein 1 8 protein-coding CCN4|WISP1c|WISP1i|WISP1tc WNT1-inducible-signaling pathway protein 1|CCN family member 4|CTC-458A3.8|WNT1 induced secreted protein 1|Wnt-1 inducible signaling pathway protein 1 45 0.006159 6.065 1 1 +8841 HDAC3 histone deacetylase 3 5 protein-coding HD3|RPD3|RPD3-2 histone deacetylase 3|SMAP45 30 0.004106 10.03 1 1 +8842 PROM1 prominin 1 4 protein-coding AC133|CD133|CORD12|MCDR2|MSTP061|PROML1|RP41|STGD4 prominin-1|antigen AC133|hProminin|hematopoietic stem cell antigen|prominin-like protein 1 57 0.007802 6.185 1 1 +8843 HCAR3 hydroxycarboxylic acid receptor 3 12 protein-coding GPR109B|HCA3|HM74|PUMAG|Puma-g hydroxycarboxylic acid receptor 3|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 38 0.005201 4.156 1 1 +8844 KSR1 kinase suppressor of ras 1 17 protein-coding KSR|RSU2 kinase suppressor of Ras 1 65 0.008897 8.942 1 1 +8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase 14 protein-coding ABH|ABH1|ALKBH|alkB|hABH DNA demethylase ALKBH1|DNA 6mA demethylase|DNA N6-methyl adenine demethylase|DNA lyase ABH1|DNA oxidative demethylase ALKBH1|alkB, alkylation repair homolog 1|alkylated DNA repair protein alkB homolog 1|alkylation repair, alkB homolog|alpha-ketoglutarate-dependent dioxygenase ABH1 30 0.004106 7.91 1 1 +8847 DLEU2 deleted in lymphocytic leukemia 2 (non-protein coding) 13 ncRNA 1B4|BCMSUN|DLB2|LEU2|LINC00022|MIR15AHG|NCRNA00022|RFP2OS|TRIM13OS deleted in lymphocytic leukemia, 2|leukemia associated gene 2|long intergenic non-protein coding RNA 22|mir-15a-16-1 cluster host gene (non-protein coding)|ret finger protein 2 opposite strand 3 0.0004106 5.533 1 1 +8848 TSC22D1 TSC22 domain family member 1 13 protein-coding Ptg-2|TGFB1I4|TSC22 TSC22 domain family protein 1|TGFB-stimulated clone 22 homolog|TGFbeta-stimulated clone 22|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 75 0.01027 12.25 1 1 +8850 KAT2B lysine acetyltransferase 2B 3 protein-coding CAF|P/CAF|PCAF histone acetyltransferase KAT2B|CREBBP-associated factor|K(lysine) acetyltransferase 2B|histone acetylase PCAF|histone acetyltransferase PCAF|p300/CBP-associated factor 59 0.008076 8.967 1 1 +8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 17 protein-coding CDK5P35|CDK5R|NCK5A|p23|p25|p35|p35nck5a cyclin-dependent kinase 5 activator 1|CDK5 activator 1|TPKII regulatory subunit|cyclin-dependent kinase 5, regulatory subunit 1 (p35)|neuronal CDK5 activator|regulatory partner for CDK5 kinase|tau protein kinase II 23kDa subunit 25 0.003422 7.204 1 1 +8852 AKAP4 A-kinase anchoring protein 4 X protein-coding AKAP 82|AKAP-4|AKAP82|CT99|FSC1|HI|PRKA4|hAKAP82|p82 A-kinase anchor protein 4|A kinase (PRKA) anchor protein 4|A-kinase anchor protein 82 kDa|cancer/testis antigen 99|major sperm fibrous sheath protein|protein kinase A anchoring protein 4|testis-specific gene HI 79 0.01081 0.3006 1 1 +8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 2 protein-coding AMAP2|CENTB3|DDEF2|PAG3|PAP|Pap-alpha|SHAG1 arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 2|PYK2 C terminus-associated protein|centaurin, beta 3|development and differentiation-enhancing factor 2|paxillin-associated protein with ARF GAP activity 3|pyk2 C-terminus-associated protein 84 0.0115 9.767 1 1 +8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 15 protein-coding RALDH(II)|RALDH2|RALDH2-T retinal dehydrogenase 2|RALDH 2|retinaldehyde-specific dehydrogenase type 2 51 0.006981 5.138 1 1 +8856 NR1I2 nuclear receptor subfamily 1 group I member 2 3 protein-coding BXR|ONR1|PAR|PAR1|PAR2|PARq|PRR|PXR|SAR|SXR 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 34 0.004654 3.009 1 1 +8857 FCGBP Fc fragment of IgG binding protein 19 protein-coding FC(GAMMA)BP IgGFc-binding protein|Human Fc gamma BP|IgG Fc binding protein|fcgamma-binding protein antigen|fcgammaBP 269 0.03682 9.419 1 1 +8858 PROZ protein Z, vitamin K dependent plasma glycoprotein 13 protein-coding PZ vitamin K-dependent protein Z|vitamin K-dependent protein Z precursor variant 1 23 0.003148 1.689 1 1 +8859 STK19 serine/threonine kinase 19 6 protein-coding D6S60|D6S60E|G11|HLA-RP1|RP1 serine/threonine-protein kinase 19|MHC class III HLA-RP1|nuclear serine/threonine protein kinase 26 0.003559 8.466 1 1 +8861 LDB1 LIM domain binding 1 10 protein-coding CLIM-2|CLIM2|LDB-1|NLI LIM domain-binding protein 1|LIM domain-binding factor CLIM2|LIM domain-binding factor-1|carboxy terminal LIM domain protein 2|carboxyl-terminal LIM domain-binding protein 2|nuclear LIM interactor 31 0.004243 10.24 1 1 +8862 APLN apelin X protein-coding APEL|XNPEP2 apelin|AGTRL1 ligand|APJ endogenous ligand 5 0.0006844 7.531 1 1 +8863 PER3 period circadian clock 3 1 protein-coding FASPS3|GIG13 period circadian protein homolog 3|cell growth-inhibiting gene 13 protein|circadian clock protein PERIOD 3|hPER3|period circadian protein 3 91 0.01246 9.13 1 1 +8864 PER2 period circadian clock 2 2 protein-coding FASPS|FASPS1 period circadian protein homolog 2|circadian clock protein PERIOD 2|hPER2|period 2|period circadian protein 2|period homolog 2 70 0.009581 9.027 1 1 +8867 SYNJ1 synaptojanin 1 21 protein-coding INPP5G|PARK20 synaptojanin-1|inositol 5'-phosphatase (synaptojanin 1)|inositol polyphosphate-5-phosphatase G|phosphoinositide 5-phosphatase|synaptic inositol 1,4,5-trisphosphate 5-phosphatase 1|synaptojanin-1, polyphosphoinositide phosphatase 103 0.0141 8.31 1 1 +8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 2 protein-coding SATI|SIAT9|SIATGM3S|SPDRS|ST3GalV lactosylceramide alpha-2,3-sialyltransferase|CMP-NeuAc:lactosylceramide alpha-2,3-sialyltransferase|GM3 synthase|ST3 beta-galactoside alpha-23-sialyltransferase 5|ST3Gal V|alpha 2,3-sialyltransferase V|ganglioside GM3 synthase|sialyltransferase 9 (CMP-NeuAc:lactosylceramide alpha-2,3-sialyltransferase; GM3 synthase) 24 0.003285 8.65 1 1 +8870 IER3 immediate early response 3 6 protein-coding DIF-2|DIF2|GLY96|IEX-1|IEX-1L|IEX1|PRG1 radiation-inducible immediate-early gene IEX-1|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 9 0.001232 10.09 1 1 +8871 SYNJ2 synaptojanin 2 6 protein-coding INPP5H synaptojanin-2|inositol phosphate 5'-phosphatase 2|inositol polyphosphate-5-phosphatase H|phosphoinositide 5-phosphatase|synaptic inositol 1,4,5-trisphosphate 5-phosphatase 2 88 0.01204 8.721 1 1 +8872 CDC123 cell division cycle 123 10 protein-coding C10orf7|D123 cell division cycle protein 123 homolog|HT-1080|PZ32|cell division cycle 123 homolog 21 0.002874 10.14 1 1 +8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 13 protein-coding BETA-PIX|COOL-1|COOL1|Nbla10314|P50|P50BP|P85|P85COOL1|P85SPR|PAK3|PIXB rho guanine nucleotide exchange factor 7|PAK-interacting exchange factor beta|Rho guanine nucleotide exchange factor (GEF) 7|SH3 domain-containing proline-rich protein 61 0.008349 10.27 1 1 +8875 VNN2 vanin 2 6 protein-coding FOAP-4|GPI-80 vascular non-inflammatory molecule 2|Vannin 2|glycosylphosphatidyl inositol-anchored protein GPI-80|pantetheinase 47 0.006433 5.044 1 1 +8876 VNN1 vanin 1 6 protein-coding HDLCQ8|Tiff66 pantetheinase|pantetheine hydrolase|vannin 1|vascular non-inflammatory molecule 1 41 0.005612 5.456 1 1 +8877 SPHK1 sphingosine kinase 1 17 protein-coding SPHK sphingosine kinase 1|SK 1|SPK 1 35 0.004791 8.004 1 1 +8878 SQSTM1 sequestosome 1 5 protein-coding A170|FTDALS3|OSIL|PDB3|ZIP3|p60|p62|p62B sequestosome-1|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|ubiquitin-binding protein p62 38 0.005201 13.35 1 1 +8879 SGPL1 sphingosine-1-phosphate lyase 1 10 protein-coding S1PL|SPL sphingosine-1-phosphate lyase 1|SP-lyase 1|SPL 1|hSPL|sphingosine-1-phosphate aldolase 33 0.004517 11.03 1 1 +8880 FUBP1 far upstream element binding protein 1 1 protein-coding FBP|FUBP|hDH V far upstream element-binding protein 1|DNA helicase V|FUSE binding protein 1|far upstream element (FUSE) binding protein 1 73 0.009992 10.32 1 1 +8881 CDC16 cell division cycle 16 13 protein-coding ANAPC6|APC6|CDC16Hs|CUT9 cell division cycle protein 16 homolog|anaphase-promoting complex, subunit 6|cell division cycle 16 homolog|cyclosome subunit 6 38 0.005201 10.33 1 1 +8882 ZPR1 ZPR1 zinc finger 11 protein-coding ZNF259 zinc finger protein ZPR1|zinc finger protein 259 24 0.003285 9.45 1 1 +8883 NAE1 NEDD8 activating enzyme E1 subunit 1 16 protein-coding A-116A10.1|APPBP1|HPP1|ula-1 NEDD8-activating enzyme E1 regulatory subunit|APP-BP1|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 31 0.004243 9.693 1 1 +8884 SLC5A6 solute carrier family 5 member 6 2 protein-coding SMVT sodium-dependent multivitamin transporter|Na(+)-dependent multivitamin transporter|Na+-dependent multivitamin transporter|solute carrier family 5 (sodium-dependent vitamin transporter), member 6|solute carrier family 5 (sodium/multivitamin and iodide cotransporter), member 6 46 0.006296 9.744 1 1 +8886 DDX18 DEAD-box helicase 18 2 protein-coding MrDb ATP-dependent RNA helicase DDX18|DEAD (Asp-Glu-Ala-Asp) box polypeptide 18|DEAD box protein 18|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 18 (Myc-regulated)|Myc-regulated DEAD box protein 55 0.007528 10.65 1 1 +8887 TAX1BP1 Tax1 binding protein 1 7 protein-coding CALCOCO3|T6BP|TXBP151 tax1-binding protein 1|TRAF6-binding protein|Tax1 (human T-cell leukemia virus type I) binding protein 1 48 0.00657 11.69 1 1 +8888 MCM3AP minichromosome maintenance complex component 3 associated protein 21 protein-coding GANP|MAP80|SAC3 germinal-center associated nuclear protein|80 kDa MCM3-associated protein|MCM3 acetylating protein|MCM3 acetyltransferase|MCM3 import protein|MCM3 minichromosome maintenance deficient 3 associated protein|germinal center-associated nuclear protein|germinal-centre associated nuclear protein 124 0.01697 10.84 1 1 +8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta 2 protein-coding EIF-2B|EIF2B|EIF2Bdelta translation initiation factor eIF-2B subunit delta|eIF-2B GDP-GTP exchange factor subunit delta|eukaryotic translation initiation factor 2B subunit 4 delta|eukaryotic translation initiation factor 2B, subunit 4 delta, 67kDa|translation initiation factor eIF-2b delta subunit 36 0.004927 9.695 1 1 +8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma 1 protein-coding EIF-2B|EIF2Bgamma translation initiation factor eIF-2B subunit gamma|eIF-2B GDP-GTP exchange factor subunit gamma|eukaryotic translation initiation factor 2B, subunit 3 gamma, 58kDa 34 0.004654 8.838 1 1 +8892 EIF2B2 eukaryotic translation initiation factor 2B subunit beta 14 protein-coding EIF-2Bbeta|EIF2B translation initiation factor eIF-2B subunit beta|S20I15|S20III15|eIF-2B GDP-GTP exchange factor subunit beta|eukaryotic translation initiation factor 2B, subunit 2 beta, 39kDa 20 0.002737 9.334 1 1 +8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon 3 protein-coding CACH|CLE|EIF-2B|EIF2Bepsilon|LVWM translation initiation factor eIF-2B subunit epsilon|eIF-2B GDP-GTP exchange factor subunit epsilon|eukaryotic translation initiation factor 2B, subunit 5 epsilon, 82kDa 49 0.006707 10.22 1 1 +8894 EIF2S2 eukaryotic translation initiation factor 2 subunit beta 20 protein-coding EIF2|EIF2B|EIF2beta|PPP1R67|eIF-2-beta eukaryotic translation initiation factor 2 subunit 2|eukaryotic translation initiation factor 2, subunit 2 beta, 38kDa|protein phosphatase 1, regulatory subunit 67 18 0.002464 10.81 1 1 +8895 CPNE3 copine 3 8 protein-coding CPN3|PRO1071 copine-3|copine III 36 0.004927 11.29 1 1 +8896 BUD31 BUD31 homolog 7 protein-coding Cwc14|EDG-2|EDG2|G10|YCR063W|fSAP17 protein BUD31 homolog|G10 maternal transcript homolog|functional spliceosome-associated protein 17|maternal G10 transcript|protein EDG-2|protein G10 homolog 10 0.001369 10.41 1 1 +8897 MTMR3 myotubularin related protein 3 22 protein-coding FYVE-DSP1|ZFYVE10 myotubularin-related protein 3|FYVE (Fab1 YGLO23 Vsp27 EEA1 domain) dual-specificity protein phosphatase|FYVE domain-containing dual specificity protein phosphatase 1|phosphatidylinositol-3,5-bisphosphate 3-phosphatase|phosphatidylinositol-3-phosphate phosphatase|zinc finger FYVE domain-containing protein 10|zinc finger, FYVE domain containing 10 72 0.009855 10.32 1 1 +8898 MTMR2 myotubularin related protein 2 11 protein-coding CMT4B|CMT4B1 myotubularin-related protein 2|phosphatidylinositol-3,5-bisphosphate 3-phosphatase|phosphatidylinositol-3-phosphatase|phosphatidylinositol-3-phosphate phosphatase|phosphoinositide-3-phosphatase 36 0.004927 9.628 1 1 +8899 PRPF4B pre-mRNA processing factor 4B 6 protein-coding PR4H|PRP4|PRP4H|PRP4K|dJ1013A10.1 serine/threonine-protein kinase PRP4 homolog|PRP4 kinase|PRP4 pre-mRNA processing factor 4 homolog B|PRP4 pre-mRNA-processing factor 4 homolog|dJ1013A10.1 (PRP4 protein kinase homolog)|protein-serine/threonine kinase 68 0.009307 10.52 1 1 +8900 CCNA1 cyclin A1 13 protein-coding CT146 cyclin-A1|testicular tissue protein Li 34 52 0.007117 3.326 1 1 +8904 CPNE1 copine 1 20 protein-coding COPN1|CPN1 copine-1|chromobindin 17|copine I 33 0.004517 11.25 1 1 +8905 AP1S2 adaptor related protein complex 1 sigma 2 subunit X protein-coding DC22|MRX59|MRXS21|MRXS5|MRXSF|PGS|SIGMA1B AP-1 complex subunit sigma-2|adapter-related protein complex 1 sigma-1B subunit|adaptor protein complex AP-1 sigma-1B subunit|adaptor-related protein complex 1 subunit sigma-1B|clathrin adaptor complex AP1 sigma 1B subunit|clathrin assembly protein complex 1 sigma-1B small chain|golgi adaptor HA1/AP1 adaptin sigma-1B subunit|sigma1B-adaptin 11 0.001506 8.382 1 1 +8906 AP1G2 adaptor related protein complex 1 gamma 2 subunit 14 protein-coding G2AD AP-1 complex subunit gamma-like 2|clathrin-associated/assembly/adaptor protein, large, gamma-2|gamma2-adaptin 55 0.007528 9.977 1 1 +8907 AP1M1 adaptor related protein complex 1 mu 1 subunit 19 protein-coding AP47|CLAPM2|CLTNM|MU-1A AP-1 complex subunit mu-1|AP-mu chain family member mu1A|HA1 47 kDa subunit|adapter-related protein complex 1 subunit mu-1|adaptor protein complex AP-1 mu-1 subunit|adaptor protein complex AP-1 subunit mu-1|adaptor-related protein complex 1 subunit mu-1|clathrin adaptor protein AP47|clathrin assembly protein complex 1 medium chain 1|clathrin assembly protein complex 1 mu-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 37 0.005064 10.3 1 1 +8908 GYG2 glycogenin 2 X protein-coding GN-2|GN2 glycogenin-2|glycogenin glucosyltransferase 41 0.005612 7.004 1 1 +8909 ENDOU endonuclease, poly(U) specific 12 protein-coding P11|PP11|PRSS26 poly(U)-specific endoribonuclease|22 serine protease|26 serine protease|endonuclease, polyU-specific|placental protein 11|protein endoU|uridylate-specific endoribonuclease 22 0.003011 2.621 1 1 +8910 SGCE sarcoglycan epsilon 7 protein-coding DYT11|ESG epsilon-sarcoglycan|dystonia 11, myoclonic|epsilon-SG 28 0.003832 8.482 1 1 +8911 CACNA1I calcium voltage-gated channel subunit alpha1 I 22 protein-coding Cav3.3|ca(v)3.3 voltage-dependent T-type calcium channel subunit alpha-1I|calcium channel, voltage-dependent, T type, alpha 1I subunit|calcium channel, voltage-dependent, alpha 1I subunit|voltage-gated calcium channel subunit alpha Cav3.3 130 0.01779 3.944 1 1 +8912 CACNA1H calcium voltage-gated channel subunit alpha1 H 16 protein-coding CACNA1HB|Cav3.2|ECA6|EIG6|HALD4 voltage-dependent T-type calcium channel subunit alpha-1H|calcium channel, voltage-dependent, T type, alpha 1H subunit|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-gated calcium channel alpha subunit Cav3.2|voltage-gated calcium channel alpha subunit CavT.2|voltage-gated calcium channel subunit alpha Cav3.2 181 0.02477 7.72 1 1 +8913 CACNA1G calcium voltage-gated channel subunit alpha1 G 17 protein-coding Ca(V)T.1|Cav3.1|NBR13|SCA42 voltage-dependent T-type calcium channel subunit alpha-1G|calcium channel, voltage-dependent, T type, alpha 1G subunit|cav3.1c|voltage-dependent T-type calcium channel alpha 1G subunit|voltage-dependent calcium channel alpha 1G subunit|voltage-gated calcium channel subunit alpha Cav3.1 163 0.02231 3.665 1 1 +8914 TIMELESS timeless circadian clock 12 protein-coding TIM|TIM1|hTIM protein timeless homolog|Tof1 homolog|timeless circadian clock 1|timeless homolog 86 0.01177 9.634 1 1 +8915 BCL10 B-cell CLL/lymphoma 10 1 protein-coding CARMEN|CIPER|CLAP|IMD37|c-E10|mE10 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 19 0.002601 8.768 1 1 +8916 HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 4 protein-coding - probable E3 ubiquitin-protein ligase HERC3|HECT domain and RCC1-like domain-containing protein 3|hect domain and RLD 3 57 0.007802 8.943 1 1 +8924 HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 15 protein-coding D15F37S1|MRT38|SHEP1|jdf2|p528 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 325 0.04448 10.55 1 1 +8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 15 protein-coding MDFPMR|p532|p619 probable E3 ubiquitin-protein ligase HERC1|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 248 0.03394 10.22 1 1 +8926 SNURF SNRPN upstream reading frame 15 protein-coding - SNRPN upstream reading frame protein 8 0.001095 5.315 1 1 +8927 BSN bassoon presynaptic cytomatrix protein 3 protein-coding ZNF231 protein bassoon|neuronal double zinc finger protein|zinc finger protein 231 207 0.02833 5.65 1 1 +8928 FOXH1 forkhead box H1 8 protein-coding FAST-1|FAST1 forkhead box protein H1|TGF-beta/activin signal transducer|fast-2|forkhead activin signal transducer 2|forkhead activin signal transducer-1|hFAST-1 18 0.002464 2.859 1 1 +8929 PHOX2B paired like homeobox 2b 4 protein-coding NBLST2|NBPhox|PMX2B paired mesoderm homeobox protein 2B|PHOX2B homeodomain protein|neuroblastoma Phox|neuroblastoma paired-type homeobox protein|paired mesoderm homeobox 2b|paired-like homeobox 2B 40 0.005475 0.5692 1 1 +8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase 3 protein-coding MED1 methyl-CpG-binding domain protein 4|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 29 0.003969 9.499 1 1 +8932 MBD2 methyl-CpG binding domain protein 2 18 protein-coding DMTase|NY-CO-41 methyl-CpG-binding domain protein 2|demethylase 26 0.003559 10.34 1 1 +8933 FAM127A family with sequence similarity 127 member A X protein-coding CXX1|MAR8C|MART8C|Mar8|Mart8 protein FAM127A|CAAX box 1|mammalian retrotransposon derived protein 8C 14 0.001916 10.69 1 1 +8934 RAB29 RAB29, member RAS oncogene family 1 protein-coding RAB7L|RAB7L1 ras-related protein Rab-7L1|RAB7, member RAS oncogene family-like 1|rab-7-like protein 1|ras-related protein Rab-29 15 0.002053 9.221 1 1 +8935 SKAP2 src kinase associated phosphoprotein 2 7 protein-coding PRAP|RA70|SAPS|SCAP2|SKAP-HOM|SKAP55R src kinase-associated phosphoprotein 2|Fyn-associated phosphoprotein SKAP55 homologue|Pyk2/RAFTK-associated protein|SKAP-55HOM|SKAP55 homolog|retinoic acid-induced protein 70|src family-associated phosphoprotein 2|src kinase-associated phosphoprotein of 55-related protein|src-associated adapter protein with PH and SH3 domains 28 0.003832 9.364 1 1 +8936 WASF1 WAS protein family member 1 6 protein-coding SCAR1|WAVE|WAVE1 wiskott-Aldrich syndrome protein family member 1|WASP family protein member 1|homology of dictyostelium scar 1|protein WAVE-1|verprolin homology domain-containing protein 1 43 0.005886 7.973 1 1 +8938 BAIAP3 BAI1 associated protein 3 16 protein-coding BAP3 BAI1-associated protein 3|BAI-associated protein 3 88 0.01204 7.474 1 1 +8939 FUBP3 far upstream element binding protein 3 9 protein-coding FBP3 far upstream element-binding protein 3|FUSE-binding protein 3|far upstream element (FUSE) binding protein 3 44 0.006022 10.24 1 1 +8940 TOP3B topoisomerase (DNA) III beta 22 protein-coding TOP3B1 DNA topoisomerase 3-beta-1|DNA topoisomerase III beta-1|topoisomerase III beta 56 0.007665 8.393 1 1 +8941 CDK5R2 cyclin dependent kinase 5 regulatory subunit 2 2 protein-coding NCK5AI|P39|p39nck5ai cyclin-dependent kinase 5 activator 2|CDK5 activator 2|cyclin-dependent kinase 5 activator isoform p39i|cyclin-dependent kinase 5, regulatory subunit 2 (p39)|neuronal CDK5 activator isoform|p39I 7 0.0009581 2.611 1 1 +8942 KYNU kynureninase 2 protein-coding KYNUU kynureninase|L-kynurenine hydrolase 68 0.009307 6.702 1 1 +8943 AP3D1 adaptor related protein complex 3 delta 1 subunit 19 protein-coding ADTD|HPS10|hBLVR AP-3 complex subunit delta-1|AP-3 complex delta subunit, partial CDS|AP-3 complex subunit delta|adapter-related protein complex 3 subunit delta-1|adaptin, delta|adaptor-related protein complex 3 subunit delta-1|delta adaptin|delta-adaptin, partial CDS|subunit of putative vesicle coat adaptor complex AP-3 77 0.01054 11.84 1 1 +8944 SNORD73A small nucleolar RNA, C/D box 73A 4 snoRNA RNU73|RNU73A|U73|U73a RNA, U73 small nucleolar|U73A small nucleolar RNA|U73A snoRNA|snoRNA, U73 0 0 1 +8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase 10 protein-coding BETA-TRCP|FBW1A|FBXW1|FBXW1A|FWD1|bTrCP|bTrCP1|betaTrCP F-box/WD repeat-containing protein 1A|E3RSIkappaB|F-box and WD repeats protein beta-TrCP|F-box and WD-repeat protein 1B|beta-TrCP1|epididymis tissue protein Li 2a|pIkappaBalpha-E3 receptor subunit 58 0.007939 9.27 1 1 +8968 HIST1H3F histone cluster 1 H3 family member f 6 protein-coding H3/i|H3FI histone H3.1|H3 histone family, member I|histone 1, H3f|histone H3/i|histone cluster 1, H3f 28 0.003832 0.7882 1 1 +8969 HIST1H2AG histone cluster 1 H2A family member g 6 protein-coding H2A.1b|H2A/p|H2AFP|H2AG|pH2A/f histone H2A type 1|H2A histone family, member P|H2A.1|histone 1, H2ag|histone H2A/p|histone cluster 1, H2ag 30 0.004106 2.686 1 1 +8970 HIST1H2BJ histone cluster 1 H2B family member j 6 protein-coding H2B/r|H2BFR|H2BJ histone H2B type 1-J|H2B histone family, member R|histone 1, H2bj|histone H2B.1|histone H2B.r|histone cluster 1, H2bj 26 0.003559 4.974 1 1 +8971 H1FX H1 histone family member X 3 protein-coding H1.10|H1X histone H1x 17 0.002327 11.19 1 1 +8972 MGAM maltase-glucoamylase 7 protein-coding MG|MGA maltase-glucoamylase, intestinal|brush border hydrolase|maltase-glucoamylase (alpha-glucosidase) 243 0.03326 3.208 1 1 +8973 CHRNA6 cholinergic receptor nicotinic alpha 6 subunit 8 protein-coding CHNRA6 neuronal acetylcholine receptor subunit alpha-6|acetylcholine receptor, nicotinic, alpha 6 (neuronal)|cholinergic receptor, nicotinic alpha 6|cholinergic receptor, nicotinic, alpha 6 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 6 44 0.006022 1.751 1 1 +8974 P4HA2 prolyl 4-hydroxylase subunit alpha 2 5 protein-coding - prolyl 4-hydroxylase subunit 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, alpha polypeptide II 43 0.005886 9.883 1 1 +8975 USP13 ubiquitin specific peptidase 13 (isopeptidase T-3) 3 protein-coding ISOT3|IsoT-3 ubiquitin carboxyl-terminal hydrolase 13|deubiquitinating enzyme 13|ubiquitin specific protease 13 (isopeptidase T-3)|ubiquitin thioesterase 13|ubiquitin thiolesterase 13|ubiquitin-specific-processing protease 13 61 0.008349 8.812 1 1 +8976 WASL Wiskott-Aldrich syndrome like 7 protein-coding N-WASP|NWASP|WASPB neural Wiskott-Aldrich syndrome protein 49 0.006707 10.79 1 1 +8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 7 protein-coding LH3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3|lysine hydroxylase 3|lysyl hydroxlase 3|lysyl hydroxylase 3 67 0.009171 10.84 1 1 +8986 RPS6KA4 ribosomal protein S6 kinase A4 11 protein-coding MSK2|RSK-B|S6K-alpha-4 ribosomal protein S6 kinase alpha-4|90 kDa ribosomal protein S6 kinase 4|mitogen- and stress-activated protein kinase 2|nuclear mitogen- and stress-activated protein kinase 2|ribosomal protein S6 kinase, 90kDa, polypeptide 4|ribosomal protein kinase B 34 0.004654 9.864 1 1 +8987 STBD1 starch binding domain 1 4 protein-coding GENEX3414|GENX-3414 starch-binding domain-containing protein 1|genethonin 1|glycophagy cargo receptor STBD1 7 0.0009581 8.462 1 1 +8988 HSPB3 heat shock protein family B (small) member 3 5 protein-coding DHMN2C|HMN2C|HSPL27 heat shock protein beta-3|HSP 17|heat shock 17 kDa protein|heat shock 27kDa protein 3|protein 3 20 0.002737 1.634 1 1 +8989 TRPA1 transient receptor potential cation channel subfamily A member 1 8 protein-coding ANKTM1|FEPS transient receptor potential cation channel subfamily A member 1|ankyrin-like with transmembrane domains 1|transformation-sensitive protein p120 181 0.02477 3.101 1 1 +8991 SELENBP1 selenium binding protein 1 1 protein-coding HEL-S-134P|LPSB|SBP56|SP56|hSBP selenium-binding protein 1|56 kDa selenium-binding protein|epididymis secretory sperm binding protein Li 134P 35 0.004791 9.823 1 1 +8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 5 protein-coding ATP6H|ATP6V0E|M9.2|Vma21|Vma21p V-type proton ATPase subunit e 1|ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1|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|vacuolar ATP synthase subunit H|vacuolar proton pump H subunit|vacuolar proton pump subunit e 1|vacuolar proton-ATPase subunit M9.2 4 0.0005475 11.7 1 1 +8993 PGLYRP1 peptidoglycan recognition protein 1 19 protein-coding PGLYRP|PGRP|PGRP-S|PGRPS|TAG7|TNFSF3L peptidoglycan recognition protein 1|TNF superfamily, member 3 (LTB)-like (peptidoglycan recognition protein) 17 0.002327 0.5522 1 1 +8994 LIMD1 LIM domains containing 1 3 protein-coding - LIM domain-containing protein 1 38 0.005201 9.735 1 1 +8995 TNFSF18 tumor necrosis factor superfamily member 18 1 protein-coding AITRL|GITRL|TL6|TNLG2A|hGITRL tumor necrosis factor ligand superfamily member 18|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|tumor necrosis factor ligand 2A 17 0.002327 1.494 1 1 +8996 NOL3 nucleolar protein 3 16 protein-coding ARC|FCM|MYP|NOP|NOP30 nucleolar protein 3|muscle-enriched cytoplasmic protein|nucleolar protein 3 (apoptosis repressor with CARD domain)|nucleolar protein of 30 kDa 13 0.001779 8.774 1 1 +8997 KALRN kalirin, RhoGEF kinase 3 protein-coding ARHGEF24|CHD5|CHDS5|DUET|DUO|HAPIP|TRAD kalirin|huntingtin-associated protein interacting protein (duo)|serine/threonine-protein kinase with Dbl- and pleckstrin homology domain 247 0.03381 8.137 1 1 +8999 CDKL2 cyclin dependent kinase like 2 4 protein-coding KKIAMRE|P56 cyclin-dependent kinase-like 2|CDC2-related kinase|cyclin-dependent kinase-like 2 (CDC2-related kinase)|p56 KKIAMRE protein kinase|protein kinase p56 KKIAMRE|serine/threonine protein kinase KKIAMRE|testicular tissue protein Li 35 34 0.004654 4.461 1 1 +9001 HAP1 huntingtin associated protein 1 17 protein-coding HAP2|HIP5|HLP|hHLP1 huntingtin-associated protein 1|HAP-1|huntingtin-associated protein 2|neuroan 1 54 0.007391 4.514 1 1 +9002 F2RL3 F2R like thrombin/trypsin receptor 3 19 protein-coding PAR4 proteinase-activated receptor 4|PAR-4|coagulation factor II (thrombin) receptor-like 3|protease-activated receptor-4|thrombin receptor-like 3 28 0.003832 5.896 1 1 +9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C 16 protein-coding MGC:39976|SL1|TAFI110|TAFI95 TATA box-binding protein-associated factor RNA polymerase I subunit C|RNA polymerase I-specific TBP-associated factor 110 kDa|SL1, 110kD subunit|TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kD|TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kDa|TATA box-binding protein-associated factor 1C|TATA-box binding protein associated factor, RNA polymerase I, C|TBP-associated factor 1C|transcription factor SL1|transcription initiation factor SL1/TIF-IB subunit C 62 0.008486 9.583 1 1 +9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B 2 protein-coding MGC:9349|RAF1B|RAFI63|SL1|TAFI63 TATA box-binding protein-associated factor RNA polymerase I subunit B|RNA polymerase I-specific TBP-associated factor 63 kDa|SL1, 63kD subunit|TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kD|TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kDa|TATA box-binding protein-associated factor 1B|TATA-box binding protein associated factor, RNA polymerase I, B|TBP-associated factor 1B|transcription initiation factor SL1/TIF-IB subunit B 65 0.008897 7.85 1 1 +9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A 1 protein-coding MGC:17061|RAFI48|SL1|TAFI48 TATA box-binding protein-associated factor RNA polymerase I subunit A|RNA polymerase I-specific TBP-associated factor 48 kDa|SL1, 48kD subunit|TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kD|TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kDa|TATA box-binding protein-associated factor 1A|TATA-box binding protein associated factor, RNA polymerase I, A|TBP-associated factor 1A|transcription factor SL1|transcription initiation factor SL1/TIF-IB subunit A 31 0.004243 6.365 1 1 +9016 SLC25A14 solute carrier family 25 member 14 X protein-coding BMCP1|UCP5 brain mitochondrial carrier protein 1|mitochondrial uncoupling protein 5|solute carrier family 25 (mitochondrial carrier, brain), member 14 31 0.004243 7.236 1 1 +9019 MPZL1 myelin protein zero like 1 1 protein-coding MPZL1b|PZR|PZR1b|PZRa|PZRb myelin protein zero-like protein 1|immunoglobulin family transmembrane protein|protein zero related 21 0.002874 11.5 1 1 +9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 17 protein-coding FTDCR1B|HS|HSNIK|NIK mitogen-activated protein kinase kinase kinase 14|NF-kappa-beta-inducing kinase|serine/threonine-protein kinase NIK 58 0.007939 8.768 1 1 +9021 SOCS3 suppressor of cytokine signaling 3 17 protein-coding ATOD4|CIS3|Cish3|SOCS-3|SSI-3|SSI3 suppressor of cytokine signaling 3|STAT-induced STAT inhibitor 3|cytokine-inducible SH2 protein 3 17 0.002327 10.18 1 1 +9022 CLIC3 chloride intracellular channel 3 9 protein-coding - chloride intracellular channel protein 3 7 0.0009581 5.964 1 1 +9023 CH25H cholesterol 25-hydroxylase 10 protein-coding C25H cholesterol 25-hydroxylase|cholesterol 25-monooxygenase|h25OH 14 0.001916 5.685 1 1 +9024 BRSK2 BR serine/threonine kinase 2 11 protein-coding C11orf7|PEN11B|SAD1|SADA|STK29 serine/threonine-protein kinase BRSK2|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 SAD-A|testicular tissue protein Li 30 59 0.008076 4.049 1 1 +9025 RNF8 ring finger protein 8 6 protein-coding hRNF8 E3 ubiquitin-protein ligase RNF8|C3HC4-type zinc finger protein|UBC13/UEV-interacting ring finger protein|ring finger protein (C3HC4 type) 8|ring finger protein 8, E3 ubiquitin protein ligase 29 0.003969 8.693 1 1 +9026 HIP1R huntingtin interacting protein 1 related 12 protein-coding HIP12|HIP3|ILWEQ huntingtin-interacting protein 1-related protein|HIP-12|HIP1-related protein|huntingtin interacting protein 12 60 0.008212 10.25 1 1 +9027 NAT8 N-acetyltransferase 8 (putative) 2 protein-coding ATase2|CCNAT|CML1|GLA|Hcml1|TSC501|TSC510 N-acetyltransferase 8|N-acetyltransferase 8 (GCN5-related, putative)|N-acetyltransferase 8 (camello like)|acetyltransferase 2|camello-like protein 1|cysteinyl-conjugate N-acetyltransferase|kidney- and liver-specific gene product|probable N-acetyltransferase 8 37 0.005064 2.253 1 1 +9028 RHBDL1 rhomboid like 1 16 protein-coding RHBDL|RRP rhomboid-related protein 1|rhomboid, drosophila, homolog of|rhomboid, veinlet-like 1|rhomboid-like protein 1 20 0.002737 5.342 1 1 +9031 BAZ1B bromodomain adjacent to zinc finger domain 1B 7 protein-coding WBSCR10|WBSCR9|WSTF tyrosine-protein kinase BAZ1B|hWALp2|transcription factor WSTF|williams syndrome transcription factor|williams-Beuren syndrome chromosomal region 10 protein|williams-Beuren syndrome chromosomal region 9 protein 85 0.01163 11.16 1 1 +9032 TM4SF5 transmembrane 4 L six family member 5 17 protein-coding - transmembrane 4 L6 family member 5|tetraspan transmembrane protein L6H|transmembrane 4 superfamily member 5 14 0.001916 2.011 1 1 +9033 PKD2L1 polycystin 2 like 1, transient receptor potential cation channel 10 protein-coding PCL|PKD2L|PKDL|TRPP3 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 74 0.01013 2.076 1 1 +9034 CCRL2 C-C motif chemokine receptor like 2 3 protein-coding ACKR5|CKRX|CRAM|CRAM-A|CRAM-B|HCR C-C chemokine receptor-like 2|atypical chemokine receptor 5|chemokine (C-C motif) receptor-like 2|chemokine receptor CCR11|chemokine receptor X|putative MCP-1 chemokine receptor 23 0.003148 5.946 1 1 +9037 SEMA5A semaphorin 5A 5 protein-coding SEMAF|semF semaphorin-5A|sema F|sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A|semaphorin F 157 0.02149 8.976 1 1 +9038 TAAR5 trace amine associated receptor 5 6 protein-coding PNR trace amine-associated receptor 5|hTaar5|putative neurotransmitter receptor|taR-5|trace amine receptor 5 41 0.005612 0.07282 1 1 +9039 UBA3 ubiquitin like modifier activating enzyme 3 3 protein-coding NAE2|UBE1C|hUBA3 NEDD8-activating enzyme E1 catalytic subunit|NEDD8-activating enzyme E1 subunit 2|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) 27 0.003696 9.829 1 1 +9040 UBE2M ubiquitin conjugating enzyme E2 M 19 protein-coding UBC-RS2|UBC12|hUbc12 NEDD8-conjugating enzyme Ubc12|NEDD8 carrier protein|NEDD8 protein ligase|ubiquitin carrier protein M|ubiquitin conjugating enzyme E2M|ubiquitin-conjugating enzyme E2M (UBC12 homolog, yeast)|ubiquitin-protein ligase M|yeast UBC12 homolog 17 0.002327 10.27 1 1 +9043 SPAG9 sperm associated antigen 9 17 protein-coding CT89|HLC-6|HLC4|HLC6|JIP-4|JIP4|JLP|PHET|PIG6 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 associated antigen 9 variant 5|sperm surface protein|sunday driver 1 74 0.01013 11 1 1 +9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 10 protein-coding MOT1|TAF(II)170|TAF172|TAFII170 TATA-binding protein-associated factor 172|ATP-dependent helicase BTAF1|B-TFIID transcription factor-associated 170 kDa subunit|BTAF1 RNA polymerase II, B-TFIID transcription factor-associated, 170kDa (Mot1 homolog, S. cerevisiae)|Mot1 homolog|TBP-associated factor 172 105 0.01437 9.435 1 1 +9045 RPL14 ribosomal protein L14 3 protein-coding CAG-ISL-7|CTG-B33|L14|RL14|hRL14 60S ribosomal protein L14 15 0.002053 12.79 1 1 +9046 DOK2 docking protein 2 8 protein-coding p56DOK|p56dok-2 docking protein 2|docking protein 2, 56kD|docking protein 2, 56kDa|downstream of tyrosine kinase 2|p56(dok-2) 28 0.003832 6.613 1 1 +9047 SH2D2A SH2 domain containing 2A 1 protein-coding F2771|SCAP|TSAD|VRAP SH2 domain-containing protein 2A|SH2 domain protein 2A|T cell specific adapter protein TSAd|T lymphocyte specific adaptor protein|VEGF receptor-associated protein 44 0.006022 5.902 1 1 +9048 ARTN artemin 1 protein-coding ART|ENOVIN|EVN|NBN artemin|neublastin 9 0.001232 4.673 1 1 +9049 AIP aryl hydrocarbon receptor interacting protein 11 protein-coding ARA9|FKBP16|FKBP37|SMTPHN|XAP-2|XAP2 AH receptor-interacting protein|HBV X-associated protein 2|immunophilin homolog ARA9 17 0.002327 10.22 1 1 +9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 18 protein-coding MAYP proline-serine-threonine phosphatase-interacting protein 2|PEST phosphatase-interacting protein 2 26 0.003559 7.508 1 1 +9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 15 protein-coding CD2BP1|CD2BP1L|CD2BP1S|H-PIP|PAPAS|PSTPIP proline-serine-threonine phosphatase-interacting protein 1|CD2 antigen-binding protein 1|CD2 cytoplasmic tail-binding protein|CD2-binding protein 1|PEST phosphatase-interacting protein 1|truncated proline-serine-threonine phosphatase interacting protein 1 28 0.003832 6.071 1 1 +9052 GPRC5A G protein-coupled receptor class C group 5 member A 12 protein-coding GPCR5A|PEIG-1|RAI3|RAIG1|TIG1 retinoic acid-induced protein 3|G-protein coupled receptor family C group 5 member A|TPA induced gene 1|orphan G-protein-coupling receptor PEIG-1|phorbol ester induced gene 1|phorbol ester induced protein-1|retinoic acid induced 3|retinoic acid responsive|retinoic acid-induced gene 1 protein 16 0.00219 8.996 1 1 +9053 MAP7 microtubule associated protein 7 6 protein-coding E-MAP-115|EMAP115 ensconsin|MAP-7|dJ325F22.2 (microtubule-associated protein 7 (EMAP115, E-MAP-115))|epithelial microtubule-associated protein of 115 kDa 69 0.009444 9.602 1 1 +9054 NFS1 NFS1, cysteine desulfurase 20 protein-coding HUSSY-08|IscS|NIFS cysteine desulfurase, mitochondrial|NFS1 nitrogen fixation 1 homolog|nitrogen fixation 1 (S. cerevisiae, homolog)|nitrogen-fixing bacteria S-like protein 17 0.002327 9.282 1 1 +9055 PRC1 protein regulator of cytokinesis 1 15 protein-coding ASE1 protein regulator of cytokinesis 1|anaphase spindle elongation 1 homolog|protein regulating cytokinesis 1 46 0.006296 9.378 1 1 +9056 SLC7A7 solute carrier family 7 member 7 14 protein-coding LAT3|LPI|MOP-2|Y+LAT1|y+LAT-1 Y+L amino acid transporter 1|monocyte amino acid permease 2|solute carrier family 7 (amino acid transporter light chain, y+L system), member 7|solute carrier family 7 (cationic amino acid transporter, y+ system), member 7|y(+)L-type amino acid transporter 1 29 0.003969 8.194 1 1 +9057 SLC7A6 solute carrier family 7 member 6 16 protein-coding LAT-2|LAT3|y+LAT-2 Y+L amino acid transporter 2|amino acid permease|cationic amino acid transporter, y+ system|solute carrier family 7 (amino acid transporter light chain, y+L system), member 6|solute carrier family 7 (cationic amino acid transporter, y+ system), member 6|y(+)L-type amino acid transporter 2|y+LAT2 20 0.002737 9.649 1 1 +9058 SLC13A2 solute carrier family 13 member 2 17 protein-coding NADC1|NaCT|NaDC-1|SDCT1 solute carrier family 13 member 2|Na(+)-coupled citrate transporter|Na(+)/dicarboxylate cotransporter 1|renal sodium/dicarboxylate cotransporter|solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 48 0.00657 2.242 1 1 +9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 10 protein-coding ATPSK2|BCYM4|SK2 bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 2|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|SK 2|adenosine 5'-phosphosulfate kinase|adenylyl-sulfate kinase|bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthethase 2|sulfate adenylyltransferase 36 0.004927 8.837 1 1 +9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 4 protein-coding ATPSK1|PAPSS|SK1 bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 1|3-prime-phosphoadenosine 5-prime-phosphosulfate synthase 1|PAPS synthase 1|PAPSS 1|SK 1|adenylyl-sulfate kinase|sulfate adenylyltransferase|sulfurylase kinase 1 39 0.005338 10.43 1 1 +9063 PIAS2 protein inhibitor of activated STAT 2 18 protein-coding ARIP3|DIP|MIZ|MIZ1|PIASX|PIASX-ALPHA|PIASX-BETA|SIZ2|ZMIZ4 E3 SUMO-protein ligase PIAS2|DAB2-interacting protein|androgen receptor-interacting protein 3|msx-interacting zinc finger protein|protein inhibitor of activated STAT X|zinc finger, MIZ-type containing 4 44 0.006022 7.782 1 1 +9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 1 protein-coding ASK2|MAPKKK6|MEKK6 mitogen-activated protein kinase kinase kinase 6|apoptosis signal-regulating kinase 2 58 0.007939 9.261 1 1 +9066 SYT7 synaptotagmin 7 11 protein-coding IPCA-7|IPCA7|PCANAP7|SYT-VII|SYTVII synaptotagmin-7|prostate cancer-associated protein 7|synaptotagmin VII 34 0.004654 8.601 1 1 +9068 ANGPTL1 angiopoietin like 1 1 protein-coding ANG3|ANGPT3|ARP1|AngY|UNQ162|dJ595C2.2 angiopoietin-related protein 1|ANG-3|angioarrestin|angiopoietin 3|angiopoietin Y1|angiopoietin-like protein 1|dJ595C2.2 (angiopoietin Y1) 27 0.003696 5.16 1 1 +9069 CLDN12 claudin 12 7 protein-coding - claudin-12 25 0.003422 9.925 1 1 +9070 ASH2L ASH2 like histone lysine methyltransferase complex subunit 8 protein-coding ASH2|ASH2L1|ASH2L2|Bre2 set1/Ash2 histone methyltransferase complex subunit ASH2|ASH2-like protein|ash2 (absent, small, or homeotic)-like 41 0.005612 10.03 1 1 +9071 CLDN10 claudin 10 13 protein-coding CPETRL3|OSP-L claudin-10|OSP-like protein 29 0.003969 4.277 1 1 +9073 CLDN8 claudin 8 21 protein-coding HEL-S-79 claudin-8|epididymis secretory protein Li 79 22 0.003011 3.234 1 1 +9074 CLDN6 claudin 6 16 protein-coding - claudin-6|skullin 31 0.004243 2.215 1 1 +9075 CLDN2 claudin 2 X protein-coding - claudin-2|SP82 18 0.002464 4.487 1 1 +9076 CLDN1 claudin 1 3 protein-coding CLD1|ILVASC|SEMP1 claudin-1|senescence-associated epithelial membrane protein 1 14 0.001916 9.655 1 1 +9077 DIRAS3 DIRAS family GTPase 3 1 protein-coding ARHI|NOEY2 GTP-binding protein Di-Ras3|DIRAS family, GTP-binding RAS-like 3|distinct subgroup of the Ras family member 3|ras homolog gene family, member I|rho-related GTP-binding protein RhoI 21 0.002874 5.201 1 1 +9079 LDB2 LIM domain binding 2 4 protein-coding CLIM1|LDB-2|LDB1 LIM domain-binding protein 2|LIM binding domain 2|LIM domain-binding factor CLIM1|LIM domain-binding factor-2|carboxyl-terminal LIM domain-binding protein 1 68 0.009307 7.743 1 1 +9080 CLDN9 claudin 9 16 protein-coding - claudin-9 20 0.002737 4.278 1 1 +9082 XKRY XK related, Y-linked Y protein-coding XKRY1 testis-specific XK-related protein, Y-linked 2|Testis-specific XK-related protein on Y|X Kell blood group precursor-related, Y-linked|X-linked Kx blood group related, Y-linked|XK, Kell blood group complex subunit-related, Y-linked 0 0 1 +9083 BPY2 basic charge, Y-linked, 2 Y protein-coding BPY2A|VCY2|VCY2A testis-specific basic protein Y 2|basic protein on Y chromosome 2|testis-specific basic protein on Y, 2|variable charge, Y-linked, 2|variably charged protein Y 2 1 0.0001369 0.05507 1 1 +9084 VCY variable charge, Y-linked Y protein-coding BPY1|VCY1|VCY1A testis-specific basic protein Y 1|basic charge, Y-linked 1|basic protein on Y chromosome, 1|testis-specific basic protein on Y, 1|variable charge, Y chromosome|variably charged protein Y 0.2024 0 1 +9085 CDY1 chromodomain Y-linked 1 Y protein-coding CDY|CDY1A testis-specific chromodomain protein Y 1|chromodomain protein, Y chromosome, 1|chromodomain protein, Y-linked, 1|testis-specific chromodomain protein on Y 0.005282 0 1 +9086 EIF1AY eukaryotic translation initiation factor 1A, Y-linked Y protein-coding eIF-4C eukaryotic translation initiation factor 1A, Y-chromosomal|eIF-1A Y isoform|eukaryotic translation initiation factor 1A, Y chromosome|eukaryotic translation initiation factor 4C 2 0.0002737 4.052 1 1 +9087 TMSB4Y thymosin beta 4, Y-linked Y protein-coding TB4Y thymosin beta-4, Y-chromosomal|thymosin beta-4, Y isoform|thymosin, beta 4, Y chromosome 1 0.0001369 2.305 1 1 +9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 16 protein-coding MYT1|PPP1R126 membrane-associated tyrosine- and threonine-specific cdc2-inhibitory kinase|myt1 kinase|protein phosphatase 1, regulatory subunit 126 27 0.003696 7.75 1 1 +9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q 16 protein-coding GPI1|c407A10.1 phosphatidylinositol N-acetylglucosaminyltransferase subunit Q|N-acetylglucosaminyl transferase component Gpi1|N-acetylglucosamyl transferase component GPI1|PIG-Q|c407A10.1 (GPI1 (N-acetylglucosaminyl transferase component))|phosphatidylinositol glycan, class Q|phosphatidylinositol-glycan biosynthesis class Q protein 51 0.006981 10.01 1 1 +9092 SART1 squamous cell carcinoma antigen recognized by T-cells 1 11 protein-coding Ara1|HOMS1|SART1259|SNRNP110|Snu66 U4/U6.U5 tri-snRNP-associated protein 1|IgE autoantigen|SART-1|SART1(259) protein|SART1(800) protein|SNU66 homolog|U4/U6.U5 tri-snRNP-associated 110 kDa protein|hSART-1|hSnu66|small nuclear ribonucleoprotein 110kDa (U4/U6.U5)|squamous cell carcinoma antigen recognised by T cells 28 0.003832 10.69 1 1 +9093 DNAJA3 DnaJ heat shock protein family (Hsp40) member A3 16 protein-coding HCA57|TID1|hTID-1 dnaJ homolog subfamily A member 3, mitochondrial|DnaJ (Hsp40) homolog, subfamily A, member 3|dnaJ protein Tid-1|hepatocellular carcinoma-associated antigen 57|tumorous imaginal discs protein Tid56 homolog 24 0.003285 10.38 1 1 +9094 UNC119 unc-119 lipid binding chaperone 17 protein-coding HRG4|IMD13|POC7|POC7A protein unc-119 homolog A|POC7 centriolar protein homolog A|retinal protein 4|unc-119 homolog 14 0.001916 9.088 1 1 +9095 TBX19 T-box 19 1 protein-coding TBS19|TPIT|dJ747L4.1 T-box transcription factor TBX19|T-box factor, pituitary|T-box protein 19|TBS 19 39 0.005338 5.74 1 1 +9096 TBX18 T-box 18 6 protein-coding CAKUT2 T-box transcription factor TBX18|T-box protein 18 77 0.01054 4.415 1 1 +9097 USP14 ubiquitin specific peptidase 14 18 protein-coding TGT ubiquitin carboxyl-terminal hydrolase 14|deubiquitinating enzyme 14|tRNA-guanine transglycosylase, 60-kD subunit|ubiquitin specific peptidase 14 (tRNA-guanine transglycosylase)|ubiquitin specific protease 14 (tRNA-guanine transglycosylase)|ubiquitin thioesterase 14|ubiquitin thiolesterase 14|ubiquitin-specific processing protease 14 34 0.004654 10.38 1 1 +9098 USP6 ubiquitin specific peptidase 6 17 protein-coding HRP1|TRE17|TRE2|TRESMCR|Tre-2|USP6-short ubiquitin carboxyl-terminal hydrolase 6|TBC1D3 and USP32 fusion|deubiquitinating enzyme 6|hyperpolymorphic gene 1|proto-oncogene TRE-2|ubiquitin specific peptidase 6 (Tre-2 oncogene)|ubiquitin specific protease 6 (Tre-2 oncogene)|ubiquitin thioesterase 6|ubiquitin thiolesterase 6|ubiquitin-specific protease USP6|ubiquitin-specific-processing protease 6 105 0.01437 5.473 1 1 +9099 USP2 ubiquitin specific peptidase 2 11 protein-coding UBP41|USP9 ubiquitin carboxyl-terminal hydrolase 2|41 kDa ubiquitin-specific protease|deubiquitinating enzyme 2|ubiquitin specific protease 12|ubiquitin specific protease 9|ubiquitin thioesterase 2|ubiquitin-specific-processing protease 2 40 0.005475 6.553 1 1 +9100 USP10 ubiquitin specific peptidase 10 16 protein-coding UBPO ubiquitin carboxyl-terminal hydrolase 10|deubiquitinating enzyme 10|ubiquitin specific protease 10|ubiquitin thioesterase 10|ubiquitin thiolesterase 10|ubiquitin-specific-processing protease 10 48 0.00657 10.61 1 1 +9101 USP8 ubiquitin specific peptidase 8 15 protein-coding HumORF8|SPG59|UBPY ubiquitin carboxyl-terminal hydrolase 8|deubiquitinating enzyme 8|ubiquitin isopeptidase Y|ubiquitin thiolesterase 8|ubiquitin-specific-processing protease 8 77 0.01054 10.07 1 1 +9103 FCGR2C Fc fragment of IgG receptor IIc (gene/pseudogene) 1 protein-coding CD32|CD32C|CDW32|FCG2|FCRIIC|IGFR2 low affinity immunoglobulin gamma Fc region receptor II-c|Fc fragment of IgG, low affinity IIc, receptor for (CD32)|Fc gamma receptor IIC|IgG Fc receptor II-c|fc-gamma-RIIc|immunoglobulin G Fc receptor II-c 6 0.0008212 5.237 1 1 +9104 RGN regucalcin X protein-coding GNL|HEL-S-41|RC|SMP30 regucalcin|epididymis secretory protein Li 41|gluconolactonase|senescence marker protein 30 11 0.001506 5.574 1 1 +9107 MTMR6 myotubularin related protein 6 13 protein-coding - myotubularin-related protein 6 51 0.006981 9.471 1 1 +9108 MTMR7 myotubularin related protein 7 8 protein-coding - myotubularin-related protein 7 57 0.007802 5.743 1 1 +9110 MTMR4 myotubularin related protein 4 17 protein-coding FYVE-DSP2|ZFYVE11 myotubularin-related protein 4|FYVE domain-containing dual specificity protein phosphatase 2|zinc finger FYVE domain-containing protein 11|zinc finger, FYVE domain containing 11 84 0.0115 9.989 1 1 +9111 NMI N-myc and STAT interactor 2 protein-coding - N-myc-interactor 23 0.003148 8.74 1 1 +9112 MTA1 metastasis associated 1 14 protein-coding - metastasis-associated protein MTA1|metastasis associated gene 1 protein 48 0.00657 10.16 1 1 +9113 LATS1 large tumor suppressor kinase 1 6 protein-coding WARTS|wts serine/threonine-protein kinase LATS1|LATS (large tumor suppressor, Drosophila) homolog 1|LATS, large tumor suppressor, homolog 1|WARTS protein kinase|h-warts|large tumor suppressor homolog 1 98 0.01341 7.966 1 1 +9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 16 protein-coding ATP6D|ATP6DV|P39|VATX|VMA6|VPATPD V-type proton ATPase subunit d 1|32 kDa accessory protein|ATPase, H+ transporting, lysosomal (vacuolar proton pump), member D|ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d1|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|vacuolar proton pump subunit d 1 26 0.003559 11.1 1 1 +9117 SEC22C SEC22 homolog C, vesicle trafficking protein 3 protein-coding SEC22L3 vesicle-trafficking protein SEC22c|SEC22 vesicle trafficking protein homolog C|SEC22 vesicle trafficking protein-like 3|SEC22 vesicle trafficking protein-like protein C|secretion deficient 22C 14 0.001916 8.952 1 1 +9118 INA internexin neuronal intermediate filament protein alpha 10 protein-coding NEF5|NF-66|TXBP-1 alpha-internexin|66 kDa neurofilament protein|alpha-Inx|neurofilament 5 (66kD)|neurofilament-66, tax-binding protein 36 0.004927 4.106 1 1 +9119 KRT75 keratin 75 12 protein-coding K6HF|KB18|PFB keratin, type II cytoskeletal 75|CK-75|K75|cytokeratin type II|cytokeratin-75|hK6hf|keratin 75, type II|keratin-6 hair follicle|type II keratin-18|type II keratin-K6hf|type-II keratin Kb18 51 0.006981 2.106 1 1 +9120 SLC16A6 solute carrier family 16 member 6 17 protein-coding MCT6|MCT7 monocarboxylate transporter 7|breast cancer protein BCY5|monocarboxylate transporter 6|solute carrier family 16, member 6 (monocarboxylic acid transporter 7) 43 0.005886 5.015 1 1 +9121 SLC16A5 solute carrier family 16 member 5 17 protein-coding MCT5|MCT6 monocarboxylate transporter 6|monocarboxylate transporter 5|solute carrier family 16 (monocarboxylate transporter), member 5|solute carrier family 16 (monocarboxylic acid transporters), member 5|solute carrier family 16, member 5 (monocarboxylic acid transporter 6) 26 0.003559 7.091 1 1 +9122 SLC16A4 solute carrier family 16 member 4 1 protein-coding MCT4|MCT5 monocarboxylate transporter 5|MCT 4|MCT 5|monocarboxylate transporter 4|solute carrier family 16 (monocarboxylic acid transporters), member 4|solute carrier family 16, member 4 (monocarboxylic acid transporter 5) 40 0.005475 6.92 1 1 +9123 SLC16A3 solute carrier family 16 member 3 17 protein-coding MCT 3|MCT 4|MCT-3|MCT-4|MCT3|MCT4 monocarboxylate transporter 4|monocarboxylate transporter 3|solute carrier family 16 (monocarboxylate transporter), member 3|solute carrier family 16 (monocarboxylic acid transporters), member 3|solute carrier family 16, member 3 (monocarboxylic acid transporter 4) 22 0.003011 10.03 1 1 +9124 PDLIM1 PDZ and LIM domain 1 10 protein-coding CLIM1|CLP-36|CLP36|HEL-S-112|hCLIM1 PDZ and LIM domain protein 1|LIM domain protein CLP-36|carboxyl terminal LIM domain protein 1|elfin|epididymis secretory protein Li 112 20 0.002737 11.21 1 1 +9125 CNOT9 CCR4-NOT transcription complex subunit 9 2 protein-coding CAF40|CT129|RCD-1|RCD1|RQCD1 cell differentiation protein RCD1 homolog|RCD1 required for cell differentiation1 homolog|cancer/testis antigen 129|protein involved in sexual development 17 0.002327 7.675 1 1 +9126 SMC3 structural maintenance of chromosomes 3 10 protein-coding BAM|BMH|CDLS3|CSPG6|HCAP|SMC3L1 structural maintenance of chromosomes protein 3|SMC protein 3|basement membrane-associated chondroitin proteoglycan|chondroitin sulfate proteoglycan 6 (bamacan)|chromosome-associated polypeptide 80 0.01095 10.32 1 1 +9127 P2RX6 purinergic receptor P2X 6 22 protein-coding P2RXL1|P2X6|P2XM P2X purinoceptor 6|ATP receptor|purinergic receptor P2X, ligand gated ion channel, 6|purinergic receptor P2X-like 1, orphan receptor|purinoceptor P2X6|purinoreceptor P2X6|skeletal muscle-expressed P2X 25 0.003422 3.369 1 1 +9128 PRPF4 pre-mRNA processing factor 4 9 protein-coding HPRP4|HPRP4P|PRP4|Prp4p|RP70|SNRNP60 U4/U6 small nuclear ribonucleoprotein Prp4|PRP4 homolog|PRP4 pre-mRNA processing factor 4 homolog|PRP4/STK/WD splicing factor|U4/U6 snRNP 60 kDa protein|WD splicing factor Prp4 33 0.004517 9.63 1 1 +9129 PRPF3 pre-mRNA processing factor 3 1 protein-coding HPRP3|HPRP3P|PRP3|Prp3p|RP18|SNRNP90 U4/U6 small nuclear ribonucleoprotein Prp3|PRP3 pre-mRNA processing factor 3 homolog|U4/U6 snRNP 90 kDa protein|U4/U6-associated RNA splicing factor|pre-mRNA-splicing factor 3 48 0.00657 9.723 1 1 +9130 FAM50A family with sequence similarity 50 member A X protein-coding 9F|DXS9928E|HXC-26|HXC26|XAP5 protein FAM50A|protein XAP-5 20 0.002737 10.5 1 1 +9131 AIFM1 apoptosis inducing factor, mitochondria associated 1 X protein-coding AIF|CMT2D|CMTX4|COWCK|COXPD6|DFNX5|NADMR|NAMSD|PDCD8 apoptosis-inducing factor 1, mitochondrial|apoptosis-inducing factor, mitochondrion-associated, 1|programmed cell death 8 (apoptosis-inducing factor)|striatal apoptosis-inducing factor|testicular secretory protein Li 4 43 0.005886 10.07 1 1 +9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 1 protein-coding DFNA2|DFNA2A|KV7.4 potassium voltage-gated channel subfamily KQT member 4|potassium channel KQT-like 4|potassium channel subunit alpha KvLQT4|potassium channel, voltage gated KQT-like subfamily Q, member 4|potassium voltage-gated channel, KQT-like subfamily, member 4 50 0.006844 2.884 1 1 +9133 CCNB2 cyclin B2 15 protein-coding HsT17299 G2/mitotic-specific cyclin-B2 17 0.002327 8.125 1 1 +9134 CCNE2 cyclin E2 8 protein-coding CYCE2 G1/S-specific cyclin-E2 34 0.004654 6.914 1 1 +9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 17 protein-coding RAB5EP|RABPT5 rab GTPase-binding effector protein 1|neurocrescin|rabaptin-4|rabaptin-5|rabaptin-5alpha|renal carcinoma antigen NY-REN-17 44 0.006022 10.36 1 1 +9136 RRP9 ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) 3 protein-coding RNU3IP2|U3-55K U3 small nucleolar RNA-interacting protein 2|RNA, U3 small nucleolar interacting protein 2|RRP9 homolog|RRP9, small subunit (SSU) processome component, homolog|U3 small nucleolar ribonucleoprotein-associated 55 kDa protein|U3 snoRNP-associated 55-kDa protein 26 0.003559 8.892 1 1 +9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 19 protein-coding GEF1|LBCL2|LSC|P115-RHOGEF|SUB1.5 rho guanine nucleotide exchange factor 1|115 kDa guanine nucleotide exchange factor|115-kD protein|Lsc homolog|Rho guanine nucleotide exchange factor (GEF) 1|p115RhoGEF 63 0.008623 10.77 1 1 +9139 CBFA2T2 CBFA2/RUNX1 translocation partner 2 20 protein-coding EHT|MTGR1|ZMYND3|p85 protein CBFA2T2|ETO homolog on chromosome 20|ETO homologous on chromosome 20|MTG8-like protein|MTG8-related protein 1|core-binding factor, runt domain, alpha subunit 2; translocated to, 2|myeloid translocation gene-related protein 1|myeloid translocation-related protein 1 48 0.00657 9.681 1 1 +9140 ATG12 autophagy related 12 5 protein-coding APG12|APG12L|FBR93|HAPG12 ubiquitin-like protein ATG12|ATG12 autophagy related 12 homolog|Apg12 (autophagy, yeast) homolog 10 0.001369 9.001 1 1 +9141 PDCD5 programmed cell death 5 19 protein-coding TFAR19 programmed cell death protein 5|TF-1 cell apoptosis-related protein 19|TF1 cell apoptosis-related gene 19|TFAR19 novel apoptosis-related 12 0.001642 9.711 1 1 +9142 TMEM257 transmembrane protein 257 X protein-coding CXorf1 transmembrane protein 257 12 0.001642 0.8967 1 1 +9143 SYNGR3 synaptogyrin 3 16 protein-coding - synaptogyrin-3 9 0.001232 5.369 1 1 +9144 SYNGR2 synaptogyrin 2 17 protein-coding - synaptogyrin-2|cellugyrin 14 0.001916 11.89 1 1 +9145 SYNGR1 synaptogyrin 1 22 protein-coding - synaptogyrin-1 14 0.001916 8.51 1 1 +9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate 17 protein-coding HRS hepatocyte growth factor-regulated tyrosine kinase substrate|human growth factor-regulated tyrosine kinase substrate|protein pp110 50 0.006844 11.18 1 1 +9147 NEMF nuclear export mediator factor 14 protein-coding NY-CO-1|SDCCAG1 nuclear export mediator factor NEMF|antigen NY-CO-1|serologically defined colon cancer antigen 1 56 0.007665 9.543 1 1 +9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 10 protein-coding NEUR1|NEURL|RNF67|bA416N2.1|neu|neu-1 E3 ubiquitin-protein ligase NEURL1|RING finger protein 67|h-neuralized 1|neuralized homolog|neuralized-like protein 1A 37 0.005064 5.329 1 1 +9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B 19 protein-coding AOMS3|MIRK dual specificity tyrosine-phosphorylation-regulated kinase 1B|dual specificity tyrosine-(Y)-phosphorylation regulated kinase 1B|minibrain-related kinase|mirk protein kinase 55 0.007528 9.005 1 1 +9150 CTDP1 CTD phosphatase subunit 1 18 protein-coding CCFDN|FCP1 RNA polymerase II subunit A C-terminal domain phosphatase|CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1|CTD of POLR2A, phosphatase of, subunit 1|TFIIF-associating CTD phosphatase 1|serine phosphatase FCP1a|transcription factor IIF-associating CTD phosphatase 1 56 0.007665 9.122 1 1 +9152 SLC6A5 solute carrier family 6 member 5 11 protein-coding GLYT-2|GLYT2|HKPX3|NET1 sodium- and chloride-dependent glycine transporter 2|solute carrier family 6 (neurotransmitter transporter, glycine), member 5 86 0.01177 0.1219 1 1 +9153 SLC28A2 solute carrier family 28 member 2 15 protein-coding CNT2|HCNT2|HsT17153|SPNT1 sodium/nucleoside cotransporter 2|CNT 2|Na(+)/nucleoside cotransporter 2|SPNT|concentrative nucleoside transporter 2|sodium-coupled nucleoside transporter 2|sodium/purine nucleoside co-transporter|solute carrier family 28 (concentrative nucleoside transporter), member 2|solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 43 0.005886 0.9024 1 1 +9154 SLC28A1 solute carrier family 28 member 1 15 protein-coding CNT1|HCNT1 sodium/nucleoside cotransporter 1|Na(+)/nucleoside cotransporter 1|concentrative nucleoside transporter 1|sodium-coupled nucleoside transporter 1|solute carrier family 28 (concentrative nucleoside transporter), member 1|solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 47 0.006433 2.261 1 1 +9156 EXO1 exonuclease 1 1 protein-coding HEX1|hExoI exonuclease 1|rad2 nuclease family member, homolog of S. cerevisiae exonuclease 1 78 0.01068 6.666 1 1 +9158 FIBP FGF1 intracellular binding protein 11 protein-coding FGFIBP|FIBP-1|TROFAS acidic fibroblast growth factor intracellular-binding protein|aFGF intracellular-binding protein 21 0.002874 10.26 1 1 +9159 PCSK7 proprotein convertase subtilisin/kexin type 7 11 protein-coding LPC|PC7|PC8|SPC7 proprotein convertase subtilisin/kexin type 7|lymphoma proprotein convertase|prohormone convertase 7|prohormone convertase PC7|proprotein convertase 7|proprotein convertase 8|proprotein convertase PC7|proprotein convertase subtilisin/kexin type 7 precursor variant 2|subtilisin/kexin-like protease PC7 63 0.008623 9.592 1 1 +9162 DGKI diacylglycerol kinase iota 7 protein-coding DGK-IOTA diacylglycerol kinase iota|DAG kinase iota|diglyceride kinase iota 130 0.01779 3.2 1 1 +9166 EBAG9 estrogen receptor binding site associated, antigen, 9 8 protein-coding EB9|PDAF receptor-binding cancer antigen expressed on SiSo cells|cancer-associated surface antigen RCAS1|estrogen receptor-binding fragment-associated gene 9 protein 18 0.002464 9.14 1 1 +9167 COX7A2L cytochrome c oxidase subunit 7A2 like 2 protein-coding COX7AR|COX7RP|EB1|SIG81 cytochrome c oxidase subunit 7A-related protein, mitochondrial|COX7a-related protein|cytochrome c oxidase subunit VII-related protein|cytochrome c oxidase subunit VIIa polypeptide 2 like|cytochrome c oxidase subunit VIIa-related protein|estrogen receptor binding CpG island 14 0.001916 10.85 1 1 +9168 TMSB10 thymosin beta 10 2 protein-coding MIG12|TB10 thymosin beta-10|migration-inducing gene 12|migration-inducing protein 12 2 0.0002737 13.93 1 1 +9169 SCAF11 SR-related CTD associated factor 11 12 protein-coding CASP11|SFRS2IP|SIP1|SRRP129|SRSF2IP protein SCAF11|CTD-associated SR protein 11|SC35-interacting protein 1|SFRS2-interacting protein|SR-related and CTD-associated factor 11|SRSF2-interacting protein|renal carcinoma antigen NY-REN-40|serine/arginine-rich splicing factor 2-interacting protein|splicing factor, arginine/serine-rich 2-interacting protein|splicing regulatory protein 129 89 0.01218 10.97 1 1 +9170 LPAR2 lysophosphatidic acid receptor 2 19 protein-coding EDG-4|EDG4|LPA-2|LPA2 lysophosphatidic acid receptor 2|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 16 0.00219 8.237 1 1 +9172 MYOM2 myomesin 2 8 protein-coding TTNAP myomesin-2|165 kDa connectin-associated protein|165 kDa titin-associated protein|M-band protein|M-protein|myomesin (M-protein) 2, 165kDa|myomesin family member 2|titin-associated protein, 165 kD 156 0.02135 5.049 1 1 +9173 IL1RL1 interleukin 1 receptor like 1 2 protein-coding DER4|FIT-1|IL33R|ST2|ST2L|ST2V|T1 interleukin-1 receptor-like 1|growth stimulation-expressed|homolog of mouse growth stimulation-expressed|interleukin 1 receptor-related protein 57 0.007802 3.567 1 1 +9175 MAP3K13 mitogen-activated protein kinase kinase kinase 13 3 protein-coding LZK|MEKK13|MLK mitogen-activated protein kinase kinase kinase 13|leucine zipper-bearing kinase|mixed lineage kinase 78 0.01068 5.479 1 1 +9177 HTR3B 5-hydroxytryptamine receptor 3B 11 protein-coding 5-HT3B 5-hydroxytryptamine receptor 3B|5-HT3-B|5-hydroxytryptamine (serotonin) receptor 3B, ionotropic|5-hydroxytryptamine 3 receptor B subunit|serotonin-gated ion channel subunit 46 0.006296 0.379 1 1 +9179 AP4M1 adaptor related protein complex 4 mu 1 subunit 7 protein-coding CPSQ3|MU-4|MU-ARP2|SPG50 AP-4 complex subunit mu-1|AP-4 adaptor complex mu subunit|adapter-related protein complex 4 mu-1 subunit|adapter-related protein complex 4 subunit mu-1|adaptor-related protein complex 4 subunit mu-1|adaptor-related protein complex AP-4 mu4 subunit|mu subunit of AP-4|mu-adaptin-related protein-2|mu4|mu4-adaptin 33 0.004517 8.592 1 1 +9180 OSMR oncostatin M receptor 5 protein-coding IL-31R-beta|IL-31RB|OSMRB|PLCA1 oncostatin-M-specific receptor subunit beta|IL-31 receptor subunit beta|IL-31R subunit beta|interleukin-31 receptor subunit beta|oncostatin-M specific receptor beta subunit 70 0.009581 9.133 1 1 +9181 ARHGEF2 Rho/Rac guanine nucleotide exchange factor 2 1 protein-coding GEF|GEF-H1|GEFH1|LFP40|P40 rho guanine nucleotide exchange factor 2|Rho/Rac guanine nucleotide exchange factor (GEF) 2|guanine nucleotide exchange factor H1|microtubule-regulated Rho-GEF|proliferating cell nucleolar antigen p40 72 0.009855 10.62 1 1 +9182 RASSF9 Ras association domain family member 9 12 protein-coding P-CIP1|PAMCI|PCIP1 ras association domain-containing protein 9|PAM COOH-terminal interactor protein 1|Ras association (RalGDS/AF-6) domain family (N-terminal) member 9|peptidylglycine alpha-amidating monooxygenase COOH-terminal interactor protein-1 41 0.005612 4.37 1 1 +9183 ZW10 zw10 kinetochore protein 11 protein-coding HZW10|KNTC1AP centromere/kinetochore protein zw10 homolog|ZW10 homolog, centromere/kinetochore protein|ZW10, kinetochore associated, homolog|zeste white 10 homolog 52 0.007117 8.61 1 1 +9184 BUB3 BUB3, mitotic checkpoint protein 10 protein-coding BUB3L|hBUB3 mitotic checkpoint protein BUB3|BUB3 budding uninhibited by benzimidazoles 3 homolog|budding uninhibited by benomyl|budding uninhibited by benzimidazoles 3 homolog|mitotic checkpoint component|testicular tissue protein Li 27 21 0.002874 10.9 1 1 +9185 REPS2 RALBP1 associated Eps domain containing 2 X protein-coding POB1 ralBP1-associated Eps domain-containing protein 2|RALBP1-interacting protein 2|partner of Ral-binding protein 1|partner of RalBP1 44 0.006022 8.497 1 1 +9187 SLC24A1 solute carrier family 24 member 1 15 protein-coding CSNB1D|HsT17412|NCKX|NCKX1|RODX sodium/potassium/calcium exchanger 1|Na(+)/K(+)/Ca(2+)-exchange protein 1|retinal rod Na+/Ca+/K+ exchanger|solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 64 0.00876 7.997 1 1 +9188 DDX21 DExD-box helicase 21 10 protein-coding GUA|GURDB|RH-II/GU|RH-II/GuA nucleolar RNA helicase 2|DEAD (Asp-Glu-Ala-Asp) box helicase 21|DEAD (Asp-Glu-Ala-Asp) box polypeptide 21|DEAD box protein 21|DEAD-box helicase 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 Gu|nucleolar RNA helicase II 42 0.005749 10.44 1 1 +9189 ZBED1 zinc finger BED-type containing 1 X|Y protein-coding ALTE|DREF|TRAMP|hDREF zinc finger BED domain-containing protein 1|Ac-like transposable element|BED-type zinc finger domain-containing protein 1|DNA replication-related element binding factor|dREF homolog 10.58 0 1 +9191 DEDD death effector domain containing 1 protein-coding CASP8IP1|DEDD1|DEFT|FLDED1|KE05 death effector domain-containing protein|DEDPro1|FLDED-1|death effector domain-containing testicular molecule 22 0.003011 9.789 1 1 +9194 SLC16A7 solute carrier family 16 member 7 12 protein-coding MCT2 monocarboxylate transporter 2|solute carrier family 16 (monocarboxylate transporter), member 7|solute carrier family 16, member 7 (monocarboxylic acid transporter 2) 39 0.005338 4.586 1 1 +9196 KCNAB3 potassium voltage-gated channel subfamily A regulatory beta subunit 3 17 protein-coding AKR6A9|KCNA3.1B|KCNA3B|KV-BETA-3 voltage-gated potassium channel subunit beta-3|K(+) channel subunit beta-3|potassium channel, voltage gated subfamily A regulatory beta subunit 3|potassium channel, voltage-dependent, beta-3 subunit|potassium voltage-gated channel, shaker-related subfamily, beta member 3 16 0.00219 3.63 1 1 +9197 SLC33A1 solute carrier family 33 member 1 3 protein-coding ACATN|AT-1|AT1|CCHLND|SPG42 acetyl-coenzyme A transporter 1|solute carrier family 33 (acetyl-CoA transporter), member 1 28 0.003832 9.15 1 1 +9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 10 protein-coding CAP|PTPLA very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 1|cementum attachment protein|protein tyrosine phosphatase-like (proline instead of catalytic arginine), member A|very-long-chain (3R)-3-hydroxyacyl-[acyl-carrier protein] dehydratase 1 48 0.00657 5.347 1 1 +9201 DCLK1 doublecortin like kinase 1 13 protein-coding CL1|CLICK1|DCAMKL1|DCDC3A|DCLK serine/threonine-protein kinase DCLK1|doublecortin domain-containing protein 3A|doublecortin-like and CAM kinase-like 1 117 0.01601 7.106 1 1 +9202 ZMYM4 zinc finger MYM-type containing 4 1 protein-coding CDIR|MYM|ZNF198L3|ZNF262 zinc finger MYM-type protein 4|cell death inhibiting RNA|zinc finger protein 262|zinc finger, MYM-type 4 95 0.013 10.29 1 1 +9203 ZMYM3 zinc finger MYM-type containing 3 X protein-coding DXS6673E|MYM|XFIM|ZNF198L2|ZNF261 zinc finger MYM-type protein 3|zinc finger protein 261|zinc finger, MYM-type 3 109 0.01492 10.02 1 1 +9204 ZMYM6 zinc finger MYM-type containing 6 1 protein-coding Buster2|MYM|ZBED7|ZNF198L4|ZNF258 zinc finger MYM-type protein 6|transposon-derived Buster2 transposase-like protein|zinc finger protein 258|zinc finger, BED-type containing 7|zinc finger, MYM-type 6 81 0.01109 8.657 1 1 +9205 ZMYM5 zinc finger MYM-type containing 5 13 protein-coding HSPC050|MYM|ZNF198L1|ZNF237 zinc finger MYM-type protein 5|zinc finger protein 198-like 1|zinc finger protein 237|zinc finger, MYM-type 5 46 0.006296 7.966 1 1 +9208 LRRFIP1 LRR binding FLII interacting protein 1 2 protein-coding FLAP-1|FLAP1|FLIIAP1|GCF-2|GCF2|HUFI-1|TRIP leucine-rich repeat flightless-interacting protein 1|GC-binding factor 2|LRR FLII-interacting protein 1|NEDD8-conjugating enzyme|TAR RNA-interacting protein|leucine rich repeat (in FLII) interacting protein 1 51 0.006981 11.2 1 1 +9209 LRRFIP2 LRR binding FLII interacting protein 2 3 protein-coding HUFI-2 leucine-rich repeat flightless-interacting protein 2|LRR FLII-interacting protein 2|leucine rich repeat (in FLII) interacting protein 2 53 0.007254 9.844 1 1 +9210 BMP15 bone morphogenetic protein 15 X protein-coding GDF9B|ODG2|POF4 bone morphogenetic protein 15|growth/differentiation factor 9B 47 0.006433 0.08334 1 1 +9211 LGI1 leucine rich glioma inactivated 1 10 protein-coding ADLTE|ADPAEF|ADPEAF|EPITEMPIN|EPT|ETL1|IB1099 leucine-rich glioma-inactivated protein 1|epitempin-1 45 0.006159 1.647 1 1 +9212 AURKB aurora kinase B 17 protein-coding AIK2|AIM-1|AIM1|ARK2|AurB|IPL1|PPP1R48|STK12|STK5|aurkb-sv1|aurkb-sv2 aurora kinase B|ARK-2|STK-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 26 0.003559 7.254 1 1 +9213 XPR1 xenotropic and polytropic retrovirus receptor 1 1 protein-coding IBGC6|SYG1|X3 xenotropic and polytropic retrovirus receptor 1|X-receptor|protein SYG1 homolog|xenotropic and polytropic murine leukemia virus receptor X3 57 0.007802 10.36 1 1 +9214 FCMR Fc fragment of IgM receptor 1 protein-coding FAIM3|TOSO fas apoptotic inhibitory molecule 3|Fc mu receptor|IgM Fc fragment receptor|IgM Fc receptor|immunoglobulin mu Fc receptor|regulator of Fas-induced apoptosis Toso 31 0.004243 6.847 1 1 +9215 LARGE1 LARGE xylosyl- and glucuronyltransferase 1 22 protein-coding LARGE|MDC1D|MDDGA6|MDDGB6 glycosyltransferase-like protein LARGE1|acetylglucosaminyltransferase-like 1A|acetylglucosaminyltransferase-like protein|like-glycosyltransferase 71 0.009718 8.66 1 1 +9217 VAPB VAMP associated protein B and C 20 protein-coding ALS8|VAMP-B|VAP-B vesicle-associated membrane protein-associated protein B/C|VAMP (vesicle-associated membrane protein)-associated protein B and C|VAMP-associated 33 kDa protein 19 0.002601 10.15 1 1 +9218 VAPA VAMP associated protein A 18 protein-coding VAP-33|VAP-A|VAP33|hVAP-33 vesicle-associated membrane protein-associated protein A|33 kDa VAMP-associated protein|VAMP (vesicle-associated membrane protein)-associated protein A, 33kDa|VAMP-A 22 0.003011 11.63 1 1 +9219 MTA2 metastasis associated 1 family member 2 11 protein-coding MTA1L1|PID metastasis-associated protein MTA2|MTA1-L1 protein|metastasis -associated gene 1-like 1|metastasis associated gene family, member 2|metastasis-associated 1-like 1|metastasis-associated protein 2|p53 target protein in deacetylase complex 53 0.007254 11.05 1 1 +9220 TIAF1 TGFB1-induced anti-apoptotic factor 1 17 protein-coding MAJN|SPR210 TGFB1-induced anti-apoptotic factor 1|12 kDa TGF-beta-1-induced antiapoptotic factor|TGF-beta-1-induced antiapoptotic factor 1|molecule associated with Jak-3 N-terminal 18 0.002464 8.626 1 1 +9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 10 protein-coding NOPP130|NOPP140|NS5ATP13|P130 nucleolar and coiled-body phosphoprotein 1|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 44 0.006022 11.2 1 1 +9223 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 3 protein-coding AIP-3|AIP3|BAIAP1|BAP-1|BAP1|MAGI-1|Magi1d|TNRC19|WWP3 membrane-associated guanylate kinase, WW and PDZ domain-containing protein 1|BAI1-associated protein 1|WW domain-containing protein 3|atrophin-1-interacting protein 3|membrane-associated guanylate kinase inverted 1|trinucleotide repeat-containing gene 19 protein 127 0.01738 8.737 1 1 +9227 LRAT lecithin retinol acyltransferase (phosphatidylcholine--retinol O-acyltransferase) 4 protein-coding LCA14 lecithin retinol acyltransferase 25 0.003422 4.45 1 1 +9228 DLGAP2 DLG associated protein 2 8 protein-coding DAP2|SAPAP2 disks large-associated protein 2|PSD-95/SAP90-binding protein 2|SAP90/PSD-95-associated protein 2|discs large homolog associated protein 2|discs large-associated protein 2|discs, large (Drosophila) homolog-associated protein 2 118 0.01615 2.32 1 1 +9229 DLGAP1 DLG associated protein 1 18 protein-coding DAP-1|DAP-1-ALPHA|DAP-1-BETA|DAP1|DLGAP1A|DLGAP1B|GKAP|SAPAP1 disks large-associated protein 1|PSD-95/SAP90 binding protein 1|SAP90/PSD-95-associated protein 1|discs large homolog associated protein 1|discs, large (Drosophila) homolog-associated protein 1|guanylate kinase-associated protein 100 0.01369 3.862 1 1 +9230 RAB11B RAB11B, member RAS oncogene family 19 protein-coding H-YPT3 ras-related protein Rab-11B|GTP-binding protein YPT3|RAB11B, member of RAS oncogene family 15 0.002053 11.3 1 1 +9231 DLG5 discs large MAGUK scaffold protein 5 10 protein-coding LP-DLG|P-DLG5|PDLG disks large homolog 5|discs large protein LP-DLG|discs large protein P-dlg|discs, large homolog 5|large type of P-DLG|placenta and prostate DLG 116 0.01588 10.82 1 1 +9232 PTTG1 pituitary tumor-transforming 1 5 protein-coding EAP1|HPTTG|PTTG|TUTR1 securin|ESP1-associated protein 1|pituitary tumor-transforming gene 1 protein|tumor-transforming protein 1 13 0.001779 8.634 1 1 +9235 IL32 interleukin 32 16 protein-coding IL-32alpha|IL-32beta|IL-32delta|IL-32gamma|NK4|TAIF|TAIFa|TAIFb|TAIFc|TAIFd 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 58 0.007939 10.33 1 1 +9236 CCPG1 cell cycle progression 1 15 protein-coding CPR8 cell cycle progression protein 1|cell cycle progression restoration protein 8 56 0.007665 10.62 1 1 +9238 TBRG4 transforming growth factor beta regulator 4 7 protein-coding CPR2|FASTKD4 protein TBRG4|FAST kinase domain-containing protein 4|FAST kinase domains 4|H_TD2522F11.8|cell cycle progression protein 2|cell cycle progression restoration protein 2 36 0.004927 10.39 1 1 +9240 PNMA1 paraneoplastic Ma antigen 1 14 protein-coding MA1 paraneoplastic antigen Ma1|37 kDa neuronal protein|neuron- and testis-specific protein 1|paraneoplastic neuronal antigen MA1 23 0.003148 10.03 1 1 +9241 NOG noggin 17 protein-coding SYM1|SYNS1|SYNS1A noggin|symphalangism 1 (proximal) 13 0.001779 3.131 1 1 +9242 MSC musculin 8 protein-coding ABF-1|ABF1|MYOR|bHLHa22 musculin|activated B-cell factor 1, homolog of mouse musculin|activated B-cell factor-1|class A basic helix-loop-helix protein 22 30 0.004106 7.015 1 1 +9244 CRLF1 cytokine receptor like factor 1 19 protein-coding CISS|CISS1|CLF|CLF-1|NR6|zcytor5 cytokine receptor-like factor 1|class I cytokine receptor|cytokine type 1 receptor CRLP-1|cytokine-like factor 1 30 0.004106 5.65 1 1 +9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type 15 protein-coding C2/4GnT|C24GNT|C2GNT2|C2GNTM|GNTM beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 3|C2GnT-mucin type|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 21 0.002874 4.812 1 1 +9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 11 protein-coding RIG-B|UBCH8 ubiquitin/ISG15-conjugating enzyme E2 L6|E2 ubiquitin-conjugating enzyme L6|retinoic acid induced gene B protein|ubiquitin carrier protein L6|ubiquitin conjugating enzyme E2L 6|ubiquitin-protein ligase L6 12 0.001642 10.82 1 1 +9247 GCM2 glial cells missing homolog 2 6 protein-coding GCMB|hGCMb chorion-specific transcription factor GCMb|GCM motif protein 2|glial cells missing 2|glial cells missing homolog b|glide/gcm protein homolog 48 0.00657 0.199 1 1 +9248 GPR50 G protein-coupled receptor 50 X protein-coding H9|Mel1c melatonin-related receptor 90 0.01232 0.6983 1 1 +9249 DHRS3 dehydrogenase/reductase 3 1 protein-coding DD83.1|RDH17|Rsdr1|SDR1|SDR16C1|retSDR1 short-chain dehydrogenase/reductase 3|dehydrogenase/reductase (SDR family) member 3|dehydrogenase/reductase member 3|retinal short-chain dehydrogenase/reductase 1|retinol dehydrogenase 17|short chain dehydrogenase/reductase family 16C member 1|short-chain dehydrogenase/reductase 1 16 0.00219 10.63 1 1 +9252 RPS6KA5 ribosomal protein S6 kinase A5 14 protein-coding MSK1|MSPK1|RLPK ribosomal protein S6 kinase alpha-5|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, 90kDa, polypeptide 5 64 0.00876 6.809 1 1 +9253 NUMBL NUMB like, endocytic adaptor protein 19 protein-coding CAG3A|CTG3a|NBL|NUMB-R|NUMBLIKE|NUMBR|TNRC23 numb-like protein|numb homolog (Drosophila)-like|numb homolog-like|numb-related protein 39 0.005338 8.776 1 1 +9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 3 protein-coding CACNA2D voltage-dependent calcium channel subunit alpha-2/delta-2|alpha 2 delta calcium channel subunit|calcium channel, voltage-dependent, alpha 2/delta subunit 2|gene 26|voltage-gated calcium channel subunit alpha-2/delta-2 51 0.006981 6.272 1 1 +9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 4 protein-coding EMAP2|EMAPII|HLD3|SCYE1|p43 aminoacyl tRNA synthase complex-interacting multifunctional protein 1|ARS-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) 17 0.002327 10.03 1 1 +9256 TSPOAP1 TSPO associated protein 1 17 protein-coding BZRAP1|PBR-IP|PRAX-1|PRAX1|RIM-BP1|RIMBP1 peripheral-type benzodiazepine receptor-associated protein 1|RIMS-binding protein 1|benzodiazapine receptor peripheral-associated protein 1|benzodiazepine receptor (peripheral) associated protein 1|peripheral benzodiazepine receptor-interacting protein 151 0.02067 7.908 1 1 +9258 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 8 protein-coding LRRC65|MASL1 malignant fibrous histiocytoma-amplified sequence 1|MFH-amplified sequences with leucine-rich tandem repeats 1|leucine rich repeat containing 65|malignant fibrous histiocytoma-amplified sequence with leucine-rich tandem repeats 1|malignant fibrous histiocytoma-amplified sequences with leucine-rich tandem repeats 1 53 0.007254 8.293 1 1 +9260 PDLIM7 PDZ and LIM domain 7 5 protein-coding LMP1|LMP3 PDZ and LIM domain protein 7|1110003B01Rik|LIM domain protein|LMP|Lim mineralization protein 3|PDZ and LIM domain 7 (enigma)|protein enigma 25 0.003422 9.963 1 1 +9261 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 1 protein-coding MAPKAP-K2|MK-2|MK2 MAP kinase-activated protein kinase 2|MAPK-activated protein kinase 2|MAPKAP kinase 2 23 0.003148 11.54 1 1 +9262 STK17B serine/threonine kinase 17b 2 protein-coding DRAK2 serine/threonine-protein kinase 17B|DAP kinase-related apoptosis-inducing protein kinase 2|death-associated protein kinase-related 2 39 0.005338 9.4 1 1 +9263 STK17A serine/threonine kinase 17a 7 protein-coding DRAK1 serine/threonine-protein kinase 17A|DAP kinase-related apoptosis-inducing protein kinase 1|death-associated protein kinase-related 1|serine/threonine kinase 17a (apoptosis-inducing) 18 0.002464 9.366 1 1 +9265 CYTH3 cytohesin 3 7 protein-coding ARNO3|GRP1|PSCD3|cytohesin-3 cytohesin-3|ARF nucleotide-binding site opener 3|PH, SEC7 and coiled-coil domain-containing protein 3|general receptor of phosphoinositides 1|pleckstrin homology, Sec7 and coiled-coil domains 3 34 0.004654 9.609 1 1 +9266 CYTH2 cytohesin 2 19 protein-coding ARNO|CTS18|CTS18.1|PSCD2|PSCD2L|SEC7L|Sec7p-L|Sec7p-like|cytohesin-2 cytohesin-2|ARF exchange factor|ARF nucleotide-binding site opener|CTC-273B12.8|PH, SEC7 and coiled-coil domain-containing protein 2|pleckstrin homology, Sec7 and coiled-coil domains 2|pleckstrin homology, Sec7 and coiled/coil domains 2 (cytohesin-2) 25 0.003422 10.57 1 1 +9267 CYTH1 cytohesin 1 17 protein-coding B2-1|CYTOHESIN-1|D17S811E|PSCD1|SEC7 cytohesin-1|PH, SEC7 and coiled-coil domain-containing protein 1|SEC7 homolog B2-1|cytoadhesin 1|homolog of secretory protein SEC7|pleckstrin homology, Sec7 and coiled-coil domains 1 31 0.004243 10.16 1 1 +9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 2 protein-coding ICAP-1A|ICAP-1B|ICAP-1alpha|ICAP1|ICAP1A|ICAP1B integrin beta-1-binding protein 1|bodenin|integrin cytoplasmic domain-associated protein 1|integrin cytoplasmic domain-associated protein 1-alpha|integrin cytoplasmic domain-associated protein 1-beta 13 0.001779 9.828 1 1 +9271 PIWIL1 piwi like RNA-mediated gene silencing 1 12 protein-coding CT80.1|HIWI|MIWI|PIWI piwi-like protein 1|piwi homolog 105 0.01437 1.661 1 1 +9274 BCL7C BCL tumor suppressor 7C 16 protein-coding - B-cell CLL/lymphoma 7 protein family member C|B-cell CLL/lymphoma 7C 14 0.001916 9.627 1 1 +9275 BCL7B BCL tumor suppressor 7B 7 protein-coding - B-cell CLL/lymphoma 7 protein family member B|B-cell CLL/lymphoma 7B 5 0.0006844 10.13 1 1 +9276 COPB2 coatomer protein complex subunit beta 2 3 protein-coding beta'-COP coatomer subunit beta'|beta'-coat protein|betaprime-COP|coatomer binding complex, beta prime subunit|coatomer protein complex subunit beta prime|coatomer protein complex, subunit beta 2 (beta prime)|p102 53 0.007254 11.77 1 1 +9277 WDR46 WD repeat domain 46 6 protein-coding BING4|C6orf11|FP221|UTP7 WD repeat-containing protein 46|WD repeat-containing protein BING4 30 0.004106 10.03 1 1 +9278 ZBTB22 zinc finger and BTB domain containing 22 6 protein-coding BING1|ZBTB22A|ZNF297|ZNF297A|fru|fruitless zinc finger and BTB domain-containing protein 22|zinc finger and BTB domain-containing protein 22A|zinc finger protein 297 56 0.007665 9.151 1 1 +9282 MED14 mediator complex subunit 14 X protein-coding CRSP150|CRSP2|CSRP|CXorf4|DRIP150|EXLM1|RGR1|TRAP170 mediator of RNA polymerase II transcription subunit 14|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|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 77 0.01054 10.25 1 1 +9283 GPR37L1 G protein-coupled receptor 37 like 1 1 protein-coding ET(B)R-LP-2|ETBR-LP-2 prosaposin receptor GPR37L1|endothelin B receptor-like protein 2|endothelin type b receptor-like protein 2 34 0.004654 3.627 1 1 +9284 NPIPA1 nuclear pore complex interacting protein family member A1 16 protein-coding NPIP|NPIPA|morpheus nuclear pore complex-interacting protein family member A1|nuclear pore complex-interacting protein A type 11 0.001506 9.155 1 1 +9287 TAAR2 trace amine associated receptor 2 6 protein-coding GPR58|taR-2 trace amine-associated receptor 2|G protein-coupled receptor 58 34 0.004654 0.01054 1 1 +9289 ADGRG1 adhesion G protein-coupled receptor G1 16 protein-coding BFPP|BPPR|GPR56|TM7LN4|TM7XN1 adhesion G-protein coupled receptor G1|7-transmembrane protein with no EGF-like N-terminal domains-1|G protein-coupled receptor 56|testicular tissue protein Li 77 34 0.004654 11.77 1 1 +9290 GPR55 G protein-coupled receptor 55 2 protein-coding LPIR1 G-protein coupled receptor 55 32 0.00438 3.293 1 1 +9293 GPR52 G protein-coupled receptor 52 1 protein-coding - probable G-protein coupled receptor 52 32 0.00438 0.3393 1 1 +9294 S1PR2 sphingosine-1-phosphate receptor 2 19 protein-coding AGR16|DFNB68|EDG-5|EDG5|Gpcr13|H218|LPB2|S1P2 sphingosine 1-phosphate receptor 2|CTD-2369P2.2|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 Edg-5 18 0.002464 7.937 1 1 +9295 SRSF11 serine and arginine rich splicing factor 11 1 protein-coding NET2|SFRS11|dJ677H15.2|p54 serine/arginine-rich splicing factor 11|SR splicing factor 11|arginine-rich 54 kDa nuclear protein|splicing factor p54|splicing factor, arginine/serine-rich 11 38 0.005201 11.2 1 1 +9296 ATP6V1F ATPase H+ transporting V1 subunit F 7 protein-coding ATP6S14|VATF|Vma7 V-type proton ATPase subunit F|ATPase, H+ transporting, lysosomal 14kDa, V1 subunit F|ATPase, vacuolar, 14 kD|H(+)-transporting two-sector ATPase, 14kD subunit|V-ATPase 14 kDa subunit|V-ATPase F subunit|V-ATPase subunit F|adenosinetriphosphatase 14k chain|vacuolar ATP synthase subunit F|vacuolar proton pump F subunit|vacuolar proton pump subunit F 10 0.001369 11.05 1 1 +9297 SNORD29 small nucleolar RNA, C/D box 29 11 snoRNA RNU29|U29 RNA, U29 small nucleolar 0 0 1 +9298 SNORD31 small nucleolar RNA, C/D box 31 11 snoRNA RNU31|SNORD31A|U31 RNA, U31 small nucleolar 0 0 1 +9299 SNORD30 small nucleolar RNA, C/D box 30 11 snoRNA RNU30|U30 RNA, U30 small nucleolar 1 0.0001369 0 1 1 +9300 SNORD28 small nucleolar RNA, C/D box 28 11 snoRNA RNU28|SNORD28A|U28 RNA, U28 small nucleolar 0 0 1 +9301 SNORD27 small nucleolar RNA, C/D box 27 11 snoRNA RNU27|U27 RNA, U27 small nucleolar 0 0 1 +9302 SNORD26 small nucleolar RNA, C/D box 26 11 snoRNA RNU26|U26 RNA, U26 small nucleolar 0 0 1 +9303 SNORD25 small nucleolar RNA, C/D box 25 11 snoRNA RNU25|U25 RNA, U25 small nucleolar 0 0 1 +9304 SNORD22 small nucleolar RNA, C/D box 22 11 snoRNA RNU22|U22 RNA, U22 small nucleolar 1 0.0001369 0.3561 1 1 +9306 SOCS6 suppressor of cytokine signaling 6 18 protein-coding CIS-4|CIS4|HSPC060|SOCS-4|SOCS-6|SOCS4|SSI4|STAI4|STATI4 suppressor of cytokine signaling 6|STAT induced STAT inhibitor-4|cytokine-inducible SH2 protein 4|suppressor of cytokine signaling 4 50 0.006844 9.312 1 1 +9308 CD83 CD83 molecule 6 protein-coding BL11|HB15 CD83 antigen|B-cell activation protein|CD83 antigen (activated B lymphocytes, immunoglobulin superfamily)|cell surface protein HB15|cell-surface glycoprotein|hCD83 19 0.002601 8.375 1 1 +9310 ZNF235 zinc finger protein 235 19 protein-coding ANF270|HZF6|ZFP93|ZNF270 zinc finger protein 235|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 51 0.006981 6.235 1 1 +9311 ASIC3 acid sensing ion channel subunit 3 7 protein-coding ACCN3|DRASIC|SLNAC1|TNaC1 acid-sensing ion channel 3|acid sensing (proton gated) 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 47 0.006433 4.164 1 1 +9312 KCNB2 potassium voltage-gated channel subfamily B member 2 8 protein-coding KV2.2 potassium voltage-gated channel subfamily B member 2|delayed rectifier potassium channel protein|potassium channel Kv2.2|potassium channel, voltage gated Shab related subfamily B, member 2|potassium voltage-gated channel, Shab-related subfamily, member 2|voltage-gated potassium channel subunit Kv2.2 178 0.02436 1.723 1 1 +9313 MMP20 matrix metallopeptidase 20 11 protein-coding AI2A2|MMP-20 matrix metalloproteinase-20|enamel metalloproteinase|matrix metalloproteinase 20 (enamelysin) 44 0.006022 0.3771 1 1 +9314 KLF4 Kruppel like factor 4 9 protein-coding EZF|GKLF Krueppel-like factor 4|Kruppel-like factor 4 (gut)|endothelial Kruppel-like zinc finger protein|epithelial zinc finger protein EZF|gut Kruppel-like factor|gut-enriched krueppel-like factor 38 0.005201 9.111 1 1 +9315 NREP neuronal regeneration related protein 5 protein-coding C5orf13|D4S114|P311|PRO1873|PTZ17|SEZ17 neuronal regeneration-related protein|neuronal protein 3.1|neuronal regeneration related protein homolog|protein p311 10 0.001369 10.14 1 1 +9317 PTER phosphotriesterase related 10 protein-coding HPHRP|RPR-1 phosphotriesterase-related protein|parathion hydrolase-related protein|resiniferatoxin-binding, phosphotriesterase-related 32 0.00438 8.215 1 1 +9318 COPS2 COP9 signalosome subunit 2 15 protein-coding ALIEN|CSN2|SGN2|TRIP15 COP9 signalosome complex subunit 2|COP9 constitutive photomorphogenic homolog subunit 2|JAB1-containing signalosome subunit 2|TR-interacting protein 15|TRIP-15|alien homolog|signalosome subunit 2|thyroid receptor-interacting protein 15 43 0.005886 10.49 1 1 +9319 TRIP13 thyroid hormone receptor interactor 13 5 protein-coding 16E1BP pachytene checkpoint protein 2 homolog|16E1-BP|HPV16 E1 protein binding protein|TR-interacting protein 13|TRIP-13|human papillomavirus type 16 E1 protein-binding protein|thyroid receptor-interacting protein 13 32 0.00438 7.714 1 1 +9320 TRIP12 thyroid hormone receptor interactor 12 2 protein-coding TRIP-12|ULF E3 ubiquitin-protein ligase TRIP12|E3 ubiquitin-protein ligase for Arf|TR-interacting protein 12|probable E3 ubiquitin-protein ligase TRIP12|thyroid receptor interacting protein 12 140 0.01916 11.4 1 1 +9321 TRIP11 thyroid hormone receptor interactor 11 14 protein-coding ACG1A|CEV14|GMAP-210|GMAP210|TRIP-11|TRIP230 thyroid receptor-interacting protein 11|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 115 0.01574 9.368 1 1 +9322 TRIP10 thyroid hormone receptor interactor 10 19 protein-coding CIP4|HSTP|STOT|STP|TRIP-10 cdc42-interacting protein 4|TR-interacting protein 10|protein Felic|salt tolerant protein|salt tolerator|thyroid receptor-interacting protein 10 49 0.006707 9.878 1 1 +9324 HMGN3 high mobility group nucleosomal binding domain 3 6 protein-coding PNAS-24|PNAS-25|TRIP7 high mobility group nucleosome-binding domain-containing protein 3|TR-interacting protein 7|thyroid hormone receptor interacting protein 7 7 0.0009581 10.14 1 1 +9325 TRIP4 thyroid hormone receptor interactor 4 15 protein-coding ASC-1|ASC1|HsT17391|MDCDC|SMABF1|ZC2HC5 activating signal cointegrator 1|TR-interacting protein 4|TRIP-4|thyroid receptor-interacting protein 4|zinc finger, C2HC5-type 40 0.005475 8.908 1 1 +9326 ZNHIT3 zinc finger HIT-type containing 3 17 protein-coding TRIP3 zinc finger HIT domain-containing protein 3|HNF-4a coactivator|TR-interacting protein 3|TRIP-3|thyroid hormone receptor interactor 3|thyroid receptor interacting protein 3|zinc finger, HIT domain containing 3|zinc finger, HIT type 3 9 0.001232 9.186 1 1 +9328 GTF3C5 general transcription factor IIIC subunit 5 9 protein-coding TFIIIC63|TFIIICepsilon|TFiiiC2-63 general transcription factor 3C polypeptide 5|TF3C-epsilon|TFIIIC 63 kDa subunit|general transcription factor IIIC, polypeptide 5, 63kDa|transcription factor IIIC 63 kDa subunit|transcription factor IIIC subunit epsilon|transcription factor IIIC, 63 kD 42 0.005749 10.29 1 1 +9329 GTF3C4 general transcription factor IIIC subunit 4 9 protein-coding KAT12|TF3C-delta|TFIII90|TFIIIC290|TFIIIC90|TFIIICDELTA general transcription factor 3C polypeptide 4|TFIIIC 90 kDa subunit|general transcription factor 3C 4|general transcription factor IIIC, polypeptide 4, 90kDa|transcription factor IIIC 90 kDa subunit|transcription factor IIIC subunit delta 41 0.005612 8.489 1 1 +9330 GTF3C3 general transcription factor IIIC subunit 3 2 protein-coding TFIIIC102|TFIIICgamma|TFiiiC2-102 general transcription factor 3C polypeptide 3|TF3C-gamma|TFIIIC 102 kDa subunit|general transcription factor IIIC, polypeptide 3, 102kDa|transcription factor IIIC subunit gamma 59 0.008076 9.173 1 1 +9331 B4GALT6 beta-1,4-galactosyltransferase 6 18 protein-coding B4Gal-T6|beta4Gal-T6 beta-1,4-galactosyltransferase 6|UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 6|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 6|UDP-Gal:glucosylceramide beta-1,4-galactosyltransferase|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 6|beta-1,4-GalTase 6|beta4GalT-VI 32 0.00438 6.809 1 1 +9332 CD163 CD163 molecule 12 protein-coding M130|MM130|SCARI1 scavenger receptor cysteine-rich type 1 protein M130|hemoglobin scavenger receptor|macrophage-associated antigen 162 0.02217 8.97 1 1 +9333 TGM5 transglutaminase 5 15 protein-coding PSS2|TGASE5|TGASEX|TGM6|TGMX|TGX protein-glutamine gamma-glutamyltransferase 5|TG(X)|TGase X|TGase-5|transglutaminase V|transglutaminase X 65 0.008897 1.964 1 1 +9334 B4GALT5 beta-1,4-galactosyltransferase 5 20 protein-coding B4Gal-T5|BETA4-GALT-IV|beta4Gal-T5|beta4GalT-V|gt-V beta-1,4-galactosyltransferase 5|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 V|beta4-GalT IV 29 0.003969 10.93 1 1 +9337 CNOT8 CCR4-NOT transcription complex subunit 8 5 protein-coding CAF1|CALIF|Caf1b|POP2|hCAF1 CCR4-NOT transcription complex subunit 8|CAF1-like protein|CAF2|CALIFp|CCR4-associated factor 8|PGK promoter directed over production 21 0.002874 10.24 1 1 +9338 TCEAL1 transcription elongation factor A like 1 X protein-coding SIIR|WEX9|p21|pp21 transcription elongation factor A protein-like 1|TCEA-like protein 1|nuclear phosphoprotein p21/SIIR|transcription elongation factor A (SII)-like 1|transcription elongation factor S-II protein-like 1 10 0.001369 8.441 1 1 +9340 GLP2R glucagon like peptide 2 receptor 17 protein-coding - glucagon-like peptide 2 receptor|GLP-2 receptor 65 0.008897 0.7816 1 1 +9341 VAMP3 vesicle associated membrane protein 3 1 protein-coding CEB vesicle-associated membrane protein 3|VAMP-3|cellubrevin|synaptobrevin-3 9 0.001232 11.05 1 1 +9342 SNAP29 synaptosome associated protein 29 22 protein-coding CEDNIK|SNAP-29 synaptosomal-associated protein 29|soluble 29 kDa NSF attachment protein|synaptosomal-associated protein, 29kD|synaptosomal-associated protein, 29kDa|synaptosome associated protein 29kDa|vesicle-membrane fusion protein SNAP-29 12 0.001642 9.943 1 1 +9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 17 protein-coding MFDGA|MFDM|SNRNP116|Snrp116|Snu114|U5-116KD 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 64 0.00876 11.13 1 1 +9344 TAOK2 TAO kinase 2 16 protein-coding MAP3K17|PSK|PSK1|PSK1-BETA|TAO1|TAO2 serine/threonine-protein kinase TAO2|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|thousand and one amino acid protein kinase 2 113 0.01547 10.6 1 1 +9348 NDST3 N-deacetylase and N-sulfotransferase 3 4 protein-coding HSST3 bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 3|GlcNAc N-deacetylase/ N-sulfotransferase 3|N-HSST 3|N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3|N-deacetylase/N-sulfotransferase 3|N-heparan sulfate sulfotransferase 3|NDST-3|glucosaminyl N-deacetylase/N-sulfotransferase 3|hNDST-3 81 0.01109 2.172 1 1 +9349 RPL23 ribosomal protein L23 17 protein-coding L23|rpL17 60S ribosomal protein L23|60S ribosomal protein L17|ribosomal protein L17 9 0.001232 13.41 1 1 +9350 CER1 cerberus 1, DAN family BMP antagonist 9 protein-coding DAND4 cerberus|DAN domain family member 4|cerberus 1, cysteine knot superfamily, homolog|cerberus-related 1|cerberus-related protein 25 0.003422 0.3643 1 1 +9351 SLC9A3R2 SLC9A3 regulator 2 16 protein-coding E3KARP|NHE3RF2|NHERF-2|NHERF2|OCTS2|SIP-1|SIP1|TKA-1 Na(+)/H(+) exchange regulatory cofactor NHE-RF2|NHE3 kinase A regulatory protein E3KARP|NHE3 regulatory factor 2|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|solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 2|tyrosine kinase activator protein 1 12 0.001642 10.35 1 1 +9352 TXNL1 thioredoxin like 1 18 protein-coding HEL-S-114|TRP32|TXL-1|TXNL|Txl thioredoxin-like protein 1|32 kDa thioredoxin-related protein|epididymis secretory protein Li 114|thioredoxin-related 32 kDa protein|thioredoxin-related protein 1 22 0.003011 10.4 1 1 +9353 SLIT2 slit guidance ligand 2 4 protein-coding SLIL3|Slit-2 slit homolog 2 protein 204 0.02792 6.321 1 1 +9354 UBE4A ubiquitination factor E4A 11 protein-coding E4|UBOX2|UFD2 ubiquitin conjugation factor E4 A|ubiquitination factor E4A (UFD2 homolog, yeast) 57 0.007802 10.53 1 1 +9355 LHX2 LIM homeobox 2 9 protein-coding LH2|hLhx2 LIM/homeobox protein Lhx2|LIM HOX gene 2|LIM homeobox protein 2|homeobox protein LH-2 30 0.004106 3.193 1 1 +9356 SLC22A6 solute carrier family 22 member 6 11 protein-coding HOAT1|OAT1|PAHT|ROAT1 solute carrier family 22 member 6|PAH transporter|hPAHT|hROAT1|organic anion transporter 1|para-aminohippurate transporter|renal organic anion transporter 1|solute carrier family 22 (organic anion transporter), member 6 50 0.006844 0.8229 1 1 +9358 ITGBL1 integrin subunit beta like 1 13 protein-coding OSCP|TIED integrin beta-like protein 1|integrin beta like 1|integrin, beta-like 1 (with EGF-like repeat domains)|osteoblast-specific cysteine-rich protein|ten integrin EGF-like repeat domain-containing protein 58 0.007939 7.084 1 1 +9360 PPIG peptidylprolyl isomerase G 2 protein-coding CARS-Cyp|CYP|SCAF10|SRCyp peptidyl-prolyl cis-trans isomerase G|CARS-cyclophilin|CASP10|Clk-associating RS-cyclophilin|PPIase G|SR-cyclophilin|SR-cyp|SR-related CTD-associated factor 10|cyclophilin G|peptidyl-prolyl isomerase G (cyclophilin G)|peptidylprolyl isomerase G (cyclophilin G)|rotamase G 66 0.009034 10.06 1 1 +9361 LONP1 lon peptidase 1, mitochondrial 19 protein-coding CODASS|LON|LONP|LonHS|PIM1|PRSS15|hLON lon protease homolog, mitochondrial|LONP|hLON ATP-dependent protease|lon protease-like protein|mitochondrial ATP-dependent protease Lon|mitochondrial lon protease-like protein|serine protease 15 67 0.009171 11.07 1 1 +9362 CPNE6 copine 6 14 protein-coding - copine-6|N-copine|copine VI (neuronal) 46 0.006296 1.68 1 1 +9363 RAB33A RAB33A, member RAS oncogene family X protein-coding RabS10 ras-related protein Rab-33A|Small GTP-binding protein S10 16 0.00219 4.451 1 1 +9364 RAB28 RAB28, member RAS oncogene family 4 protein-coding CORD18 ras-related protein Rab-28 17 0.002327 8.197 1 1 +9365 KL klotho 13 protein-coding - klotho 79 0.01081 5.167 1 1 +9366 RAB9BP1 RAB9B, member RAS oncogene family pseudogene 1 5 pseudo RAB9P1 RAB9, member RAS oncogene family, pseudogene 1|RAB9A, member RAS oncogene family pseudogene 0.01131 0 1 +9367 RAB9A RAB9A, member RAS oncogene family X protein-coding RAB9 ras-related protein Rab-9A|RAB9, member RAS oncogene family 9 0.001232 8.792 1 1 +9368 SLC9A3R1 SLC9A3 regulator 1 17 protein-coding EBP50|NHERF|NHERF-1|NHERF1|NPHLOP2 Na(+)/H(+) exchange regulatory cofactor NHE-RF1|Na+/H+ exchange regulatory co-factor|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|solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 1 11 0.001506 11.08 1 1 +9369 NRXN3 neurexin 3 14 protein-coding C14orf60 neurexin 3|neurexin III|neurexin-3-alpha 181 0.02477 5.863 1 1 +9370 ADIPOQ adiponectin, C1Q and collagen domain containing 3 protein-coding ACDC|ACRP30|ADIPQTL1|ADPN|APM-1|APM1|GBP28 adiponectin|30 kDa adipocyte complement-related protein|adipocyte complement-related 30 kDa protein|adipose most abundant gene transcript 1 protein|adipose specific collagen-like factor|gelatin-binding protein 28 24 0.003285 1.652 1 1 +9371 KIF3B kinesin family member 3B 20 protein-coding FLA8|HH0048|KLP-11 kinesin-like protein KIF3B|microtubule plus end-directed kinesin motor 3B 53 0.007254 10.74 1 1 +9372 ZFYVE9 zinc finger FYVE-type containing 9 1 protein-coding MADHIP|NSP|PPP1R173|SARA|SMADIP zinc finger FYVE domain-containing protein 9|MAD, mothers against decapentaplegic homolog interacting protein, receptor activation anchor|MADH-interacting protein|novel serine protease|protein phosphatase 1, regulatory subunit 173|smad anchor for receptor activation|zinc finger, FYVE domain containing 9 92 0.01259 9.063 1 1 +9373 PLAA phospholipase A2 activating protein 9 protein-coding DOA1|PLA2P|PLAP phospholipase A-2-activating protein|DOA1 homolog 28 0.003832 9.598 1 1 +9374 PPT2 palmitoyl-protein thioesterase 2 6 protein-coding C6orf8|G14|PPT-2 lysosomal thioesterase PPT2|S-thioesterase G14|VE-statin2|palmitoyl-protein hydrolase 2 19 0.002601 8.661 1 1 +9375 TM9SF2 transmembrane 9 superfamily member 2 13 protein-coding P76 transmembrane 9 superfamily member 2|76 kDa membrane protein|dinucleotide oxidase disulfide thiol exchanger 3 superfamily member 2|transmembrane protein 9 superfamily member 2 41 0.005612 11.72 1 1 +9376 SLC22A8 solute carrier family 22 member 8 11 protein-coding OAT3 solute carrier family 22 member 8|hOAT3|organic anion transporter 3|solute carrier family 22 (organic anion transporter), member 8 52 0.007117 0.4622 1 1 +9377 COX5A cytochrome c oxidase subunit 5A 15 protein-coding COX|COX-VA|VA cytochrome c oxidase subunit 5A, mitochondrial|cytochrome c oxidase polypeptide Va|cytochrome c oxidase polypeptide, mitochondrial|cytochrome c oxidase subunit Va|mitochondrial cytochrome c oxidase subunit Va 16 0.00219 10.74 1 1 +9378 NRXN1 neurexin 1 2 protein-coding Hs.22998|PTHSL2|SCZD17 neurexin-1|neurexin I 296 0.04051 3.209 1 1 +9379 NRXN2 neurexin 2 11 protein-coding - neurexin-2-beta|neurexin II 143 0.01957 6.771 1 1 +9380 GRHPR glyoxylate and hydroxypyruvate reductase 9 protein-coding GLXR|GLYD|PH2 glyoxylate reductase/hydroxypyruvate reductase|glycerate-2-dehydrogenase|glyoxylate reductase and hydroxypyruvate reductase 21 0.002874 10.72 1 1 +9381 OTOF otoferlin 2 protein-coding AUNB1|DFNB6|DFNB9|FER1L2|NSRD9 otoferlin|fer-1-like family member 2|fer-1-like protein 2 171 0.02341 2.714 1 1 +9382 COG1 component of oligomeric golgi complex 1 17 protein-coding CDG2G|LDLB conserved oligomeric Golgi complex subunit 1|COG complex subunit 1|conserved oligomeric Golgi complex protein 1|low density lipoprotein receptor defect B complementing 53 0.007254 9.716 1 1 +9383 TSIX TSIX transcript, XIST antisense RNA X ncRNA LINC00013|NCRNA00013|XIST-AS|XIST-AS1|XISTAS TSIX transcript, XIST antisense RNA (non-protein coding)|X (inactive)-specific transcript, antisense (non-protein coding)|XIST antisense RNA (non-protein coding)|long intergenic non-protein coding RNA 13|x-inactivation-specific transcript-antisense 121 0.01656 4.013 1 1 +9388 LIPG lipase G, endothelial type 18 protein-coding EDL|EL|PRO719 endothelial lipase|endothelial cell-derived lipase|lipase, endothelial|lipoprotein lipase H 43 0.005886 7.051 1 1 +9389 SLC22A14 solute carrier family 22 member 14 3 protein-coding OCTL2|OCTL4|ORCTL4 solute carrier family 22 member 14|ORCTL-4|organic cation transporter-like 4|organic cationic transporter-like 4|solute carrier family 22 (organic cation transporter), member 14 39 0.005338 0.9078 1 1 +9390 SLC22A13 solute carrier family 22 member 13 3 protein-coding OAT10|OCTL1|OCTL3|ORCTL-3|ORCTL3 solute carrier family 22 member 13|organic cationic transporter-like 3|organic-cation transporter like 3|solute carrier family 22 (organic anion transporter), member 13|solute carrier family 22 (organic anion/urate transporter), member 13 29 0.003969 0.8235 1 1 +9391 CIAO1 cytosolic iron-sulfur assembly component 1 2 protein-coding CIA1|WDR39 probable cytosolic iron-sulfur protein assembly protein CIAO1|WD repeat domain 39|WD repeat-containing protein 39|WD40 protein Ciao1|cytosolic iron-sulfur protein assembly 1 homolog 21 0.002874 10.91 1 1 +9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 2 protein-coding TRAP-1|TRAP1|VPS3 transforming growth factor-beta receptor-associated protein 1|TGF-beta receptor-associated protein 1|VPS3 CORVET complex subunit 72 0.009855 7.971 1 1 +9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 2 protein-coding HH15|HS6ST heparan-sulfate 6-O-sulfotransferase 1|HS6ST-1|heparan-sulfate 6-sulfotransferase 62 0.008486 10.23 1 1 +9397 NMT2 N-myristoyltransferase 2 10 protein-coding - glycylpeptide N-tetradecanoyltransferase 2|NMT 2|glycylpeptide N-tetradecanoyltransferase 2 variant 3|glycylpeptide N-tetradecanoyltransferase 2 variant 4|myristoyl-CoA:protein N-myristoyltransferase 2|peptide N-myristoyltransferase 2|type II N-myristoyltransferase 45 0.006159 8.207 1 1 +9398 CD101 CD101 molecule 1 protein-coding EWI-101|IGSF2|V7 immunoglobulin superfamily member 2|cell surface glycoprotein V7|glu-Trp-Ile EWI motif-containing protein 101|leukocyte surface protein 70 0.009581 5.179 1 1 +9399 STOML1 stomatin like 1 15 protein-coding SLP-1|STORP|hUNC-24 stomatin-like protein 1|EPB72-like 1|EPB72-like protein 1|protein unc-24 homolog|stomatin (EBP72)-like 1|stomatin (EPB72)-like 1|stomatin-related protein 26 0.003559 8.465 1 1 +9400 RECQL5 RecQ like helicase 5 17 protein-coding RECQ5 ATP-dependent DNA helicase Q5|DNA helicase, RecQ-like type 5|RecQ helicase-like 5|RecQ protein-like 5 80 0.01095 9.285 1 1 +9401 RECQL4 RecQ like helicase 4 8 protein-coding RECQ4 ATP-dependent DNA helicase Q4|DNA helicase, RecQ-like, type 4|RecQ helicase-like 4|RecQ protein-like 4 83 0.01136 8.467 1 1 +9402 GRAP2 GRB2-related adaptor protein 2 22 protein-coding GADS|GRAP-2|GRB2L|GRBLG|GRID|GRPL|GrbX|Grf40|Mona|P38 GRB2-related adapter protein 2|GRB-2-like protein|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 35 0.004791 4.483 1 1 +9403 SELENOF selenoprotein F 1 protein-coding SEP15 15 kDa selenoprotein|selenoprotein F (15kDa) 1 0.0001369 11.52 1 1 +9404 LPXN leupaxin 11 protein-coding LDPL leupaxin 25 0.003422 8.201 1 1 +9406 ZRANB2 zinc finger RANBP2-type containing 2 1 protein-coding ZIS|ZIS1|ZIS2|ZNF265 zinc finger Ran-binding domain-containing protein 2|zinc finger protein 265|zinc finger, RAN-binding domain containing 2|zinc-finger, splicing 40 0.005475 10.26 1 1 +9407 TMPRSS11D transmembrane protease, serine 11D 4 protein-coding HAT transmembrane protease serine 11D|airway trypsin-like protease 46 0.006296 1.787 1 1 +9409 PEX16 peroxisomal biogenesis factor 16 11 protein-coding PBD8A|PBD8B peroxisomal biogenesis factor 16|peroxin 16|peroxisomal membrane protein PEX16|peroxisome biogenesis factor 16 20 0.002737 9.072 1 1 +9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 1 protein-coding 40K|HPRP8BP|PRP8BP|PRPF8BP|SPF38|WDR57 U5 small nuclear ribonucleoprotein 40 kDa protein|38 kDa-splicing factor|Prp8-binding 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|small nuclear ribonucleoprotein 40kDa (U5)|small nuclear ribonucleoprotein, U5 40kDa subunit 20 0.002737 9.465 1 1 +9411 ARHGAP29 Rho GTPase activating protein 29 1 protein-coding PARG1 rho GTPase-activating protein 29|PTPL1-associated RhoGAP 1 (PARG1)|PTPL1-associated RhoGAP protein 1|rho-type GTPase-activating protein 29 94 0.01287 9.535 1 1 +9412 MED21 mediator complex subunit 21 12 protein-coding SRB7|SURB7|hSrb7 mediator of RNA polymerase II transcription subunit 21|RNA polymerase II holoenzyme component SRB7|RNAPII complex component SRB7|SRB7 suppressor of RNA polymerase B homolog 12 0.001642 9.006 1 1 +9413 FAM189A2 family with sequence similarity 189 member A2 9 protein-coding C9orf61|X123 protein FAM189A2|Friedreich ataxia region gene X123 28 0.003832 6.435 1 1 +9414 TJP2 tight junction protein 2 9 protein-coding C9DUPq21.11|DFNA51|DUP9q21.11|PFIC4|X104|ZO2 tight junction protein ZO-2|Friedreich ataxia region gene X104 (tight junction protein ZO-2)|zona occludens 2|zonula occludens protein 2 83 0.01136 10.84 1 1 +9415 FADS2 fatty acid desaturase 2 11 protein-coding D6D|DES6|FADSD6|LLCDL2|SLL0262|TU13 fatty acid desaturase 2|acyl-CoA 6-desaturase|delta-6 fatty acid desaturase|delta-6-desaturase|linoleoyl-CoA desaturase (delta-6-desaturase)-like 2 34 0.004654 10.46 1 1 +9416 DDX23 DEAD-box helicase 23 12 protein-coding PRPF28|SNRNP100|U5-100K|U5-100KD|prp28 probable ATP-dependent RNA helicase DDX23|100 kDa U5 snRNP-specific protein|DEAD (Asp-Glu-Ala-Asp) box polypeptide 23|DEAD box protein 23|PRP28 homolog, yeast|PRP28p homolog|U5 snRNP 100 kD protein 55 0.007528 11.28 1 1 +9419 CRIPT CXXC repeat containing interactor of PDZ3 domain 2 protein-coding HSPC139|SSMDF cysteine-rich PDZ-binding protein|cysteine-rich interactor of PDZ three|cysteine-rich interactor of PDZ3|postsynaptic protein CRIPT 7 0.0009581 8.611 1 1 +9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 8 protein-coding CBAS3|CP7B|SPG5A 25-hydroxycholesterol 7-alpha-hydroxylase|cytochrome P450 7B1|cytochrome P450, subfamily VIIB (oxysterol 7 alpha-hydroxylase), polypeptide 1|oxysterol 7-alpha-hydroxylase 66 0.009034 5.694 1 1 +9421 HAND1 heart and neural crest derivatives expressed 1 5 protein-coding Hxt|Thing1|bHLHa27|eHand heart- and neural crest derivatives-expressed protein 1|class A basic helix-loop-helix protein 27|extraembryonic tissues, heart, autonomic nervous system and neural crest derivatives-expressed protein 1 16 0.00219 0.9413 1 1 +9422 ZNF264 zinc finger protein 264 19 protein-coding - zinc finger protein 264 43 0.005886 9.289 1 1 +9423 NTN1 netrin 1 17 protein-coding NTN1L netrin-1|epididymis tissue protein Li 131P|netrin 1, mouse, homolog of 27 0.003696 7.75 1 1 +9424 KCNK6 potassium two pore domain channel subfamily K member 6 19 protein-coding K2p6.1|KCNK8|TOSS|TWIK-2|TWIK2 potassium channel subfamily K member 6|K2P6.1 potassium channel|TWIK-originated similarity sequence|TWIK-originated sodium similarity sequence|inward rectifying potassium channel protein TWIK-2|potassium channel, two pore domain subfamily K, member 6 21 0.002874 7.499 1 1 +9425 CDYL chromodomain Y-like 6 protein-coding CDYL1 chromodomain Y-like protein|CDY-like, autosomal|chromodomain protein, Y-like|testis-specific chromodomain Y-like protein 53 0.007254 9.24 1 1 +9427 ECEL1 endothelin converting enzyme like 1 2 protein-coding DA5D|DINE|ECEX|XCE endothelin-converting enzyme-like 1|X converting enzyme|damage induced neuronal endopeptidase 59 0.008076 3.605 1 1 +9429 ABCG2 ATP binding cassette subfamily G member 2 (Junior blood group) 4 protein-coding ABC15|ABCP|BCRP|BCRP1|BMDP|CD338|CDw338|EST157481|GOUT1|MRX|MXR|MXR-1|MXR1|UAQTL1 ATP-binding cassette sub-family G member 2|ABC transporter|ATP-binding cassette transporter G2|ATP-binding cassette, sub-family G (WHITE), member 2 (Junior blood group)|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|urate exporter 58 0.007939 6.584 1 1 +9435 CHST2 carbohydrate sulfotransferase 2 3 protein-coding C6ST|GST-2|GST2|Gn6ST-1|HEL-S-75|glcNAc6ST-1 carbohydrate sulfotransferase 2|N-acetylglucosamine 6-O-sulfotransferase 1|carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2|carbohydrate (chondroitin 6/keratan) sulfotransferase 2|epididymis secretory protein Li 75|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 2 69 0.009444 8.423 1 1 +9436 NCR2 natural cytotoxicity triggering receptor 2 6 protein-coding CD336|LY95|NK-p44|NKP44|dJ149M18.1 natural cytotoxicity triggering receptor 2|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 31 0.004243 0.204 1 1 +9437 NCR1 natural cytotoxicity triggering receptor 1 19 protein-coding CD335|LY94|NK-p46|NKP46 natural cytotoxicity triggering receptor 1|NK cell-activating receptor|lymphocyte antigen 94 homolog (activating NK-receptor; NK-p46)|natural killer cell p46-related protein 46 0.006296 0.9709 1 1 +9439 MED23 mediator complex subunit 23 6 protein-coding ARC130|CRSP130|CRSP133|CRSP3|DRIP130|MRT18|SUR-2|SUR2 mediator of RNA polymerase II transcription subunit 23|130 kDa transcriptional co-activator|133 kDa transcriptional co-activator|activator-recruited cofactor 130 kDa component|cofactor required for Sp1 transcriptional activation subunit 3|vitamin D3 receptor interacting protein 88 0.01204 9.281 1 1 +9440 MED17 mediator complex subunit 17 11 protein-coding CRSP6|CRSP77|DRIP80|TRAP80 mediator of RNA polymerase II transcription subunit 17|ARC77|CRSP complex subunit 6|activator-recruited cofactor 77 kDa component|cofactor required for Sp1 transcriptional activation, subunit 6, 77kDa|thyroid hormone receptor-associated protein complex 80 kDa component|transcriptional coactivator CRSP77|vitamin D3 receptor-interacting protein complex 80 kDa component 39 0.005338 9.118 1 1 +9441 MED26 mediator complex subunit 26 19 protein-coding CRSP7|CRSP70 mediator of RNA polymerase II transcription subunit 26|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|transcriptional coactivator CRSP70 29 0.003969 8.246 1 1 +9442 MED27 mediator complex subunit 27 9 protein-coding CRAP34|CRSP34|CRSP8|MED3|TRAP37 mediator of RNA polymerase II transcription subunit 27|CRSP complex subunit 8|cofactor required for Sp1 transcriptional activation, subunit 8, 34kDa|p37 TRAP/SMCC/PC2 subunit|transcriptional coactivator CRSP34 21 0.002874 8.233 1 1 +9443 MED7 mediator complex subunit 7 5 protein-coding ARC34|CRSP33|CRSP9 mediator of RNA polymerase II transcription subunit 7|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|transcriptional coactivator CRSP33 20 0.002737 7.61 1 1 +9444 QKI QKI, KH domain containing RNA binding 6 protein-coding Hqk|QK|QK1|QK3|hqkI protein quaking|RNA binding protein HQK|homolog of mouse quaking QKI (KH domain RNA binding protein)|quaking homolog, KH domain RNA binding 33 0.004517 10.85 1 1 +9445 ITM2B integral membrane protein 2B 13 protein-coding ABRI|BRI|BRI2|BRICD2B|E25B|E3-16|FBD|RDGCA|imBRI2 integral membrane protein 2B|ABri/ADan amyloid peptide|BRICHOS domain containing 2B|immature BRI2|transmembrane protein BRI 17 0.002327 13.61 1 1 +9446 GSTO1 glutathione S-transferase omega 1 10 protein-coding GSTO 1-1|GSTTLp28|HEL-S-21|P28|SPG-R glutathione S-transferase omega-1|MMA(V) reductase|S-(Phenacyl)glutathione reductase|epididymis secretory protein Li 21|glutathione S-transferase omega 1-1|glutathione-S-transferase like|glutathione-dependent dehydroascorbate reductase|monomethylarsonic acid reductase 10 0.001369 10.68 1 1 +9447 AIM2 absent in melanoma 2 1 protein-coding PYHIN4 interferon-inducible protein AIM2 36 0.004927 4.645 1 1 +9448 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 2 protein-coding FLH21957|HEL-S-31|HGK|MEKKK4|NIK mitogen-activated protein kinase kinase kinase kinase 4|HPK/GCK-like kinase HGK|MAPK/ERK kinase kinase kinase 4|MEK kinase kinase 4|Ste20 group protein kinase HGK|epididymis secretory protein Li 31|hepatocyte progenitor kinase-like/germinal center kinase-like kinase|nck-interacting kinase 86 0.01177 11.51 1 1 +9450 LY86 lymphocyte antigen 86 6 protein-coding MD-1|MD1|MMD-1|dJ80N2.1 lymphocyte antigen 86|MD-1, RP105-associated|ly-86|protein MD-1 21 0.002874 6.552 1 1 +9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 2 protein-coding PEK|PERK|WRS eukaryotic translation initiation factor 2-alpha kinase 3|PRKR-like endoplasmic reticulum kinase|pancreatic EIF2-alpha kinase 76 0.0104 9.393 1 1 +9452 ITM2A integral membrane protein 2A X protein-coding BRICD2A|E25A integral membrane protein 2A|BRICHOS domain containing 2A 33 0.004517 7.993 1 1 +9453 GGPS1 geranylgeranyl diphosphate synthase 1 1 protein-coding GGPPS|GGPPS1 geranylgeranyl pyrophosphate synthase|(2E,6E)-farnesyl diphosphate synthase|GGPP synthase|GGPPSase|dimethylallyltranstransferase|farnesyl diphosphate synthase|farnesyltranstransferase|geranyltranstransferase 14 0.001916 9.733 1 1 +9454 HOMER3 homer scaffolding protein 3 19 protein-coding HOMER-3|VESL3 homer protein homolog 3|Homer, neuronal immediate early gene, 3|homer homolog 3 17 0.002327 9.226 1 1 +9455 HOMER2 homer scaffolding protein 2 15 protein-coding ACPD|CPD|DFNA68|HOMER-2|VESL-2 homer protein homolog 2|cupidin|homer homolog 2|homer homolog 3|homer, neuronal immediate early gene, 2 17 0.002327 7.652 1 1 +9456 HOMER1 homer scaffolding protein 1 5 protein-coding HOMER|HOMER1A|HOMER1B|HOMER1C|SYN47|Ves-1 homer protein homolog 1|homer homolog 1|homer, neuronal immediate early gene, 1|homer-1 21 0.002874 7.206 1 1 +9457 FHL5 four and a half LIM domains 5 6 protein-coding 1700027G07Rik|ACT|FHL-5|dJ393D12.2 four and a half LIM domains protein 5|LIM protein ACT|activator of cAMP-responsive element modulator (CREM) in testis|activator of cAMP-responsive element modulator in testis 51 0.006981 4.151 1 1 +9459 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor 6 X protein-coding COOL2|Cool-2|MRX46|PIXA|alpha-PIX|alphaPIX rho guanine nucleotide exchange factor 6|PAK-interacting exchange factor, alpha|Rac/Cdc42 guanine exchange factor (GEF) 6|Rac/Cdc42 guanine nucleotide exchange factor (GEF) 6 76 0.0104 8.809 1 1 +9462 RASAL2 RAS protein activator like 2 1 protein-coding NGAP ras GTPase-activating protein nGAP|Ras protein activator like 1 112 0.01533 9.365 1 1 +9463 PICK1 protein interacting with PRKCA 1 22 protein-coding PICK|PRKCABP PRKCA-binding protein|protein interacting with C kinase 1|protein kinase C-alpha-binding protein 31 0.004243 8.805 1 1 +9464 HAND2 heart and neural crest derivatives expressed 2 4 protein-coding DHAND2|Hed|Thing2|bHLHa26|dHand heart- and neural crest derivatives-expressed protein 2|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 30 0.004106 3.747 1 1 +9465 AKAP7 A-kinase anchoring protein 7 6 protein-coding AKAP15|AKAP18 A-kinase anchor protein 7 isoform gamma|A kinase (PRKA) anchor protein 7|A-kinase anchor protein 18 kDa|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 26 0.003559 7.312 1 1 +9466 IL27RA interleukin 27 receptor subunit alpha 19 protein-coding CRL1|IL-27RA|IL27R|TCCR|WSX1|zcytor1 interleukin-27 receptor subunit alpha|IL-27 receptor subunit alpha|IL-27R subunit alpha|IL-27R-alpha|T-cell cytokine receptor type 1|class I cytokine receptor|cytokine receptor WSX-1|cytokine receptor-like 1|interleukin 27 receptor, alpha|type I T-cell cytokine receptor 41 0.005612 8.03 1 1 +9467 SH3BP5 SH3 domain binding protein 5 3 protein-coding SAB|SH3BP-5 SH3 domain-binding protein 5|SH3 domain-binding protein that preferentially associates with BTK|SH3-domain binding protein 5 (BTK-associated) 31 0.004243 9.547 1 1 +9468 PCYT1B phosphate cytidylyltransferase 1, choline, beta X protein-coding CCTB|CTB choline-phosphate cytidylyltransferase B|CCT B|CCT-beta|CT B|CTP:phosphocholine cytidylyltransferase b|phosphorylcholine transferase B 35 0.004791 4.015 1 1 +9469 CHST3 carbohydrate sulfotransferase 3 10 protein-coding C6ST|C6ST1|HSD carbohydrate sulfotransferase 3|C6ST-1|GST-0|carbohydrate (chondroitin 6) sulfotransferase 3|chondroitin 6 sulfotransferase 1|chondroitin 6-O-sulfotransferase 1|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 0 30 0.004106 9.092 1 1 +9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 2 protein-coding 4E-LP|4EHP|EIF4EL3|IF4e eukaryotic translation initiation factor 4E type 2|eIF-4E type 2|eIF4E-like cap-binding protein|eIF4E-like protein 4E-LP|eukaryotic translation initiation factor 4E homologous protein|eukaryotic translation initiation factor 4E-like 3|mRNA cap-binding protein type 3 14 0.001916 10.44 1 1 +9472 AKAP6 A-kinase anchoring protein 6 14 protein-coding ADAP100|ADAP6|AKAP100|PRKA6|mAKAP A-kinase anchor protein 6|A kinase (PRKA) anchor protein 6|A-kinase anchor protein 100 kDa|AKAP 100|AKAP-6|protein kinase A anchoring protein 6 205 0.02806 6.893 1 1 +9473 THEMIS2 thymocyte selection associated family member 2 1 protein-coding C1orf38|ICB-1 protein THEMIS2|basement membrane-induced|induced by contact to basement membrane 1 protein|protein ICB-1|thymocyte-expressed molecule involved in selection protein 2 29 0.003969 8.612 1 1 +9474 ATG5 autophagy related 5 6 protein-coding APG5|APG5-LIKE|APG5L|ASP|hAPG5 autophagy protein 5|ATG5 autophagy related 5 homolog|apoptosis-specific protein 27 0.003696 9.544 1 1 +9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 2 protein-coding ROCK-II rho-associated protein kinase 2|p164 ROCK-2|rho-associated, coiled-coil-containing protein kinase II 94 0.01287 9.282 1 1 +9476 NAPSA napsin A aspartic peptidase 19 protein-coding KAP|Kdap|NAP1|NAPA|SNAPA napsin-A|ASP4|TA01/TA02|asp 4|aspartyl protease 4|kidney-derived aspartic protease-like protein|napsin-1|pronapsin A 40 0.005475 4.119 1 1 +9477 MED20 mediator complex subunit 20 6 protein-coding PRO0213|TRFP mediator of RNA polymerase II transcription subunit 20|Trf (TATA binding protein-related factor)-proximal homolog 11 0.001506 8.858 1 1 +9478 CABP1 calcium binding protein 1 12 protein-coding CALBRAIN|HCALB_BR calcium-binding protein 1|calcium binding protein 5|caldendrin 24 0.003285 3.327 1 1 +9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 11 protein-coding IB1|JIP-1|JIP1|PRKM8IP 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 39 0.005338 8.34 1 1 +9480 ONECUT2 one cut homeobox 2 18 protein-coding OC-2|OC2 one cut domain family member 2|HNF-6-beta|ONECUT-2 homeodomain transcription factor|hepatocyte nuclear factor 6-beta|onecut 2|transcription factor ONECUT-2 39 0.005338 5.363 1 1 +9481 SLC25A27 solute carrier family 25 member 27 6 protein-coding UCP4 mitochondrial uncoupling protein 4|UCP 4|uncoupling protein 4 21 0.002874 6.181 1 1 +9482 STX8 syntaxin 8 17 protein-coding CARB syntaxin-8|CIP-1-associated regulator of cyclin B 19 0.002601 8.323 1 1 +9486 CHST10 carbohydrate sulfotransferase 10 2 protein-coding HNK-1ST|HNK1ST carbohydrate sulfotransferase 10|HNK-1 sulfotransferase|huHNK-1ST 32 0.00438 7.939 1 1 +9487 PIGL phosphatidylinositol glycan anchor biosynthesis class L 17 protein-coding CHIME N-acetylglucosaminyl-phosphatidylinositol de-N-acetylase|N-acetylglucosaminylphosphatidylinositol deacetylase|PIG-L|phosphatidylinositol glycan, class L|phosphatidylinositol-glycan biosynthesis class L protein 20 0.002737 6.047 1 1 +9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B 15 protein-coding GPI-MT-III|PIG-B GPI mannosyltransferase 3|GPI mannosyltransferase III|dol-P-Man dependent GPI mannosyltransferase|phosphatidylinositol glycan, class B|phosphatidylinositol-glycan biosynthesis class B protein 46 0.006296 7.837 1 1 +9489 PGS1 phosphatidylglycerophosphate synthase 1 17 protein-coding - CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase, mitochondrial|PGP synthase 1 33 0.004517 9.086 1 1 +9491 PSMF1 proteasome inhibitor subunit 1 20 protein-coding PI31 proteasome inhibitor PI31 subunit|proteasome (prosome, macropain) inhibitor subunit 1 (PI31) 27 0.003696 11.5 1 1 +9493 KIF23 kinesin family member 23 15 protein-coding CHO1|KNSL5|MKLP-1|MKLP1 kinesin-like protein KIF23|kinesin-like 5 (mitotic kinesin-like protein 1) 50 0.006844 7.87 1 1 +9495 AKAP5 A-kinase anchoring protein 5 14 protein-coding AKAP75|AKAP79|H21 A-kinase anchor protein 5|A kinase (PRKA) anchor protein 5|A-kinase anchor protein 79 kDa|A-kinase anchoring protein 75/79|AKAP 79|cAMP-dependent protein kinase regulatory subunit II high affinity-binding protein 23 0.003148 6.138 1 1 +9496 TBX4 T-box 4 17 protein-coding ICPPS|SPS T-box transcription factor TBX4|T-box protein 4 59 0.008076 2.605 1 1 +9497 SLC4A7 solute carrier family 4 member 7 3 protein-coding NBC2|NBC3|NBCN1|SBC2|SLC4A6 sodium bicarbonate cotransporter 3|bicarbonate transporter|electroneutral Na/HCO(3) cotransporter|sodium bicarbonate cotransporter 2|sodium bicarbonate cotransporter 2b|solute carrier family 4, sodium bicarbonate cotransporter, member 7 79 0.01081 8.696 1 1 +9498 SLC4A8 solute carrier family 4 member 8 12 protein-coding NBC3|NDCBE electroneutral sodium bicarbonate exchanger 1|electroneutral Na(+)-driven Cl-HCO3 exchanger|k-NBC3|solute carrier family 4, sodium bicarbonate cotransporter, member 8 76 0.0104 6.182 1 1 +9499 MYOT myotilin 5 protein-coding LGMD1|LGMD1A|MFM3|TTID|TTOD myotilin|57 kDa cytoskeletal protein|myofibrillar titin-like Ig domains protein|titin immunoglobulin domain protein (myotilin) 41 0.005612 2.323 1 1 +9500 MAGED1 MAGE family member D1 X protein-coding DLXIN-1|NRAGE melanoma-associated antigen D1|MAGE tumor antigen CCF|MAGE-D1 antigen|melanoma antigen family D, 1|melanoma antigen family D1|neurotrophin receptor-interacting MAGE homolog 66 0.009034 12.19 1 1 +9501 RPH3AL rabphilin 3A-like (without C2 domains) 17 protein-coding NOC2 rab effector Noc2|no C2 domains protein 28 0.003832 7.475 1 1 +9502 XAGE2 X antigen family member 2 X protein-coding CT12.2|GAGED3|XAGE-2|XAGE2B X antigen family member 2|G antigen family D member 3|X antigen family, member 2B|cancer/testis antigen 12.2|cancer/testis antigen family 12, member 2 1 0.0001369 0.5622 1 1 +9503 1.55 0 1 +9506 PAGE4 PAGE family member 4 X protein-coding CT16.7|GAGE-9|GAGEC1|JM-27|JM27|PAGE-1|PAGE-4 P antigen family member 4|P antigen family, member 4 (prostate associated)|g antigen family C member 1|prostate-associated gene protein 4 8 0.001095 0.6644 1 1 +9507 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif 4 1 protein-coding ADAMTS-2|ADAMTS-4|ADMP-1 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 66 0.009034 8.407 1 1 +9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 4 protein-coding ADAMTS-4 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 123 0.01684 4.914 1 1 +9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 5 protein-coding ADAM-TS2|ADAMTS-2|ADAMTS-3|NPI|PC I-NP|PCI-NP|PCINP|PCPNI|PNPI 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 150 0.02053 7.232 1 1 +9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 21 protein-coding C3-C5|METH1 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 77 0.01054 9.563 1 1 +9512 PMPCB peptidase, mitochondrial processing beta subunit 7 protein-coding Beta-MPP|MPP11|MPPB|MPPP52|P-52 mitochondrial-processing peptidase subunit beta|mitochondrial processing peptidase beta subunit|peptidase (mitochondrial processing) beta 23 0.003148 10.51 1 1 +9513 FXR2 FMR1 autosomal homolog 2 17 protein-coding FMR1L2|FXR2P fragile X mental retardation syndrome-related protein 2|fragile X mental retardation, autosomal homolog 2|fragile X-mental retardation 1-like 2 43 0.005886 9.817 1 1 +9514 GAL3ST1 galactose-3-O-sulfotransferase 1 22 protein-coding CST galactosylceramide sulfotransferase|3'-phosphoadenosine-5'-phosphosulfate:GalCer sulfotransferase|cerebroside (3'-phosphoadenylylsulfate:galactosylceramide 3') sulfotransferase 47 0.006433 4.42 1 1 +9515 STXBP5L syntaxin binding protein 5 like 3 protein-coding LLGL4 syntaxin-binding protein 5-like|lethal(2) giant larvae protein homolog 4|tomosyn-2|tomosyn-like 131 0.01793 2.853 1 1 +9516 LITAF lipopolysaccharide induced TNF factor 16 protein-coding PIG7|SIMPLE|TP53I7 lipopolysaccharide-induced tumor necrosis factor-alpha factor|LPS-induced TNF-alpha factor|lipopolysaccharide-induced TNF-alpha factor|p53-induced gene 7 protein|small integral membrane protein of lysosome/late endosome|tumor protein p53 inducible protein 7 12 0.001642 11.72 1 1 +9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 14 protein-coding HSN1C|LCB2|LCB2A|NSAN1C|SPT2|hLCB2a serine palmitoyltransferase 2|LCB 2|SPT 2|long chain base biosynthesis protein 2a|serine palmitoyltransferase, subunit II|serine-palmitoyl-CoA transferase 2 38 0.005201 10.22 1 1 +9518 GDF15 growth differentiation factor 15 19 protein-coding GDF-15|MIC-1|MIC1|NAG-1|PDF|PLAB|PTGFB growth/differentiation factor 15|NRG-1|NSAID (nonsteroidal anti-inflammatory drug)-activated protein 1|NSAID-activated gene 1 protein|NSAID-regulated gene 1 protein|PTGF-beta|macrophage inhibitory cytokine 1|placental TGF-beta|placental bone morphogenetic protein|prostate differentiation factor 19 0.002601 8.666 1 1 +9519 TBPL1 TATA-box binding protein like 1 6 protein-coding MGC:8389|MGC:9620|STUD|TLF|TLP|TRF2 TATA box-binding protein-like protein 1|21-kDA TBP-like protein|TATA box-binding protein-related factor 2|TBP-like 1|TBP-related factor 2|TBP-related protein|second TBP of unique DNA protein 18 0.002464 8.08 1 1 +9520 NPEPPS aminopeptidase puromycin sensitive 17 protein-coding AAP-S|MP100|PSA puromycin-sensitive aminopeptidase|cytosol alanyl aminopeptidase|metalloproteinase MP100 55 0.007528 11.04 1 1 +9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 6 protein-coding AIMP3|P18 eukaryotic translation elongation factor 1 epsilon-1|ARS-interacting multifunctional protein 3|aminoacyl tRNA synthetase complex-interacting multifunctional protein 3|multisynthase complex auxiliary component p18|p18 component of aminoacyl-tRNA synthetase complex 15 0.002053 8.294 1 1 +9522 SCAMP1 secretory carrier membrane protein 1 5 protein-coding SCAMP|SCAMP37 secretory carrier-associated membrane protein 1 10 0.001369 10.26 1 1 +9524 TECR trans-2,3-enoyl-CoA reductase 19 protein-coding GPSN2|MRT14|SC2|TER very-long-chain enoyl-CoA reductase|glycoprotein, synaptic 2|synaptic glycoprotein SC2 23 0.003148 10.9 1 1 +9525 VPS4B vacuolar protein sorting 4 homolog B 18 protein-coding MIG1|SKD1|SKD1B|VPS4-2 vacuolar protein sorting-associated protein 4B|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 33 0.004517 10.15 1 1 +9526 MPDU1 mannose-P-dolichol utilization defect 1 17 protein-coding CDGIF|HBEBP2BPA|Lec35|My008|PP3958|PQLC5|SL15 mannose-P-dolichol utilization defect 1 protein|HBeAg-binding protein 2 binding protein A|suppressor of Lec15 and Lec35 glycosylation mutation homolog 4 0.0005475 10.25 1 1 +9527 GOSR1 golgi SNAP receptor complex member 1 17 protein-coding GOLIM2|GOS-28|GOS28|GOS28/P28|GS28|P28 Golgi SNAP receptor complex member 1|28 kDa Golgi SNARE protein|28 kDa cis-Golgi SNARE p28|Golgi SNARE 28 kDa|cis-golgi SNARE|golgi integral membrane protein 2 16 0.00219 10.06 1 1 +9528 TMEM59 transmembrane protein 59 1 protein-coding C1orf8|DCF1|HSPC001|PRO195|UNQ169 transmembrane protein 59|dendritic cell factor 1|liver membrane-bound protein 19 0.002601 12.42 1 1 +9529 BAG5 BCL2 associated athanogene 5 14 protein-coding BAG-5 BAG family molecular chaperone regulator 5|bcl-2-associated athanogene 5 31 0.004243 10.19 1 1 +9530 BAG4 BCL2 associated athanogene 4 8 protein-coding BAG-4|SODD BAG family molecular chaperone regulator 4|bcl-2-associated athanogene 4|silencer of death domains 25 0.003422 7.27 1 1 +9531 BAG3 BCL2 associated athanogene 3 10 protein-coding BAG-3|BIS|CAIR-1|MFM6 BAG family molecular chaperone regulator 3|BCL2-binding athanogene 3|bcl-2-binding protein Bis|docking protein CAIR-1 32 0.00438 10.54 1 1 +9532 BAG2 BCL2 associated athanogene 2 6 protein-coding BAG-2|dJ417I1.2 BAG family molecular chaperone regulator 2|bcl-2-associated athanogene 2|dJ417I1.2 (BAG-family molecular chaperone regulator 2) 9 0.001232 7.73 1 1 +9533 POLR1C RNA polymerase I subunit C 6 protein-coding AC40|HLD11|RPA39|RPA40|RPA5|RPAC1|RPC40|TCS3 DNA-directed RNA polymerases I and III subunit RPAC1|DNA-directed RNA polymerase I subunit C|DNA-directed RNA polymerases I and III 40 kDa polypeptide|RNA polymerases I and III subunit AC1|polymerase (RNA) I polypeptide C|polymerase (RNA) I polypeptide C, 30kDa|polymerase (RNA) I subunit C 27 0.003696 8.965 1 1 +9534 ZNF254 zinc finger protein 254 19 protein-coding BMZF-5|HD-ZNF1|ZNF539|ZNF91L zinc finger protein 254|CTD-2017D11.1|bone marrow zinc finger 5|hematopoietic cell-derived zinc finger protein 1|zinc finger protein 539 66 0.009034 8.134 1 1 +9535 GMFG glia maturation factor gamma 19 protein-coding GMF-GAMMA glia maturation factor gamma 17 0.002327 7.878 1 1 +9536 PTGES prostaglandin E synthase 9 protein-coding MGST-IV|MGST1-L1|MGST1L1|MPGES|PGES|PIG12|PP102|PP1294|TP53I12|mPGES-1 prostaglandin E synthase|MGST1-like 1|glutathione S-transferase 1-like 1|microsomal glutathione S-transferase 1-like 1|microsomal prostaglandin E synthase-1|p53-induced apoptosis protein 12|p53-induced gene 12 protein|tumor protein p53 inducible protein 12 8 0.001095 7.873 1 1 +9537 TP53I11 tumor protein p53 inducible protein 11 11 protein-coding PIG11 tumor protein p53-inducible protein 11|p53-induced gene 11 protein 18 0.002464 10.55 1 1 +9538 EI24 EI24, autophagy associated transmembrane protein 11 protein-coding EPG4|PIG8|TP53I8 etoposide-induced protein 2.4 homolog|ectopic P-granules autophagy protein 4 homolog|etoposide induced 2.4|p53-induced gene 8 protein|tumor protein p53 inducible protein 8 19 0.002601 11.2 1 1 +9540 TP53I3 tumor protein p53 inducible protein 3 2 protein-coding PIG3 quinone oxidoreductase PIG3|p53-induced gene 3 protein|quinone oxidoreductase homolog 17 0.002327 8.73 1 1 +9541 CIR1 corepressor interacting with RBPJ, 1 2 protein-coding CIR corepressor interacting with RBPJ 1|CBF1-interacting corepressor|recepin 28 0.003832 9.669 1 1 +9542 NRG2 neuregulin 2 5 protein-coding DON1|HRG2|NTAK pro-neuregulin-2, membrane-bound isoform|divergent of neuregulin-1|neural- and thymus-derived activator for ErbB kinases|pro-NRG2 53 0.007254 3.511 1 1 +9543 IGDCC3 immunoglobulin superfamily DCC subclass member 3 15 protein-coding HsT18880|PUNC immunoglobulin superfamily DCC subclass member 3|putative neuronal cell adhesion molecule 60 0.008212 2.89 1 1 +9545 RAB3D RAB3D, member RAS oncogene family 19 protein-coding D2-2|GOV|RAB16|RAD3D ras-related protein Rab-3D|Rab3D upregulated with myeloid differentiation|glioblastoma overexpressed 20 0.002737 9.807 1 1 +9546 APBA3 amyloid beta precursor protein binding family A member 3 19 protein-coding MGC:15815|X11L2|mint3 amyloid beta A4 precursor protein-binding family A member 3|X11-like 2 protein|adapter protein X11gamma|amyloid beta (A4) precursor protein-binding, family A, member 3 (X11-like 2)|mint-3|neuron-specific X11L2 protein|neuronal munc18-1-interacting protein 3|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 32 0.00438 8.182 1 1 +9547 CXCL14 C-X-C motif chemokine ligand 14 5 protein-coding BMAC|BRAK|KEC|KS1|MIP-2g|MIP2G|NJAC|SCYB14 C-X-C motif chemokine 14|CXC chemokine in breast and kidney|MIP-2 gamma|bolekine|breast and kidney|chemokine (C-X-C motif) ligand 14|chemokine BRAK|small inducible cytokine subfamily B (Cys-X-Cys), member 14 (BRAK)|small-inducible cytokine B14|tumor-suppressing chemokine 13 0.001779 9.144 1 1 +9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 9 protein-coding ATP6G|ATP6G1|ATP6GL|ATP6J|Vma10 V-type proton ATPase subunit G 1|ATPase, H+ transporting, lysosomal (vacuolar proton pump), member J|ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1|V-ATPase 13 kDa subunit 1|V-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 8 0.001095 11.28 1 1 +9551 ATP5J2 ATP synthase, H+ transporting, mitochondrial Fo complex subunit F2 7 protein-coding ATP5JL ATP synthase subunit f, mitochondrial|ATP synthase f chain, 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 5 0.0006844 10.95 1 1 +9552 SPAG7 sperm associated antigen 7 17 protein-coding ACRP|FSA-1 sperm-associated antigen 7 23 0.003148 9.754 1 1 +9553 MRPL33 mitochondrial ribosomal protein L33 2 protein-coding C2orf1|L33mt|MRP-L33|RPL33L 39S ribosomal protein L33, mitochondrial 10 0.001369 9 1 1 +9554 SEC22B SEC22 homolog B, vesicle trafficking protein (gene/pseudogene) 1 protein-coding ERS-24|SEC22L1 vesicle-trafficking protein SEC22b|ER-Golgi SNARE of 24 kDa|SEC22 vesicle trafficking protein homolog B|SEC22 vesicle trafficking protein-like 1 156 0.02135 10.29 1 1 +9555 H2AFY H2A histone family member Y 5 protein-coding H2A.y|H2A/y|H2AF12M|MACROH2A1.1|mH2A1|macroH2A1.2 core histone macro-H2A.1|histone H2A.y|histone macroH2A1|histone macroH2A1.1|histone macroH2A1.2|medulloblastoma antigen MU-MB-50.205 24 0.003285 11.9 1 1 +9556 C14orf2 chromosome 14 open reading frame 2 14 protein-coding MP68|PLPM 6.8 kDa mitochondrial proteolipid 6 0.0008212 10.13 1 1 +9557 CHD1L chromodomain helicase DNA binding protein 1 like 1 protein-coding ALC1|CHDL chromodomain-helicase-DNA-binding protein 1-like|amplified in liver cancer 1|amplified in liver cancer protein 1 58 0.007939 9.733 1 1 +9559 VPS26A VPS26, retromer complex component A 10 protein-coding HB58|Hbeta58|PEP8A|VPS26 vacuolar protein sorting-associated protein 26A|VPS26 retromer complex comonent A|vacuolar protein sorting 26 homolog A|vesicle protein sorting 26A 19 0.002601 10.36 1 1 +9560 CCL4L2 C-C motif chemokine ligand 4 like 2 17 protein-coding AT744.2|CCL4L|SCYA4L|SCYQ4L2 C-C motif chemokine 4-like|MIP-1-beta|chemokine (C-C motif) ligand 4-like 2|macrophage inflammatory protein 1-beta|macrophage inflammatory protein-1b2|monocyte adherence-induced protein 5-alpha|small inducible cytokine A4-like 5 0.0006844 1 0 +9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 10 protein-coding HIPER1|MINPP2|MIPP multiple inositol polyphosphate phosphatase 1|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 2 27 0.003696 8.804 1 1 +9563 H6PD hexose-6-phosphate dehydrogenase/glucose 1-dehydrogenase 1 protein-coding CORTRD1|G6PDH|GDH GDH/6PGL endoplasmic bifunctional protein|6-phosphogluconolactonase|G6PD, H form|glucose 1- dehydrogenase|glucose dehydrogenase|glucose dehyrogenase|glucose-6-phosphate dehydrogenase, salivary 54 0.007391 11.02 1 1 +9564 BCAR1 BCAR1, Cas family scaffolding protein 16 protein-coding CAS|CAS1|CASS1|CRKAS|P130Cas breast cancer anti-estrogen resistance protein 1|Cas scaffolding protein family member 1|Crk-associated substrate p130Cas|breast cancer anti-estrogen resistance 1 57 0.007802 10.69 1 1 +9567 GTPBP1 GTP binding protein 1 22 protein-coding GP-1|GP1|HSPC018 GTP-binding protein 1|G-protein 1 38 0.005201 10.45 1 1 +9568 GABBR2 gamma-aminobutyric acid type B receptor subunit 2 9 protein-coding GABABR2|GPR51|GPRC3B|HG20|HRIHFB2099 gamma-aminobutyric acid type B receptor subunit 2|G-protein coupled receptor 51|GABA-B receptor 2|GABA-B receptor, R2 subunit|GABA-B-R2|GABA-BR2|gamma-aminobutyric acid (GABA) B receptor, 2|gamma-aminobutyric acid B receptor 2|gb2 74 0.01013 4.064 1 1 +9569 GTF2IRD1 GTF2I repeat domain containing 1 7 protein-coding BEN|CREAM1|GTF3|MUSTRD1|RBAP2|WBS|WBSCR11|WBSCR12|hMusTRD1alpha1 general transcription factor II-I repeat domain-containing protein 1|USE B1-binding protein|Williams-Beuren syndrome chromosome region 11|binding factor for early enhancer|general transcription factor 3|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 66 0.009034 9.495 1 1 +9570 GOSR2 golgi SNAP receptor complex member 2 17 protein-coding Bos1|EPM6|GS27 Golgi SNAP receptor complex member 2|27 kDa Golgi SNARE protein|membrin 16 0.00219 10.07 1 1 +9572 NR1D1 nuclear receptor subfamily 1 group D member 1 17 protein-coding EAR1|THRA1|THRAL|ear-1|hRev nuclear receptor subfamily 1 group D member 1|Rev-ErbAalpha|V-erbA-related protein 1|nuclear receptor Rev-ErbA-alpha|rev-erbA-alpha 24 0.003285 9.252 1 1 +9573 GDF3 growth differentiation factor 3 12 protein-coding KFS3|MCOP7|MCOPCB6 growth/differentiation factor 3 35 0.004791 1.463 1 1 +9575 CLOCK clock circadian regulator 4 protein-coding KAT13D|bHLHe8 circadian locomoter output cycles protein kaput|circadian locomoter output cycles kaput protein|class E basic helix-loop-helix protein 8|clock homolog 52 0.007117 7.883 1 1 +9576 SPAG6 sperm associated antigen 6 10 protein-coding CT141|Repro-SA-1|pf16 sperm-associated antigen 6|axoneme central apparatus protein|protein PF16 homolog|sperm flagellar protein|testicular tissue protein Li 176 54 0.007391 2.395 1 1 +9577 BRE brain and reproductive organ-expressed (TNFRSF1A modulator) 2 protein-coding BRCC4|BRCC45 BRCA1-A complex subunit BRE|BRCA1/BRCA2-containing complex subunit 45|BRCA1/BRCA2-containing complex, subunit 4|brain and reproductive organ-expressed protein 39 0.005338 9.305 1 1 +9578 CDC42BPB CDC42 binding protein kinase beta 14 protein-coding MRCKB serine/threonine-protein kinase MRCK beta|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 92 0.01259 11.59 1 1 +9580 SOX13 SRY-box 13 1 protein-coding ICA12|Sox-13 transcription factor SOX-13|SRY (sex determining region Y)-box 13|SRY-related HMG-box gene 13|islet cell antibody 12|islet cell antigen 12|type 1 diabetes autoantigen ICA12 47 0.006433 9.597 1 1 +9581 PREPL prolyl endopeptidase-like 2 protein-coding - prolyl endopeptidase-like|putative prolyl oligopeptidase 74 0.01013 10.54 1 1 +9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B 22 protein-coding A3B|APOBEC1L|ARCD3|ARP4|DJ742C19.2|PHRBNL|bK150C2.2 DNA dC->dU-editing enzyme APOBEC-3B|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3B|cytidine deaminase|phorbolin 2|phorbolin 3|phorbolin-1-related protein|phorbolin-2/3|probable DNA dC->dU-editing enzyme APOBEC-3B 28 0.003832 6.776 1 1 +9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 8 protein-coding LALP70|LAP70|LYSAL1|NTPDase-4|UDPase ectonucleoside triphosphate diphosphohydrolase 4|golgi luminal UDPase|guanosine-diphosphatase like protein|lysosomal apyrase-like 1|lysosomal apyrase-like protein of 70 kDa|uridine-diphosphatase 43 0.005886 8.53 1 1 +9584 RBM39 RNA binding motif protein 39 20 protein-coding CAPER|CAPERalpha|FSAP59|HCC1|RNPC2 RNA-binding protein 39|CAPER alpha|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 46 0.006296 11.85 1 1 +9585 KIF20B kinesin family member 20B 10 protein-coding CT90|KRMP1|MPHOSPH1|MPP-1|MPP1 kinesin-like protein KIF20B|M-phase phosphoprotein 1|cancer/testis antigen 90|kinesin-related motor interacting with PIN1|mitotic kinesin-like protein|mitotic kinesin-related protein 108 0.01478 7.928 1 1 +9586 CREB5 cAMP responsive element binding protein 5 7 protein-coding CRE-BPA|CREB-5 cyclic AMP-responsive element-binding protein 5|cAMP response element-binding protein CRE-BPa 65 0.008897 7.097 1 1 +9587 MAD2L1BP MAD2L1 binding protein 6 protein-coding CMT2 MAD2L1-binding protein|caught by MAD2 protein 16 0.00219 8.885 1 1 +9588 PRDX6 peroxiredoxin 6 1 protein-coding 1-Cys|AOP2|HEL-S-128m|NSGPx|PRX|aiPLA2|p29 peroxiredoxin-6|1-Cys PRX|1-Cys peroxiredoxin|24 kDa protein|acidic calcium-independent phospholipase A2|antioxidant protein 2|epididymis secretory sperm binding protein Li 128m|liver 2D page spot 40|non-selenium glutathione peroxidase|red blood cells page spot 12 23 0.003148 12.25 1 1 +9589 WTAP Wilms tumor 1 associated protein 6 protein-coding Mum2 pre-mRNA-splicing regulator WTAP|PNAS-132|WT1-associated protein|Wilms' tumour 1-associating protein|female-lethal(2)D homolog|hFL(2)D|putative pre-mRNA splicing regulator female-lethal(2D)|wilms tumor 1-associating protein 44 0.006022 10.6 1 1 +9590 AKAP12 A-kinase anchoring protein 12 6 protein-coding AKAP250|SSeCKS A-kinase anchor protein 12|A kinase (PRKA) anchor protein 12|A-kinase anchor protein, 250kDa|AKAP 250|Src-Suppressed C Kinase Substrate|kinase scaffold protein gravin|myasthenia gravis autoantigen gravin 96 0.01314 9.558 1 1 +9592 IER2 immediate early response 2 19 protein-coding ETR101 immediate early response gene 2 protein|chxI protein homolog 12 0.001642 11.25 1 1 +9595 CYTIP cytohesin 1 interacting protein 2 protein-coding B3-1|CASP|CYBR|CYTHIP|HE|PSCDBP cytohesin-interacting protein|cbp HE|cytohesin binder and regulator|cytohesin binding protein HE|cytohesin-associated scaffolding protein|pleckstrin homology Sec7 and coiled-coil domains-binding protein 44 0.006022 6.953 1 1 +9597 SMAD5-AS1 SMAD5 antisense RNA 1 5 ncRNA DAMS|SMAD5AS|SMAD5OS SMAD family member 5 opposite strand|SMAD family member 5, antisense|SMAD in the antisense orientation|SMAD5 antisense RNA 1 (non-protein coding) 1 0.0001369 2.418 1 1 +9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 11 protein-coding DRES9|NIR2|PITPNM|RDGB|RDGB1|RDGBA|RDGBA1|Rd9 membrane-associated phosphatidylinositol transfer protein 1|NIR-2|PITPnm 1|PYK2 N-terminal domain-interacting receptor 2|drosophila retinal degeneration B homolog|retinal degeneration B alpha 1 62 0.008486 9.793 1 1 +9601 PDIA4 protein disulfide isomerase family A member 4 7 protein-coding ERP70|ERP72|ERp-72 protein disulfide-isomerase A4|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|testicular tissue protein Li 137 43 0.005886 12.4 1 1 +9603 NFE2L3 nuclear factor, erythroid 2 like 3 7 protein-coding NRF3 nuclear factor erythroid 2-related factor 3|NF-E2-related factor 3|NFE2-related factor 3|nuclear factor, erythroid derived 2, like 3|nuclear factor-erythroid 2 p45-related factor 3 70 0.009581 8.781 1 1 +9604 RNF14 ring finger protein 14 5 protein-coding ARA54|HFB30|HRIHFB2038|TRIAD2 E3 ubiquitin-protein ligase RNF14|androgen receptor associated protein 54 26 0.003559 10.05 1 1 +9605 VPS9D1 VPS9 domain containing 1 16 protein-coding ATP-BL|C16orf7 VPS9 domain-containing protein 1 45 0.006159 8.633 1 1 +9607 CARTPT CART prepropeptide 5 protein-coding CART cocaine- and amphetamine-regulated transcript protein 15 0.002053 1.296 1 1 +9609 RAB36 RAB36, member RAS oncogene family 22 protein-coding - ras-related protein Rab-36|small GTP-binding protein Rab36 24 0.003285 7.461 1 1 +9610 RIN1 Ras and Rab interactor 1 11 protein-coding - ras and Rab interactor 1|ras inhibitor 1|ras inhibitor JC99|ras inhibitor RIN1|ras interaction/interference protein 1 41 0.005612 7.728 1 1 +9611 NCOR1 nuclear receptor corepressor 1 17 protein-coding N-CoR|N-CoR1|PPP1R109|TRAC1|hN-CoR nuclear receptor corepressor 1|protein phosphatase 1, regulatory subunit 109|thyroid hormone- and retinoic acid receptor-associated corepressor 1 219 0.02998 10.77 1 1 +9612 NCOR2 nuclear receptor corepressor 2 12 protein-coding CTG26|N-CoR2|SMAP270|SMRT|SMRTE|SMRTE-tau|TNRC14|TRAC|TRAC-1|TRAC1 nuclear receptor corepressor 2|CTG repeat protein 26|T3 receptor-associating factor|silencing mediator for retinoid and thyroid hormone receptors|thyroid-, retinoic-acid-receptor-associated corepressor 197 0.02696 11.99 1 1 +9615 GDA guanine deaminase 9 protein-coding CYPIN|GUANASE|NEDASIN guanine deaminase|GAH|cytoplasmic PSD95 interactor|guanine aminase|guanine aminohydrolase|p51-nedasin 58 0.007939 4.863 1 1 +9616 RNF7 ring finger protein 7 3 protein-coding CKBBP1|ROC2|SAG RING-box protein 2|CKII beta-binding protein 1|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 9 0.001232 10.35 1 1 +9617 MTRF1 mitochondrial translation release factor 1 13 protein-coding MRF1|MTTRF1|RF1 peptide chain release factor 1, mitochondrial|MRF-1|mitochondrial translational release factor 1|mitochontrial peptide chain release factor 1|mtRF-1 28 0.003832 6.857 1 1 +9618 TRAF4 TNF receptor associated factor 4 17 protein-coding CART1|MLN62|RNF83 TNF receptor-associated factor 4|MLN 62|RING finger protein 83|TRAF4 variant 6|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 23 0.003148 10.52 1 1 +9619 ABCG1 ATP binding cassette subfamily G member 1 21 protein-coding ABC8|WHITE1 ATP-binding cassette sub-family G member 1|ABC transporter 8|ATP-binding cassette transporter 8|ATP-binding cassette transporter member 1 of subfamily G|ATP-binding cassette, sub-family G (WHITE), member 1|homolog of Drosophila white|white protein homolog (ATP-binding cassette transporter 8) 50 0.006844 9.346 1 1 +9620 CELSR1 cadherin EGF LAG seven-pass G-type receptor 1 22 protein-coding ADGRC1|CDHF9|FMI2|HFMI2|ME2 cadherin EGF LAG seven-pass G-type receptor 1|adhesion G protein-coupled receptor C1|cadherin family member 9|cadherin, EGF LAG seven-pass G-type receptor 1 (flamingo homolog, Drosophila)|flamingo homolog 2|protocadherin flamingo 2 206 0.0282 9.687 1 1 +9622 KLK4 kallikrein related peptidase 4 19 protein-coding AI2A1|ARM1|EMSP|EMSP1|KLK-L1|PRSS17|PSTS|kallikrein kallikrein-4|androgen-regulated message 1|enamel matrix serine protease 1|enamel matrix serine proteinase 1|kallikrein-like protein 1|prostase|serine protease 17 19 0.002601 3.008 1 1 +9623 TCL1B T-cell leukemia/lymphoma 1B 14 protein-coding SYN-1|TML1 T-cell leukemia/lymphoma protein 1B|T-cell lymphoma/leukemia 1B|TCL1/ MTCP1-like 1|oncogene TCL-1B|syncytiotrophoblast-specific protein 21 0.002874 0.8234 1 1 +9625 AATK apoptosis associated tyrosine kinase 17 protein-coding AATYK|AATYK1|LMR1|LMTK1|PPP1R77|p35BP serine/threonine-protein kinase LMTK1|CDK5-binding protein|brain apoptosis-associated tyrosine kinase|lemur tyrosine kinase 1|p35-binding protein|protein phosphatase 1, regulatory subunit 77 75 0.01027 6.637 1 1 +9626 GUCA1C guanylate cyclase activator 1C 3 protein-coding GCAP3 guanylyl cyclase-activating protein 3|GCAP 3 31 0.004243 0.1985 1 1 +9627 SNCAIP synuclein alpha interacting protein 5 protein-coding SYPH1|Sph1 synphilin-1 89 0.01218 6.034 1 1 +9628 RGS6 regulator of G-protein signaling 6 14 protein-coding GAP|HA117|S914 regulator of G-protein signaling 6|regulator of G-protein signalling 6 63 0.008623 3.726 1 1 +9629 CLCA3P chloride channel accessory 3, pseudogene 1 pseudo CLCA3 chloride channel regulator 3 pseudogene|chloride channel, calcium activated, family member 3 0 0 0.7264 1 1 +9630 GNA14 G protein subunit alpha 14 9 protein-coding - guanine nucleotide-binding protein subunit alpha-14|g alpha-14|guanine nucleotide binding protein (G protein), alpha 14|guanine nucleotide-binding protein 14 20 0.002737 5.779 1 1 +9631 NUP155 nucleoporin 155 5 protein-coding ATFB15|N155 nuclear pore complex protein Nup155|155 kDa nucleoporin|nucleoporin 155kD|nucleoporin 155kDa 95 0.013 8.912 1 1 +9632 SEC24C SEC24 homolog C, COPII coat complex component 10 protein-coding - protein transport protein Sec24C|SEC24 family, member C|SEC24 related gene family, member C|SEC24-related protein C 80 0.01095 11.46 1 1 +9633 TESMIN testis expressed metallothionein like protein 11 protein-coding CXCDC2|MTL5|MTLT tesmin|CXC domain containing 2|metallothionein-like 5, testis-specific (tesmin)|testis-specific metallothionein-like protein 39 0.005338 6.178 1 1 +9635 CLCA2 chloride channel accessory 2 1 protein-coding CACC|CACC3|CLCRG2|CaCC-3 calcium-activated chloride channel regulator 2|CLCA family member 2, chloride channel regulator|calcium-activated chloride channel protein 3|chloride channel, calcium activated, family member 2 72 0.009855 4.233 1 1 +9636 ISG15 ISG15 ubiquitin-like modifier 1 protein-coding G1P2|IFI15|IMD38|IP17|UCRP|hUCRP ubiquitin-like protein ISG15|interferon, alpha-inducible protein (clone IFI-15K)|interferon-induced 17-kDa/15-kDa protein|interferon-stimulated protein, 15 kDa|ubiquitin cross-reactive protein 5 0.0006844 10.03 1 1 +9637 FEZ2 fasciculation and elongation protein zeta 2 2 protein-coding HUM3CL fasciculation and elongation protein zeta-2|fasciculation and elongation protein zeta 2 (zygin II)|pre-T/NK cell associated protein (3Cl)|zygin 2|zygin II 26 0.003559 9.624 1 1 +9638 FEZ1 fasciculation and elongation protein zeta 1 11 protein-coding UNC-76 fasciculation and elongation protein zeta-1|fasciculation and elongation protein zeta 1 (zygin I)|zygin I|zygin-1 36 0.004927 7.728 1 1 +9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 8 protein-coding GEF10|SNCV rho guanine nucleotide exchange factor 10|Rho guanine nucleotide exchange factor (GEF) 10 80 0.01095 8.832 1 1 +9640 ZNF592 zinc finger protein 592 15 protein-coding CAMOS|SCAR5 zinc finger protein 592 83 0.01136 10.24 1 1 +9641 IKBKE inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase epsilon 1 protein-coding IKK-E|IKK-i|IKKE|IKKI inhibitor of nuclear factor kappa-B kinase subunit epsilon|I-kappa-B kinase epsilon|IKK-epsilon|IKK-related kinase epsilon|inducible I kappa-B kinase|inducible IkappaB kinase 64 0.00876 8.097 1 1 +9643 MORF4L2 mortality factor 4 like 2 X protein-coding MORFL2|MRGX mortality factor 4-like protein 2|MORF-related gene X protein|MSL3-2 protein|protein MSL3-2|transcription factor-like protein MRGX 26 0.003559 12.18 1 1 +9644 SH3PXD2A SH3 and PX domains 2A 10 protein-coding FISH|SH3MD1|TKS5 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 73 0.009992 10.71 1 1 +9645 MICAL2 microtubule associated monooxygenase, calponin and LIM domain containing 2 11 protein-coding MICAL-2|MICAL2PV1|MICAL2PV2 protein-methionine sulfoxide oxidase MICAL2|flavoprotein oxidoreductase MICAL2|microtubule associated monoxygenase, calponin and LIM domain containing 2|molecule interacting with CasL protein 2 90 0.01232 10.15 1 1 +9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component 11 protein-coding SH2BP1|TSBP|p150|p150TSP RNA polymerase-associated protein CTR9 homolog|Ctr9, Paf1/RNA polymerase II complex component, homolog|SH2 domain binding protein 1 (tetratricopeptide repeat containing)|SH2 domain-binding protein 1|TPR-containing, SH2-binding phosphoprotein 75 0.01027 10.25 1 1 +9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F 22 protein-coding CAMKP|CaMKPase|FEM-2|POPX2|hFEM-2 protein phosphatase 1F|Ca(2+)/calmodulin-dependent protein kinase phosphatase|CaM-kinase phosphatase|PP2C phosphatase|partner of PIX 2|protein fem-2 homolog|protein phosphatase 1F (PP2C domain containing) 32 0.00438 9.668 1 1 +9648 GCC2 GRIP and coiled-coil domain containing 2 2 protein-coding GCC185|RANBP2L4|REN53 GRIP and coiled-coil domain-containing protein 2|185 kDa Golgi coiled-coil protein|CLL-associated antigen KW-11|CTCL tumor antigen se1-1|GCC protein, 185-kD|Golgi coiled-coil protein GCC185|Ran-binding protein 2-like 4|renal carcinoma antigen NY-REN-53 114 0.0156 9.715 1 1 +9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 9 protein-coding RALGEF2|RALGPS1A ras-specific guanine nucleotide-releasing factor RalGPS1|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 35 0.004791 7.937 1 1 +9650 MTFR1 mitochondrial fission regulator 1 8 protein-coding CHPPR|FAM54A2 mitochondrial fission regulator 1|chondrocyte protein with a poly-proline region 26 0.003559 9.02 1 1 +9651 PLCH2 phospholipase C eta 2 1 protein-coding PLC-L4|PLC-eta2|PLCL4|PLCeta2 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-2|phosphoinositide phospholipase C-eta-2|phosphoinositide phospholipase C-like 4|phospholipase C-eta2|phospholipase C-like 4|phospholipase C-like protein 4 78 0.01068 6.858 1 1 +9652 TTC37 tetratricopeptide repeat domain 37 5 protein-coding KIAA0372|Ski3|THES tetratricopeptide repeat protein 37|SKI3 homolog|TPR repeat protein 37|thespin|tricho-hepatic-enteric syndrome protein 82 0.01122 10.09 1 1 +9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 1 protein-coding dJ604K5.2 heparan sulfate 2-O-sulfotransferase 1|2-O-sulfotransferase|2OST 25 0.003422 9.993 1 1 +9654 TTLL4 tubulin tyrosine ligase like 4 2 protein-coding - tubulin polyglutamylase TTLL4|tubulin tyrosine ligase-like family, member 4|tubulin--tyrosine ligase-like protein 4 76 0.0104 8.883 1 1 +9655 SOCS5 suppressor of cytokine signaling 5 2 protein-coding CIS6|CISH6|Cish5|SOCS-5 suppressor of cytokine signaling 5|CIS-6|cytokine-inducible SH2 protein 6|cytokine-inducible SH2-containing protein 5 44 0.006022 9.051 1 1 +9656 MDC1 mediator of DNA damage checkpoint 1 6 protein-coding NFBD1 mediator of DNA damage checkpoint protein 1|homologue to Drosophila photoreceptor protein calphotin|nuclear factor with BRCT domains 1 126 0.01725 9.872 1 1 +9657 IQCB1 IQ motif containing B1 3 protein-coding NPHP5|PIQ|SLSN5 IQ calmodulin-binding motif-containing protein 1|nephrocystin 5|p53 and DNA damage-regulated IQ motif protein 42 0.005749 8.672 1 1 +9658 ZNF516 zinc finger protein 516 18 protein-coding HsT287 zinc finger protein 516 90 0.01232 7.995 1 1 +9659 PDE4DIP phosphodiesterase 4D interacting protein 1 protein-coding CMYA2|MMGL myomegalin|cardiomyopathy-associated protein 2|myomegalin/phosphodiesterase 4D interacting protein variant 8 304 0.04161 10.71 1 1 +9662 CEP135 centrosomal protein 135 4 protein-coding CEP4|KIAA0635|MCPH8 centrosomal protein of 135 kDa|centrosomal protein 135kDa|centrosomal protein 4|centrosome protein cep135 79 0.01081 7.391 1 1 +9663 LPIN2 lipin 2 18 protein-coding - phosphatidate phosphatase LPIN2 71 0.009718 10.15 1 1 +9665 KIAA0430 KIAA0430 16 protein-coding LKAP|MARF1|PPP1R34 meiosis arrest female protein 1|limkain-b1|meiosis arrest female 1|protein phosphatase 1, regulatory subunit 34 111 0.01519 10.7 1 1 +9666 DZIP3 DAZ interacting zinc finger protein 3 3 protein-coding PPP1R66|UURF2|hRUL138 E3 ubiquitin-protein ligase DZIP3|DAZ interacting protein 3, zinc finger|DAZ-interacting protein 3|RNA-binding RING-H2 protein-ubiquitin ligase|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 105 0.01437 8.605 1 1 +9667 SAFB2 scaffold attachment factor B2 19 protein-coding - scaffold attachment factor B2 59 0.008076 10.56 1 1 +9668 ZNF432 zinc finger protein 432 19 protein-coding - zinc finger protein 432 42 0.005749 6.648 1 1 +9669 EIF5B eukaryotic translation initiation factor 5B 2 protein-coding IF2 eukaryotic translation initiation factor 5B|eIF-5B|translation initiation factor IF-2|translation initiation factor IF2 77 0.01054 11.57 1 1 +9670 IPO13 importin 13 1 protein-coding IMP13|KAP13|LGL2|RANBP13 importin-13|Ran binding protein 13|karyopherin 13|late gestation lung 2|ran-binding protein 13 55 0.007528 10.04 1 1 +9671 WSCD2 WSC domain containing 2 12 protein-coding - WSC domain-containing protein 2 93 0.01273 3.796 1 1 +9672 SDC3 syndecan 3 1 protein-coding SDCN|SYND3 syndecan-3|N-syndecan|syndecan neural type|syndecan proteoglycan 3 26 0.003559 11.21 1 1 +9673 SLC25A44 solute carrier family 25 member 44 1 protein-coding - solute carrier family 25 member 44 20 0.002737 9.898 1 1 +9674 KIAA0040 KIAA0040 1 protein-coding - uncharacterized protein KIAA0040 17 0.002327 9.585 1 1 +9675 TTI1 TELO2 interacting protein 1 20 protein-coding KIAA0406|smg-10 TELO2-interacting protein 1 homolog|TEL2-interacting protein 1 homolog|Tel two interacting protein 1|smg-10 homolog, nonsense mediated mRNA decay factor 76 0.0104 9.404 1 1 +9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 15 protein-coding HISPPD2A|IP6K|IPS1|VIP1|hsVIP1 inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1|IP6 kinase|VIP1 homolog|histidine acid phosphatase domain containing 2A|histidine acid phosphatase domain-containing protein 2A|inositol pyrophosphate synthase 1|insP6 and PP-IP5 kinase 1 23 0.003148 9.065 1 1 +9678 PHF14 PHD finger protein 14 7 protein-coding - PHD finger protein 14 65 0.008897 9.738 1 1 +9679 FAM53B family with sequence similarity 53 member B 10 protein-coding KIAA0140|bA12J10.2|smp protein FAM53B|simplet homolog 31 0.004243 10.09 1 1 +9681 DEPDC5 DEP domain containing 5 22 protein-coding DEP.5|FFEVF|FFEVF1 DEP domain-containing protein 5 120 0.01642 8.335 1 1 +9682 KDM4A lysine demethylase 4A 1 protein-coding JHDM3A|JMJD2|JMJD2A|TDRD14A lysine-specific demethylase 4A|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 (K)-specific demethylase 4A|tudor domain containing 14A 56 0.007665 10.24 1 1 +9683 N4BP1 NEDD4 binding protein 1 16 protein-coding - NEDD4-binding protein 1 60 0.008212 10.23 1 1 +9684 LRRC14 leucine rich repeat containing 14 8 protein-coding LRRC14A leucine-rich repeat-containing protein 14 33 0.004517 9.581 1 1 +9685 CLINT1 clathrin interactor 1 5 protein-coding CLINT|ENTH|EPN4|EPNR clathrin interactor 1|clathrin interacting protein localized in the trans-Golgi region|enthoprotin|epsin 4|epsin-related protein|epsinR 39 0.005338 10.89 1 1 +9686 VGLL4 vestigial like family member 4 3 protein-coding VGL-4 transcription cofactor vestigial-like protein 4|Vestigial-like 4|vestigial like 4 30 0.004106 10.82 1 1 +9687 GREB1 growth regulation by estrogen in breast cancer 1 2 protein-coding - protein GREB1|gene regulated by estrogen in breast cancer|gene regulated in breast cancer 1 protein 170 0.02327 7.073 1 1 +9688 NUP93 nucleoporin 93 16 protein-coding NIC96|NPHS12 nuclear pore complex protein Nup93|93 kDa nucleoporin|nucleoporin 93kDa|nucleoporin Nup93 57 0.007802 9.947 1 1 +9689 BZW1 basic leucine zipper and W2 domains 1 2 protein-coding BZAP45|Nbla10236 basic leucine zipper and W2 domain-containing protein 1|basic leucine-zipper protein BZAP45|putative protein product of Nbla10236 26 0.003559 11.88 1 1 +9690 UBE3C ubiquitin protein ligase E3C 7 protein-coding HECTH2 ubiquitin-protein ligase E3C|ubiquitin-protein isopeptide ligase (E3) 73 0.009992 10.87 1 1 +9692 KIAA0391 KIAA0391 14 protein-coding MRPP3|PRORP mitochondrial ribonuclease P protein 3|mitochondrial RNase P protein 3|mitochondrial RNase P subunit 3|proteinaceous RNase P 35 0.004791 9.183 1 1 +9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 4 protein-coding CNrasGEF|NRAPGEP|PDZ-GEF1|PDZGEF1|RA-GEF|RA-GEF-1|Rap-GEP|nRap GEP rap guanine nucleotide exchange factor 2|PDZ domain containing guanine nucleotide exchange factor (GEF) 1|PDZ domain-containing guanine nucleotide exchange factor 1|RA(Ras/Rap1A-associating)-GEF|Rap guanine nucleotide exchange factor (GEF) 2|cyclic nucleotide ras GEF|neural RAP guanine nucleotide exchange protein|ras/Rap1-associating GEF-1 109 0.01492 9.512 1 1 +9694 EMC2 ER membrane protein complex subunit 2 8 protein-coding KIAA0103|TTC35 ER membrane protein complex subunit 2|TPR repeat protein 35|tetratricopeptide repeat domain 35|tetratricopeptide repeat protein 35 28 0.003832 9.577 1 1 +9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 3 protein-coding EDEM ER degradation-enhancing alpha-mannosidase-like protein 1|ER degradation enhancer, mannosidase alpha-like 1|ER degradation-enhancing alpha-mannosidase-like 1 33 0.004517 10.36 1 1 +9696 CROCC ciliary rootlet coiled-coil, rootletin 1 protein-coding ROLT rootletin|Tax1-binding protein 2|ciliary rootlet coiled-coil protein|rootletin, ciliary rootlet protein 158 0.02163 8.82 1 1 +9697 TRAM2 translocation associated membrane protein 2 6 protein-coding - translocating chain-associated membrane protein 2|TRAM-like protein 16 0.00219 9.748 1 1 +9698 PUM1 pumilio RNA binding family member 1 1 protein-coding HSPUM|PUMH|PUMH1|PUML1 pumilio homolog 1|pumilio-1 80 0.01095 11.05 1 1 +9699 RIMS2 regulating synaptic membrane exocytosis 2 8 protein-coding OBOE|RAB3IP3|RIM2 regulating synaptic membrane exocytosis protein 2|RAB3 interacting protein 3|RIM 2|Rab3-interacting protein|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 302 0.04134 4.088 1 1 +9700 ESPL1 extra spindle pole bodies like 1, separase 12 protein-coding ESP1|SEPA separin|caspase-like protein ESPL1|extra spindle pole bodies 1, separase|extra spindle pole bodies homolog 1|extra spindle poles like 1|extra spindle poles-like 1 protein|separin, cysteine protease 112 0.01533 7.54 1 1 +9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 22 protein-coding KIAA0685|PP6R2|SAP190|SAPS2 serine/threonine-protein phosphatase 6 regulatory subunit 2|SAPS domain family, member 2 60 0.008212 10.31 1 1 +9702 CEP57 centrosomal protein 57 11 protein-coding MVA2|PIG8|TSP57 centrosomal protein of 57 kDa|FGF2-interacting protein|centrosomal protein 57kDa|proliferation-inducing protein 8|testis-specific protein 57|translokin 43 0.005886 9.557 1 1 +9703 KIAA0100 KIAA0100 17 protein-coding BCOX|BCOX1|CT101|FMP27 protein KIAA0100|U937-associated antigen|antigen MLAA-22|breast cancer overexpressed gene 1|breast cancer-overexpressed gene 1 protein|cancer/testis antigen 101 136 0.01861 11.9 1 1 +9704 DHX34 DExH-box helicase 34 19 protein-coding DDX34|HRH1 probable ATP-dependent RNA helicase DHX34|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 34|DEAH (Asp-Glu-Ala-His) box polypeptide 34|DEAH box protein 34|DEAH-box helicase 34|probable ATP-dependent helicase DHX34 77 0.01054 9.082 1 1 +9705 ST18 ST18, C2H2C-type zinc finger 8 protein-coding NZF3|ZC2H2C3|ZC2HC10|ZNF387 suppression of tumorigenicity 18 protein|neural zinc finger transcription factor 3|suppression of tumorigenicity 18 (breast carcinoma) (zinc finger protein)|suppression of tumorigenicity 18, zinc finger|zinc finger protein 387 146 0.01998 2.651 1 1 +9706 ULK2 unc-51 like autophagy activating kinase 2 17 protein-coding ATG1B|Unc51.2 serine/threonine-protein kinase ULK2 67 0.009171 8.811 1 1 +9708 PCDHGA8 protocadherin gamma subfamily A, 8 5 protein-coding PCDH-GAMMA-A8 protocadherin gamma-A8 101 0.01382 3.209 1 1 +9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 16 protein-coding HERP|Mif1|SUP homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 1 protein|MMS-inducible|homocysteine-inducible endoplasmic reticulum stress-inducible ubiquitin-like domain member 1 protein|homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1|methyl methanesulfonate (MMF)-inducible fragment protein 1 23 0.003148 11.28 1 1 +9710 KIAA0355 KIAA0355 19 protein-coding - uncharacterized protein KIAA0355 62 0.008486 9.441 1 1 +9711 RUBCN RUN and cysteine rich domain containing beclin 1 interacting protein 3 protein-coding KIAA0226|RUBICON|SCAR15 run domain Beclin-1-interacting and cysteine-rich domain-containing protein|RUN domain and cysteine-rich domain containing, Beclin 1-interacting protein|baron|beclin-1 associated RUN domain containing protein|rundataxin 79 0.01081 9.535 1 1 +9712 USP6NL USP6 N-terminal like 10 protein-coding RNTRE|TRE2NL|USP6NL-IT1 USP6 N-terminal-like protein|related to the N-terminus of tre 48 0.00657 8.988 1 1 +9715 FAM131B family with sequence similarity 131 member B 7 protein-coding - protein FAM131B 45 0.006159 5.314 1 1 +9716 AQR aquarius intron-binding spliceosomal factor 15 protein-coding IBP160|fSAP164 intron-binding protein aquarius|aquarius homolog|functional spliceosome-associated protein 164|intron-binding protein of 160 kDa 94 0.01287 9.72 1 1 +9717 SEC14L5 SEC14 like lipid binding 5 16 protein-coding PRELID4B SEC14-like protein 5|SEC14-like 5 58 0.007939 3.822 1 1 +9718 ECE2 endothelin converting enzyme 2 3 protein-coding - endothelin-converting enzyme 2 96 0.01314 7.914 1 1 +9719 ADAMTSL2 ADAMTS like 2 9 protein-coding GPHYSD1 ADAMTS-like protein 2|ADAMTSL-2 31 0.004243 7.553 1 1 +9720 CCDC144A coiled-coil domain containing 144A 17 protein-coding - coiled-coil domain-containing protein 144A 70 0.009581 3.464 1 1 +9721 GPRIN2 G protein regulated inducer of neurite outgrowth 2 10 protein-coding GRIN2|KIAA0514 G protein-regulated inducer of neurite outgrowth 2 73 0.009992 5.439 1 1 +9722 NOS1AP nitric oxide synthase 1 adaptor protein 1 protein-coding 6330408P19Rik|CAPON carboxyl-terminal PDZ ligand of neuronal nitric oxide synthase protein|C-terminal PDZ domain ligand of neuronal nitric oxide synthase (CAPON)|C-terminal PDZ ligand of neuronal nitric oxide synthase protein|ligand of neuronal nitric oxide synthase with carboxyl-terminal PDZ domain|nitric oxide synthase 1 (neuronal) adaptor protein 42 0.005749 5.432 1 1 +9723 SEMA3E semaphorin 3E 7 protein-coding M-SEMAH|M-SemaK|SEMAH|coll-5 semaphorin-3E|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E 97 0.01328 4.46 1 1 +9724 UTP14C UTP14, small subunit processome component homolog C (S. cerevisiae) 13 protein-coding 2700066J21Rik|KIAA0266|UTP14B U3 small nucleolar RNA-associated protein 14 homolog C|UTP14, U3 small nucleolar ribonucleoprotein, homolog C 44 0.006022 9.732 1 1 +9725 TMEM63A transmembrane protein 63A 1 protein-coding KIAA0792 CSC1-like protein 1 52 0.007117 10.06 1 1 +9726 ZNF646 zinc finger protein 646 16 protein-coding - zinc finger protein 646 117 0.01601 9.103 1 1 +9727 RAB11FIP3 RAB11 family interacting protein 3 16 protein-coding CART1|Rab11-FIP3 rab11 family-interacting protein 3|EF hands-containing Rab-interacting protein|FIP3-Rab11|MU-MB-17.148|PAC196A12.1|RAB11 family interacting protein 3 (class II)|arfophilin-1|cytoplasmic adaptor for RAR and TR|eferin 25 0.003422 10.06 1 1 +9728 SECISBP2L SECIS binding protein 2 like 15 protein-coding SBP2L|SLAN selenocysteine insertion sequence-binding protein 2-like 65 0.008897 9.992 1 1 +9729 KIAA0408 KIAA0408 6 protein-coding - uncharacterized protein KIAA0408 45 0.006159 2.16 1 1 +9730 DCAF1 DDB1 and CUL4 associated factor 1 3 protein-coding VPRBP protein VPRBP|HIV-1 Vpr-binding protein|Vpr (HIV-1) binding protein|Vpr-binding protein|serine/threonine-protein kinase VPRBP|vpr-interacting protein 74 0.01013 9.585 1 1 +9731 CEP104 centrosomal protein 104 1 protein-coding CFAP256|GlyBP|JBTS25|KIAA0562|ROC22 centrosomal protein of 104 kDa|centrosomal protein 104kDa 60 0.008212 9.397 1 1 +9732 DOCK4 dedicator of cytokinesis 4 7 protein-coding - dedicator of cytokinesis protein 4 162 0.02217 8.447 1 1 +9733 SART3 squamous cell carcinoma antigen recognized by T-cells 3 12 protein-coding DSAP1|P100|RP11-13G14|TIP110|p110|p110(nrb) squamous cell carcinoma antigen recognized by T-cells 3|HIV-1 Tat-interacting protein of 110kDa|SART-3|hSART-3|p110 nuclear RNA-binding protein|tat-interacting protein of 110 kDa 50 0.006844 10.34 1 1 +9734 HDAC9 histone deacetylase 9 7 protein-coding HD7|HD7b|HD9|HDAC|HDAC7|HDAC7B|HDAC9B|HDAC9FL|HDRP|MITR histone deacetylase 9|MEF-2 interacting transcription repressor (MITR) protein|histone deacetylase 4/5-related protein|histone deacetylase 7B 155 0.02122 7.13 1 1 +9735 KNTC1 kinetochore associated 1 12 protein-coding ROD kinetochore-associated protein 1|Rough Deal homolog, centromere/kinetochore protein 125 0.01711 8.627 1 1 +9736 USP34 ubiquitin specific peptidase 34 2 protein-coding - ubiquitin carboxyl-terminal hydrolase 34|deubiquitinating enzyme 34|ubiquitin specific protease 34|ubiquitin thioesterase 34|ubiquitin thiolesterase 34|ubiquitin-specific-processing protease 34 242 0.03312 11.15 1 1 +9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 X protein-coding GASP|GASP-1|GASP1 G-protein coupled receptor-associated sorting protein 1 102 0.01396 7.303 1 1 +9738 CCP110 centriolar coiled-coil protein 110 16 protein-coding CP110|Cep110 centriolar coiled-coil protein of 110 kDa|centriolar coiled-coil protein 110kDa|centrosomal protein CP110|centrosomal protein of 110 kDa 56 0.007665 8.784 1 1 +9739 SETD1A SET domain containing 1A 16 protein-coding KMT2F|Set1|Set1A histone-lysine N-methyltransferase SETD1A|SET domain-containing protein 1A|hSET1A|lysine N-methyltransferase 2F|set1/Ash2 histone methyltransferase complex subunit SET1 113 0.01547 9.966 1 1 +9741 LAPTM4A lysosomal protein transmembrane 4 alpha 2 protein-coding HUMORF13|LAPTM4|MBNT|Mtrp lysosomal-associated transmembrane protein 4A|golgi 4-transmembrane-spanning transporter MTP|lysosomal-associated protein transmembrane 4 alpha|membrane nucleoside transporter 8 0.001095 12.75 1 1 +9742 IFT140 intraflagellar transport 140 16 protein-coding MZSDS|SRTD9|WDTC2|c305C8.4|c380F5.1|gs114 intraflagellar transport protein 140 homolog|WD and tetratricopeptide repeats protein 2|intraflagellar transport 140 homolog 92 0.01259 9.152 1 1 +9743 ARHGAP32 Rho GTPase activating protein 32 11 protein-coding GC-GAP|GRIT|PX-RICS|RICS|p200RhoGAP|p250GAP rho GTPase-activating protein 32|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-type GTPase-activating protein 32|rho/Cdc42/Rac GTPase-activating protein RICS|rhoGAP involved in the beta-catenin-N-cadherin and NMDA receptor signaling 128 0.01752 9.863 1 1 +9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 17 protein-coding CENTB1 arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 1|Arf GAP with coiled coil, ANK repeat and PH domains 1|centaurin-beta-1|cnt-b1 52 0.007117 6.415 1 1 +9745 ZNF536 zinc finger protein 536 19 protein-coding - zinc finger protein 536 328 0.04489 2.332 1 1 +9746 CLSTN3 calsyntenin 3 12 protein-coding CDHR14|CSTN3|alcbeta calsyntenin-3|alc-beta|alcadein beta|cadherin-related family member 14 58 0.007939 10.45 1 1 +9747 TCAF1 TRPM8 channel associated factor 1 7 protein-coding FAM115A TRPM8 channel-associated factor 1|TRP channel-associated factor 1|family with sequence similarity 115, member A|protein FAM115A 19 0.002601 7.902 1 1 +9748 SLK STE20 like kinase 10 protein-coding LOSK|STK2|bA16H23.1|se20-9 STE20-like serine/threonine-protein kinase|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-related kinase|STE20-related serine/threonine-protein kinase|Ste20-related serine/threonine kinase|hSLK|serine/threonine-protein kinase 2 75 0.01027 10.4 1 1 +9749 PHACTR2 phosphatase and actin regulator 2 6 protein-coding C6orf56 phosphatase and actin regulator 2 63 0.008623 9.045 1 1 +9750 FAM65B family with sequence similarity 65 member B 6 protein-coding C6orf32|DFNB104|DIFF40|DIFF48|MYONAP|PL48 protein FAM65B|myogenesis-related and NCAM-associated protein homolog 66 0.009034 6.931 1 1 +9751 SNPH syntaphilin 20 protein-coding - syntaphilin 36 0.004927 7.152 1 1 +9752 PCDHA9 protocadherin alpha 9 5 protein-coding PCDH-ALPHA9 protocadherin alpha-9|KIAA0345-like 5|PCDH-alpha-9 115 0.01574 1.557 1 1 +9753 ZSCAN12 zinc finger and SCAN domain containing 12 6 protein-coding ZFP96|ZNF29K1|ZNF305|ZNF96|dJ29K1.2 zinc finger and SCAN domain-containing protein 12|zinc finger protein 305|zinc finger protein 96 18 0.002464 7.149 1 1 +9754 STARD8 StAR related lipid transfer domain containing 8 X protein-coding ARHGAP38|DLC3|STARTGAP3 stAR-related lipid transfer protein 8|START domain containing 8|StAR-related lipid transfer (START) domain containing 8|deleted in liver cancer 3 protein 76 0.0104 7.426 1 1 +9755 TBKBP1 TBK1 binding protein 1 17 protein-coding ProSAPiP2|SINTBAD TANK-binding kinase 1-binding protein 1 25 0.003422 8.189 1 1 +9757 KMT2B lysine methyltransferase 2B 19 protein-coding CXXC10|HRX2|MLL1B|MLL2|MLL4|TRX2|WBP-7|WBP7 histone-lysine N-methyltransferase 2B|WW domain binding protein 7|histone-lysine N-methyltransferase MLL4|lysine (K)-specific methyltransferase 2B|mixed lineage leukemia gene homolog 2|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila) 4|myeloid/lymphoid or mixed-lineage leukemia protein 4|trithorax homologue 2 214 0.02929 10.33 1 1 +9758 FRMPD4 FERM and PDZ domain containing 4 X protein-coding MRX104|PDZD10|PDZK10 FERM and PDZ domain-containing protein 4|PDZ domain-containing protein 10|PSD-95-interacting FERM and PDZ domain protein|PSD-95-interacting regulator of spine morphogenesis|Preso 126 0.01725 1.432 1 1 +9759 HDAC4 histone deacetylase 4 2 protein-coding AHO3|BDMR|HA6116|HD4|HDAC-4|HDAC-A|HDACA histone deacetylase 4|histone deacetylase A 106 0.01451 8.755 1 1 +9760 TOX thymocyte selection associated high mobility group box 8 protein-coding TOX1 thymocyte selection-associated high mobility group box protein TOX|thymus high mobility group box protein TOX 60 0.008212 6.334 1 1 +9761 MLEC malectin 12 protein-coding KIAA0152 malectin|oligosaccharyltransferase complex subunit (non-catalytic) 28 0.003832 12.46 1 1 +9762 LZTS3 leucine zipper tumor suppressor family member 3 20 protein-coding PROSAPIP1 leucine zipper putative tumor suppressor 3|ProSAP/Shank-interacting protein 1|leucine zipper, putative tumor suppressor family member 3|proSAP-interacting protein 1|proline rich synapse associated protein interacting protein 1 19 0.002601 8.884 1 1 +9764 KIAA0513 KIAA0513 16 protein-coding - uncharacterized protein KIAA0513 32 0.00438 8.74 1 1 +9765 ZFYVE16 zinc finger FYVE-type containing 16 5 protein-coding PPP1R69 zinc finger FYVE domain-containing protein 16|endosome-associated FYVE-domain protein|protein phosphatase 1, regulatory subunit 69|zinc finger, FYVE domain containing 16 77 0.01054 9.701 1 1 +9766 SUSD6 sushi domain containing 6 14 protein-coding DRAGO|KIAA0247 sushi domain-containing protein 6|drug-activated gene overexpressed protein 18 0.002464 10.72 1 1 +9767 JADE3 jade family PHD finger 3 X protein-coding JADE-3|PHF16 protein Jade-3|PHD finger protein 16|jade family PHD finger protein 3 46 0.006296 8.426 1 1 +9768 KIAA0101 KIAA0101 15 protein-coding L5|NS5ATP9|OEATC|OEATC-1|OEATC1|PAF|PAF15|p15(PAF)|p15/PAF|p15PAF PCNA-associated factor|HCV NS5A-transactivated protein 9|PCNA-associated factor of 15 kDa|hepatitis C virus NS5A-transactivated protein 9|overexpressed in anaplastic thyroid carcinoma 1 9 0.001232 7.764 1 1 +9770 RASSF2 Ras association domain family member 2 20 protein-coding CENP-34|RASFADIN ras association domain-containing protein 2|Ras association (RalGDS/AF-6) domain family 2|Ras association (RalGDS/AF-6) domain family member 2|centromere protein 34 45 0.006159 9.018 1 1 +9771 RAPGEF5 Rap guanine nucleotide exchange factor 5 7 protein-coding GFR|MR-GEF|REPAC rap guanine nucleotide exchange factor 5|M-Ras-regulated GEF|M-Ras-regulated Rap GEF|Rap guanine nucleotide exchange factor (GEF) 5|guanine nucleotide exchange factor for Rap1|related to Epac 38 0.005201 9.077 1 1 +9772 TMEM94 transmembrane protein 94 17 protein-coding KIAA0195 transmembrane protein 94 94 0.01287 10.81 1 1 +9774 BCLAF1 BCL2 associated transcription factor 1 6 protein-coding BTF|bK211L9.1 bcl-2-associated transcription factor 1 156 0.02135 11.44 1 1 +9775 EIF4A3 eukaryotic translation initiation factor 4A3 17 protein-coding DDX48|MUK34|NMP265|NUK34|RCPS|eIF4AIII eukaryotic initiation factor 4A-III|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-like NUK-34|eukaryotic translation initiation factor 4A|hNMP 265|nuclear matrix protein 265 30 0.004106 10.89 1 1 +9776 ATG13 autophagy related 13 11 protein-coding KIAA0652|PARATARG8 autophagy-related protein 13|ATG13 autophagy related 13 homolog 39 0.005338 10.88 1 1 +9777 TM9SF4 transmembrane 9 superfamily member 4 20 protein-coding dJ836N17.2 transmembrane 9 superfamily member 4|dinucleotide oxidase disulfide thiol exchanger 3 superfamily member 4|transmembrane 9 superfamily protein member 4 63 0.008623 11.27 1 1 +9778 KIAA0232 KIAA0232 4 protein-coding - uncharacterized protein KIAA0232 80 0.01095 10.16 1 1 +9779 TBC1D5 TBC1 domain family member 5 3 protein-coding - TBC1 domain family member 5 70 0.009581 10.31 1 1 +9780 PIEZO1 piezo type mechanosensitive ion channel component 1 16 protein-coding DHS|FAM38A|LMPH3|Mib piezo-type mechanosensitive ion channel component 1|family with sequence similarity 38, member A|membrane protein induced by beta-amyloid treatment 77 0.01054 11.16 1 1 +9781 RNF144A ring finger protein 144A 2 protein-coding RNF144|UBCE7IP4 E3 ubiquitin-protein ligase RNF144A|UbcM4-interacting protein 4|probable E3 ubiquitin-protein ligase RNF144A|ring finger protein 144|ubiquitin conjugating enzyme 7 interacting protein 4 35 0.004791 9.016 1 1 +9782 MATR3 matrin 3 5 protein-coding ALS21|MPD2|VCPDM matrin-3|vocal cord and pharyngeal weakness with distal myopathy 51 0.006981 12.54 1 1 +9783 RIMS3 regulating synaptic membrane exocytosis 3 1 protein-coding NIM3|RIM3 regulating synaptic membrane exocytosis protein 3|RIM 3|RIM3 gamma|Rab-3 interacting molecule 3|rab-3-interacting molecule 3 21 0.002874 6.948 1 1 +9784 SNX17 sorting nexin 17 2 protein-coding - sorting nexin-17 36 0.004927 11.32 1 1 +9785 DHX38 DEAH-box helicase 38 16 protein-coding DDX38|PRP16|PRPF16 pre-mRNA-splicing factor ATP-dependent RNA helicase PRP16|ATP-dependent RNA helicase DHX38|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 38|DEAH (Asp-Glu-Ala-His) box polypeptide 38|DEAH box protein 38|PRP16 homolog of S.cerevisiae 58 0.007939 10.35 1 1 +9786 KIAA0586 KIAA0586 14 protein-coding JBTS23|SRTD14|Talpid3 protein TALPID3 79 0.01081 8.099 1 1 +9787 DLGAP5 DLG associated protein 5 14 protein-coding DLG7|HURP disks large-associated protein 5|DAP-5|discs large homolog associated protein 5|discs, large (Drosophila) homolog-associated protein 5|discs, large homolog 7|disks large-associated protein DLG7|hepatoma up-regulated protein 51 0.006981 7.311 1 1 +9788 MTSS1 MTSS1, I-BAR domain containing 8 protein-coding MIM|MIMA|MIMB metastasis suppressor protein 1|metastasis suppressor 1|metastasis suppressor YGL-1|missing in metastasis protein 59 0.008076 10.06 1 1 +9789 SPCS2 signal peptidase complex subunit 2 11 protein-coding - signal peptidase complex subunit 2|SPase 25 kDa subunit|microsomal signal peptidase 25 kDa subunit|signal peptidase 25kDa subunit|signal peptidase complex subunit 2 homolog 11 0.001506 9.593 1 1 +9790 BMS1 BMS1, ribosome biogenesis factor 10 protein-coding ACC|BMS1L ribosome biogenesis protein BMS1 homolog|BMS1 homolog, ribosome assembly protein|BMS1-like, ribosome assembly protein|ribosome assembly protein BMS1 homolog 97 0.01328 10.23 1 1 +9791 PTDSS1 phosphatidylserine synthase 1 8 protein-coding LMHD|PSS1|PSSA phosphatidylserine synthase 1|PSS-1|ptdSer synthase 1|serine-exchange enzyme I 48 0.00657 10.87 1 1 +9792 SERTAD2 SERTA domain containing 2 2 protein-coding Sei-2|TRIP-Br2 SERTA domain-containing protein 2|transcriptional regulator interacting with the PHD-bromodomain 2|transcriptional regulator interacting with the PHS-bromodomain 2 22 0.003011 9.827 1 1 +9793 CKAP5 cytoskeleton associated protein 5 11 protein-coding CHTOG|MSPS|TOG|TOGp|ch-TOG cytoskeleton-associated protein 5|colonic and hepatic tumor over-expressed gene protein|colonic and hepatic tumor overexpressed gene protein 102 0.01396 11.23 1 1 +9794 MAML1 mastermind like transcriptional coactivator 1 5 protein-coding Mam-1|Mam1 mastermind-like protein 1|mastermind homolog|mastermind-like 1 57 0.007802 10.12 1 1 +9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein 8 protein-coding DYRK1AP3|PAHX-AP|PAHXAP1 phytanoyl-CoA hydroxylase-interacting protein|DYRK1A interacting protein 3|PAHX-AP1|phytanoyl-CoA alpha-hydroxylase associated protein|phytanoyl-CoA hydroxylase-associated protein 1 19 0.002601 5.584 1 1 +9797 TATDN2 TatD DNase domain containing 2 3 protein-coding - putative deoxyribonuclease TATDN2 44 0.006022 10.35 1 1 +9798 IST1 IST1, ESCRT-III associated factor 16 protein-coding OLC1 IST1 homolog|IST1, endosomal sorting complex required for transport-III component|increased sodium tolerance 1 homolog|overexpressed in lung cancer 1|putative MAPK-activating protein PM28 14 0.001916 11.28 1 1 +9801 MRPL19 mitochondrial ribosomal protein L19 2 protein-coding L19mt|MRP-L15|MRP-L19|MRPL15|RLX1|RPML15 39S ribosomal protein L19, mitochondrial|39S ribosomal protein L15, mitochondrial|L15mt 15 0.002053 10.1 1 1 +9802 DAZAP2 DAZ associated protein 2 12 protein-coding PRTB DAZ-associated protein 2|deleted in azoospermia associated protein 2|proline-rich transcript in brain|proline-rich transcript, brain-expressed protein 20 0.002737 12.52 1 1 +9804 TOMM20 translocase of outer mitochondrial membrane 20 1 protein-coding MAS20|MOM19|TOM20 mitochondrial import receptor subunit TOM20 homolog|mitochondrial 20 kDa outer membrane protein|outer mitochondrial membrane receptor Tom20|translocase of outer mitochondrial membrane 20 homolog type II 5 0.0006844 12.35 1 1 +9805 SCRN1 secernin 1 7 protein-coding SES1 secernin-1 29 0.003969 10.69 1 1 +9806 SPOCK2 SPARC/osteonectin, cwcv and kazal like domains proteoglycan 2 10 protein-coding testican-2 testican-2|SPARC/osteonectin, CWCV, and Kazal-like domains proteoglycan 2|sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 2 22 0.003011 9.913 1 1 +9807 IP6K1 inositol hexakisphosphate kinase 1 3 protein-coding IHPK1|PiUS inositol hexakisphosphate kinase 1|ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|Pi uptake stimulator|inositol hexaphosphate kinase 1|insP6 kinase 1 29 0.003969 10.33 1 1 +9808 KIAA0087 KIAA0087 7 ncRNA - - 1 0.0001369 1.378 1 1 +9810 RNF40 ring finger protein 40 16 protein-coding BRE1B|RBP95|STARING E3 ubiquitin-protein ligase BRE1B|95 kDa retinoblastoma protein binding protein|95 kDa retinoblastoma-associated protein|BRE1 E3 ubiquitin ligase homolog B|BRE1-B|Rb-associated protein|ring finger protein 40, E3 ubiquitin protein ligase 70 0.009581 11.34 1 1 +9811 CTIF cap binding complex dependent translation initiation factor 18 protein-coding Gm672|KIAA0427 CBP80/20-dependent translation initiation factor 50 0.006844 9.545 1 1 +9812 KIAA0141 KIAA0141 5 protein-coding DELE death ligand signal enhancer 31 0.004243 10.03 1 1 +9813 EFCAB14 EF-hand calcium binding domain 14 1 protein-coding KIAA0494 EF-hand calcium-binding domain-containing protein 14 29 0.003969 11.5 1 1 +9814 SFI1 SFI1 centrin binding protein 22 protein-coding PISD|PPP1R139|hSfi1p protein SFI1 homolog|Sfi1 homolog, spindle assembly associated|homolog of yeast Sfi1|protein phosphatase 1, regulatory subunit 139 69 0.009444 8.604 1 1 +9815 GIT2 GIT ArfGAP 2 12 protein-coding CAT-2|CAT2|PKL ARF GTPase-activating protein GIT2|ARF GAP GIT2|G protein-coupled receptor kinase interacting ArfGAP 2|G protein-coupled receptor kinase-interactor 2|GRK-interacting protein 2|Paxillin kinase linker|cool-associated, tyrosine phosphorylated protein 2|cool-interacting tyrosine-phosphorylated protein 2 40 0.005475 10.08 1 1 +9816 URB2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) 1 protein-coding KIAA0133|NET10|NPA2 unhealthy ribosome biogenesis protein 2 homolog|nucleolar preribosomal-associated protein 1 98 0.01341 8.382 1 1 +9817 KEAP1 kelch like ECH associated protein 1 19 protein-coding INrf2|KLHL19 kelch-like ECH-associated protein 1|cytosolic inhibitor of Nrf2|kelch-like family member 19|kelch-like protein 19 190 0.02601 10.86 1 1 +9818 NUP58 nucleoporin 58 13 protein-coding NUP45|NUPL1|PRO2463 nucleoporin p58/p45|58 kDa nucleoporin|nucleoporin 58kDa|nucleoporin like 1|nucleoporin-like protein 1 42 0.005749 9.942 1 1 +9819 TSC22D2 TSC22 domain family member 2 3 protein-coding TILZ4a|TILZ4b|TILZ4c TSC22 domain family protein 2|TSC22 domain family 2|TSC22-related-inducible leucine zipper protein 4 37 0.005064 8.949 1 1 +9820 CUL7 cullin 7 6 protein-coding 3M1|CUL-7|KIAA0076|dJ20C7.5 cullin-7 89 0.01218 10.07 1 1 +9821 RB1CC1 RB1 inducible coiled-coil 1 8 protein-coding ATG17|CC1|FIP200|PPP1R131 RB1-inducible coiled-coil protein 1|200 kDa FAK family kinase-interacting protein|FAK family kinase-interacting protein of 200 kDa|phosphatase 1, regulatory subunit 131 118 0.01615 10.4 1 1 +9823 ARMCX2 armadillo repeat containing, X-linked 2 X protein-coding ALEX2|GASP9 armadillo repeat-containing X-linked protein 2|ARM protein lost in epithelial cancers on chromosome X 2|armadillo repeat protein ALEX2 55 0.007528 9.034 1 1 +9824 ARHGAP11A Rho GTPase activating protein 11A 15 protein-coding GAP (1-12) rho GTPase-activating protein 11A|rho-type GTPase-activating protein 11A 72 0.009855 8.165 1 1 +9825 SPATA2 spermatogenesis associated 2 20 protein-coding PD1|PPP1R145|tamo spermatogenesis-associated protein 2|protein phosphatase 1, regulatory subunit 145|spermatogenesis associated PD1|spermatogenesis-associated protein PD1 36 0.004927 9.016 1 1 +9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 1 protein-coding GTRAP48|PDZ-RHOGEF rho guanine nucleotide exchange factor 11|Rho guanine exchange factor (GEF) 11|Rho guanine nucleotide exchange factor (GEF) 11|RhoA-specific guanine nucleotide exchange factor|RhoGEF glutamate transport modulator|glutamate transporter EAAT4-associated protein 48 118 0.01615 10.44 1 1 +9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 9 protein-coding KIAA0258 RAB6A-GEF complex partner protein 2|RGP1 retrograde golgi transport homolog|retrograde Golgi transport protein RGP1 homolog 26 0.003559 6.959 1 1 +9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 11 protein-coding P164RHOGEF|RHOGEF17|TEM4|p164-RhoGEF rho guanine nucleotide exchange factor 17|164 kDa Rho-specific guanine-nucleotide exchange factor|Rho guanine nucleotide exchange factor (GEF) 17|Rho-specific guanine-nucleotide exchange factor 164 kDa|tumor endothelial marker 4 114 0.0156 10.07 1 1 +9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 1 protein-coding DJC6|PARK19 putative tyrosine-protein phosphatase auxilin|DnaJ (Hsp40) homolog, subfamily B, member 6|DnaJ (Hsp40) homolog, subfamily C, member 6|auxilin 83 0.01136 6.414 1 1 +9830 TRIM14 tripartite motif containing 14 9 protein-coding - tripartite motif-containing protein 14|tripartite motif protein TRIM14 19 0.002601 9.795 1 1 +9831 ZNF623 zinc finger protein 623 8 protein-coding - zinc finger protein 623 52 0.007117 8.632 1 1 +9832 JAKMIP2 janus kinase and microtubule interacting protein 2 5 protein-coding JAMIP2|NECC1 janus kinase and microtubule-interacting protein 2|CTCL tumor antigen HD-CL-04|Jak and microtubule interacting protein 2|neuroendocrine long coiled-coil protein 1 72 0.009855 4.48 1 1 +9833 MELK maternal embryonic leucine zipper kinase 9 protein-coding HPK38 maternal embryonic leucine zipper kinase|pEg3 kinase|protein kinase Eg3|protein kinase PK38|tyrosine-protein kinase MELK 31 0.004243 7.461 1 1 +9834 FAM30A family with sequence similarity 30, member A 14 ncRNA C14orf110|HSPC053|KIAA0125 - 3 0.0004106 3.25 1 1 +9836 LCMT2 leucine carboxyl methyltransferase 2 15 protein-coding PPM2|TYW4 tRNA wybutosine-synthesizing protein 4|p21WAF1/CIP1 promoter-interacting protein|tRNA yW-synthesizing protein 4|tRNA(Phe) (7-(3-amino-3-(methoxycarbonyl)propyl)wyosine(37)-N)-methoxycarbonyltransferase|tRNA(Phe) (7-(3-amino-3-carboxypropyl)wyosine(37)-O)-methyltransferase|tRNA-Wybutosine-synthesizing protein 4 57 0.007802 8.138 1 1 +9837 GINS1 GINS complex subunit 1 20 protein-coding PSF1 DNA replication complex GINS protein PSF1|GINS complex subunit 1 (Psf1 homolog)|partner of sld five-1 13 0.001779 7.877 1 1 +9839 ZEB2 zinc finger E-box binding homeobox 2 2 protein-coding HSPC082|SIP-1|SIP1|SMADIP1|ZFHX1B zinc finger E-box-binding homeobox 2|SMAD interacting protein 1|Smad-interacting protein 1|zinc finger homeobox 1b 154 0.02108 9.186 1 1 +9840 TESPA1 thymocyte expressed, positive selection associated 1 12 protein-coding HSPC257|KIAA0748 protein TESPA1|thymocyte-expressed positive selection-associated protein 1 63 0.008623 4.26 1 1 +9841 ZBTB24 zinc finger and BTB domain containing 24 6 protein-coding BIF1|ICF2|PATZ2|ZNF450 zinc finger and BTB domain-containing protein 24|POZ (BTB) and AT hook containing zinc finger 2|zinc finger protein 450 49 0.006707 8.317 1 1 +9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 17 protein-coding AP162|B2|OPTB6 pleckstrin homology domain-containing family M member 1|162 kDa adapter protein|PH domain-containing family M member 1|pleckstrin homology domain containing, family M (with RUN domain) member 1 64 0.00876 9.63 1 1 +9843 HEPH hephaestin X protein-coding CPL hephaestin 153 0.02094 8.118 1 1 +9844 ELMO1 engulfment and cell motility 1 7 protein-coding CED-12|CED12|ELMO-1 engulfment and cell motility protein 1|ced-12 homolog 1 121 0.01656 8.645 1 1 +9846 GAB2 GRB2 associated binding protein 2 11 protein-coding - GRB2-associated-binding protein 2|Grb2-associated binder 2|growth factor receptor bound protein 2-associated protein 2|pp100 40 0.005475 9.469 1 1 +9847 C2CD5 C2 calcium dependent domain containing 5 12 protein-coding CDP138|KIAA0528 C2 domain-containing protein 5|138 kDa C2 domain-containing phosphoprotein 66 0.009034 9.735 1 1 +9848 MFAP3L microfibrillar associated protein 3 like 4 protein-coding NYD-sp9 microfibrillar-associated protein 3-like|microfi brillar-associated protein 3-like|testis development protein NYD-SP9 31 0.004243 7.338 1 1 +9849 ZNF518A zinc finger protein 518A 10 protein-coding ZNF518 zinc finger protein 518A|zinc finger protein 518 87 0.01191 8.955 1 1 +9851 KIAA0753 KIAA0753 17 protein-coding MNR|OFD15|OFIP protein moonraker|OFD1 and FOPNL interacting protein|moonraker 53 0.007254 8.369 1 1 +9852 EPM2AIP1 EPM2A interacting protein 1 3 protein-coding - EPM2A-interacting protein 1|EPM2A (laforin) interacting protein 1|laforin-interacting protein 42 0.005749 9.615 1 1 +9853 RUSC2 RUN and SH3 domain containing 2 9 protein-coding Iporin iporin|RUN and SH3 domain-containing protein 2|interacting protein of Rab1 81 0.01109 9.339 1 1 +9854 C2CD2L C2CD2 like 11 protein-coding DLNB23|TMEM24 C2 domain-containing protein 2-like|transmembrane protein 24 43 0.005886 8.538 1 1 +9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 2 protein-coding FIR|FRG|PLEKHC3 FERM, RhoGEF and pleckstrin domain-containing protein 2|FERM domain including RhoGEF|FERM, RhoGEF and pleckstrin domain protein 2|FGD1-related Cdc42-GEF|PH domain-containing family C member 3|pleckstrin homology domain-containing family C member 3 76 0.0104 8.161 1 1 +9856 KIAA0319 KIAA0319 6 protein-coding DYLX2|DYX2|NMIG dyslexia-associated protein KIAA0319|dyslexia susceptibility 2|neuronal migration 86 0.01177 4.038 1 1 +9857 CEP350 centrosomal protein 350 1 protein-coding CAP350|GM133 centrosome-associated protein 350|centrosomal protein 350kDa 188 0.02573 10.14 1 1 +9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 9 protein-coding KIAA0649 protein phosphatase 1 regulatory subunit 26|1A6/DRIM (down-regulated in metastasis) interacting protein|DRIM/UTP20 interacting protein 68 0.009307 9.37 1 1 +9859 CEP170 centrosomal protein 170 1 protein-coding FAM68A|KAB|KIAA0470 centrosomal protein of 170 kDa|KARP-1-binding protein|XRCC5 binding protein|centrosomal protein 170kDa 110 0.01506 9.686 1 1 +9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 1 protein-coding LIG-2|LIG2|UFS2 leucine-rich repeats and immunoglobulin-like domains protein 2 80 0.01095 7.408 1 1 +9861 PSMD6 proteasome 26S subunit, non-ATPase 6 3 protein-coding Rpn7|S10|SGA-113M|p42A|p44S10 26S proteasome non-ATPase regulatory subunit 6|breast cancer-associated protein SGA-113M|phosphonoformate immuno-associated protein 4|proteasome (prosome, macropain) 26S subunit, non-ATPase, 6|proteasome regulatory particle subunit p44S10 21 0.002874 10.1 1 1 +9862 MED24 mediator complex subunit 24 17 protein-coding ARC100|CRSP100|CRSP4|DRIP100|MED5|THRAP4|TRAP100 mediator of RNA polymerase II transcription subunit 24|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 homolog|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 59 0.008076 10.72 1 1 +9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 7 protein-coding ACVRIP1|AIP-1|AIP1|ARIP1|MAGI-2|SSCAM membrane-associated guanylate kinase, WW and PDZ domain-containing protein 2|activin receptor interacting protein 1|atrophin-1-interacting protein 1|atrophin-1-interacting protein A|membrane-associated guanylate kinase inverted 2 175 0.02395 7.319 1 1 +9865 TRIL TLR4 interactor with leucine rich repeats 7 protein-coding - TLR4 interactor with leucine rich repeats 47 0.006433 7.733 1 1 +9866 TRIM66 tripartite motif containing 66 11 protein-coding C11orf29|TIF1D|TIF1DELTA tripartite motif-containing protein 66|transcriptional intermediary factor 1 delta 28 0.003832 7.696 1 1 +9867 PJA2 praja ring finger ubiquitin ligase 2 5 protein-coding Neurodap1|RNF131 E3 ubiquitin-protein ligase Praja-2|praja 2, RING-H2 motif containing|praja ring finger 2, E3 ubiquitin protein ligase|praja2|ring finger protein 131 47 0.006433 11.34 1 1 +9868 TOMM70 translocase of outer mitochondrial membrane 70 3 protein-coding TOMM70A|Tom70 mitochondrial import receptor subunit TOM70|mitochondrial precursor proteins import receptor|translocase of outer membrane 70 kDa subunit|translocase of outer mitochondrial membrane 70 homolog A|translocase of outer mitochondrial membrane protein 70 26 0.003559 10.95 1 1 +9869 SETDB1 SET domain bifurcated 1 1 protein-coding ESET|H3-K9-HMTase4|KG1T|KMT1E|TDRD21 histone-lysine N-methyltransferase SETDB1|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, H3lysine-9 specific 4|lysine N-methyltransferase 1E|tudor domain containing 21 106 0.01451 9.925 1 1 +9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 14 protein-coding FIEL1|KIAA0317 apoptosis-resistant E3 ubiquitin protein ligase 1|fibrosis-inducing E3 ligase 1 53 0.007254 9.882 1 1 +9871 SEC24D SEC24 homolog D, COPII coat complex component 4 protein-coding CLCRP2 protein transport protein Sec24D|SEC24 related gene family, member D|SEC24-related protein D 64 0.00876 10.09 1 1 +9873 FCHSD2 FCH and double SH3 domains 2 11 protein-coding NWK|SH3MD3 F-BAR and double SH3 domains protein 2|FCH and double SH3 domains protein 2|SH3 multiple domains 3|SH3 multiple domains protein 3|carom|nervous wreck homolog 35 0.004791 9.611 1 1 +9874 TLK1 tousled like kinase 1 2 protein-coding PKU-beta serine/threonine-protein kinase tousled-like 1|SNARE protein kinase SNAK|serine threonine protein kinase 49 0.006707 10.26 1 1 +9875 URB1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) 21 protein-coding C21orf108|NPA1 nucleolar pre-ribosomal-associated protein 1|nucleolar preribosomal-associated protein 1|nucleolar protein 254 kDa 33 0.004517 9.982 1 1 +9877 ZC3H11A zinc finger CCCH-type containing 11A 1 protein-coding ZC3HDC11A zinc finger CCCH domain-containing protein 11A|zinc finger CCCH-type domain containing 11A 66 0.009034 11.6 1 1 +9878 TOX4 TOX high mobility group box family member 4 14 protein-coding C14orf92|KIAA0737|LCP1|MIG7 TOX high mobility group box family member 4|epidermal Langerhans cell protein LCP1|migration-inducing protein 7 48 0.00657 10.69 1 1 +9879 DDX46 DEAD-box helicase 46 5 protein-coding PRPF5|Prp5 probable ATP-dependent RNA helicase DDX46|DEAD (Asp-Glu-Ala-Asp) box polypeptide 46|DEAD box protein 46|PRP5 homolog|Prp5-like DEAD-box protein|RNA helicase 58 0.007939 10.28 1 1 +9880 ZBTB39 zinc finger and BTB domain containing 39 12 protein-coding ZNF922 zinc finger and BTB domain-containing protein 39 29 0.003969 7.903 1 1 +9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 3 protein-coding LBA1 TPR and ankyrin repeat-containing protein 1|lupus brain antigen 1 homolog 171 0.02341 9.137 1 1 +9882 TBC1D4 TBC1 domain family member 4 13 protein-coding AS160|NIDDM5 TBC1 domain family member 4|TBC (Tre-2, BUB2, CDC16) domain-containing protein|akt substrate of 160 kDa 90 0.01232 9.418 1 1 +9883 POM121 POM121 transmembrane nucleoporin 7 protein-coding P145|POM121A nuclear envelope pore membrane protein POM 121|POM121 membrane glycoprotein|nuclear envelope pore membrane protein POM 121A|nuclear pore membrane protein 121 kDa|nucleoporin Nup121 103 0.0141 11.26 1 1 +9884 LRRC37A leucine rich repeat containing 37A 17 protein-coding LRRC37 leucine-rich repeat-containing protein 37A 13 0.001779 8.18 1 1 +9885 OSBPL2 oxysterol binding protein like 2 20 protein-coding DFNA67|DNFA67|ORP-2|ORP2 oxysterol-binding protein-related protein 2|OSBP-related protein 2 51 0.006981 10.25 1 1 +9886 RHOBTB1 Rho related BTB domain containing 1 10 protein-coding - rho-related BTB domain-containing protein 1 62 0.008486 8.284 1 1 +9887 SMG7 SMG7, nonsense mediated mRNA decay factor 1 protein-coding C1orf16|EST1C|SGA56M protein SMG7|EST1 telomerase component homolog C|EST1-like protein C|breast cancer-associated antigen SGA-56M|ever shorter telomeres 1C|smg-7 homolog, nonsense mediated mRNA decay factor 93 0.01273 11.19 1 1 +9889 ZBED4 zinc finger BED-type containing 4 22 protein-coding - zinc finger BED domain-containing protein 4|zinc finger, BED domain containing 4 72 0.009855 9.215 1 1 +9890 PLPPR4 phospholipid phosphatase related 4 1 protein-coding LPPR4|LPR4|PHP1|PRG-1|PRG1 phospholipid phosphatase-related protein type 4|brain-specific phosphatidic acid phosphatase-like protein 1|lipid phosphate phosphatase-related protein type 4|plasticity related gene 1|plasticity-related gene 1 protein 121 0.01656 5.527 1 1 +9891 NUAK1 NUAK family kinase 1 12 protein-coding ARK5 NUAK family SNF1-like kinase 1|AMP-activated protein kinase family member 5|AMPK-related protein kinase 5|NUAK family, SNF1-like kinase, 1|omphalocele kinase 1 70 0.009581 8.601 1 1 +9892 SNAP91 synaptosome associated protein 91 6 protein-coding AP180|CALM clathrin coat assembly protein AP180|91 kDa synaptosomal-associated protein|assembly protein, 180kDa|clathrin coat-associated protein AP180|phosphoprotein F1-20|synaptosomal-associated protein, 91kDa homolog|synaptosome associated protein 91kDa 89 0.01218 3.179 1 1 +9894 TELO2 telomere maintenance 2 16 protein-coding CLK2|TEL2|YHFS telomere length regulation protein TEL2 homolog|TEL2, telomere maintenance 2, homolog|protein clk-2 homolog 55 0.007528 9.694 1 1 +9895 TECPR2 tectonin beta-propeller repeat containing 2 14 protein-coding KIAA0329|SPG49 tectonin beta-propeller repeat-containing protein 2 94 0.01287 9.432 1 1 +9896 FIG4 FIG4 phosphoinositide 5-phosphatase 6 protein-coding ALS11|BTOP|CMT4J|KIAA0274|SAC3|YVS|dJ249I4.1 polyphosphoinositide phosphatase|FIG4 homolog, SAC domain containing lipid phosphatase|FIG4 homolog, SAC1 domain containing lipid phosphatase|FIG4 homolog, SAC1 lipid phosphatase domain containing|SAC domain-containing protein 3|Sac domain-containing inositol phosphatase 3|phosphatidylinositol 3,5-bisphosphate 5-phosphatase 65 0.008897 8.716 1 1 +9897 KIAA0196 KIAA0196 8 protein-coding RTSC|RTSC1|SPG8 WASH complex subunit strumpellin|strumpellin 76 0.0104 10.28 1 1 +9898 UBAP2L ubiquitin associated protein 2 like 1 protein-coding NICE-4|NICE4 ubiquitin-associated protein 2-like|protein NICE-4 79 0.01081 11.72 1 1 +9899 SV2B synaptic vesicle glycoprotein 2B 15 protein-coding HsT19680 synaptic vesicle glycoprotein 2B|synaptic vesicle protein 2B homolog 59 0.008076 4.8 1 1 +9900 SV2A synaptic vesicle glycoprotein 2A 1 protein-coding SV2 synaptic vesicle glycoprotein 2A 64 0.00876 7.252 1 1 +9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 3 protein-coding ARHGAP14|MEGAP|SRGAP2|WRP SLIT-ROBO Rho GTPase-activating protein 3|SLIT-ROBO Rho GTPase activating protein 2|WAVE-associated Rac GTPase activating protein|mental disorder-associated GAP|rho GTPase-activating protein 14 112 0.01533 7.678 1 1 +9902 MRC2 mannose receptor C type 2 17 protein-coding CD280|CLEC13E|ENDO180|UPARAP C-type mannose receptor 2|C-type lectin domain family 13 member E|UPAR-associated protein|endocytic receptor (macrophage mannose receptor family)|endocytic receptor 180|macrophage mannose receptor 2|urokinase-type plasminogen activator receptor-associated protein 95 0.013 10.6 1 1 +9903 KLHL21 kelch like family member 21 1 protein-coding - kelch-like protein 21 28 0.003832 10.2 1 1 +9904 RBM19 RNA binding motif protein 19 12 protein-coding - probable RNA-binding protein 19 76 0.0104 9.433 1 1 +9905 SGSM2 small G protein signaling modulator 2 17 protein-coding RUTBC1 small G protein signaling modulator 2|RUN and TBC1 domain containing 1|RUN and TBC1 domain-containing protein 1|small G protein signaling modulator 2 protein 45 0.006159 10.11 1 1 +9906 SLC35E2 solute carrier family 35 member E2 1 protein-coding - solute carrier family 35 member E2 11 0.001506 5.485 1 1 +9907 AP5Z1 adaptor related protein complex 5 zeta 1 subunit 7 protein-coding KIAA0415|SPG48|zeta AP-5 complex subunit zeta-1|adapter-related protein complex 5 zeta subunit|adaptor-related protein complex 5 zeta subunit|zeta5 63 0.008623 9.546 1 1 +9908 G3BP2 G3BP stress granule assembly factor 2 4 protein-coding - ras GTPase-activating protein-binding protein 2|G3BP-2|GAP SH3 domain-binding protein 2|GTPase activating protein (SH3 domain) binding protein 2|Ras-GTPase activating protein SH3 domain-binding protein 2 34 0.004654 11.44 1 1 +9909 DENND4B DENN domain containing 4B 1 protein-coding KIAA0476 DENN domain-containing protein 4B|DENN/MADD domain containing 4B 132 0.01807 9.963 1 1 +9910 RABGAP1L RAB GTPase activating protein 1 like 1 protein-coding HHL|TBC1D18 rab GTPase-activating protein 1-like|TBC1 domain family, member 18|expressed in hematopoietic cells, heart, liver (HLL) 72 0.009855 7.894 1 1 +9911 TMCC2 transmembrane and coiled-coil domain family 2 1 protein-coding HUCEP11 transmembrane and coiled-coil domains protein 2|cerebral protein 11 54 0.007391 6.676 1 1 +9912 ARHGAP44 Rho GTPase activating protein 44 17 protein-coding NPC-A-10|RICH2 rho GTPase-activating protein 44|Rho-type GTPase-activating protein RICH2|RhoGAP interacting with CIP4 homologs protein 2|rho GTPase-activating protein RICH2 45 0.006159 7.266 1 1 +9913 SUPT7L SPT7-like STAGA complex gamma subunit 2 protein-coding SPT7L|STAF65|STAF65(gamma)|STAF65G|SUPT7H STAGA complex 65 subunit gamma|SPTF-associated factor 65 gamma|STAF65gamma|STAGA complex 65 gamma subunit|adenocarcinoma antigen ART1|suppressor of Ty 7 (S. cerevisiae)-like|suppressor of Ty 7-like 25 0.003422 9.98 1 1 +9914 ATP2C2 ATPase secretory pathway Ca2+ transporting 2 16 protein-coding SPCA2 calcium-transporting ATPase type 2C member 2|ATPase 2C2|ATPase, Ca++ transporting, type 2C, member 2|secretory pathway Ca(2+)-ATPase 2|secretory pathway calcium ATPase 2 62 0.008486 6.354 1 1 +9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 15 protein-coding WEDAS|bHLHe1 aryl hydrocarbon receptor nuclear translocator 2|ARNT protein 2|class E basic helix-loop-helix protein 1 48 0.00657 8.707 1 1 +9917 FAM20B FAM20B, glycosaminoglycan xylosylkinase 1 protein-coding gxk1 glycosaminoglycan xylosylkinase|family with sequence similarity 20, member B|xylose kinase 25 0.003422 10.55 1 1 +9918 NCAPD2 non-SMC condensin I complex subunit D2 12 protein-coding CAP-D2|CNAP1|hCAP-D2 condensin complex subunit 1|XCAP-D2 homolog|chromosome condensation-related SMC-associated protein 1|chromosome-associated protein D2 71 0.009718 10.71 1 1 +9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor 9 protein-coding KIAA0310|SEC16L|p250 protein transport protein Sec16A|SEC16 homolog A|protein SEC16 homolog A 122 0.0167 11.62 1 1 +9920 KBTBD11 kelch repeat and BTB domain containing 11 8 protein-coding KLHDC7C kelch repeat and BTB domain-containing protein 11|chronic myelogenous leukemia-associated protein|kelch domain-containing protein 7B|kelch repeat and BTB (POZ) domain containing 11 5 0.0006844 7.5 1 1 +9921 RNF10 ring finger protein 10 12 protein-coding RIE2 RING finger protein 10 59 0.008076 11.81 1 1 +9922 IQSEC1 IQ motif and Sec7 domain 1 3 protein-coding ARF-GEP100|ARFGEP100|BRAG2|GEP100 IQ motif and SEC7 domain-containing protein 1|ADP-ribosylation factors guanine nucleotide-exchange protein 100|ADP-ribosylation factors guanine nucleotide-exchange protein 2|brefeldin A-resistant ARF-GEF2|brefeldin-resistant Arf-GEF 2 protein 68 0.009307 10.5 1 1 +9923 ZBTB40 zinc finger and BTB domain containing 40 1 protein-coding ZNF923 zinc finger and BTB domain-containing protein 40 69 0.009444 9.388 1 1 +9924 PAN2 PAN2 poly(A) specific ribonuclease subunit 12 protein-coding USP52 PAB-dependent poly(A)-specific ribonuclease subunit PAN2|PAB-dependent poly(A)-specific ribonuclease subunit 2|PAB1P-dependent poly(A)-nuclease|PABP-dependent poly(A) nuclease 2|PAN deadenylation complex catalytic subunit 2|PAN2 poly(A) specific ribonuclease subunit homolog|PAN2 polyA specific ribonuclease subunit|inactive ubiquitin carboxyl-terminal hydrolase 52|ubiquitin specific peptidase 52|ubiquitin specific protease 52 67 0.009171 9.44 1 1 +9925 ZBTB5 zinc finger and BTB domain containing 5 9 protein-coding - zinc finger and BTB domain-containing protein 5 40 0.005475 8.848 1 1 +9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 1 protein-coding FAM34A|FAM34A1|NET8 acyl-CoA:lysophosphatidylglycerol acyltransferase 1|family with sequence similarity 34, member A 22 0.003011 10.62 1 1 +9927 MFN2 mitofusin 2 1 protein-coding CMT2A|CMT2A2|CMT2A2A|CMT2A2B|CPRP1|HMSN6A|HSG|MARF mitofusin-2|hyperplasia suppressor|mitochondrial assembly regulatory factor|transmembrane GTPase MFN2 48 0.00657 11.4 1 1 +9928 KIF14 kinesin family member 14 1 protein-coding MKS12 kinesin-like protein KIF14 96 0.01314 6.619 1 1 +9929 JOSD1 Josephin domain containing 1 22 protein-coding dJ508I15.2 josephin-1|josephin domain-containing 1|josephin domain-containing protein 1 6 0.0008212 10.51 1 1 +9931 HELZ helicase with zinc finger 17 protein-coding DHRC|DRHC|HUMORF5 probable helicase with zinc finger domain|down-regulated in human cancers protein|helicase with zinc finger domain 133 0.0182 10.07 1 1 +9933 PUM3 pumilio RNA binding family member 3 9 protein-coding HA-8|HLA-HA8|KIAA0020|PEN|PUF-A|PUF6|XTP5 pumilio homolog 3|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) 53 0.007254 9.107 1 1 +9934 P2RY14 purinergic receptor P2Y14 3 protein-coding BPR105|GPR105|P2Y14 P2Y purinoceptor 14|G protein coupled receptor for UDP-glucose|G-protein coupled receptor 105|P2Y(14) receptor|P2Y14 receptor|UDP-glucose receptor|purinergic receptor P2Y, G-protein coupled, 14 24 0.003285 4.703 1 1 +9935 MAFB MAF bZIP transcription factor B 20 protein-coding DURS3|KRML|MCTO transcription factor MafB|Kreisler maf-related leucine zipper homolog|MAFB/Kreisler basic region/leucine zipper transcription factor|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog B 17 0.002327 9.727 1 1 +9936 CD302 CD302 molecule 2 protein-coding BIMLEC|CLEC13A|DCL-1|DCL1 CD302 antigen|C-type lectin domain family 13, member A|DEC205-associated C-type lectin 1|type I transmembrane C-type lectin receptor DCL-1 1 0.0001369 9.247 1 1 +9937 DCLRE1A DNA cross-link repair 1A 10 protein-coding PSO2|SNM1|SNM1A DNA cross-link repair 1A protein|DNA-crosslink repair gene SNM1|SNM1 homolog A 58 0.007939 8.305 1 1 +9938 ARHGAP25 Rho GTPase activating protein 25 2 protein-coding HEL-S-308|KAIA0053 rho GTPase-activating protein 25|epididymis secretory protein Li 308|rho-type GTPase-activating protein 25 64 0.00876 7.793 1 1 +9939 RBM8A RNA binding motif protein 8A 1 protein-coding BOV-1A|BOV-1B|BOV-1C|C1DELq21.1|DEL1q21.1|MDS014|RBM8|RBM8B|TAR|Y14|ZNRP|ZRNP1 RNA-binding protein 8A|BOV-1|RNA binding motif protein 8B|RNA-binding protein Y14|binder of OVCA1-1|ribonucleoprotein RBM8|ribonucleoprotein RBM8A 19 0.002601 10.93 1 1 +9940 DLEC1 deleted in lung and esophageal cancer 1 3 protein-coding CFAP81|DLC-1|DLC1|F56 deleted in lung and esophageal cancer protein 1|cilia and flagella associated protein 81 112 0.01533 3.636 1 1 +9941 EXOG exo/endonuclease G 3 protein-coding ENDOGL1|ENDOGL2|ENGL|ENGL-a|ENGL-b|ENGLA|ENGLB nuclease EXOG, mitochondrial|endo G-like 1|endo/exonuclease (5'-3'), endonuclease G-like|endonuclease G-like 1|endonuclease G-like 2 21 0.002874 7.167 1 1 +9942 XYLB xylulokinase 3 protein-coding - xylulose kinase|D-xylulokinase|xylulokinase homolog (H. influenzae) 41 0.005612 6.527 1 1 +9943 OXSR1 oxidative stress responsive 1 3 protein-coding OSR1 serine/threonine-protein kinase OSR1|oxidative stress-responsive 1 protein 40 0.005475 10.09 1 1 +9945 GFPT2 glutamine-fructose-6-phosphate transaminase 2 5 protein-coding GFAT|GFAT 2|GFAT2 glutamine--fructose-6-phosphate aminotransferase [isomerizing] 2|D-fructose-6-phosphate amidotransferase 2|glucosamine--fructose-6-phosphate aminotransferase [isomerizing] 2|glutamine: fructose-6-phosphate aminotransferase 2|glutamine:fructose-6-phosphate amidotransferase 2|hexosephosphate aminotransferase 2 56 0.007665 7.506 1 1 +9946 CRYZL1 crystallin zeta like 1 21 protein-coding 4P11|QOH-1 quinone oxidoreductase-like protein 1|crystallin, zeta (quinone reductase)-like 1|protein 4P11|quinone oxidoreductase homolog 1|quinone reductase-like 1|zeta-crystallin homolog 29 0.003969 8.154 1 1 +9947 MAGEC1 MAGE family member C1 X protein-coding CT7|CT7.1 melanoma-associated antigen C1|MAGE-C1 antigen|cancer/testis antigen 7.1|cancer/testis antigen family 7, member 1|melanoma antigen family C, 1|melanoma antigen family C1 217 0.0297 1.122 1 1 +9948 WDR1 WD repeat domain 1 4 protein-coding AIP1|HEL-S-52|NORI-1 WD repeat-containing protein 1|actin-interacting protein 1|epididymis secretory protein Li 52 36 0.004927 12.62 1 1 +9949 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 X protein-coding AMMERC1 AMME syndrome candidate gene 1 protein|Alport syndrome mental retardation midface hypoplasia and elliptocytosis chromosomal region protein 1 31 0.004243 8.463 1 1 +9950 GOLGA5 golgin A5 14 protein-coding GOLIM5|RFG5|ret-II 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 44 0.006022 10.25 1 1 +9951 HS3ST4 heparan sulfate-glucosamine 3-sulfotransferase 4 16 protein-coding 3-OST-4|30ST4|3OST4|h3-OST-4 heparan sulfate glucosamine 3-O-sulfotransferase 4|heparan sulfate (glucosamine) 3-O-sulfotransferase 4|heparan sulfate 3-O-sulfotransferase 4|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 4 54 0.007391 2.076 1 1 +9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 17 protein-coding 3-OST-3B|3OST3B1|h3-OST-3B heparan sulfate glucosamine 3-O-sulfotransferase 3B1|heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1|heparan sulfate 3-O-sulfotransferase 3B1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 3B1 9 0.001232 3.245 1 1 +9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 17 protein-coding 3-OST-3A|3OST3A1 heparan sulfate glucosamine 3-O-sulfotransferase 3A1|heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1|heparan sulfate 3-O-sulfotransferase 3A1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 3A1|heparin-glucosamine 3-O-sulfotransferase 28 0.003832 4.659 1 1 +9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 16 protein-coding 30ST2|3OST2 heparan sulfate glucosamine 3-O-sulfotransferase 2|3-OST-2|h3-OST-2|heparan sulfate (glucosamine) 3-O-sulfotransferase 2|heparan sulfate 3-O-sulfotransferase 2|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 2|heparin-glucosamine 3-O-sulfotransferase 40 0.005475 4.901 1 1 +9957 HS3ST1 heparan sulfate-glucosamine 3-sulfotransferase 1 4 protein-coding 3OST|3OST1 heparan sulfate glucosamine 3-O-sulfotransferase 1|3-OST-1|h3-OST-1|heparan sulfate (glucosamine) 3-O-sulfotransferase 1|heparan sulfate 3-O-sulfotransferase 1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 1|heparin-glucosamine 3-O-sulfotransferase 28 0.003832 7.208 1 1 +9958 USP15 ubiquitin specific peptidase 15 12 protein-coding UNPH-2|UNPH4 ubiquitin carboxyl-terminal hydrolase 15|deubiquitinating enzyme 15|ubiquitin thioesterase 15|ubiquitin thiolesterase 15|ubiquitin-specific-processing protease 15 74 0.01013 9.697 1 1 +9960 USP3 ubiquitin specific peptidase 3 15 protein-coding SIH003|UBP ubiquitin carboxyl-terminal hydrolase 3|deubiquitinating enzyme 3|ubiquitin thioesterase 3|ubiquitin thiolesterase 3|ubiquitin-specific-processing protease 3 28 0.003832 8.907 1 1 +9961 MVP major vault protein 16 protein-coding LRP|VAULT1 major vault protein|lung resistance-related protein|testicular secretory protein Li 30 56 0.007665 11.97 1 1 +9962 SLC23A2 solute carrier family 23 member 2 20 protein-coding NBTL1|SLC23A1|SVCT2|YSPL2|hSVCT2 solute carrier family 23 member 2|Na(+)/L-ascorbic acid transporter 2|nucleobase transporter-like 1 protein|sodium-dependent vitamin C transporter-2|solute carrier family 23 (ascorbic acid transporter), member 2|solute carrier family 23 (nucleobase transporters), member 1|solute carrier family 23 (nucleobase transporters), member 2|testicular secretory protein Li 48|yolk sac permease-like molecule 2 59 0.008076 10 1 1 +9963 SLC23A1 solute carrier family 23 member 1 5 protein-coding SLC23A2|SVCT1|YSPL3 solute carrier family 23 member 1|Na(+)/L-ascorbic acid transporter 1|hSVCT1|sodium-dependent vitamin C transporter-1|solute carrier family 23 (ascorbic acid transporter), member 1|solute carrier family 23 (nucleobase transporters), member 1|solute carrier family 23 (nucleobase transporters), member 2|yolk sac permease-like molecule 3 37 0.005064 3.501 1 1 +9965 FGF19 fibroblast growth factor 19 11 protein-coding - fibroblast growth factor 19|FGF-19 8 0.001095 1.631 1 1 +9966 TNFSF15 tumor necrosis factor superfamily member 15 9 protein-coding TL1|TL1A|TNLG1B|VEGI|VEGI192A tumor necrosis factor ligand superfamily member 15|TNF ligand-related molecule 1|TNF superfamily ligand TL1A|tumor necrosis factor (ligand) superfamily, member 15|tumor necrosis factor ligand 1B|vascular endothelial cell growth inhibitor|vascular endothelial growth inhibitor-192A 19 0.002601 3.621 1 1 +9967 THRAP3 thyroid hormone receptor associated protein 3 1 protein-coding TRAP150 thyroid hormone receptor-associated protein 3|thyroid hormone receptor-associated protein complex 150 kDa component|thyroid hormone receptor-associated protein, 150 kDa subunit 73 0.009992 11.59 1 1 +9968 MED12 mediator complex subunit 12 X protein-coding ARC240|CAGH45|FGS1|HOPA|MED12S|OHDOX|OKS|OPA1|TNRC11|TRAP230 mediator of RNA polymerase II transcription subunit 12|CAG repeat protein 45|OPA-containing protein|activator-recruited cofactor 240 kDa component|human opposite paired|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 189 0.02587 10.12 1 1 +9969 MED13 mediator complex subunit 13 17 protein-coding ARC250|DRIP250|HSPC221|THRAP1|TRAP240 mediator of RNA polymerase II transcription subunit 13|activator-recruited cofactor 250 kDa component|mediator of RNA polymerase II transcription, subunit 13 homolog|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 152 0.0208 10.75 1 1 +9970 NR1I3 nuclear receptor subfamily 1 group I member 3 1 protein-coding CAR|CAR1|MB67 nuclear receptor subfamily 1 group I member 3|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|orphan nuclear hormone receptor|orphan nuclear receptor MB67 35 0.004791 3.524 1 1 +9971 NR1H4 nuclear receptor subfamily 1 group H member 4 12 protein-coding BAR|FXR|HRR-1|HRR1|PFIC5|RIP14 bile acid receptor|RXR-interacting protein 14|farnesoid X nuclear receptor|farnesoid X-activated receptor|farnesol receptor HRR-1|retinoid X receptor-interacting protein 14 59 0.008076 2.3 1 1 +9972 NUP153 nucleoporin 153 6 protein-coding HNUP153|N153 nuclear pore complex protein Nup153|153 kDa nucleoporin|nuclear pore complex protein hnup153|nucleoporin 153kD|nucleoporin 153kDa|nucleoporin Nup153 96 0.01314 10.23 1 1 +9973 CCS copper chaperone for superoxide dismutase 11 protein-coding - copper chaperone for superoxide dismutase|superoxide dismutase copper chaperone 28 0.003832 9.193 1 1 +9975 NR1D2 nuclear receptor subfamily 1 group D member 2 3 protein-coding BD73|EAR-1R|RVR nuclear receptor subfamily 1 group D member 2|V-erbA-related protein 1-related|nuclear receptor Rev-ErbA beta variant 1|nuclear receptor Rev-ErbA beta variant 2|orphan nuclear hormone receptor BD73|rev-erb alpha-related receptor|rev-erb-beta|rev-erba-alpha-related receptor 39 0.005338 9.919 1 1 +9976 CLEC2B C-type lectin domain family 2 member B 12 protein-coding AICL|CLECSF2|HP10085|IFNRG1 C-type lectin domain family 2 member B|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 2 (activation-induced)|C-type lectin superfamily member 2|IFN-alpha-2b-inducing-related protein 1|IFN-alpha2b-inducing related protein 1|activation-induced C-type lectin 16 0.00219 7.433 1 1 +9978 RBX1 ring-box 1 22 protein-coding BA554C12.1|RNF75|ROC1 E3 ubiquitin-protein ligase RBX1|RING finger protein 75|RING-box protein 1|ZYP protein|regulator of cullins 1|ring-box 1, E3 ubiquitin protein ligase 8 0.001095 9.997 1 1 +9980 DOPEY2 dopey family member 2 21 protein-coding 21orf5|C21orf5 protein dopey-2|homolog of yeast DOP1 141 0.0193 9.522 1 1 +9982 FGFBP1 fibroblast growth factor binding protein 1 4 protein-coding FGF-BP|FGF-BP1|FGFBP|FGFBP-1|HBP17 fibroblast growth factor-binding protein 1|17 kDa HBGF-binding protein|17 kDa heparin-binding growth factor-binding protein|FGF-binding protein 1|heparin-binding growth factor binding protein 17 0.002327 4.127 1 1 +9984 THOC1 THO complex 1 18 protein-coding HPR1|P84|P84N5 THO complex subunit 1|hTREX84|nuclear matrix protein p84|tho1 39 0.005338 8.657 1 1 +9985 REC8 REC8 meiotic recombination protein 14 protein-coding HR21spB|REC8L1|Rec8p meiotic recombination protein REC8 homolog|REC8 homolog|REC8-like 1|cohesin Rec8p|cohesion rec8p|human homolog of rad21, S. pombe|kleisin-alpha|meiotic recombination and sister chromatid cohesion phosphoprotein of the rad21p family|meiotic recombination protein REC8-like 1|recombination and sister chromatid cohesion protein homolog 36 0.004927 7.034 1 1 +9986 RCE1 Ras converting CAAX endopeptidase 1 11 protein-coding FACE2|RCE1A|RCE1B CAAX prenyl protease 2|RCE1 homolog, prenyl protein peptidase|farnesylated protein-converting enzyme 2|farnesylated proteins-converting enzyme 2|prenyl protein-specific endoprotease 2 15 0.002053 8.501 1 1 +9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like 4 protein-coding HNRNP|HNRPDL|JKTBP|JKTBP2|LGMD1G|laAUF1 heterogeneous nuclear ribonucleoprotein D-like|A+U-rich element RNA binding factor|AU-rich element RNA-binding factor|JKT41-binding protein|hnRNP D-like|hnRNP DL|protein laAUF1 37 0.005064 11.79 1 1 +9988 DMTF1 cyclin D binding myb like transcription factor 1 7 protein-coding DMP1|DMTF|MRUL|hDMP1 cyclin-D-binding Myb-like transcription factor 1|cyclin D-binding Myb-like protein|cyclin-D-interacting Myb-like protein 1|hDMTF1 49 0.006707 9.57 1 1 +9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 18 protein-coding MEG1|PP4(Rmeg)|PP4R1 serine/threonine-protein phosphatase 4 regulatory subunit 1|serine/threonine phosphatase 4 60 0.008212 10.73 1 1 +9990 SLC12A6 solute carrier family 12 member 6 15 protein-coding ACCPN|KCC3|KCC3A|KCC3B solute carrier family 12 member 6|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 (potassium/chloride transporter), member 6|solute carrier family 12 (potassium/chloride transporters), member 6 82 0.01122 9.196 1 1 +9991 PTBP3 polypyrimidine tract binding protein 3 9 protein-coding ROD1 polypyrimidine tract-binding protein 3|ROD1 regulator of differentiation 1|fission yeast differentiation regulator|regulator of differentiation 1 27 0.003696 11.13 1 1 +9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 21 protein-coding ATFB4|LQT5|LQT6|MIRP1 potassium voltage-gated channel subfamily E member 2|cardiac voltage-gated potassium channel accessory subunit 2|minK-related peptide-1|minimum potassium ion channel-related peptide 1|potassium channel subunit beta MiRP1|potassium channel subunit, MiRP1|potassium channel, voltage gated subfamily E regulatory beta subunit 2|potassium voltage-gated channel, Isk-related family, member 2|voltage-gated K+ channel subunit MIRP1 10 0.001369 3.044 1 1 +9993 DGCR2 DiGeorge syndrome critical region gene 2 22 protein-coding DGS-C|IDD|LAN|SEZ-12 integral membrane protein DGCR2/IDD|DiGeorge syndrome critical region protein 2|integral membrane protein deleted in DiGeorge syndrome 50 0.006844 11.67 1 1 +9994 CASP8AP2 caspase 8 associated protein 2 6 protein-coding CED-4|FLASH|RIP25 CASP8-associated protein 2|FLASH homolog RIP25|FLICE associated huge|FLICE-associated huge protein|human FLASH 108 0.01478 8.368 1 1 +9997 SCO2 SCO2, cytochrome c oxidase assembly protein 22 protein-coding CEMCOX1|MYP6|SCO1L protein SCO2 homolog, mitochondrial|SCO cytochrome oxidase deficient homolog 2 16 0.00219 9.121 1 1 +10000 AKT3 AKT serine/threonine kinase 3 1 protein-coding MPPH|MPPH2|PKB-GAMMA|PKBG|PRKBG|RAC-PK-gamma|RAC-gamma|STK-2 RAC-gamma serine/threonine-protein kinase|PKB gamma|RAC-gamma serine/threonine protein kinase|v-akt murine thymoma viral oncogene homolog 3 (protein kinase B, gamma) 54 0.007391 8.887 1 1 +10001 MED6 mediator complex subunit 6 14 protein-coding ARC33|NY-REN-28 mediator of RNA polymerase II transcription subunit 6|CTD-2540L5.5|activator-recruited cofactor 33 kDa component|renal carcinoma antigen NY-REN-28 16 0.00219 8.511 1 1 +10002 NR2E3 nuclear receptor subfamily 2 group E member 3 15 protein-coding ESCS|PNR|RNR|RP37|rd7 photoreceptor-specific nuclear receptor|retina-specific nuclear receptor 18 0.002464 1.852 1 1 +10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 11 protein-coding GCPIII|GPCIII|NAADALASE2|NAALADASE2 N-acetylated-alpha-linked acidic dipeptidase 2|N-acetylated alpha-linked acidic dipeptidase II|NAALADase II|glutamate carboxypeptidase III 89 0.01218 3.946 1 1 +10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 11 protein-coding I100|NAALADASEL N-acetylated-alpha-linked acidic dipeptidase-like protein|100 kDa ileum brush border membrane protein|NAALADase L|ileal dipeptidylpeptidase|ileal peptidase I100|peptidase homolog 51 0.006981 5.296 1 1 +10005 ACOT8 acyl-CoA thioesterase 8 20 protein-coding HNAACTE|NAP1|PTE-1|PTE-2|PTE1|PTE2|hACTE-III|hTE acyl-coenzyme A thioesterase 8|HIV-Nef associated acyl-CoA thioesterase|Nef (lentivirus myristoylated factor) associated protein 1|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 24 0.003285 8.87 1 1 +10006 ABI1 abl interactor 1 10 protein-coding ABI-1|ABLBP4|E3B1|NAP1BP|SSH3BP|SSH3BP1 abl interactor 1|Abelson interactor 1|Abl-interactor protein 1 long|abl-binding protein 4|eps8 SH3 domain-binding protein|interactor protein AblBP4|nap1 binding protein|spectrin SH3 domain-binding protein 1 29 0.003969 10.5 1 1 +10007 GNPDA1 glucosamine-6-phosphate deaminase 1 5 protein-coding GNP1|GNPDA|GNPI|GPI|HLN glucosamine-6-phosphate isomerase 1|GNPDA 1|glcN6P deaminase 1|oscillin 17 0.002327 10.13 1 1 +10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 11 protein-coding HOKPP|HYPP|MiRP2 potassium voltage-gated channel subfamily E member 3|cardiac voltage-gated potassium channel accessory subunit|minK-related peptide 2|minimum potassium ion channel-related peptide 2|potassium channel subunit beta MiRP2|potassium channel, voltage gated subfamily E regulatory beta subunit 3|potassium voltage-gated channel, Isk-related family, member 3|voltage-gated K+ channel subunit MIRP2 12 0.001642 7.688 1 1 +10009 ZBTB33 zinc finger and BTB domain containing 33 X protein-coding ZNF-kaiso|ZNF348 transcriptional regulator Kaiso|WUGSC:H_DJ525N14.1|kaiso transcription factor|zinc finger and BTB domain-containing protein 33 43 0.005886 9.653 1 1 +10010 TANK TRAF family member associated NFKB activator 2 protein-coding I-TRAF|ITRAF|TRAF2 TRAF family member-associated NF-kappa-B activator|TRAF-interacting protein 32 0.00438 9.475 1 1 +10011 SRA1 steroid receptor RNA activator 1 5 protein-coding SRA|SRAP|STRAA1|pp7684 steroid receptor RNA activator 1|steroid receptor RNA activator 1 (complexes with NCOA1)|steroid receptor RNA activator protein|steroid receptor coactivator 17 0.002327 9.54 1 1 +10013 HDAC6 histone deacetylase 6 X protein-coding CPBHM|HD6|JM21|PPP1R90 histone deacetylase 6|protein phosphatase 1, regulatory subunit 90 83 0.01136 10.21 1 1 +10014 HDAC5 histone deacetylase 5 17 protein-coding HD5|NY-CO-9 histone deacetylase 5|antigen NY-CO-9 60 0.008212 10.46 1 1 +10015 PDCD6IP programmed cell death 6 interacting protein 3 protein-coding AIP1|ALIX|DRIP4|HP95 programmed cell death 6-interacting protein|ALG-2 interacting protein 1|ALG-2-interacting protein X|PDCD6-interacting protein|apoptosis-linked gene 2-interacting protein X|dopamine receptor interacting protein 4 48 0.00657 11.56 1 1 +10016 PDCD6 programmed cell death 6 5 protein-coding ALG-2|ALG2|PEF1B programmed cell death protein 6|apoptosis-linked gene 2 protein|probable calcium-binding protein ALG-2 12 0.001642 10.89 1 1 +10017 BCL2L10 BCL2 like 10 15 protein-coding BCL-B|Boo|Diva|bcl2-L-10 bcl-2-like protein 10|BCL2-like 10 (apoptosis facilitator)|anti-apoptotic protein NrH|apoptosis regulator Bcl-B|death inducer binding to vBcl-2 and Apaf-1 8 0.001095 2.723 1 1 +10018 BCL2L11 BCL2 like 11 2 protein-coding BAM|BIM|BOD bcl-2-like protein 11|BCL2-like 11 (apoptosis facilitator)|bcl-2 interacting mediator of cell death|bcl-2 interacting protein Bim|bcl-2-related ovarian death agonist 27 0.003696 9.454 1 1 +10019 SH2B3 SH2B adaptor protein 3 12 protein-coding IDDM20|LNK SH2B adapter protein 3|lymphocyte-specific adapter protein Lnk|signal transduction protein Lnk 23 0.003148 9.468 1 1 +10020 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase 9 protein-coding DMRV|GLCNE|IBM2|NM|Uae1 bifunctional UDP-N-acetylglucosamine 2-epimerase/N-acetylmannosamine kinase|N-acylmannosamine kinase|UDP-GlcNAc-2-epimerase/ManAc kinase|UDP-N-acetylglucosamine 2-epimerase/N-acetylmannosamine kinase 46 0.006296 9.287 1 1 +10021 HCN4 hyperpolarization activated cyclic nucleotide gated potassium channel 4 15 protein-coding SSS2 potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 4|hyperpolarization activated cyclic nucleotide-gated cation channel 4 99 0.01355 2.702 1 1 +10022 INSL5 insulin like 5 1 protein-coding PRO182|UNQ156 insulin-like peptide INSL5|insulin-like peptide 5|prepro-INSL5 17 0.002327 0.4235 1 1 +10023 FRAT1 frequently rearranged in advanced T-cell lymphomas 1 10 protein-coding - proto-oncogene FRAT1|FRAT-1 3 0.0004106 6.958 1 1 +10024 TROAP trophinin associated protein 12 protein-coding TASTIN tastin|trophinin assisting protein|trophinin-assisting protein (tastin) 66 0.009034 7.326 1 1 +10025 MED16 mediator complex subunit 16 19 protein-coding DRIP92|THRAP5|TRAP95 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 63 0.008623 10.31 1 1 +10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K 1 protein-coding GPI8 GPI-anchor transamidase|GPI transamidase subunit|GPI8 homolog|PIG-K|phosphatidylinositol glycan, class K|phosphatidylinositol-glycan biosynthesis class K protein 30 0.004106 9.426 1 1 +10036 CHAF1A chromatin assembly factor 1 subunit A 19 protein-coding CAF-1|CAF1|CAF1B|CAF1P150|P150 chromatin assembly factor 1 subunit A|CAF-1 subunit A|CAF-I 150 kDa subunit|CAF-I p150|CTB-50L17.7|chromatin assembly factor 1, subunit A (p150)|chromatin assembly factor I (150 kDa)|chromatin assembly factor I p150 subunit|hp150 65 0.008897 8.91 1 1 +10038 PARP2 poly(ADP-ribose) polymerase 2 14 protein-coding ADPRT2|ADPRTL2|ADPRTL3|ARTD2|PARP-2|pADPRT-2 poly [ADP-ribose] polymerase 2|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] synthase 2|poly[ADP-ribose] synthetase 2 35 0.004791 8.793 1 1 +10039 PARP3 poly(ADP-ribose) polymerase family member 3 3 protein-coding ADPRT3|ADPRTL2|ADPRTL3|ARTD3|IRT1|PADPRT-3 poly [ADP-ribose] polymerase 3|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) synthetase-3|poly[ADP-ribose] synthase 3|poly[ADP-ribose] synthetase 3 36 0.004927 8.76 1 1 +10040 TOM1L1 target of myb1 like 1 membrane trafficking protein 17 protein-coding SRCASM TOM1-like protein 1|src-activating and signaling molecule protein|target of Myb-like protein 1|target of myb1 (chicken)-like 1 33 0.004517 9.03 1 1 +10042 HMGXB4 HMG-box containing 4 22 protein-coding HMG2L1|HMGBCG|THC211630 HMG domain-containing protein 4|HMG box domain containing 4|HMG box-containing protein 4|high mobility group protein 2-like 1 50 0.006844 9.087 1 1 +10043 TOM1 target of myb1 membrane trafficking protein 22 protein-coding - target of Myb protein 1|target of myb 1 38 0.005201 10.39 1 1 +10044 SH2D3C SH2 domain containing 3C 9 protein-coding CHAT|NSP3|PRO34088|SHEP1 SH2 domain-containing protein 3C|SH2 domain-containing Eph receptor-binding protein 1|novel SH2-containing protein 3 66 0.009034 8.118 1 1 +10045 SH2D3A SH2 domain containing 3A 19 protein-coding NSP1 SH2 domain-containing protein 3A|novel SH2-containing protein 1 48 0.00657 7.273 1 1 +10046 MAMLD1 mastermind like domain containing 1 X protein-coding CG1|CXorf6|F18|HYSP2 mastermind-like domain-containing protein 1 84 0.0115 7.133 1 1 +10047 CST8 cystatin 8 20 protein-coding CRES|CTES5 cystatin-8|cystatin 8 (cystatin-related epididymal specific)|cystatin-related epididymal spermatogenic protein 24 0.003285 0.0239 1 1 +10048 RANBP9 RAN binding protein 9 6 protein-coding BPM-L|BPM90|RANBPM|RanBP7 ran-binding protein 9|Ran Binding Protein in the Microtubule organizing center|novel centrosomal protein RanBPM|ran binding protein, centrosomal|ran-binding protein M 36 0.004927 10.07 1 1 +10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 7 protein-coding DJ4|DnaJ|HHDJ1|HSJ-2|HSJ2|LGMD1D|LGMD1E|MRJ|MSJ-1 dnaJ homolog subfamily B member 6|DnaJ (Hsp40) homolog, subfamily B, member 6|DnaJ-like 2 protein|heat shock protein J2 33 0.004517 10.54 1 1 +10050 SLC17A4 solute carrier family 17 member 4 6 protein-coding KAIA2138 probable small intestine urate exporter|Na/PO4 cotransporter|putative small intestine sodium-dependent phosphate transport protein|solute carrier family 17 (sodium phosphate), member 4 50 0.006844 1.679 1 1 +10051 SMC4 structural maintenance of chromosomes 4 3 protein-coding CAP-C|CAPC|SMC-4|SMC4L1 structural maintenance of chromosomes protein 4|SMC protein 4|SMC4 structural maintenance of chromosomes 4-like 1|chromosome-associated polypeptide C 106 0.01451 10.37 1 1 +10052 GJC1 gap junction protein gamma 1 17 protein-coding CX45|GJA7 gap junction gamma-1 protein|CTC-296K1.4|connexin-45|gap junction alpha-7 protein|gap junction protein, gamma 1, 45kDa 34 0.004654 7.686 1 1 +10053 AP1M2 adaptor related protein complex 1 mu 2 subunit 19 protein-coding AP1-mu2|HSMU1B|MU-1B|MU1B|mu2 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|clathrin assembly protein complex 1 mu-2 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 22 0.003011 8.406 1 1 +10054 UBA2 ubiquitin like modifier activating enzyme 2 19 protein-coding ARX|HRIHFB2115|SAE2 SUMO-activating enzyme subunit 2|SUMO-1 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 35 0.004791 11.11 1 1 +10055 SAE1 SUMO1 activating enzyme subunit 1 19 protein-coding AOS1|HSPC140|SUA1|UBLE1A SUMO-activating enzyme subunit 1|SUMO-1 activating enzyme E1 N subunit|SUMO-1 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 27 0.003696 11.04 1 1 +10056 FARSB phenylalanyl-tRNA synthetase beta subunit 2 protein-coding FARSLB|FRSB|HSPC173|PheHB|PheRS phenylalanine--tRNA ligase beta subunit|phenylalanine tRNA ligase 1, beta, cytoplasmic|phenylalanine-tRNA ligase beta chain|phenylalanine-tRNA synthetase-like, beta subunit|phenylalanyl-tRNA synthetase beta chain|phenylalanyl-tRNA synthetase-like, beta subunit 38 0.005201 9.988 1 1 +10057 ABCC5 ATP binding cassette subfamily C member 5 3 protein-coding ABC33|EST277145|MOAT-C|MOATC|MRP5|SMRP|pABC11 multidrug resistance-associated protein 5|ATP-binding cassette, sub-family C (CFTR/MRP), member 5|canalicular multispecific organic anion transporter C|multi-specific organic anion transporter C 108 0.01478 9.897 1 1 +10058 ABCB6 ATP binding cassette subfamily B member 6 (Langereis blood group) 2 protein-coding ABC|ABC14|DUH3|LAN|MCOPCB7|MTABC3|PRP|PSHK2|umat ATP-binding cassette sub-family B member 6, mitochondrial|ATP-binding cassette half-transporter|ATP-binding cassette, sub-family B (MDR/TAP), member 6 (Langereis blood group)|P-glycoprotein-related protein|mitochondrial ABC transporter 3|mt-ABC transporter 3|ubiquitously-expressed mammalian ABC half transporter 50 0.006844 9.323 1 1 +10059 DNM1L dynamin 1 like 12 protein-coding DLP1|DRP1|DVLP|DYMPLE|EMPF|EMPF1|HDYNIV dynamin-1-like protein|Dnm1p/Vps1p-like protein|dynamin family member proline-rich carboxyl-terminal domain less|dynamin-like protein 4|dynamin-like protein IV|dynamin-related protein 1 29 0.003969 10.6 1 1 +10060 ABCC9 ATP binding cassette subfamily C member 9 12 protein-coding ABC37|ATFB12|CANTU|CMD1O|SUR2 ATP-binding cassette sub-family C member 9|ATP-binding cassette transporter sub-family C member 9|ATP-binding cassette, sub-family C (CFTR/MRP), member 9|sulfonylurea receptor 2 165 0.02258 7.115 1 1 +10061 ABCF2 ATP binding cassette subfamily F member 2 7 protein-coding ABC28|EST133090|HUSSY-18|HUSSY18 ATP-binding cassette sub-family F member 2|ABC-type transport protein|ATP-binding cassette, sub-family F (GCN20), member 2|iron-inhibited ABC transporter 2 43 0.005886 10.45 1 1 +10062 NR1H3 nuclear receptor subfamily 1 group H member 3 11 protein-coding LXR-a|LXRA|RLD-1 oxysterols receptor LXR-alpha|liver X nuclear receptor alpha variant 1 47 0.006433 8.685 1 1 +10063 COX17 COX17, cytochrome c oxidase copper chaperone 3 protein-coding - cytochrome c oxidase copper chaperone|COX17 cytochrome c oxidase assembly homolog|cytochrome c oxidase 17 copper chaperone|cytochrome c oxidase assembly homolog 17|human homolog of yeast mitochondrial copper recruitment 7 0.0009581 9.124 1 1 +10064 VDAC1P2 voltage dependent anion channel 1 pseudogene 2 X pseudo VDAC1LP voltage-dependent anion channel 1-like pseudogene 1 0.0001369 1 0 +10066 SCAMP2 secretory carrier membrane protein 2 15 protein-coding - secretory carrier-associated membrane protein 2|testis secretory sperm-binding protein Li 219p 23 0.003148 11.26 1 1 +10067 SCAMP3 secretory carrier membrane protein 3 1 protein-coding C1orf3 secretory carrier-associated membrane protein 3|propin 1 32 0.00438 10.75 1 1 +10068 IL18BP interleukin 18 binding protein 11 protein-coding IL18BPa interleukin-18-binding protein|IL-18BP|MC51L-53L-54L homolog gene product|tadekinig-alfa 12 0.001642 8.322 1 1 +10069 RWDD2B RWD domain containing 2B 21 protein-coding C21orf6|GL011 RWD domain-containing protein 2B 23 0.003148 8.461 1 1 +10071 MUC12 mucin 12, cell surface associated 7 protein-coding MUC-11|MUC-12|MUC11 mucin-12|mucin-11 77 0.01054 3.276 1 1 +10072 DPP3 dipeptidyl peptidase 3 11 protein-coding DPPIII dipeptidyl peptidase 3|DPP III|dipeptidyl aminopeptidase III|dipeptidyl arylamidase III|dipeptidyl peptidase III|enkephalinase B 69 0.009444 10.18 1 1 +10073 SNUPN snurportin 1 15 protein-coding KPNBL|RNUT1|Snurportin1 snurportin-1|RNA U transporter 1 20 0.002737 8.842 1 1 +10075 HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase X protein-coding ARF-BP1|HECTH9|HSPC272|Ib772|LASU1|MULE|URE-B1|UREB1 E3 ubiquitin-protein ligase HUWE1|ARF-binding protein 1|BJ-HCC-24 tumor antigen|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 315 0.04312 12.54 1 1 +10076 PTPRU protein tyrosine phosphatase, receptor type U 1 protein-coding FMI|PCP-2|PTP|PTP-J|PTP-PI|PTP-RO|PTPPSI|PTPRO|PTPU2|R-PTP-PSI|R-PTP-U|hPTP-J receptor-type tyrosine-protein phosphatase U|PTP pi|Receptor protein tyrosine phosphatase hPTP-J|pancreatic carcinoma phosphatase 2|pi R-PTP-Psi|protein-tyrosine phosphatase J|protein-tyrosine phosphatase pi|protein-tyrosine phosphatase receptor omicron|receptor-type protein-tyrosine phosphatase psi 117 0.01601 9.321 1 1 +10077 TSPAN32 tetraspanin 32 11 protein-coding ART1|PHEMX|PHMX|TSSC6 tetraspanin-32|pan-hematopoietic expression protein|protein Phemx|tumor-suppressing STF cDNA 6|tumor-suppressing subchromosomal transferable fragment cDNA 6|tumor-suppressing subtransferable candidate 6 21 0.002874 3.583 1 1 +10078 TSSC4 tumor suppressing subtransferable candidate 4 11 protein-coding - protein TSSC4|tumor-suppressing STF cDNA 4 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 4 protein 20 0.002737 9.404 1 1 +10079 ATP9A ATPase phospholipid transporting 9A (putative) 20 protein-coding ATPIIA probable phospholipid-transporting ATPase IIA|ATPase type IV, phospholipid-transporting (P-type),(putative)|ATPase, class II, type 9A|phospholipid-transporting ATPase IIA 85 0.01163 10.99 1 1 +10081 PDCD7 programmed cell death 7 15 protein-coding ES18|HES18 programmed cell death protein 7|U11/U12 snRNP 59K|apoptosis-related protein ES18 21 0.002874 8.93 1 1 +10082 GPC6 glypican 6 13 protein-coding OMIMD1 glypican-6|glypican proteoglycan 6 83 0.01136 7.694 1 1 +10083 USH1C USH1 protein network component harmonin 11 protein-coding AIE-75|DFNB18|DFNB18A|NY-CO-37|NY-CO-38|PDZ-45|PDZ-73|PDZ-73/NY-CO-38|PDZ73|PDZD7C|ush1cpst harmonin|Usher syndrome 1C (autosomal recessive, severe)|antigen NY-CO-38/NY-CO-37|autoimmune enteropathy-related antigen AIE-75|renal carcinoma antigen NY-REN-3|usher syndrome type-1C protein 81 0.01109 4.132 1 1 +10084 PQBP1 polyglutamine binding protein 1 X protein-coding MRX2|MRX55|MRXS3|MRXS8|NPW38|RENS1|SHS polyglutamine-binding protein 1|38 kDa nuclear protein containing a WW domain|polyglutamine tract-binding protein 1 24 0.003285 10.27 1 1 +10085 EDIL3 EGF like repeats and discoidin domains 3 5 protein-coding DEL1 EGF-like repeat and discoidin I-like domain-containing protein 3|EGF-like repeats and discoidin I-like domains 3|developmental endothelial locus-1|developmentally-regulated endothelial cell locus 1 protein|integrin-binding protein DEL1 62 0.008486 6.811 1 1 +10086 HHLA1 HERV-H LTR-associating 1 8 protein-coding PLA2L HERV-H LTR-associating protein 1 21 0.002874 0.2489 1 1 +10087 COL4A3BP collagen type IV alpha 3 binding protein 5 protein-coding CERT|CERTL|GPBP|MRD34|STARD11 collagen type IV alpha-3-binding protein|StAR-related lipid transfer (START) domain containing 11|ceramide transfer protein|ceramide transporter|collagen, type IV, alpha 3 (Goodpasture antigen) binding protein|hCERT|lipid-transfer protein CERTL 47 0.006433 9.881 1 1 +10089 KCNK7 potassium two pore domain channel subfamily K member 7 11 protein-coding K2p7.1|TWIK3 potassium channel subfamily K member 7|potassium channel, subfamily K, member 7|potassium channel, two pore domain subfamily K, member 7|two pore domain K+ channel 23 0.003148 3.435 1 1 +10090 UST uronyl 2-sulfotransferase 6 protein-coding 2OST uronyl 2-sulfotransferase|dermatan/chondroitin sulfate 2-sulfotransferase 41 0.005612 7.55 1 1 +10092 ARPC5 actin related protein 2/3 complex subunit 5 1 protein-coding ARC16|dJ127C7.3|p16-Arc actin-related protein 2/3 complex subunit 5|Arp2/3 protein complex subunit p16|actin related protein 2/3 complex, subunit 5, 16kDa|arp2/3 complex 16 kDa subunit 12 0.001642 11.85 1 1 +10093 ARPC4 actin related protein 2/3 complex subunit 4 3 protein-coding ARC20|P20-ARC actin-related protein 2/3 complex subunit 4|actin related protein 2/3 complex, subunit 4, 20kDa|arp2/3 complex 20 kDa subunit|arp2/3 protein complex subunit p20 11 0.001506 11.74 1 1 +10094 ARPC3 actin related protein 2/3 complex subunit 3 12 protein-coding ARC21|p21-Arc actin-related protein 2/3 complex subunit 3|ARP2/3 protein complex subunit p21|actin related protein 2/3 complex, subunit 3, 21kDa|arp2/3 complex 21 kDa subunit 6 0.0008212 11.89 1 1 +10095 ARPC1B actin related protein 2/3 complex subunit 1B 7 protein-coding ARC41|p40-ARC|p41-ARC actin-related protein 2/3 complex subunit 1B|ARP2/3 protein complex subunit p41|actin related protein 2/3 complex, subunit 1B, 41kDa|arp2/3 complex 41 kDa subunit 20 0.002737 11.64 1 1 +10096 ACTR3 ARP3 actin related protein 3 homolog 2 protein-coding ARP3 actin-related protein 3|actin-like protein 3 13 0.001779 11.93 1 1 +10097 ACTR2 ARP2 actin related protein 2 homolog 2 protein-coding ARP2 actin-related protein 2|actin-like protein 2 17 0.002327 12.37 1 1 +10098 TSPAN5 tetraspanin 5 4 protein-coding NET-4|NET4|TM4SF9|TSPAN-5 tetraspanin-5|tetraspan NET-4|tetraspan TM4SF|transmembrane 4 superfamily member 9|transmembrane 4 superfamily, member 8 26 0.003559 6.152 1 1 +10099 TSPAN3 tetraspanin 3 15 protein-coding TM4-A|TM4SF8|TSPAN-3 tetraspanin-3|tetraspan 3|tetraspan TM4SF|tetraspanin TM4-A|transmembrane 4 superfamily member 8 16 0.00219 12.22 1 1 +10100 TSPAN2 tetraspanin 2 1 protein-coding NET3|TSN2|TSPAN-2 tetraspanin-2|new EST tetraspan 3|tetraspan 2|tetraspan NET-3|tetraspan TM4SF|tetraspanin 2 isoform 17 0.002327 5.959 1 1 +10101 NUBP2 nucleotide binding protein 2 16 protein-coding CFD1|NBP 2|NUBP1 cytosolic Fe-S cluster assembly factor NUBP2|homolog of yeast cytosolic Fe-S cluster deficient 1|nucleotide binding protein 2 (MinD homolog, E. coli) 16 0.00219 10.03 1 1 +10102 TSFM Ts translation elongation factor, mitochondrial 12 protein-coding EFTS|EFTSMT elongation factor Ts, mitochondrial|EF-Ts|EF-TsMt|mitochondrial elongation factor Ts 16 0.00219 9.418 1 1 +10103 TSPAN1 tetraspanin 1 1 protein-coding NET1|TM4C|TM4SF tetraspanin-1|tetraspan 1 14 0.001916 8.679 1 1 +10105 PPIF peptidylprolyl isomerase F 10 protein-coding CYP3|CyP-M|Cyp-D|CypD peptidyl-prolyl cis-trans isomerase F, mitochondrial|PPIase F|cyclophilin 3|cyclophilin D|cyclophilin F|mitochondrial cyclophilin|peptidyl-prolyl cis-trans isomerase, mitochondrial|rotamase F 8 0.001095 10.81 1 1 +10106 CTDSP2 CTD small phosphatase 2 12 protein-coding OS4|PSR2|SCP2 carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2|CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2|NLI-interacting factor 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 19 0.002601 12.1 1 1 +10107 TRIM10 tripartite motif containing 10 6 protein-coding HERF1|RFB30|RNF9 tripartite motif-containing protein 10|B30-RING finger protein|Zn-finger protein|hematopoietic RING finger 1|ring finger protein 9|tripartite motif protein 10 44 0.006022 1.801 1 1 +10109 ARPC2 actin related protein 2/3 complex subunit 2 2 protein-coding ARC34|PNAS-139|PRO2446|p34-Arc actin-related protein 2/3 complex subunit 2|ARP2/3 protein complex subunit 34|actin related protein 2/3 complex, subunit 2, 34kDa|arp2/3 complex 34 kDa subunit|testis tissue sperm-binding protein Li 53e 33 0.004517 12.17 1 1 +10110 SGK2 SGK2, serine/threonine kinase 2 20 protein-coding H-SGK2|dJ138B7.2 serine/threonine-protein kinase Sgk2|serum/glucocorticoid regulated kinase 2 41 0.005612 4.703 1 1 +10111 RAD50 RAD50 double strand break repair protein 5 protein-coding NBSLD|RAD502|hRad50 DNA repair protein RAD50|RAD50 homolog, double strand break repair protein 85 0.01163 10.07 1 1 +10112 KIF20A kinesin family member 20A 5 protein-coding MKLP2|RAB6KIFL kinesin-like protein KIF20A|GG10_2|RAB6 interacting, kinesin-like (rabkinesin6)|mitotic kinesin-like protein 2|rab6-interacting kinesin-like protein|rabkinesin-6 45 0.006159 7.991 1 1 +10113 PREB prolactin regulatory element binding 2 protein-coding SEC12 prolactin regulatory element-binding protein|mammalian guanine nucleotide exchange factor mSec12 25 0.003422 10.42 1 1 +10114 HIPK3 homeodomain interacting protein kinase 3 11 protein-coding DYRK6|FIST3|PKY|YAK1 homeodomain-interacting protein kinase 3|ANPK|FIST|androgen receptor-interacting nuclear protein kinase|fas-interacting serine/threonine-protein kinase|homolog of protein kinase YAK1 64 0.00876 9.192 1 1 +10116 FEM1B fem-1 homolog B 15 protein-coding F1A-ALPHA|F1AA|FEM1-beta protein fem-1 homolog B|FEM-1-like death receptor binding protein|fem-1-like death receptor-binding protein alpha|fem-1-like in apoptotic pathway protein alpha 36 0.004927 10.64 1 1 +10117 ENAM enamelin 4 protein-coding ADAI|AI1C|AIH2 enamelin|amelogenesis imperfecta 2, hypocalcification (autosomal dominant) 112 0.01533 1.645 1 1 +10120 ACTR1B ARP1 actin-related protein 1 homolog B, centractin beta 2 protein-coding ARP1B|CTRN2|PC3 beta-centractin|actin-related protein 1B|centractin beta 24 0.003285 10.5 1 1 +10121 ACTR1A ARP1 actin-related protein 1 homolog A, centractin alpha 10 protein-coding ARP1|Arp1A|CTRN1 alpha-centractin|actin-RPV|centractin|centrosome-associated actin homolog 23 0.003148 11.42 1 1 +10123 ARL4C ADP ribosylation factor like GTPase 4C 2 protein-coding ARL7|LAK ADP-ribosylation factor-like protein 4C|ADP ribosylation factor-like protein 7|ADP-ribosylation factor-like 4C|ADP-ribosylation factor-like 7|ADP-ribosylation factor-like protein LAK 10 0.001369 9.828 1 1 +10124 ARL4A ADP ribosylation factor like GTPase 4A 7 protein-coding ARL4 ADP-ribosylation factor-like protein 4A|ADP-ribosylation factor-like 4|ADP-ribosylation factor-like 4A 16 0.00219 8.541 1 1 +10125 RASGRP1 RAS guanyl releasing protein 1 15 protein-coding CALDAG-GEFI|CALDAG-GEFII|RASGRP|V|hRasGRP1 RAS guanyl-releasing protein 1|RAS guanyl nucleotide-releasing protein 1|RAS guanyl releasing protein 1 (calcium and DAG-regulated)|calcium and DAG-regulated guanine nucleotide exchange factor II|calcium- and diacylglycerol-regulated guanine nucleotide exchange factor II|guanine nucleotide exchange factor, calcium- and DAG-regulated, Rap1A|ras activator RasGRP 47 0.006433 6.784 1 1 +10126 DNAL4 dynein axonemal light chain 4 22 protein-coding MRMV3|PIG27 dynein light chain 4, axonemal|dynein light chain, outer arm 4|dynein, axonemal, light polypeptide 4|proliferation-inducing gene 27|proliferation-inducing protein 27 6 0.0008212 8.819 1 1 +10127 ZNF263 zinc finger protein 263 16 protein-coding FPM315|ZKSCAN12|ZSCAN44 zinc finger protein 263|zinc finger protein FPM315|zinc finger protein with KRAB and SCAN domains 12 43 0.005886 9.489 1 1 +10128 LRPPRC leucine rich pentatricopeptide repeat containing 2 protein-coding CLONE-23970|GP130|LRP130|LSFC leucine-rich PPR motif-containing protein, mitochondrial|130 kDa leucine-rich protein|LRP 130|leucine-rich PPR-motif containing|mitochondrial leucine-rich PPR motif-containing protein 89 0.01218 11.67 1 1 +10129 FRY FRY microtubule binding protein 13 protein-coding 13CDNA73|214K23.2|C13orf14|CG003|bA207N4.2|bA37E23.1 protein furry homolog|WUGSC:H_2G3A.1|furry homolog 204 0.02792 8.648 1 1 +10130 PDIA6 protein disulfide isomerase family A member 6 2 protein-coding ERP5|P5|TXNDC7 protein disulfide-isomerase A6|ER protein 5|endoplasmic reticulum protein 5|protein disulfide isomerase P5|protein disulfide isomerase-associated 6|protein disulfide isomerase-related protein|thioredoxin domain containing 7 (protein disulfide isomerase)|thioredoxin domain-containing protein 7 24 0.003285 12.68 1 1 +10131 TRAP1 TNF receptor associated protein 1 16 protein-coding HSP 75|HSP75|HSP90L|TRAP-1 heat shock protein 75 kDa, mitochondrial|TNFR-associated protein 1|testicular tissue protein Li 209|tumor necrosis factor type 1 receptor-associated protein 37 0.005064 11.06 1 1 +10133 OPTN optineurin 10 protein-coding ALS12|FIP2|GLC1E|HIP7|HYPL|NRP|TFIIIA-INTP optineurin|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 52 0.007117 10.82 1 1 +10134 BCAP31 B-cell receptor-associated protein 31 X protein-coding 6C6-AG|BAP31|CDM|DDCH|DXS1357E B-cell receptor-associated protein 31|6C6-AG tumor-associated antigen|BCR-associated protein Bap31|p28 Bap31 18 0.002464 12.49 1 1 +10135 NAMPT nicotinamide phosphoribosyltransferase 7 protein-coding 1110035O14Rik|PBEF|PBEF1|VF|VISFATIN nicotinamide phosphoribosyltransferase|NAmPRTase|pre-B cell-enhancing factor|pre-B-cell colony-enhancing factor 1 29 0.003969 11.03 1 1 +10136 CELA3A chymotrypsin like elastase family member 3A 1 protein-coding ELA3|ELA3A chymotrypsin-like elastase family member 3A|elastase 1|elastase 3A, pancreatic|elastase IIIA|elastase-3A|protease E 32 0.00438 0.3573 1 1 +10137 RBM12 RNA binding motif protein 12 20 protein-coding HRIHFB2091|SWAN RNA-binding protein 12|SH3/WW domain anchor protein in the nucleus 61 0.008349 10.72 1 1 +10138 YAF2 YY1 associated factor 2 12 protein-coding - YY1-associated factor 2 16 0.00219 8.292 1 1 +10139 ARFRP1 ADP ribosylation factor related protein 1 20 protein-coding ARL18|ARP|Arp1 ADP-ribosylation factor-related protein 1|ARF-related protein 1|SCG10 like-protein|helicase-like protein NHL 17 0.002327 9.653 1 1 +10140 TOB1 transducer of ERBB2, 1 17 protein-coding APRO5|APRO6|PIG49|TOB|TROB|TROB1 protein Tob1|proliferation-inducing gene 49|transducer of erbB-2 1 26 0.003559 10.46 1 1 +10141 LINC01587 long intergenic non-protein coding RNA 1587 4 ncRNA C4orf6|aC1 expressed in neuroblastoma 7 0.0009581 1.027 1 1 +10142 AKAP9 A-kinase anchoring protein 9 7 protein-coding AKAP-9|AKAP350|AKAP450|CG-NAP|HYPERION|LQT11|MU-RMS-40.16A|PPP1R45|PRKA9|YOTIAO A-kinase anchor protein 9|A kinase (PRKA) anchor protein (yotiao) 9|A kinase (PRKA) anchor protein 9|A-kinase anchor protein 350 kDa|A-kinase anchor protein 450 kDa|AKAP 120-like protein|AKAP9-BRAF fusion protein|centrosome- and Golgi-localized PKN-associated protein|centrosome- and golgi-localized protein kinase N-associated protein|kinase N-associated protein|protein hyperion|protein kinase A anchoring protein 9|protein phosphatase 1, regulatory subunit 45|protein yotiao 272 0.03723 10.44 1 1 +10143 CLEC3A C-type lectin domain family 3 member A 16 protein-coding CLECSF1 C-type lectin domain family 3 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 1 (cartilage-derived) 29 0.003969 1.179 1 1 +10144 FAM13A family with sequence similarity 13 member A 4 protein-coding ARHGAP48|FAM13A1 protein FAM13A|FAM13A1_v2 protein|family with sequence similarity 13, member A1 62 0.008486 9.179 1 1 +10146 G3BP1 G3BP stress granule assembly factor 1 5 protein-coding G3BP|HDH-VIII ras GTPase-activating protein-binding protein 1|ATP-dependent DNA helicase VIII|DNA helicase VIII|G3BP-1|GAP SH3 domain-binding protein 1|GAP binding protein|GTPase activating protein (SH3 domain) binding protein 1|Ras-GTPase-activating protein SH3-domain-binding protein|RasGAP-associated endoribonuclease G3BP 48 0.00657 11.07 1 1 +10147 SUGP2 SURP and G-patch domain containing 2 19 protein-coding SFRS14 SURP and G-patch domain-containing protein 2|arginine/serine-rich-splicing factor 14|splicing factor, arginine/serine-rich 14 54 0.007391 10.32 1 1 +10148 EBI3 Epstein-Barr virus induced 3 19 protein-coding IL-27B|IL27B interleukin-27 subunit beta|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 13 0.001779 5.338 1 1 +10149 ADGRG2 adhesion G protein-coupled receptor G2 X protein-coding EDDM6|GPR64|HE6|TM7LN2 adhesion G-protein coupled receptor G2|G protein-coupled receptor 64|G protein-coupled receptor, epididymis-specific (seven transmembrane family)|epididymal protein 6|human epididymis-specific protein 6 78 0.01068 4.484 1 1 +10150 MBNL2 muscleblind like splicing regulator 2 13 protein-coding MBLL|MBLL39|PRO2032 muscleblind-like protein 2|muscleblind-like 2|muscleblind-like protein 1|muscleblind-like protein-like 39 28 0.003832 10.23 1 1 +10151 HNRNPA3P1 heterogeneous nuclear ribonucleoprotein A3 pseudogene 1 10 pseudo D10S102|FBRNP|HNRPA3|HNRPA3P1 - 1 0.0001369 6.33 1 1 +10152 ABI2 abl interactor 2 2 protein-coding ABI-2|ABI2B|AIP-1|AblBP3|SSH3BP2|argBP1|argBPIA|argBPIB abl interactor 2|abelson 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 34 0.004654 10.23 1 1 +10153 CEBPZ CCAAT/enhancer binding protein zeta 2 protein-coding CBF|CBF2|HSP-CBF|NOC1 CCAAT/enhancer-binding protein zeta|CCAAT-box-binding transcription factor|CCAAT/enhancer binding protein (C/EBP), zeta|CCAAT/enhancer binding protein cebp family zeta 68 0.009307 10.19 1 1 +10154 PLXNC1 plexin C1 12 protein-coding CD232|PLXN-C1|VESPR plexin-C1|plexin (semaphorin receptor)|receptor for viral semaphorin protein|receptor for virally-encoded semaphorin|virus-encoded semaphorin protein receptor 96 0.01314 7.122 1 1 +10155 TRIM28 tripartite motif containing 28 19 protein-coding KAP1|PPP1R157|RNF96|TF1B|TIF1B transcription intermediary factor 1-beta|E3 SUMO-protein ligase TRIM28|KAP-1|KRAB [Kruppel-associated box domain]-associated protein 1|KRAB-interacting protein 1|KRIP-1|RING finger protein 96|TIF1-beta|nuclear corepressor KAP-1|protein phosphatase 1, regulatory subunit 157|transcriptional intermediary factor 1-beta 46 0.006296 12.57 1 1 +10156 RASA4 RAS p21 protein activator 4 7 protein-coding CAPRI|GAPL ras GTPase-activating protein 4|Ca2+-promoted Ras inactivator|calcium-promoted Ras inactivator|rasGAP-activating-like protein 2 7 0.0009581 7.928 1 1 +10157 AASS aminoadipate-semialdehyde synthase 7 protein-coding LKR/SDH|LKRSDH|LORSDH alpha-aminoadipic semialdehyde synthase, mitochondrial|alpha-aminoadipate semialdehyde synthase|aminoadipic semialdehyde synthase|lysine-2-oxoglutarate reductase|lysine-ketoglutarate reductase /saccharopine dehydrogenase 82 0.01122 8.161 1 1 +10158 PDZK1IP1 PDZK1 interacting protein 1 1 protein-coding DD96|MAP17|SPAP PDZK1-interacting protein 1|17 kDa membrane-associated protein|epithelial protein up-regulated in carcinoma, membrane associated protein 17|membrane-associated protein 17 11 0.001506 7.71 1 1 +10159 ATP6AP2 ATPase H+ transporting accessory protein 2 X protein-coding APT6M8-9|ATP6IP2|ATP6M8-9|ELDF10|HT028|M8-9|MRXE|MRXSH|MSTP009|PRR|RENR|XMRE|XPDS renin receptor|ATPase H(+)-transporting lysosomal-interacting protein 2|ATPase, H+ transporting, lysosomal (vacuolar proton pump) membrane sector associated protein M8-9|ATPase, H+ transporting, lysosomal accessory protein 2|ATPase, H+ transporting, lysosomal interacting protein 2|ER-localized type I transmembrane adaptor|N14F|V-ATPase M8.9 subunit|embryonic liver differentiation factor 10|prorenin receptor|renin/prorenin receptor|vacuolar ATP synthase membrane sector-associated protein M8-9|vacuolar proton ATP synthase membrane sector associated protein M8-9 29 0.003969 11.83 1 1 +10160 FARP1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 13 protein-coding CDEP|FARP1-IT1|PLEKHC2|PPP1R75 FERM, RhoGEF and pleckstrin domain-containing protein 1|FERM, RhoGEF (ARHGEF) and pleckstrin domain protein 1 (chondrocyte-derived)|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 89 0.01218 10.87 1 1 +10161 LPAR6 lysophosphatidic acid receptor 6 13 protein-coding ARWH1|HYPT8|LAH3|P2RY5|P2Y5 lysophosphatidic acid receptor 6|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 25 0.003422 8.841 1 1 +10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 12 protein-coding C3F|LPCAT|LPLAT 5|LPSAT|MBOAT5|OACT5|nessy lysophospholipid acyltransferase 5|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|membrane bound O-acyltransferase domain containing 5|membrane-bound O-acyltransferase domain-containing protein 5|putative protein similar to nessy 31 0.004243 10.45 1 1 +10163 WASF2 WAS protein family member 2 1 protein-coding IMD2|SCAR2|WASF4|WAVE2|dJ393P12.2 wiskott-Aldrich syndrome protein family member 2|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 46 0.006296 11.74 1 1 +10164 CHST4 carbohydrate sulfotransferase 4 16 protein-coding GST3|GlcNAc6ST2|HECGLCNAC6ST|LSST carbohydrate sulfotransferase 4|GST-3|HEC-GlcNAc6ST|L-selectin ligand sulfotransferase|N-acetylglucosamine 6-O-sulfotransferase 2|carbohydrate (N-acetylglucosamine 6-O) 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 30 0.004106 2.326 1 1 +10165 SLC25A13 solute carrier family 25 member 13 7 protein-coding ARALAR2|CITRIN|CTLN2 calcium-binding mitochondrial carrier protein Aralar2|mitochondrial aspartate glutamate carrier 2|solute carrier family 25 (aspartate/glutamate carrier), member 13 57 0.007802 9.444 1 1 +10166 SLC25A15 solute carrier family 25 member 15 13 protein-coding D13S327|HHH|ORC1|ORNT1 mitochondrial ornithine transporter 1|ornithine transporter 1|solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 16 0.00219 8.392 1 1 +10168 ZNF197 zinc finger protein 197 3 protein-coding D3S1363E|P18|VHLaK|ZKSCAN9|ZNF166|ZNF20|ZSCAN41 zinc finger protein 197|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 49 0.006707 8.467 1 1 +10169 SERF2 small EDRK-rich factor 2 15 protein-coding 4F5REL|FAM2C|H4F5REL|HsT17089 small EDRK-rich factor 2|gastric cancer-related protein VRG107|protein 4F5-related 13 0.001779 13.07 1 1 +10170 DHRS9 dehydrogenase/reductase 9 2 protein-coding 3-alpha-HSD|3ALPHA-HSD|RDH-E2|RDH-TBE|RDH15|RDHL|RDHTBE|RETSDR8|SDR9C4 dehydrogenase/reductase SDR family member 9|3-alpha hydroxysteroid dehydrogenase|NADP-dependent retinol dehydrogenase/reductase|dehydrogenase/reductase (SDR family) member 9|retinol dehydrogenase 15|retinol dehydrogenase homolog|short chain dehydrogenase/reductase family 9C member 4|short-chain dehydrogenase/reductase retSDR8|tracheobronchial epithelial cell-specific retinol dehydrogenase 39 0.005338 5.203 1 1 +10171 RCL1 RNA terminal phosphate cyclase like 1 9 protein-coding RNAC|RPCL1 RNA 3'-terminal phosphate cyclase-like protein|RNA cyclase homolog 19 0.002601 8.487 1 1 +10172 ZNF256 zinc finger protein 256 19 protein-coding BMZF-3|BMZF3 zinc finger protein 256|bone marrow zinc finger 3 43 0.005886 6.394 1 1 +10174 SORBS3 sorbin and SH3 domain containing 3 8 protein-coding SCAM-1|SCAM1|SH3D4 vinexin|sorbin and SH3 domain-containing protein 3|vinexin beta (SH3-containing adaptor molecule-1) 37 0.005064 10.81 1 1 +10175 CNIH1 cornichon family AMPA receptor auxiliary protein 1 14 protein-coding CNIH|CNIH-1|CNIL|TGAM77 protein cornichon homolog 1|T-cell growth-associated molecule 77|cornichon homolog 10 0.001369 10.29 1 1 +10178 TENM1 teneurin transmembrane protein 1 X protein-coding ODZ1|ODZ3|TEN-M1|TNM|TNM1 teneurin-1|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 297 0.04065 5.132 1 1 +10179 RBM7 RNA binding motif protein 7 11 protein-coding - RNA-binding protein 7 18 0.002464 8.767 1 1 +10180 RBM6 RNA binding motif protein 6 3 protein-coding 3G2|DEF-3|DEF3|HLC-11|NY-LU-12|g16 RNA-binding protein 6|RNA-binding protein DEF-3|lung cancer antigen NY-LU-12|lung cancer protooncogene 11 88 0.01204 10.19 1 1 +10181 RBM5 RNA binding motif protein 5 3 protein-coding G15|H37|LUCA15|RMB5 RNA-binding protein 5|putative tumor suppressor LUCA15|renal carcinoma antigen NY-REN-9 51 0.006981 10.72 1 1 +10184 LHFPL2 lipoma HMGIC fusion partner-like 2 5 protein-coding - lipoma HMGIC fusion partner-like 2 protein|LHFP-like protein 2 11 0.001506 9.744 1 1 +10186 LHFP lipoma HMGIC fusion partner 13 protein-coding - lipoma HMGIC fusion partner 25 0.003422 9.007 1 1 +10188 TNK2 tyrosine kinase non receptor 2 3 protein-coding ACK|ACK-1|ACK1|p21cdc42Hs activated CDC42 kinase 1|activated Cdc42-associated kinase 1|activated p21cdc42Hs kinase|tyrosine kinase non-receptor protein 2 68 0.009307 10.38 1 1 +10189 ALYREF Aly/REF export factor 17 protein-coding ALY|ALY/REF|BEF|REF|THOC4 THO complex subunit 4|THO complex 4|ally of AML-1 and LEF-1|bZIP enhancing factor|bZIP-enhancing factor BEF|tho4|transcriptional coactivator Aly/REF 20 0.002737 10.12 1 1 +10190 TXNDC9 thioredoxin domain containing 9 2 protein-coding APACD|PHLP3 thioredoxin domain-containing protein 9|ATP binding protein associated with cell differentiation|protein 1-4 13 0.001779 9.115 1 1 +10193 RNF41 ring finger protein 41 12 protein-coding FLRF|NRDP1|SBBI03 E3 ubiquitin-protein ligase NRDP1|fetal liver ring finger|neuregulin receptor degradation protein-1|ring finger protein 41, E3 ubiquitin protein ligase 24 0.003285 9.854 1 1 +10194 TSHZ1 teashirt zinc finger homeobox 1 18 protein-coding CAA|NY-CO-33|SDCCAG33|TSH1 teashirt homolog 1|antigen NY-CO-33|serologically defined colon cancer antigen 33 75 0.01027 9.295 1 1 +10195 ALG3 ALG3, alpha-1,3- mannosyltransferase 3 protein-coding CDG1D|CDGS4|CDGS6|D16Ertd36e|NOT56L|Not56|not dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase|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 3, alpha-1,3- mannosyltransferase homolog|asparagine-linked glycosylation protein 3 homolog|carbohydrate deficient glycoprotein syndrome type IV|dol-P-Man-dependent alpha(1-3)-mannosyltransferase|dolichyl-P-Man:Man(5)GlcNAc(2)-PP-dolichyl mannosyltransferase|dolichyl-phosphate-mannose--glycolipid alpha-mannosyltransferase 23 0.003148 10.07 1 1 +10196 PRMT3 protein arginine methyltransferase 3 11 protein-coding HRMT1L3 protein arginine N-methyltransferase 3|HMT1 hnRNP methyltransferase-like 3|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 3 39 0.005338 8.462 1 1 +10197 PSME3 proteasome activator subunit 3 17 protein-coding HEL-S-283|Ki|PA28-gamma|PA28G|PA28gamma|REG-GAMMA proteasome activator complex subunit 3|11S regulator complex gamma subunit|11S regulator complex subunit gamma|Ki antigen|Ki nuclear autoantigen|PA28 gamma variant 5|REG gamma-3|activator of multicatalytic protease subunit 3|epididymis secretory protein Li 283|proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki)|proteasome activator 28 subunit gamma|proteasome activator 28-gamma 20 0.002737 11.23 1 1 +10198 MPHOSPH9 M-phase phosphoprotein 9 12 protein-coding MPP-9|MPP9 M-phase phosphoprotein 9 65 0.008897 7.512 1 1 +10199 MPHOSPH10 M-phase phosphoprotein 10 2 protein-coding CT90|MPP10|MPP10P|PPP1R106 U3 small nucleolar ribonucleoprotein protein MPP10|M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein)|U3 small nucleolar ribonucleoprotein|m phase phosphoprotein 10|protein phosphatase 1, regulatory subunit 106 48 0.00657 9.687 1 1 +10200 MPHOSPH6 M-phase phosphoprotein 6 16 protein-coding MPP|MPP-6|MPP6 M-phase phosphoprotein 6 13 0.001779 8.246 1 1 +10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 3 protein-coding IPIA-ALPHA|NDK 6|NM23-H6 nucleoside diphosphate kinase 6|NDP kinase 6|inhibitor of p53-induced apoptosis-alpha|non-metastatic cells 6, protein expressed in (nucleoside-diphosphate kinase) 16 0.00219 7.586 1 1 +10202 DHRS2 dehydrogenase/reductase 2 14 protein-coding HEP27|SDR25C1 dehydrogenase/reductase SDR family member 2, mitochondrial|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 27 0.003696 5.381 1 1 +10203 CALCRL calcitonin receptor like receptor 2 protein-coding CGRPR|CRLR calcitonin gene-related peptide type 1 receptor|CGRP type 1 receptor|calcitonin receptor-like 56 0.007665 8.667 1 1 +10204 NUTF2 nuclear transport factor 2 16 protein-coding NTF-2|NTF2|PP15 nuclear transport factor 2|placental protein 15 16 0.00219 10.9 1 1 +10205 MPZL2 myelin protein zero like 2 11 protein-coding EVA|EVA1 myelin protein zero-like protein 2|epithelial V-like antigen 1 15 0.002053 9.518 1 1 +10206 TRIM13 tripartite motif containing 13 13 protein-coding CAR|DLEU5|LEU5|RFP2|RNF77 E3 ubiquitin-protein ligase TRIM13|B-cell chronic lymphocytic leukemia tumor suppressor Leu5|CLL-associated RING finger|RING finger protein 77|leukemia-associated protein 5|putative tumor suppressor RFP2|ret finger protein 2|tripartite motif protein 13|tripartite motif-containing protein 13 56 0.007665 9.274 1 1 +10207 PATJ PATJ, crumbs cell polarity complex component 1 protein-coding Cipp|INADL|InaD-like|hINADL inaD-like protein|PALS1-associated tight junction protein|PDZ domain protein|channel-interacting PDZ domain protein|inactivation no after-potential D-like protein|inactivation-no-afterpotential D-like|protein associated to tight junctions 144 0.01971 9.854 1 1 +10208 USPL1 ubiquitin specific peptidase like 1 13 protein-coding C13orf22|D13S106E|bA121O19.1 SUMO-specific isopeptidase USPL1|highly charged protein|ubiquitin-specific peptidase-like protein 1 61 0.008349 8.592 1 1 +10209 EIF1 eukaryotic translation initiation factor 1 17 protein-coding A121|EIF-1|EIF1A|ISO1|SUI1 eukaryotic translation initiation factor 1|protein translation factor SUI1 homolog|sui1iso1 15 0.002053 13.45 1 1 +10210 TOPORS TOP1 binding arginine/serine rich protein 9 protein-coding LUN|P53BP3|RP31|TP53BPL E3 ubiquitin-protein ligase Topors|SUMO1-protein E3 ligase Topors|topoisomerase I binding, arginine/serine-rich, E3 ubiquitin protein ligase|topoisomerase I-binding RING finger protein|tumor suppressor p53-binding protein 3 71 0.009718 9.016 1 1 +10211 FLOT1 flotillin 1 6 protein-coding - flotillin-1|integral membrane component of caveolae 24 0.003285 11.89 1 1 +10212 DDX39A DExD-box helicase 39A 19 protein-coding BAT1|BAT1L|DDX39|DDXL|URH49 ATP-dependent RNA helicase DDX39A|DEAD (Asp-Glu-Ala-Asp) box polypeptide 39|DEAD (Asp-Glu-Ala-Asp) box polypeptide 39A|DEAD box protein 39|DEAD-box helicase 39A|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 22 0.003011 10.23 1 1 +10213 PSMD14 proteasome 26S subunit, non-ATPase 14 2 protein-coding PAD1|POH1|RPN11 26S proteasome non-ATPase regulatory subunit 14|26S proteasome regulatory subunit rpn11|26S proteasome-associated PAD1 homolog 1|proteasome (prosome, macropain) 26S subunit, non-ATPase, 14|testis tissue sperm-binding protein Li 69n 13 0.001779 10.38 1 1 +10214 SSX3 SSX family member 3 X protein-coding CT5.3 protein SSX3|Kruppel-associated box containing gene product SSX3|cancer/testis antigen 5.3|synovial sarcoma, X breakpoint 3 21 0.002874 0.2624 1 1 +10215 OLIG2 oligodendrocyte lineage transcription factor 2 21 protein-coding BHLHB1|OLIGO2|PRKCBP2|RACK17|bHLHe19 oligodendrocyte transcription factor 2|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-specific bHLH transcription factor 2|protein kinase C-binding protein 2 14 0.001916 1.659 1 1 +10216 PRG4 proteoglycan 4 1 protein-coding CACP|HAPO|JCAP|MSF|SZP proteoglycan 4|articular superficial zone protein|hemangiopoietin|lubricin|megakaryocyte stimulating factor|superficial zone proteoglycan 158 0.02163 4.335 1 1 +10217 CTDSPL CTD small phosphatase like 3 protein-coding C3orf8|HYA22|PSR1|RBSP3|SCP3 CTD small phosphatase-like protein|CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase-like|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 14 0.001916 10.01 1 1 +10218 ANGPTL7 angiopoietin like 7 1 protein-coding AngX|CDT6|dJ647M16.1 angiopoietin-related protein 7|angiopoietin-like factor (CDT6)|angiopoietin-like protein 7|cornea-derived transcript 6 protein 23 0.003148 1.801 1 1 +10219 KLRG1 killer cell lectin like receptor G1 12 protein-coding 2F1|CLEC15A|MAFA|MAFA-2F1|MAFA-L|MAFA-LIKE killer cell lectin-like receptor subfamily G member 1|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) 17 0.002327 4.262 1 1 +10220 GDF11 growth differentiation factor 11 12 protein-coding BMP-11|BMP11 growth/differentiation factor 11|GDF-11|bone morphogenetic protein 11 21 0.002874 7.865 1 1 +10221 TRIB1 tribbles pseudokinase 1 8 protein-coding C8FW|GIG-2|GIG2|SKIP1|TRB-1|TRB1 tribbles homolog 1|G-protein-coupled receptor induced protein|G-protein-coupled receptor-induced gene 2 protein|G-protein-coupled receptor-induced protein 2|phosphoprotein regulated by mitogenic pathways|tribbles-like protein 1 18 0.002464 10.67 1 1 +10223 GPA33 glycoprotein A33 1 protein-coding A33 cell surface A33 antigen|glycoprotein A33 (transmembrane)|transmembrane glycoprotein A33 29 0.003969 2.891 1 1 +10224 ZNF443 zinc finger protein 443 19 protein-coding ZK1 zinc finger protein 443|Kruppel-type zinc finger (C2H2)|krueppel-type zinc finger protein ZK1 51 0.006981 6.293 1 1 +10225 CD96 CD96 molecule 3 protein-coding TACTILE T-cell surface protein tactile|T cell activation, increased late expression|cell surface antigen CD96|t cell-activated increased late expression protein 61 0.008349 6.023 1 1 +10226 PLIN3 perilipin 3 19 protein-coding M6PRBP1|PP17|TIP47 perilipin-3|47 kDa MPR-binding protein|cargo selection protein TIP47|mannose-6-phosphate receptor-binding protein 1|placental protein 17|tail-interacting protein, 47 kD|testicular tissue protein Li 114 29 0.003969 10.78 1 1 +10227 MFSD10 major facilitator superfamily domain containing 10 4 protein-coding TETRAN|TETTRAN major facilitator superfamily domain-containing protein 10|tetracycline transporter-like protein 32 0.00438 10.38 1 1 +10228 STX6 syntaxin 6 1 protein-coding - syntaxin-6 25 0.003422 10.3 1 1 +10229 COQ7 coenzyme Q7, hydroxylase 16 protein-coding CAT5|CLK-1|CLK1|COQ10D8 5-demethoxyubiquinone hydroxylase, mitochondrial|5-demethoxyubiquinone hydroxylase|COQ7 coenzyme Q, 7 homolog ubiquinone|DMQ hydroxylase|coenzyme Q biosynthesis protein 7 homolog|coenzyme Q7 homolog, ubiquinone|placental protein KG-20|timing protein clk-1 homolog|ubiquinone biosynthesis monooxygenase COQ7|ubiquinone biosynthesis protein COQ7 homolog 15 0.002053 8.74 1 1 +10230 NBR2 neighbor of BRCA1 gene 2 (non-protein coding) 17 ncRNA NCRNA00192 - 21 0.002874 7.091 1 1 +10231 RCAN2 regulator of calcineurin 2 6 protein-coding CSP2|DSCR1L1|MCIP2|RCN2|ZAKI-4|ZAKI4 calcipressin-2|Down syndrome candidate region 1-like 1|Down syndrome critical region gene 1-like 1|myocyte-enriched calcineurin-interacting protein 2|thyroid hormone-responsive (skin fibroblasts)|thyroid hormone-responsive protein ZAKI-4 23 0.003148 7.932 1 1 +10232 MSLN mesothelin 16 protein-coding MPF|SMRP mesothelin|CAK1 antigen|megakaryocyte potentiating factor|pre-pro-megakaryocyte-potentiating factor|soluble MPF mesothelin related protein 57 0.007802 5.401 1 1 +10233 LRRC23 leucine rich repeat containing 23 12 protein-coding LRPB7 leucine-rich repeat-containing protein 23|leucine-rich protein B7 33 0.004517 7.632 1 1 +10234 LRRC17 leucine rich repeat containing 17 7 protein-coding P37NB leucine-rich repeat-containing protein 17|37 kDa leucine-rich repeat (LRR) protein 40 0.005475 6.211 1 1 +10235 RASGRP2 RAS guanyl releasing protein 2 11 protein-coding CALDAG-GEFI|CDC25L RAS guanyl-releasing protein 2|F25B3.3 kinase-like protein|RAS guanyl nucleotide-releasing protein 2|RAS guanyl releasing protein 2 (calcium and DAG-regulated)|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 62 0.008486 6.145 1 1 +10236 HNRNPR heterogeneous nuclear ribonucleoprotein R 1 protein-coding HNRPR|hnRNP-R heterogeneous nuclear ribonucleoprotein R 51 0.006981 11.44 1 1 +10237 SLC35B1 solute carrier family 35 member B1 17 protein-coding UGTREL1 solute carrier family 35 member B1|UDP-galactose transporter related|UDP-galactose transporter-related protein 1|hUGTrel1 28 0.003832 9.961 1 1 +10238 DCAF7 DDB1 and CUL4 associated factor 7 17 protein-coding AN11|HAN11|SWAN-1|WDR68 DDB1- and CUL4-associated factor 7|WD repeat-containing protein 68|WD repeat-containing protein An11 homolog|human anthocyanin|seven-WD-repeat protein of the AN11 family-1 27 0.003696 11.46 1 1 +10239 AP3S2 adaptor related protein complex 3 sigma 2 subunit 15 protein-coding AP3S3|sigma3b AP-3 complex subunit sigma-2|AP-3 complex subunit sigma-3B|adapter-related protein complex 3 subunit sigma-2|adaptor complex sigma3B|adaptor-related protein complex 3 subunit sigma-2|clathrin-associated/assembly/adaptor protein, small 4, 22-kD|sigma-3B-adaptin|sigma-adaptin 3b 13 0.001779 10.51 1 1 +10240 MRPS31 mitochondrial ribosomal protein S31 13 protein-coding IMOGN38|MRP-S31|S31mt 28S ribosomal protein S31, mitochondrial|imogen 38 30 0.004106 8.308 1 1 +10241 CALCOCO2 calcium binding and coiled-coil domain 2 17 protein-coding NDP52 calcium-binding and coiled-coil domain-containing protein 2|antigen nuclear dot 52 kDa protein|nuclear domain 10 protein 52|nuclear domain 10 protein NDP52|nuclear dot protein 52 13 0.001779 10.94 1 1 +10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 3 protein-coding - calcium-activated potassium channel subunit beta-2|BK channel beta subunit 2|BK channel subunit beta-2|MaxiK channel beta 2 subunit|MaxiK channel beta-subunit 2|big potassium channel beta subunit 2|charybdotoxin receptor subunit beta-2|hCG1646471|hbeta2|k(VCA)beta-2|large conductance calcium-activated potassium channel beta 2 subunit|large-conductance Ca2+-activated K+ channel beta2 subunit|potassium channel subfamily M regulatory beta subunit 2|potassium large conductance calcium-activated channel, subfamily M, beta member 2|slo-beta-2 34 0.004654 2.849 1 1 +10243 GPHN gephyrin 14 protein-coding GEPH|GPH|GPHRYN|HKPX1|MOCODC gephyrin 58 0.007939 8.544 1 1 +10244 RABEPK Rab9 effector protein with kelch motifs 9 protein-coding RAB9P40|bA65N13.1|p40 rab9 effector protein with kelch motifs|40 kDa Rab9 effector protein|Rab9 effector p40 29 0.003969 8.859 1 1 +10245 TIMM17B translocase of inner mitochondrial membrane 17 homolog B (yeast) X protein-coding DXS9822|JM3|TIM17B mitochondrial import inner membrane translocase subunit Tim17-B|inner mitochondrial membrane preprotein translocase 15 0.002053 9.689 1 1 +10246 SLC17A2 solute carrier family 17 member 2 6 protein-coding NPT3 sodium-dependent phosphate transport protein 3|Na(+)/PI cotransporter 3|sodium phosphate transporter 3|sodium/phosphate cotransporter 3|solute carrier family 17 (vesicular glutamate transporter), member 2 48 0.00657 0.8128 1 1 +10247 RIDA reactive intermediate imine deaminase A homolog 8 protein-coding HRSP12|P14.5|PSP|UK114 ribonuclease UK114|14.5 kDa translational inhibitor protein|UK114 antigen homolog|heat-responsive protein 12|perchloric acid-soluble protein|translational inhibitor p14.5|translational inhibitor protein p14.5 11 0.001506 8.755 1 1 +10248 POP7 POP7 homolog, ribonuclease P/MRP subunit 7 protein-coding 0610037N12Rik|RPP2|RPP20 ribonuclease P protein subunit p20|POP7 (processing of precursor, S. cerevisiae) homolog|RNaseP protein p20|hPOP7|processing of precursor 7, ribonuclease P subunit|processing of precursor 7, ribonuclease P/MRP subunit|ribonucleases P/MRP protein subunit POP7 homolog 10 0.001369 9.244 1 1 +10249 GLYAT glycine-N-acyltransferase 11 protein-coding ACGNAT|CAT|GAT glycine N-acyltransferase|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-benzoyltransferase 45 0.006159 1.433 1 1 +10250 SRRM1 serine and arginine repetitive matrix 1 1 protein-coding 160-KD|POP101|SRM160 serine/arginine repetitive matrix protein 1|SR-related nuclear matrix protein of 160 kDa|Ser/Arg-related nuclear matrix protein|serine/arginine repetitive matrix 1 68 0.009307 10.75 1 1 +10251 SPRY3 sprouty RTK signaling antagonist 3 X|Y protein-coding spry-3 protein sprouty homolog 3|antagonist of FGF signaling|sprouty homolog 3 5.728 0 1 +10252 SPRY1 sprouty RTK signaling antagonist 1 4 protein-coding hSPRY1 protein sprouty homolog 1|sprouty homolog 1, antagonist of FGF signaling|sprouty, Drosophila, homolog of, 1 (antagonist of FGF signaling)|spry-1 30 0.004106 9.117 1 1 +10253 SPRY2 sprouty RTK signaling antagonist 2 13 protein-coding IGAN3|hSPRY2 protein sprouty homolog 2 25 0.003422 8.71 1 1 +10254 STAM2 signal transducing adaptor molecule 2 2 protein-coding Hbp|STAM2A|STAM2B signal transducing adapter molecule 2|HSE1 homolog|Hrs-binding protein|STAM-2|STAM-like protein containing SH3 and ITAM domains 2|signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 33 0.004517 9.546 1 1 +10255 HCG9 HLA complex group 9 (non-protein coding) 6 ncRNA HCGIX|HCGIX4 - 5 0.0006844 0.297 1 1 +10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 1 protein-coding CNK|CNK1 connector enhancer of kinase suppressor of ras 1|CNK homolog protein 1|connector enhancer of KSR 1 63 0.008623 7.472 1 1 +10257 ABCC4 ATP binding cassette subfamily C member 4 13 protein-coding MOAT-B|MOATB|MRP4 multidrug resistance-associated protein 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 104 0.01423 8.544 1 1 +10260 DENND4A DENN domain containing 4A 15 protein-coding IRLB|MYCPBP C-myc promoter-binding protein|DENN domain-containing protein 4A|DENN/MADD domain containing 4A|c-myc promoter binding protein 91 0.01246 8.718 1 1 +10261 IGSF6 immunoglobulin superfamily member 6 16 protein-coding DORA immunoglobulin superfamily member 6|down-regulated by activation (immunoglobulin superfamily) 13 0.001779 6.326 1 1 +10262 SF3B4 splicing factor 3b subunit 4 1 protein-coding AFD1|Hsh49|SAP49|SF3b49 splicing factor 3B subunit 4|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, 49kD|splicing factor 3b, subunit 4, 49kDa 30 0.004106 11 1 1 +10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 11 protein-coding DOC-1R|p14 cyclin-dependent kinase 2-associated protein 2|CDK2-associated protein 2|DOC-1-related protein|tumor suppressor deleted in oral cancer related 1 8 0.001095 10.41 1 1 +10265 IRX5 iroquois homeobox 5 16 protein-coding HMMS|IRX-2a|IRXB2 iroquois-class homeodomain protein IRX-5|homeodomain protein IRX-2A|homeodomain protein IRXB2 50 0.006844 5.719 1 1 +10266 RAMP2 receptor activity modifying protein 2 17 protein-coding - receptor activity-modifying protein 2|CRLR activity-modifying protein 2|calcitonin receptor-like receptor activity modifying protein 2|receptor (G protein-coupled) activity modifying protein 2|receptor (calcitonin) activity modifying protein 2 13 0.001779 8.181 1 1 +10267 RAMP1 receptor activity modifying protein 1 2 protein-coding - receptor activity-modifying protein 1|CRLR activity-modifying protein 1|calcitonin receptor-like receptor activity modifying protein 1|receptor (G protein-coupled) activity modifying protein 1|receptor (calcitonin) activity modifying protein 1 8 0.001095 8.043 1 1 +10268 RAMP3 receptor activity modifying protein 3 7 protein-coding - receptor activity-modifying protein 3|CRLR activity-modifying protein 3|calcitonin receptor-like receptor activity modifying protein 3|receptor (G protein-coupled) activity modifying protein 3|receptor (calcitonin) activity modifying protein 3 15 0.002053 7.95 1 1 +10269 ZMPSTE24 zinc metallopeptidase STE24 1 protein-coding FACE-1|FACE1|HGPS|PRO1|STE24|Ste24p CAAX prenyl protease 1 homolog|farnesylated proteins-converting enzyme 1|prenyl protein-specific endoprotease 1|zinc metallopeptidase STE24 homolog|zinc metalloproteinase Ste24 homolog 40 0.005475 10.56 1 1 +10270 AKAP8 A-kinase anchoring protein 8 19 protein-coding AKAP 95|AKAP-8|AKAP-95|AKAP95 A-kinase anchor protein 8|A kinase (PRKA) anchor protein 8|A-kinase anchor protein, 95kDa 49 0.006707 9.419 1 1 +10272 FSTL3 follistatin like 3 19 protein-coding FLRG|FSRP follistatin-related protein 3|follistatin-like 3 (secreted glycoprotein)|follistatin-like protein 3|follistatin-related gene protein 9 0.001232 9.179 1 1 +10273 STUB1 STIP1 homology and U-box containing protein 1 16 protein-coding CHIP|HSPABP2|NY-CO-7|SCAR16|SDCCAG7|UBOX1 E3 ubiquitin-protein ligase CHIP|CLL-associated antigen KW-8|STIP1 homology and U-box containing protein 1, E3 ubiquitin protein ligase|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 28 0.003832 10.82 1 1 +10274 STAG1 stromal antigen 1 3 protein-coding SA1|SCC3A cohesin subunit SA-1|SCC3 homolog 1|nuclear protein stromal antigen 1 119 0.01629 9.311 1 1 +10276 NET1 neuroepithelial cell transforming 1 10 protein-coding ARHGEF8|NET1A neuroepithelial cell-transforming gene 1 protein|Rho guanine nucleotide exchange factor (GEF) 8|guanine nucleotide regulatory protein (oncogene)|neuroepithelioma transforming gene 1|p65 Net1 proto-oncogene protein|small GTP-binding protein regulator 37 0.005064 11.01 1 1 +10277 UBE4B ubiquitination factor E4B 1 protein-coding E4|HDNB1|UBOX3|UFD2|UFD2A ubiquitin conjugation factor E4 B|UFD2A-III/UBE4B-III splice isoform|homologous to yeast UFD2|homozygously deleted in neuroblastoma-1|ubiquitin-fusion degradation protein 2|ubiquitination factor E4B (UFD2 homolog, yeast)|ubiquitination factor E4B (homologous to yeast UFD2) 102 0.01396 10.26 1 1 +10278 EFS embryonal Fyn-associated substrate 14 protein-coding CAS3|CASS3|EFS1|EFS2|HEFS|SIN embryonal Fyn-associated substrate|Cas scaffolding protein family member 3|signal transduction protein (SH3 containing) 42 0.005749 8.289 1 1 +10279 PRSS16 protease, serine 16 6 protein-coding TSSP thymus-specific serine protease|protease, serine, 16 (thymus)|serine protease 16|thymus specific serine peptidase 42 0.005749 6.676 1 1 +10280 SIGMAR1 sigma non-opioid intracellular receptor 1 9 protein-coding ALS16|DSMA2|OPRS1|SIG-1R|SR-BP|SR-BP1|SRBP|hSigmaR1|sigma1R sigma non-opioid intracellular receptor 1|SR31747 binding protein 1|aging-associated gene 8 protein|sigma 1-type opioid receptor 9 0.001232 10.61 1 1 +10281 DSCR4 Down syndrome critical region 4 21 protein-coding DCRB|DSCRB Down syndrome critical region protein 4|Down syndrome critical region gene 4|Down syndrome critical region protein B 15 0.002053 0.4559 1 1 +10282 BET1 Bet1 golgi vesicular membrane trafficking protein 7 protein-coding HBET1 BET1 homolog|Bet1p homolog|Golgi vesicular membrane trafficking protein p18|blocked early in transport 1 homolog|golgi vesicular membrane-trafficking protein p18 7 0.0009581 8.991 1 1 +10283 CWC27 CWC27 spliceosome associated protein homolog 5 protein-coding NY-CO-10|SDCCAG-10|SDCCAG10 peptidyl-prolyl cis-trans isomerase CWC27 homolog|PPIase CWC27|PPIase SDCCAG10|antigen NY-CO-10|peptidyl-prolyl cis-trans isomerase SDCCAG10|serologically defined colon cancer antigen 10 41 0.005612 8.642 1 1 +10284 SAP18 Sin3A associated protein 18 13 protein-coding 2HOR0202|SAP18P histone deacetylase complex subunit SAP18|18 kDa Sin3-associated polypeptide|Sin3A-associated protein, 18kDa|cell growth inhibiting protein 38|cell growth-inhibiting gene 38 protein|histone deacetlyase complex subunit SAP18|sin3-associated polypeptide, 18 kDa|sin3-associated polypeptide, p18 15 0.002053 11.34 1 1 +10285 SMNDC1 survival motor neuron domain containing 1 10 protein-coding SMNR|SPF30|TDRD16C survival of motor neuron-related-splicing factor 30|30 kDa splicing factor SMNrp|SMN-related protein|splicing factor 30, survival of motor neuron-related|survival motor neuron domain-containing protein 1|tudor domain containing 16C 10 0.001369 9.289 1 1 +10286 BCAS2 breast carcinoma amplified sequence 2 1 protein-coding DAM1|SPF27|Snt309 pre-mRNA-splicing factor SPF27|DNA amplified in mammary carcinoma 1 protein|spliceosome associated protein, amplified in breast cancer|spliceosome-associated protein SPF 27 19 0.002601 9.435 1 1 +10287 RGS19 regulator of G-protein signaling 19 20 protein-coding GAIP|RGSGAIP regulator of G-protein signaling 19|G alpha interacting protein|G protein signalling regulator 19|guanine nucleotide binding protein alpha inhibiting activity polypeptide 3 interacting protein|regulator of G-protein signalling 19 16 0.00219 8.285 1 1 +10288 LILRB2 leukocyte immunoglobulin like receptor B2 19 protein-coding CD85D|ILT-4|ILT4|LIR-2|LIR2|MIR-10|MIR10 leukocyte immunoglobulin-like receptor subfamily B member 2|CD85 antigen-like family member D|Ig-like transcript 4|leucocyte Ig-like receptor B2|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 2|monocyte/macrophage immunoglobulin-like receptor 10|myeloid inhibitory receptor 10 75 0.01027 6.489 1 1 +10289 EIF1B eukaryotic translation initiation factor 1B 3 protein-coding GC20 eukaryotic translation initiation factor 1b|protein translation factor SUI1 homolog GC20|translation factor sui1 homolog 7 0.0009581 9.508 1 1 +10290 SPEG SPEG complex locus 2 protein-coding APEG-1|APEG1|BPEG|CNM5|SPEGalpha|SPEGbeta striated muscle preferentially expressed protein kinase|aortic preferentially expressed gene 1|aortic preferentially expressed protein 1|nuclear protein, marker for differentiated aortic smooth muscle and down-regulated with vascular injury 204 0.02792 7.322 1 1 +10291 SF3A1 splicing factor 3a subunit 1 22 protein-coding PRP21|PRPF21|SAP114|SF3A120 splicing factor 3A subunit 1|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, 120kD|splicing factor 3a, subunit 1, 120kDa 41 0.005612 11.47 1 1 +10293 TRAIP TRAF interacting protein 3 protein-coding RNF206|SCKL9|TRIP E3 ubiquitin-protein ligase TRAIP|ring finger protein 206 34 0.004654 6.599 1 1 +10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 16 protein-coding CPR3|DJ3|DJA2|DNAJ|DNJ3|HIRIP4|PRO3015|RDJ2 dnaJ homolog subfamily A member 2|DnaJ (Hsp40) homolog, subfamily A, member 2|HIRA interacting protein 4|cell cycle progression 3 protein|cell cycle progression restoration gene 3 protein|renal carcinoma antigen NY-REN-14 20 0.002737 10.66 1 1 +10295 BCKDK branched chain ketoacid dehydrogenase kinase 16 protein-coding BCKDKD|BDK [3-methyl-2-oxobutanoate dehydrogenase [lipoamide]] kinase, mitochondrial|BCKD-kinase|BCKDHKIN|branched chain alpha-ketoacid dehydrogenase kinase 35 0.004791 10.28 1 1 +10296 MAEA macrophage erythroblast attacher 4 protein-coding EMLP|EMP|GID9|HLC-10|PIG5 macrophage erythroblast attacher|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 35 0.004791 10.36 1 1 +10297 APC2 APC2, WNT signaling pathway regulator 19 protein-coding APCL adenomatous polyposis coli protein 2|adenomatosis polyposis coli 2|adenomatous polyposis coli like 59 0.008076 4.599 1 1 +10298 PAK4 p21 (RAC1) activated kinase 4 19 protein-coding - serine/threonine-protein kinase PAK 4|p21 protein (Cdc42/Rac)-activated kinase 4|p21(CDKN1A)-activated kinase 4|protein kinase related to S. cerevisiae STE20, effector for Cdc42Hs 42 0.005749 10.51 1 1 +10299 MARCH6 membrane associated ring-CH-type finger 6 5 protein-coding DOA10|MARCH-VI|RNF176|TEB4 E3 ubiquitin-protein ligase MARCH6|RING finger protein 176|doa10 homolog|membrane associated ring finger 6|membrane-associated RING finger protein 6|membrane-associated RING-CH finger protein 6|membrane-associated RING-CH protein VI|membrane-associated ring finger (C3HC4) 6, E3 ubiquitin protein ligase 67 0.009171 10.81 1 1 +10300 KATNB1 katanin regulatory subunit B1 16 protein-coding KAT|LIS6 katanin p80 WD40 repeat-containing subunit B1|katanin (80 kDa)|katanin p80 (WD repeat containing) subunit B 1|katanin p80 (WD40-containing) subunit B 1|katanin p80 WD40-containing subunit B1|katanin p80 subunit B1|p80 katanin 34 0.004654 9.03 1 1 +10301 DLEU1 deleted in lymphocytic leukemia 1 13 ncRNA BCMS|BCMS1|DLB1|DLEU2|LEU1|LEU2|LINC00021|NCRNA00021|XTP6 B-cell neoplasia-associated gene with multiple splicing|deleted in lymphocytic leukemia 1 (non-protein coding)|leukemia-associated protein 2|long intergenic non-protein coding RNA 21 1 0.0001369 6.579 1 1 +10302 SNAPC5 small nuclear RNA activating complex polypeptide 5 15 protein-coding SNAP19 snRNA-activating protein complex subunit 5|SNAPc 19 kDa subunit|SNAPc subunit 5|snRNA-activating protein complex 19 kDa subunit 4 0.0005475 6.683 1 1 +10307 APBB3 amyloid beta precursor protein binding family B member 3 5 protein-coding FE65L2|SRA amyloid beta A4 precursor protein-binding family B member 3|FE65-like protein 2|amyloid beta (A4) precursor protein-binding, family B, member 3|amyloid precursor interacting protein|protein Fe65-like 2 35 0.004791 8.078 1 1 +10308 ZNF267 zinc finger protein 267 16 protein-coding HZF2 zinc finger protein 267|zinc finger (C2H2)|zinc finger protein 2|zinc finger protein HZF2 64 0.00876 8.233 1 1 +10309 CCNO cyclin O 5 protein-coding CCNU|CILD29|UDG2 cyclin-O|cyclin U|cyclin domain containing 13 0.001779 5.894 1 1 +10311 DSCR3 DSCR3 arrestin fold containing 21 protein-coding DCRA|DSCRA Down syndrome critical region protein 3|Down syndrome critical region 3|Down syndrome critical region gene 3|Down syndrome critical region protein A 24 0.003285 9.781 1 1 +10312 TCIRG1 T-cell immune regulator 1, ATPase H+ transporting V0 subunit a3 11 protein-coding ATP6N1C|ATP6V0A3|Atp6i|OC-116kDa|OC116|OPTB1|Stv1|TIRC7|Vph1|a3 V-type proton ATPase 116 kDa subunit a isoform 3|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|T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 subunit A3|V-ATPase 116-kDa|V-type proton ATPase 116 kDa subunit a|osteoclastic proton pump 116 kDa subunit|specific 116-kDa vacuolar proton pump subunit|vacuolar proton translocating ATPase 116 kDa subunit A 40 0.005475 10.28 1 1 +10313 RTN3 reticulon 3 11 protein-coding ASYIP|HAP|NSPL2|NSPLII|RTN3-A1 reticulon-3|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 71 0.009718 12.04 1 1 +10314 LANCL1 LanC like 1 2 protein-coding GPR69A|p40 lanC-like protein 1|40 kDa erythrocyte membrane protein|G protein-coupled receptor 69A|LanC (bacterial lantibiotic synthetase component C)-like 1|LanC (bacterial lantibiotic synthetase component)|LanC lantibiotic synthetase component C-like 1 21 0.002874 10.35 1 1 +10316 NMUR1 neuromedin U receptor 1 2 protein-coding (FM-3)|FM-3|FM3|GPC-R|GPR66|NMU1R neuromedin-U receptor 1|G-protein coupled receptor 66|G-protein coupled receptor FM-3|NMU-R1 31 0.004243 3.481 1 1 +10317 B3GALT5 beta-1,3-galactosyltransferase 5 21 protein-coding B3GalT-V|B3GalTx|B3T5|GLCT5|beta-1,3-GalTase 5|beta-3-Gx-T5|beta3Gal-T5 beta-1,3-galactosyltransferase 5|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase 5|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5|UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase 5|beta-3-galactosyltransferase 5|homolog of C. elegans Bt toxin resistance gene bre-5 20 0.002737 3.1 1 1 +10318 TNIP1 TNFAIP3 interacting protein 1 5 protein-coding ABIN-1|NAF1|VAN|nip40-1 TNFAIP3-interacting protein 1|A20-binding inhibitor of NF-kappa-B activation 1|HIV-1 Nef-interacting protein|Nef-associated factor 1 SNP|virion-associated nuclear shuttling protein 39 0.005338 11.5 1 1 +10319 LAMC3 laminin subunit gamma 3 9 protein-coding OCCM laminin subunit gamma-3|laminin, gamma 3|laminin-12 subunit gamma|laminin-14 subunit gamma|laminin-15 subunit gamma 118 0.01615 6.754 1 1 +10320 IKZF1 IKAROS family zinc finger 1 7 protein-coding CVID13|Hs.54452|IK1|IKAROS|LYF1|LyF-1|PPP1R92|PRO0758|ZNFN1A1 DNA-binding protein Ikaros|CLL-associated antigen KW-6|IKAROS family zinc finger 1 (Ikaros)|ikaros family zinc finger protein 1|lymphoid transcription factor LyF-1|protein phosphatase 1, regulatory subunit 92|zinc finger protein, subfamily 1A, 1 (Ikaros) 71 0.009718 7.592 1 1 +10321 CRISP3 cysteine rich secretory protein 3 6 protein-coding Aeg2|CRISP-3|CRS3|SGP28|dJ442L6.3 cysteine-rich secretory protein 3|specific granule protein (28 kDa)|specific granule protein of 28 kDa 43 0.005886 2.334 1 1 +10322 SMYD5 SMYD family member 5 2 protein-coding NN8-4AG|RAI15|RRG1|ZMYND23 SET and MYND domain-containing protein 5|retinoic acid induced 15|retinoic acid responsive|retinoic acid-induced protein 15 31 0.004243 9.556 1 1 +10324 KLHL41 kelch like family member 41 2 protein-coding KBTBD10|Krp1|SARCOSIN kelch-like protein 41|kel-like protein 23|kelch repeat and BTB (POZ) domain containing 10|kelch-related protein 1|sarcomeric muscle protein 43 0.005886 4.062 1 1 +10325 RRAGB Ras related GTP binding B X protein-coding RAGB|bA465E19.1 ras-related GTP-binding protein B|GTP-binding protein ragB|rag B 29 0.003969 8.112 1 1 +10326 SIRPB1 signal regulatory protein beta 1 20 protein-coding CD172b|SIRP-BETA-1 signal-regulatory protein beta-1|CD172 antigen-like family member B 111 0.01519 6.258 1 1 +10327 AKR1A1 aldo-keto reductase family 1 member A1 1 protein-coding ALDR1|ALR|ARM|DD3|HEL-S-6 alcohol dehydrogenase [NADP(+)]|HEL-S-165mP|alcohol dehydrogenase|aldehyde reductase|aldo-keto reductase family 1, member A1 (aldehyde reductase)|dihydrodiol dehydrogenase 3|epididymis secretory protein Li 6|epididymis secretory sperm binding protein Li 165mP 14 0.001916 11.22 1 1 +10328 EMC8 ER membrane protein complex subunit 8 16 protein-coding C16orf2|C16orf4|COX4NB|FAM158B|NOC4 ER membrane protein complex subunit 8|COX4 neighbor|family with sequence similarity 158, member B|neighbor of COX4 10 0.001369 9.036 1 1 +10329 TMEM5 transmembrane protein 5 12 protein-coding HP10481|MDDGA10 transmembrane protein 5|type II membrane protein 29 0.003969 8.309 1 1 +10330 CNPY2 canopy FGF signaling regulator 2 12 protein-coding HP10390|MSAP|TMEM4|ZSIG9 protein canopy homolog 2|MIR-interacting saposin-like protein|canopy 2 homolog|putative secreted protein Zsig9|transmembrane protein 4 18 0.002464 10.6 1 1 +10331 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 19 protein-coding B3GAL-T8|B3GN-T3|B3GNT-3|HP10328|TMEM3|beta3Gn-T3 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase 3|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-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase|beta-3-Gx-T8|beta3GalT8|core 1 extending beta-1,3-N-acetylglucosaminyltransferase|core1-beta3GlcNAcT|putative type II membrane protein|transmembrane protein 3 30 0.004106 6.357 1 1 +10332 CLEC4M C-type lectin domain family 4 member M 19 protein-coding CD209L|CD299|DC-SIGN2|DC-SIGNR|DCSIGNR|HP10347|L-SIGN|LSIGN 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|mannose binding C-type lectin DC-SIGNR 43 0.005886 0.7117 1 1 +10333 TLR6 toll like receptor 6 4 protein-coding CD286 toll-like receptor 6 46 0.006296 4.431 1 1 +10335 MRVI1 murine retrovirus integration site 1 homolog 11 protein-coding IRAG|JAW1L protein MRVI1|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 66 0.009034 8.281 1 1 +10336 PCGF3 polycomb group ring finger 3 4 protein-coding DONG1|RNF3|RNF3A polycomb group RING finger protein 3|RING finger protein 3A|ring finger protein 3 22 0.003011 10.18 1 1 +10342 TFG TRK-fused gene 3 protein-coding HMSNP|SPG57|TF6|TRKT3 protein TFG|TRK-fused gene protein|TRKT3 oncogene 28 0.003832 11.27 1 1 +10343 PKDREJ polycystin (PKD) family receptor for egg jelly 22 protein-coding - polycystic kidney disease and receptor for egg jelly-related protein|PKD and REJ homolog|polycystic kidney disease (polycystin) and REJ homolog (sperm receptor for egg jelly homolog, sea urchin) 123 0.01684 3.176 1 1 +10344 CCL26 C-C motif chemokine ligand 26 7 protein-coding IMAC|MIP-4a|MIP-4alpha|SCYA26|TSC-1 C-C motif chemokine 26|CC chemokine IMAC|MIP-4-alpha|chemokine (C-C motif) ligand 26|chemokine N1|eotaxin-3|macrophage inflammatory protein 4-alpha|small inducible cytokine A26|small inducible cytokine subfamily A (Cys-Cys), member 26|thymic stroma chemokine-1 7 0.0009581 2.456 1 1 +10345 TRDN triadin 6 protein-coding CPVT5|TDN|TRISK triadin 82 0.01122 1.482 1 1 +10346 TRIM22 tripartite motif containing 22 11 protein-coding GPSTAF50|RNF94|STAF50 E3 ubiquitin-protein ligase TRIM22|50 kDa-stimulated trans-acting factor|RING finger protein 94|staf-50|stimulated trans-acting factor (50 kDa)|tripartite binding motif 22|tripartite motif protein TRIM22|tripartite motif-containing protein 22 40 0.005475 9.706 1 1 +10347 ABCA7 ATP binding cassette subfamily A member 7 19 protein-coding ABCA-SSN|ABCX|AD9 ATP-binding cassette sub-family A member 7|ATP-binding cassette, sub-family A (ABC1), member 7|autoantigen SS-N|macrophage ABC transporter 144 0.01971 8.419 1 1 +10349 ABCA10 ATP binding cassette subfamily A member 10 17 protein-coding EST698739 ATP-binding cassette sub-family A member 10|ATP-binding cassette A10|ATP-binding cassette, sub-family A (ABC1), member 10 130 0.01779 3.694 1 1 +10350 ABCA9 ATP binding cassette subfamily A member 9 17 protein-coding EST640918 ATP-binding cassette sub-family A member 9|ATP-binding cassette A9|ATP-binding cassette, sub-family A (ABC1), member 9 138 0.01889 4.807 1 1 +10351 ABCA8 ATP binding cassette subfamily A member 8 17 protein-coding - ATP-binding cassette sub-family A member 8|ATP-binding cassette, sub-family A (ABC1), member 8 121 0.01656 5.948 1 1 +10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial 1 protein-coding TrpRS tryptophan--tRNA ligase, mitochondrial|(Mt)TrpRS|tryptophan tRNA ligase 2, mitochondrial 38 0.005201 8.287 1 1 +10354 HMGB1P5 high mobility group box 1 pseudogene 5 3 pseudo HMG-1|HMG1L5|HMGB1L15|HMGB1L5|HMGB1P2 high-mobility group (nonhistone chromosomal) protein 1-like 5 pseudogene|high-mobility group box 1 pseudogene 2|high-mobility group box 1-like 15|high-mobility group box 1-like 5 pseudogene 58 0.007939 1 0 +10357 HMGB1P1 high mobility group box 1 pseudogene 1 20 pseudo HMG1L1|HMG1L7|HMGB1L1|dJ579F20.1 high-mobility group (nonhistone chromosomal) protein 1-like 1|high-mobility group box 1-like 1 0 0 6.642 1 1 +10360 NPM3 nucleophosmin/nucleoplasmin 3 10 protein-coding PORMIN|TMEM123 nucleoplasmin-3|nucleophosmin/nucleoplasmin family, member 3 16 0.00219 8.598 1 1 +10361 NPM2 nucleophosmin/nucleoplasmin 2 8 protein-coding - nucleoplasmin-2 13 0.001779 4.806 1 1 +10362 HMG20B high mobility group 20B 19 protein-coding BRAF25|BRAF35|HMGX2|HMGXB2|PP7706|SMARCE1r|SOXL|pp8857 SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1-related|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|Sox-like transcriptional factor|structural DNA-binding protein BRAF35 13 0.001779 10.58 1 1 +10363 HMG20A high mobility group 20A 15 protein-coding HMGX1|HMGXB1 high mobility group protein 20A|HMG box domain containing 1|HMG box-containing protein 20A|HMG domain-containing protein 1|HMG domain-containing protein HMGX1 32 0.00438 9.667 1 1 +10365 KLF2 Kruppel like factor 2 19 protein-coding LKLF Krueppel-like factor 2|Kruppel-like factor 2 (lung)|Kruppel-like factor LKLF|lung Kruppel-like factor|lung Kruppel-like zinc finger transcription factor|lung krueppel-like factor 10 0.001369 8.359 1 1 +10367 MICU1 mitochondrial calcium uptake 1 10 protein-coding CALC|CBARA1|EFHA3|MPXPS calcium uptake protein 1, mitochondrial|ara CALC|atopy-related autoantigen CALC|calcium-binding atopy-related autoantigen 1 28 0.003832 10.23 1 1 +10368 CACNG3 calcium voltage-gated channel auxiliary subunit gamma 3 16 protein-coding - voltage-dependent calcium channel gamma-3 subunit|TARP gamma-3|calcium channel, voltage-dependent, gamma subunit 3|neuronal voltage-gated calcium channel gamma-3 subunit|transmembrane AMPAR regulatory protein gamma-3|voltage-gated calcium channel gamma subunit 56 0.007665 0.8104 1 1 +10369 CACNG2 calcium voltage-gated channel auxiliary subunit gamma 2 22 protein-coding MRD10 voltage-dependent calcium channel gamma-2 subunit|TARP gamma-2|calcium channel, voltage-dependent, gamma subunit 2|neuronal voltage-gated calcium channel gamma-2 subunit|stargazin|transmembrane AMPAR regulatory protein gamma-2 29 0.003969 0.7594 1 1 +10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 6 protein-coding ASD8|MRG-1|MRG1|P35SRJ|VSD2 cbp/p300-interacting transactivator 2|MSG-related protein 1|MSG1-related gene 1|melanocyte-specific gene 1-related gene 1 19 0.002601 10.03 1 1 +10371 SEMA3A semaphorin 3A 7 protein-coding COLL1|HH16|Hsema-I|Hsema-III|SEMA1|SEMAD|SEMAIII|SEMAL|SemD|coll-1 semaphorin-3A|collapsin 1|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A|semaphorin D|semaphorin III|semaphorin L 107 0.01465 5.749 1 1 +10376 TUBA1B tubulin alpha 1b 12 protein-coding K-ALPHA-1 tubulin alpha-1B chain|alpha tubulin|alpha-tubulin ubiquitous|tubulin K-alpha-1|tubulin alpha-ubiquitous chain|tubulin, alpha, ubiquitous 22 0.003011 14.17 1 1 +10379 IRF9 interferon regulatory factor 9 14 protein-coding IRF-9|ISGF3|ISGF3G|p48 interferon regulatory factor 9|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 36 0.004927 10.4 1 1 +10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 1 protein-coding HEL20|PIP 3'(2'),5'-bisphosphate nucleotidase 1|BPntase|PAP-inositol-1,4-phosphatase|bisphosphate 3'-nucleotidase 1|epididymis luminal protein 20|testicular tissue protein Li 29 29 0.003969 9.442 1 1 +10381 TUBB3 tubulin beta 3 class III 16 protein-coding CDCBM|CDCBM1|CFEOM3|CFEOM3A|FEOM3|TUBB4|beta-4 tubulin beta-3 chain|class III beta-tubulin|tubulin beta-4 chain|tubulin beta-III|tubulin, beta 3 35 0.004791 9.753 1 1 +10382 TUBB4A tubulin beta 4A class IVa 19 protein-coding DYT4|TUBB4|beta-5 tubulin beta-4A chain|dystonia 4, torsion (autosomal dominant)|tubulin beta-4 chain|tubulin, beta 4|tubulin, beta, 5 56 0.007665 7.263 1 1 +10383 TUBB4B tubulin beta 4B class IVb 9 protein-coding Beta2|TUBB2|TUBB2C tubulin beta-4B chain|class IVb beta tubulin|tubulin beta-2 chain|tubulin beta-2C chain|tubulin, beta 2C|tubulin, beta, 2 22 0.003011 12.69 1 1 +10384 BTN3A3 butyrophilin subfamily 3 member A3 6 protein-coding BTF3|BTN3.3 butyrophilin subfamily 3 member A3|butyrophilin 3|butyrophilin subfamily 3 member A3 secreted isoform 45 0.006159 8.912 1 1 +10385 BTN2A2 butyrophilin subfamily 2 member A2 6 protein-coding BT2.2|BTF2|BTN2.2 butyrophilin subfamily 2 member A2|butyrophilin 2 62 0.008486 8.098 1 1 +10388 SYCP2 synaptonemal complex protein 2 20 protein-coding SCP-2|SCP2 synaptonemal complex protein 2|synaptonemal complex lateral element protein 133 0.0182 5.507 1 1 +10389 SCML2 sex comb on midleg-like 2 (Drosophila) X protein-coding - sex comb on midleg-like protein 2 59 0.008076 5.377 1 1 +10390 CEPT1 choline/ethanolamine phosphotransferase 1 1 protein-coding - choline/ethanolaminephosphotransferase 1 27 0.003696 9.181 1 1 +10391 CORO2B coronin 2B 15 protein-coding CLIPINC coronin-2B|clipin C|coronin, actin binding protein, 2B|coronin-like protein C 46 0.006296 6.199 1 1 +10392 NOD1 nucleotide binding oligomerization domain containing 1 7 protein-coding CARD4|CLR7.1|NLRC1 nucleotide-binding oligomerization domain-containing protein 1|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 64 0.00876 8.324 1 1 +10393 ANAPC10 anaphase promoting complex subunit 10 4 protein-coding APC10|DOC1 anaphase-promoting complex subunit 10|cyclosome subunit 10 7 0.0009581 6.894 1 1 +10394 PRG3 proteoglycan 3, pro eosinophil major basic protein 2 11 protein-coding MBP2|MBPH proteoglycan 3|eosinophil major basic protein homolog|prepro-MBPH|prepro-major basic protein homolog 18 0.002464 0.01791 1 1 +10395 DLC1 DLC1 Rho GTPase activating protein 8 protein-coding ARHGAP7|HP|STARD12|p122-RhoGAP rho GTPase-activating protein 7|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|deleted in liver cancer variant 4|rho-type GTPase-activating protein 7 175 0.02395 9.224 1 1 +10396 ATP8A1 ATPase phospholipid transporting 8A1 4 protein-coding ATPASEII|ATPIA|ATPP2 phospholipid-transporting ATPase IA|ATPase II|ATPase class I type 8A member 1|ATPase, aminophospholipid transporter (APLT), class I, type 8A, member 1|P4-ATPase flippase complex alpha subunit ATP8A1|aminophospholipid translocase|chromaffin granule ATPase II|probable phospholipid-transporting ATPase IA 99 0.01355 8.581 1 1 +10397 NDRG1 N-myc downstream regulated 1 8 protein-coding CAP43|CMT4D|DRG-1|DRG1|GC4|HMSNL|NDR1|NMSL|PROXY1|RIT42|RTP|TARG1|TDD5 protein NDRG1|N-myc downstream-regulated gene 1 protein|differentiation-related gene 1 protein|nickel-specific induction protein Cap43|protein regulated by oxygen-1|reducing agents and tunicamycin-responsive protein 24 0.003285 12.8 1 1 +10398 MYL9 myosin light chain 9 20 protein-coding LC20|MLC-2C|MLC2|MRLC1|MYRL2 myosin regulatory light polypeptide 9|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, light chain 9, regulatory|myosin, light polypeptide 9, regulatory 16 0.00219 11.53 1 1 +10399 RACK1 receptor for activated C kinase 1 5 protein-coding GNB2L1|Gnb2-rs1|H12.3|HLC-7|PIG21 receptor of activated protein C kinase 1|cell proliferation-inducing gene 21 protein|guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1|guanine nucleotide binding protein beta polypeptide 2-like 1|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 of activated protein kinase C 1 18 0.002464 14.45 1 1 +10400 PEMT phosphatidylethanolamine N-methyltransferase 17 protein-coding PEAMT|PEMPT|PEMT2|PNMT phosphatidylethanolamine N-methyltransferase 11 0.001506 8.614 1 1 +10401 PIAS3 protein inhibitor of activated STAT 3 1 protein-coding ZMIZ5 E3 SUMO-protein ligase PIAS3|protein inhibitor of activated STAT protein 3|zinc finger, MIZ-type containing 5 59 0.008076 9.83 1 1 +10402 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 3 protein-coding SIAT10|ST3GALVI type 2 lactosamine alpha-2,3-sialyltransferase|CMP-NeuAc:beta-galactoside alpha-2,3-sialyltransferase VI|alpha2,3-sialyltransferase ST3Gal VI|sialyltransferase 10 (alpha-2,3-sialyltransferase VI) 32 0.00438 6.769 1 1 +10403 NDC80 NDC80, kinetochore complex component 18 protein-coding HEC|HEC1|HsHec1|KNTC2|TID3|hsNDC80 kinetochore protein NDC80 homolog|NDC80 homolog, kinetochore complex component|NDC80 kinetochore complex component homolog|highly expressed in cancer protein|highly expressed in cancer, rich in leucine heptad repeats|kinetochore associated 2|kinetochore protein Hec1|kinetochore-associated protein 2|retinoblastoma-associated protein HEC 54 0.007391 7.382 1 1 +10404 CPQ carboxypeptidase Q 8 protein-coding LDP|PGCP carboxypeptidase Q|Ser-Met dipeptidase|aminopeptidase|blood plasma glutamate carboxypeptidase|lysosomal dipeptidase 53 0.007254 9.159 1 1 +10406 WFDC2 WAP four-disulfide core domain 2 20 protein-coding EDDM4|HE4|WAP5|dJ461P17.6 WAP four-disulfide core domain protein 2|WAP domain containing protein HE4-V4|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 9 0.001232 8.143 1 1 +10407 SPAG11B sperm associated antigen 11B 8 protein-coding EDDM2B|EP2|EP2C|EP2D|HE2|HE2C|SPAG11 sperm-associated antigen 11B|epididymal protein 2B|human epididymis-specific protein 2|sperm antigen HE2 22 0.003011 0.1711 1 1 +10408 MYCNOS MYCN opposite strand 2 protein-coding MYCN-AS1|N-CYM|NCYM|NYCM N-cym protein|DNA-binding transcriptional activator NCYM|MYCN antisense RNA 1|MYCN opposite strand/antisense RNA (non-protein coding)|N-myc opposite strand|v-myc myelocytomatosis viral related oncogene, neuroblastoma derived opposite strand 1 0.0001369 1.067 1 1 +10409 BASP1 brain abundant membrane attached signal protein 1 5 protein-coding CAP-23|CAP23|NAP-22|NAP22 brain acid soluble protein 1|22 kDa neuronal tissue-enriched acidic protein|brain acid-soluble protein 1|neuronal axonal membrane protein NAP-22|neuronal tissue-enriched acidic protein 19 0.002601 9.481 1 1 +10410 IFITM3 interferon induced transmembrane protein 3 11 protein-coding 1-8U|DSPA2b|IP15 interferon-induced transmembrane protein 3|dispanin subfamily A member 2b|interferon-inducible protein 1-8U 22 0.003011 12.87 1 1 +10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 12 protein-coding CAMP-GEFI|EPAC|EPAC1|HSU79275|bcm910 rap guanine nucleotide exchange factor 3|9330170P05Rik|EPAC 1|Rap guanine nucleotide exchange factor (GEF) 3|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 45 0.006159 8.305 1 1 +10412 NSA2 NSA2, ribosome biogenesis homolog 5 protein-coding CDK105|HCL-G1|HCLG1|HUSSY-29|HUSSY29|TINP1 ribosome biogenesis protein NSA2 homolog|TGF beta-inducible nuclear protein 1|TGF-beta inducible nuclear protein|hairy cell leukemia protein 1 13 0.001779 10.49 1 1 +10413 YAP1 Yes associated protein 1 11 protein-coding COB1|YAP|YAP2|YAP65|YKI transcriptional coactivator YAP1|65 kDa Yes-associated protein|protein yorkie homolog|yes-associated protein 1|yes-associated protein 2|yes-associated protein YAP65 homolog|yorkie homolog 29 0.003969 11.01 1 1 +10417 SPON2 spondin 2 4 protein-coding DIL-1|DIL1|M-SPONDIN|MINDIN spondin-2|differentially expressed in cancerous and non-cancerous lung cells 1|spondin 2, extracellular matrix protein 23 0.003148 9.455 1 1 +10418 SPON1 spondin 1 11 protein-coding VSGP/F-spondin|f-spondin spondin-1|spondin 1, (f-spondin) extracellular matrix protein|spondin 1, extracellular matrix protein|vascular smooth muscle cell growth-promoting factor 111 0.01519 8.512 1 1 +10419 PRMT5 protein arginine methyltransferase 5 14 protein-coding HRMT1L5|IBP72|JBP1|SKB1|SKB1Hs protein arginine N-methyltransferase 5|72 kDa ICln-binding protein|HMT1 hnRNP methyltransferase-like 5|SKB1 homolog|histone-arginine N-methyltransferase PRMT5|jak-binding protein 1|shk1 kinase-binding protein 1 homolog 44 0.006022 10.42 1 1 +10420 TESK2 testis-specific kinase 2 1 protein-coding - dual specificity testis-specific protein kinase 2|testicular protein kinase 2 47 0.006433 7.298 1 1 +10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 16 protein-coding FWP010|LIN1|PPP1R59|Snu40|U5-52K CD2 antigen cytoplasmic tail-binding protein 2|CD2 cytoplasmic domain-binding protein 2|U5 snRNP 52K protein|protein phosphatase 1, regulatory subunit 59 30 0.004106 10.78 1 1 +10422 UBAC1 UBA domain containing 1 9 protein-coding GBDR1|KPC2|UBADC1 ubiquitin-associated domain-containing protein 1|E3 ubiquitin-protein ligase subunit KPC2|Kip1 ubiquitination-promoting complex subunit 2|UBA domain-containing protein 1|glialblastoma cell differentiation-related protein 1|kip1 ubiquitination-promoting complex protein 2|putative glialblastoma cell differentiation-related protein|testicular secretory protein Li 64|ubiquitin associated domain containing 1 24 0.003285 9.769 1 1 +10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase 16 protein-coding PIS|PIS1 CDP-diacylglycerol--inositol 3-phosphatidyltransferase|PI synthase|PtdIns synthase|phosphatidylinositol synthase 14 0.001916 11.08 1 1 +10424 PGRMC2 progesterone receptor membrane component 2 4 protein-coding DG6|PMBP membrane-associated progesterone receptor component 2|progesterone membrane binding protein|steroid receptor protein DG6 9 0.001232 10.57 1 1 +10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 3 protein-coding ARI2|TRIAD1 E3 ubiquitin-protein ligase ARIH2|all-trans retinoic acid inducible RING finger|ariadne homolog 2|protein ariadne-2 homolog 40 0.005475 10.39 1 1 +10426 TUBGCP3 tubulin gamma complex associated protein 3 13 protein-coding 104p|GCP3|Grip104|SPBC98|Spc98|Spc98p gamma-tubulin complex component 3|gamma-ring complex protein 104 kDa|spindle pole body protein Spc98 homolog 63 0.008623 8.995 1 1 +10427 SEC24B SEC24 homolog B, COPII coat complex component 4 protein-coding SEC24 protein transport protein Sec24B|SEC24 related gene family, member B|secretory protein 24 82 0.01122 9.881 1 1 +10428 CFDP1 craniofacial development protein 1 16 protein-coding BCNT|BUCENTAUR|CENP-29|CP27|SWC5|Yeti|p97 craniofacial development protein 1|centromere protein 29|phosphoprotein (Bucentaur) 11 0.001506 9.831 1 1 +10430 TMEM147 transmembrane protein 147 19 protein-coding NIFIE14 transmembrane protein 147|protein NIFIE 14|seven transmembrane domain protein 10 0.001369 10.58 1 1 +10431 9.835 0 1 +10432 RBM14 RNA binding motif protein 14 11 protein-coding COAA|PSP2|SIP|SYTIP1|TMEM137 RNA-binding protein 14|RRM-containing coactivator activator/modulator|SYT-interacting protein|paraspeckle protein 2|synaptotagmin-interacting protein|transmembrane protein 137 52 0.007117 10.23 1 1 +10434 LYPLA1 lysophospholipase I 8 protein-coding APT-1|APT1|LPL-I|LPL1|hAPT1 acyl-protein thioesterase 1|lysoPLA I|lysophospholipid-specific lysophospholipase 14 0.001916 10.4 1 1 +10435 CDC42EP2 CDC42 effector protein 2 11 protein-coding BORG1|CEP2 cdc42 effector protein 2|CDC42 effector protein (Rho GTPase binding) 2|CRIB-containing BOGR1 protein|binder of Rho GTPases 1 14 0.001916 7.995 1 1 +10436 EMG1 EMG1, N1-specific pseudouridine methyltransferase 12 protein-coding C2F|Grcc2f|NEP1 ribosomal RNA small subunit methyltransferase NEP1|18S rRNA (pseudouridine(1248)-N1)-methyltransferase|18S rRNA (pseudouridine-N1-)-methyltransferase NEP1|18S rRNA Psi1248 methyltransferase|EMG1 nucleolar protein homolog|essential for mitotic growth 1|nucleolar essential protein 1|ribosome biogenesis protein NEP1 54 0.007391 9.267 1 1 +10437 IFI30 IFI30, lysosomal thiol reductase 19 protein-coding GILT|IFI-30|IP-30|IP30 gamma-interferon-inducible lysosomal thiol reductase|gamma-interferon-inducible protein IP-30|interferon gamma-inducible protein 30 preproprotein|interferon, gamma-inducible protein 30|legumaturain 16 0.00219 11.3 1 1 +10438 C1D C1D nuclear receptor corepressor 2 protein-coding LRP1|Rrp47|SUN-CoR|SUNCOR|hC1D nuclear nucleic acid-binding protein C1D|C1D DNA-binding protein|C1D nuclear receptor co-repressor|nuclear DNA-binding protein|small unique nuclear receptor co-repressor|small unique nuclear receptor corepressor 11 0.001506 7.891 1 1 +10439 OLFM1 olfactomedin 1 9 protein-coding AMY|NOE1|NOELIN1|OlfA noelin|neuroblastoma protein|neuronal olfactomedin-related ER localized protein|olfactomedin related ER localized protein|pancortin 1 50 0.006844 7.637 1 1 +10440 TIMM17A translocase of inner mitochondrial membrane 17 homolog A (yeast) 1 protein-coding TIM17|TIM17A mitochondrial import inner membrane translocase subunit Tim17-A|inner membrane preprotein translocase Tim17a|mitochondrial inner membrane translocase|preprotein translocase 18 0.002464 10.14 1 1 +10443 N4BP2L2 NEDD4 binding protein 2 like 2 13 protein-coding 92M18.3|CG005|CG016|PFAAP5 NEDD4-binding protein 2-like 2|phosphonoformate immuno-associated protein 5|protein from BRCA2 region 74 0.01013 9.943 1 1 +10444 ZER1 zyg-11 related cell cycle regulator 9 protein-coding C9orf60|ZYG|ZYG11BL protein zer-1 homolog|ZYG homolog|zer-1 homolog|zyg-11 homolog B-like protein 41 0.005612 10.6 1 1 +10445 MCRS1 microspherule protein 1 12 protein-coding ICP22BP|INO80Q|MCRS2|MSP58|P78 microspherule protein 1|58 kDa microspherule protein|INO80 complex subunit J|INO80 complex subunit Q|cell cycle-regulated factor (78 kDa)|cell cycle-regulated factor p78 36 0.004927 10.18 1 1 +10446 LRRN2 leucine rich repeat neuronal 2 1 protein-coding FIGLER7|GAC1|LRANK1|LRRN5 leucine-rich repeat neuronal protein 2|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 5 65 0.008897 6.852 1 1 +10447 FAM3C family with sequence similarity 3 member C 7 protein-coding GS3786|ILEI protein FAM3C|interleukin-like EMT inducer|interleukin-like epithelial-mesenchymal transition inducer|predicted osteoblast protein 25 0.003422 10.38 1 1 +10449 ACAA2 acetyl-CoA acyltransferase 2 18 protein-coding DSAEC 3-ketoacyl-CoA thiolase, mitochondrial|T1|acetyl-Coenzyme A acyltransferase 2|beta ketothiolase|mitochondrial 3-oxoacyl-CoA thiolase|mitochondrial 3-oxoacyl-Coenzyme A thiolase 25 0.003422 10.03 1 1 +10450 PPIE peptidylprolyl isomerase E 1 protein-coding CYP-33|CYP33 peptidyl-prolyl cis-trans isomerase E|PPIase E|cyclophilin-33|peptidylprolyl isomerase E (cyclophilin E)|rotamase E 25 0.003422 9.685 1 1 +10451 VAV3 vav guanine nucleotide exchange factor 3 1 protein-coding - guanine nucleotide exchange factor VAV3|VAV-3|vav 3 guanine nucleotide exchange factor|vav 3 oncogene 99 0.01355 8.445 1 1 +10452 TOMM40 translocase of outer mitochondrial membrane 40 19 protein-coding C19orf1|D19S1177E|PER-EC1|PEREC1|TOM40 mitochondrial import receptor subunit TOM40 homolog|mitochondrial outer membrane protein|p38.5|protein Haymaker|translocase of outer membrane 40 kDa subunit homolog|translocase of outer mitochondrial membrane 40 homolog 12 0.001642 10.3 1 1 +10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 22 protein-coding 3'-Tab1|MAP3K7IP1 TGF-beta-activated kinase 1 and MAP3K7-binding protein 1|TAK1-binding protein 1|mitogen-activated protein kinase kinase kinase 7-interacting protein 1|transforming growth factor beta-activated kinase-binding protein 1 44 0.006022 9.55 1 1 +10455 ECI2 enoyl-CoA delta isomerase 2 6 protein-coding ACBD2|DRS-1|DRS1|HCA88|PECI|dJ1013A10.3 enoyl-CoA delta isomerase 2, mitochondrial|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|hepatocellular carcinoma-associated antigen 88|peroxisomal 3,2-trans-enoyl-CoA isomerase|peroxisomal D3,D2-enoyl-CoA isomerase|renal carcinoma antigen NY-REN-1|testicular secretory protein Li 33 37 0.005064 9.798 1 1 +10456 HAX1 HCLS1 associated protein X-1 1 protein-coding HCLSBP1|HS1BP1|SCN3 HCLS1-associated protein X-1|HAX-1|HCLS1 (and PKD2) associated protein|HS1 binding protein|HS1-associating protein X-1|HS1-binding protein 1|HSP1BP-1 45 0.006159 10.74 1 1 +10457 GPNMB glycoprotein nmb 7 protein-coding HGFIN|NMB transmembrane glycoprotein NMB|glycoprotein (transmembrane) nmb|glycoprotein nmb-like protein|glycoprotein nonmetastatic melanoma protein B|hematopoietic growth factor inducible neurokinin-1|osteoactivin|transmembrane glycoprotein HGFIN 54 0.007391 11.45 1 1 +10458 BAIAP2 BAI1 associated protein 2 17 protein-coding BAP2|FLAF3|IRSP53 brain-specific angiogenesis inhibitor 1-associated protein 2|IRS-58|IRSp53/58|fas ligand-associated factor 3|insulin receptor substrate of 53 kDa|insulin receptor substrate p53/p58|insulin receptor substrate protein of 53 kDa 37 0.005064 10.4 1 1 +10459 MAD2L2 MAD2 mitotic arrest deficient-like 2 (yeast) 1 protein-coding MAD2B|POLZ2|REV7 mitotic spindle assembly checkpoint protein MAD2B|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|polymerase (DNA-directed), zeta 2, accessory subunit 10 0.001369 9.285 1 1 +10460 TACC3 transforming acidic coiled-coil containing protein 3 4 protein-coding ERIC-1|ERIC1 transforming acidic coiled-coil-containing protein 3 54 0.007391 9.471 1 1 +10461 MERTK MER proto-oncogene, tyrosine kinase 2 protein-coding MER|RP38|Tyro12|c-Eyk|c-mer tyrosine-protein kinase Mer|MER receptor tyrosine kinase|STK kinase|c-mer proto-oncogene tyrosine kinase|proto-oncogene c-Mer|receptor tyrosine kinase MerTK 82 0.01122 8.219 1 1 +10462 CLEC10A C-type lectin domain family 10 member A 17 protein-coding CD301|CLECSF13|CLECSF14|HML|HML2|MGL C-type lectin domain family 10 member A|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)|macrophage lectin 2 (calcium dependent) 16 0.00219 5.228 1 1 +10463 SLC30A9 solute carrier family 30 member 9 4 protein-coding C4orf1|GAC63|HUEL|ZNT9 zinc transporter 9|GRIP1-dependent nuclear receptor coactivator|expressed in human embryonic lung|human embryonic lung protein|solute carrier family 30 (zinc transporter), member 9|znT-9 48 0.00657 10.39 1 1 +10464 PIBF1 progesterone immunomodulatory binding factor 1 13 protein-coding C13orf24|CEP90|PIBF progesterone-induced-blocking factor 1|centrosomal protein of 90 kDa 56 0.007665 8.298 1 1 +10465 PPIH peptidylprolyl isomerase H 1 protein-coding CYP-20|CYPH|SnuCyp-20|USA-CYP peptidyl-prolyl cis-trans isomerase H|PPIase h|U-snRNP-associated cyclophilin SnuCyp-20|U-snRNP-associated cyclophilin SunCyp-20|USA-CyP SnuCyp-20|cyclophilin H|peptidylprolyl isomerase H (cyclophilin H)|rotamase H|small nuclear ribonucleoprotein particle-specific cyclophilin H 9 0.001232 8.6 1 1 +10466 COG5 component of oligomeric golgi complex 5 7 protein-coding CDG2I|GOLTC1|GTC90 conserved oligomeric Golgi complex subunit 5|13S golgi transport complex 1 90 kDa subunit|COG complex subunit 5|conserved oligomeric Golgi complex protein 5 81 0.01109 9.774 1 1 +10467 ZNHIT1 zinc finger HIT-type containing 1 7 protein-coding CG1I|ZNFN4A1 zinc finger HIT domain-containing protein 1|H_DJ0747G18.14|cyclin-G1-binding protein 1|p18 Hamlet|p18Hamlet|putative cyclin G1 interacting protein|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 17 0.002327 10.54 1 1 +10468 FST follistatin 5 protein-coding FS follistatin|activin-binding protein|follistatin isoform FST317 27 0.003696 5.813 1 1 +10469 TIMM44 translocase of inner mitochondrial membrane 44 19 protein-coding TIM44 mitochondrial import inner membrane translocase subunit TIM44|translocase of inner mitochondrial membrane 44 homolog 39 0.005338 9.476 1 1 +10471 PFDN6 prefoldin subunit 6 6 protein-coding H2-KE2|HKE2|KE-2|PFD6 prefoldin subunit 6|HLA class II region expressed gene KE2|KE2 protein 9 0.001232 9.284 1 1 +10472 ZBTB18 zinc finger and BTB domain containing 18 1 protein-coding C2H2-171|MRD22|RP58|TAZ-1|ZNF238 zinc finger and BTB domain-containing protein 18|58 kDa repressor protein|transcriptional repressor RP58|translin-associated zinc finger protein 1|zinc finger protein 238|zinc finger protein C2H2-171 55 0.007528 9.255 1 1 +10473 HMGN4 high mobility group nucleosomal binding domain 4 6 protein-coding HMG17L3|NHC 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 9 0.001232 10.5 1 1 +10474 TADA3 transcriptional adaptor 3 3 protein-coding ADA3|NGG1|STAF54|TADA3L|hADA3 transcriptional adapter 3|ADA3 homolog|ADA3-like protein|alteration/deficiency in activation 3 25 0.003422 10.95 1 1 +10475 TRIM38 tripartite motif containing 38 6 protein-coding RNF15|RORET E3 ubiquitin-protein ligase TRIM38|Ro/SSA ribonucleoprotein homolog|ring finger protein 15|tripartite motif-containing protein 38|zinc finger protein RoRet 33 0.004517 8.866 1 1 +10476 ATP5H ATP synthase, H+ transporting, mitochondrial Fo complex subunit D 17 protein-coding ATPQ ATP synthase subunit d, mitochondrial|ATP synthase D chain, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit d|ATP synthase, H+ transporting, mitochondrial F1F0, subunit d|ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d|ATPase subunit d|My032 protein 5 0.0006844 11.24 1 1 +10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 2 protein-coding UBCH9|UbcM2 ubiquitin-conjugating enzyme E2 E3|E2 ubiquitin-conjugating enzyme E3|ubiquitin carrier protein E3|ubiquitin conjugating enzyme E2E 3|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 15 0.002053 10.03 1 1 +10478 SLC25A17 solute carrier family 25 member 17 22 protein-coding PMP34 peroxisomal membrane protein PMP34|solute carrier family 25 (mitochondrial carrier; peroxisomal membrane protein, 34kDa), member 17 13 0.001779 9.105 1 1 +10479 SLC9A6 solute carrier family 9 member A6 X protein-coding MRSA|NHE6 sodium/hydrogen exchanger 6|Na(+)/H(+) exchanger 6|solute carrier family 9 (sodium/hydrogen exchanger), member 6|solute carrier family 9, subfamily A (NHE6, cation proton antiporter 6), member 6 46 0.006296 8.901 1 1 +10480 EIF3M eukaryotic translation initiation factor 3 subunit M 11 protein-coding B5|GA17|PCID1|TANGO7|hfl-B5 eukaryotic translation initiation factor 3 subunit M|B5 receptor|PCI domain containing 1 (herpesvirus entry mediator)|PCI domain-containing protein 1|dendritic cell protein|fetal lung protein B5|transport and golgi organization 7 homolog 28 0.003832 11.36 1 1 +10481 HOXB13 homeobox B13 17 protein-coding PSGD homeobox protein Hox-B13 25 0.003422 3.731 1 1 +10482 NXF1 nuclear RNA export factor 1 11 protein-coding MEX67|TAP nuclear RNA export factor 1|mRNA export factor TAP|tip associating protein|tip-associated protein 61 0.008349 10.72 1 1 +10483 SEC23B Sec23 homolog B, coat complex II component 20 protein-coding CDA-II|CDAII|CDAN2|CWS7|HEMPAS protein transport protein Sec23B|SEC23-like protein B|SEC23-related protein B|Sec23 homolog B|Sec23 homolog B, COPII coat complex component|transport protein SEC23B 55 0.007528 10.69 1 1 +10484 SEC23A Sec23 homolog A, coat complex II component 14 protein-coding CLSD protein transport protein Sec23A|SEC23-related protein A|Sec23 homolog A, COPII coat complex component 63 0.008623 10.18 1 1 +10485 C1orf61 chromosome 1 open reading frame 61 1 protein-coding CROC4 protein CROC-4|contingent replication of cDNA 4|transcriptional activator of the c-fos promoter 19 0.002601 2.952 1 1 +10486 CAP2 CAP, adenylate cyclase-associated protein, 2 (yeast) 6 protein-coding - adenylyl cyclase-associated protein 2|2810452G09Rik|CAP 2 26 0.003559 7.797 1 1 +10487 CAP1 adenylate cyclase associated protein 1 1 protein-coding CAP|CAP1-PEN adenylyl cyclase-associated protein 1|CAP 1|CAP, adenylate cyclase-associated protein 1|testis secretory sperm-binding protein Li 218p 39 0.005338 12.63 1 1 +10488 CREB3 cAMP responsive element binding protein 3 9 protein-coding LUMAN|LZIP|sLZIP cyclic AMP-responsive element-binding protein 3|basic leucine zipper protein|cyclic AMP response element (CRE)-binding protein/activating transcription factor 1|leucin zipper proitein|small leucine zipper protein|transcription factor LZIP-alpha 29 0.003969 10.09 1 1 +10489 LRRC41 leucine rich repeat containing 41 1 protein-coding MUF1|PP7759 leucine-rich repeat-containing protein 41|MUF1 protein (MUF1)|elongin BC-interacting leucine-rich repeat protein|protein Muf1 67 0.009171 10.91 1 1 +10490 VTI1B vesicle transport through interaction with t-SNAREs 1B 14 protein-coding VTI1|VTI1-LIKE|VTI1L|VTI2|v-SNARE|vti1-rp1 vesicle transport through interaction with t-SNAREs homolog 1B|vesicle transport v-SNARE protein Vti1-like 1|vesicle-associated soluble NSF attachment protein receptor 10 0.001369 10.21 1 1 +10491 CRTAP cartilage associated protein 3 protein-coding CASP|LEPREL3|OI7|P3H5 cartilage-associated protein|leprecan-like 3|prolyl 3-hydroxylase family member 5 (non-enzymatic) 18 0.002464 11.85 1 1 +10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein 6 protein-coding GRY-RBP|GRYRBP|HNRNPQ|HNRPQ1|NSAP1|PP68|hnRNP-Q heterogeneous nuclear ribonucleoprotein Q|NS1-associated protein 1|glycine- and tyrosine-rich RNA-binding protein 54 0.007391 11.77 1 1 +10493 VAT1 vesicle amine transport 1 17 protein-coding VATI synaptic vesicle membrane protein VAT-1 homolog|membrane protein of cholinergic synaptic vesicles|vesicle amine transport protein 1 homolog (T. californica) 18 0.002464 12.04 1 1 +10494 STK25 serine/threonine kinase 25 2 protein-coding SOK1|YSK1 serine/threonine-protein kinase 25|Ste20, yeast homolog|ste20-like kinase|ste20/oxidant stress response kinase 1|sterile 20/oxidant stress-response kinase 1 26 0.003559 10.88 1 1 +10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 X protein-coding APK1|COVA1|tNOX ecto-NOX disulfide-thiol exchanger 2|APK1 antigen|cytosolic ovarian carcinoma antigen 1|ecto-NADPH oxidase disulfide-thiol exchanger 2|tumor-associated NADH oxidase|tumor-associated hydroquinone oxidase 55 0.007528 8.311 1 1 +10497 UNC13B unc-13 homolog B 9 protein-coding MUNC13|UNC13|Unc13h2 protein unc-13 homolog B|homolog of rat Munc13 (diacylglycerol-binding)|munc13-2 108 0.01478 10.02 1 1 +10498 CARM1 coactivator associated arginine methyltransferase 1 19 protein-coding PRMT4 histone-arginine methyltransferase CARM1|protein arginine N-methyltransferase 4 32 0.00438 10.38 1 1 +10499 NCOA2 nuclear receptor coactivator 2 8 protein-coding GRIP1|KAT13C|NCoA-2|SRC2|TIF2|bHLHe75 nuclear receptor coactivator 2|class E basic helix-loop-helix protein 75|glucocorticoid receptor-interacting protein-1|p160 steroid receptor coactivator 2|transcriptional intermediary factor 2 122 0.0167 8.699 1 1 +10500 SEMA6C semaphorin 6C 1 protein-coding SEMAY|m-SemaY|m-SemaY2 semaphorin-6C|sema Y|sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C|semaphorin-Y 68 0.009307 7.461 1 1 +10501 SEMA6B semaphorin 6B 19 protein-coding SEM-SEMA-Y|SEMA-VIB|SEMAN|semaZ semaphorin-6B|sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B|semaphorin VIB|semaphorin Z|semaphorin-6Ba 56 0.007665 8.101 1 1 +10505 SEMA4F ssemaphorin 4F 2 protein-coding M-SEMA|PRO2353|S4F|SEMAM|SEMAW|m-Sema-M semaphorin-4F|sema domain immunoglobulin domain transmembrane domain (TM) and short cytoplasmic domain (semaphorin) 4F|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4F|semaphorin M|semaphorin-W 63 0.008623 7.908 1 1 +10507 SEMA4D semaphorin 4D 9 protein-coding C9orf164|CD100|M-sema-G|SEMAJ|coll-4 semaphorin-4D|A8|BB18|GR3|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, 4D 62 0.008486 9.541 1 1 +10509 SEMA4B semaphorin 4B 15 protein-coding SEMAC|SemC semaphorin-4B|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, 4B 53 0.007254 11.13 1 1 +10512 SEMA3C semaphorin 3C 7 protein-coding SEMAE|SemE semaphorin-3C|sema E|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C|semaphorin E 84 0.0115 9.199 1 1 +10513 APPBP2 amyloid beta precursor protein binding protein 2 17 protein-coding APP-BP2|HS.84084|PAT1 amyloid protein-binding protein 2|amyloid beta precursor protein (cytoplasmic tail) binding protein 2|protein interacting with APP tail 1 45 0.006159 9.878 1 1 +10514 MYBBP1A MYB binding protein 1a 17 protein-coding P160|PAP2 myb-binding protein 1A|MYB binding protein (P160) 1a|p53-activated protein-2 64 0.00876 10.2 1 1 +10516 FBLN5 fibulin 5 14 protein-coding ADCL2|ARCL1A|ARMD3|DANCE|EVEC|FIBL-5|HNARMD|UP50 fibulin-5|developmental arteries and neural crest EGF-like protein|testis tissue sperm-binding protein Li 75n|urine p50 protein 23 0.003148 9.078 1 1 +10517 FBXW10 F-box and WD repeat domain containing 10 17 protein-coding Fbw10|HREP|SM25H2|SM2SH2 F-box/WD repeat-containing protein 10|F-box and WD-40 domain protein 10|testicular tissue protein Li 69|ubiquitin ligase specificity factor 58 0.007939 1.896 1 1 +10518 CIB2 calcium and integrin binding family member 2 15 protein-coding DFNB48|KIP2|USH1J calcium and integrin-binding family member 2|DNA-dependent protein kinase catalytic subunit-interacting protein 2 17 0.002327 7.014 1 1 +10519 CIB1 calcium and integrin binding 1 15 protein-coding CIB|CIBP|KIP1|PRKDCIP|SIP2-28 calcium and integrin-binding protein 1|DNA-PK interaction protein|DNA-PKcs-interacting protein|DNA-dependent protein kinase interacting protein|SNK-interacting protein 2-28|calcium and integrin binding 1 (calmyrin)|testicular secretory protein Li 9 9 0.001232 11.06 1 1 +10520 ZNF211 zinc finger protein 211 19 protein-coding C2H2-25|CH2H2-25|ZNF-25 zinc finger protein 211|zinc finger protein C2H2-25 54 0.007391 7.658 1 1 +10521 DDX17 DEAD-box helicase 17 22 protein-coding P72|RH70 probable ATP-dependent RNA helicase DDX17|DEAD (Asp-Glu-Ala-Asp) box helicase 17|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 62 0.008486 12.97 1 1 +10522 DEAF1 DEAF1, transcription factor 11 protein-coding MRD24|NUDR|SPN|ZMYND5 deformed epidermal autoregulatory factor 1 homolog|nuclear DEAF-1-related transcriptional regulator|suppressin|zinc finger MYND domain-containing protein 5 42 0.005749 9.548 1 1 +10523 CHERP calcium homeostasis endoplasmic reticulum protein 19 protein-coding DAN16|SCAF6|SRA1 calcium homeostasis endoplasmic reticulum protein|ERPROT 213-21|ERPROT213-21|SR-related CTD associated factor 6|protein with polyglutamine repeat 69 0.009444 10.57 1 1 +10524 KAT5 lysine acetyltransferase 5 11 protein-coding ESA1|HTATIP|HTATIP1|PLIP|TIP|TIP60|ZC2HC5|cPLA2 histone acetyltransferase KAT5|60 kDa Tat-interactive protein|HIV-1 Tat interactive protein, 60kDa|K(lysine) acetyltransferase 5|K-acetyltransferase 5|Tat interacting protein, 60kDa|cPLA(2)-interacting protein|cPLA2 interacting protein|histone acetyltransferase HTATIP 31 0.004243 9.996 1 1 +10525 HYOU1 hypoxia up-regulated 1 11 protein-coding GRP-170|Grp170|HSP12A|ORP-150|ORP150 hypoxia up-regulated protein 1|150 kDa oxygen-regulated protein|170 kDa glucose-regulated protein|oxygen regulated protein (150kD) 60 0.008212 12.02 1 1 +10526 IPO8 importin 8 12 protein-coding RANBP8 importin-8|RAN binding protein 8|imp8|ran-binding protein 8 63 0.008623 10.29 1 1 +10527 IPO7 importin 7 11 protein-coding Imp7|RANBP7 importin-7|RAN-binding protein 7 71 0.009718 11.69 1 1 +10528 NOP56 NOP56 ribonucleoprotein 20 protein-coding NOL5A|SCA36 nucleolar protein 56|NOP56 ribonucleoprotein homolog|nucleolar protein 5A (56kDa with KKE/D repeat) 50 0.006844 11.15 1 1 +10529 NEBL nebulette 10 protein-coding LASP2|LNEBL nebulette|LIM and SH3 protein 2|LIM-nebulette|actin-binding Z-disk protein 109 0.01492 9.438 1 1 +10531 PITRM1 pitrilysin metallopeptidase 1 10 protein-coding MP1|PreP presequence protease, mitochondrial|PreP peptidasome|metalloprotease 1 (pitrilysin family)|pitrilysin metalloproteinase 1 63 0.008623 10.71 1 1 +10533 ATG7 autophagy related 7 3 protein-coding APG7-LIKE|APG7L|GSA7 ubiquitin-like modifier-activating enzyme ATG7|ATG12-activating enzyme E1 ATG7|hAGP7|ubiquitin-activating enzyme E1-like protein 43 0.005886 9.531 1 1 +10534 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 11 protein-coding p27 Sjoegren syndrome/scleroderma autoantigen 1|Sjogren's syndrome/scleroderma autoantigen 1|autoantigen p27|centromeric autoantigen (27kD) 9 0.001232 8.582 1 1 +10535 RNASEH2A ribonuclease H2 subunit A 19 protein-coding AGS4|JUNB|RNASEHI|RNHIA|RNHL ribonuclease H2 subunit A|RNase H(35)|RNase H2 subunit A|RNase HI large subunit|aicardi-Goutieres syndrome 4 protein|ribonuclease H2, large subunit|ribonuclease HI large subunit|ribonuclease HI subunit A 22 0.003011 9.036 1 1 +10536 P3H3 prolyl 3-hydroxylase 3 12 protein-coding GRCB|HSU47926|LEPREL2 prolyl 3-hydroxylase 3|gene rich cluster, B|leprecan-like 2|procollagen-proline 3-dioxygenase|protein B 33 0.004517 8.637 1 1 +10537 UBD ubiquitin D 6 protein-coding FAT10|GABBR1|UBD-3 ubiquitin D|diubiquitin|ubiquitin-like protein FAT10 22 0.003011 8.25 1 1 +10538 BATF basic leucine zipper ATF-like transcription factor 14 protein-coding B-ATF|BATF1|SFA-2|SFA2 basic leucine zipper transcriptional factor ATF-like|B-cell-activating transcription factor|SF-HT-activated gene 2 protein|activating transcription factor B|basic leucine zipper transcription factor, ATF-like 12 0.001642 6.128 1 1 +10539 GLRX3 glutaredoxin 3 10 protein-coding GLRX4|GRX3|GRX4|PICOT|TXNL2|TXNL3 glutaredoxin-3|PKC-interacting cousin of thioredoxin|PKC-theta-interacting protein|PKCq-interacting protein|glutaredoxin 4|testicular tissue protein Li 75|thioredoxin-like protein 2 25 0.003422 9.826 1 1 +10540 DCTN2 dynactin subunit 2 12 protein-coding DCTN50|DYNAMITIN|HEL-S-77|RBP50 dynactin subunit 2|50 kDa dynein-associated polypeptide|dynactin 2 (p50)|dynactin complex 50 kDa subunit|epididymis secretory protein Li 77|p50 dynamitin 35 0.004791 11.31 1 1 +10541 ANP32B acidic nuclear phosphoprotein 32 family member B 9 protein-coding APRIL|PHAPI2|SSP29 acidic leucine-rich nuclear phosphoprotein 32 family member B|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 10 0.001369 11.54 1 1 +10542 LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 1 protein-coding HBXIP|XIP ragulator complex protein LAMTOR5|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 17 0.002327 10.38 1 1 +10544 PROCR protein C receptor 20 protein-coding CCCA|CCD41|EPCR endothelial protein C receptor|APC receptor|CD201 antigen|activated protein C receptor|cell cycle, centrosome-associated protein|centrocyclin|protein C receptor, endothelial 24 0.003285 8.138 1 1 +10548 TM9SF1 transmembrane 9 superfamily member 1 14 protein-coding HMP70|MP70 transmembrane 9 superfamily member 1|MP70 protein family member|multispanning membrane protein (70kD)|transmembrane protein 9 superfamily member 1 38 0.005201 10.72 1 1 +10549 PRDX4 peroxiredoxin 4 X protein-coding AOE37-2|AOE372|HEL-S-97n|PRX-4 peroxiredoxin-4|antioxidant enzyme AOE372|epididymis secretory sperm binding protein Li 97n|peroxiredoxin IV|prx-IV|thioredoxin peroxidase (antioxidant enzyme)|thioredoxin peroxidase AO372|thioredoxin-dependent peroxide reductase A0372 20 0.002737 10.72 1 1 +10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 3 protein-coding DERP11|GTRAP3-18|HSPC127|JWA|PRAF3|Yip6b|addicsin|hp22|jmx PRA1 family protein 3|ADP-ribosylation factor GTPase 6 interacting protein 5|ADP-ribosylation factor-like 6 interacting protein 5|ADP-ribosylation factor-like protein 6-interacting protein 5|ADP-ribosylation-like factor 6 interacting protein 5|ARL-6-interacting protein 5|JM5|PRA1 domain family 3|aip-5|cytoskeleton-related vitamin A-responsive protein|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 10 0.001369 11.49 1 1 +10551 AGR2 anterior gradient 2, protein disulphide isomerase family member 7 protein-coding AG2|GOB-4|HAG-2|HEL-S-116|PDIA17|XAG-2 anterior gradient protein 2 homolog|AG-2|HPC8|anterior gradient homolog 2|epididymis secretory protein Li 116|protein disulfide isomerase family A, member 17|secreted cement gland homolog|secreted cement gland protein XAG-2 homolog 10 0.001369 7.523 1 1 +10552 ARPC1A actin related protein 2/3 complex subunit 1A 7 protein-coding Arc40|HEL-68|HEL-S-307|SOP2Hs|SOP2L actin-related protein 2/3 complex subunit 1A|SOP2-like protein|actin binding protein (Schizosaccharomyces pombe sop2-like)|actin related protein 2/3 complex, subunit 1A, 41kDa|epididymis luminal protein 68|epididymis secretory protein Li 307 29 0.003969 11.46 1 1 +10553 HTATIP2 HIV-1 Tat interactive protein 2 11 protein-coding CC3|SDR44U1|TIP30 oxidoreductase HTATIP2|30 kDa HIV-1 TAT-interacting protein|HIV-1 TAT-interactive protein 2|HIV-1 Tat interactive protein 2, 30kDa|Tat-interacting protein (30kD)|short chain dehydrogenase/reductase family 44U, member 1 13 0.001779 9.524 1 1 +10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 6 protein-coding 1-AGPAT1|G15|LPAAT-alpha|LPAATA 1-acyl-sn-glycerol-3-phosphate acyltransferase alpha|1-AGP acyltransferase 1|1-AGPAT 1|1-acylglycerol-3-phosphate O-acyltransferase 1 (acetoacetly Coenzyme A thiolase)|1-acylglycerol-3-phosphate O-acyltransferase 1 (lysophosphatidic acid acyltransferase, alpha)|lysophosphatidic acid acyltransferase alpha|lysophospholipid acyltransferase 20 0.002737 10.98 1 1 +10555 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 9 protein-coding 1-AGPAT2|BSCL|BSCL1|LPAAB|LPAAT-beta 1-acyl-sn-glycerol-3-phosphate acyltransferase beta|1-AGP acyltransferase 2|1-AGPAT 2|1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase, beta)|lysophosphatidic acid acyltransferase-beta|testicular tissue protein Li 143 25 0.003422 10.19 1 1 +10556 RPP30 ribonuclease P/MRP subunit p30 10 protein-coding TSG15 ribonuclease P protein subunit p30|RNase P subunit 2|RNaseP protein p30|ribonuclease P/MRP 30kDa subunit 14 0.001916 8.764 1 1 +10557 RPP38 ribonuclease P/MRP subunit p38 10 protein-coding - ribonuclease P protein subunit p38|RNaseP protein p38|ribonuclease P/MRP 38kDa subunit 17 0.002327 8.283 1 1 +10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 9 protein-coding HSAN1|HSN1|LBC1|LCB1|SPT1|SPTI serine palmitoyltransferase 1|LCB 1|SPT 1|long chain base biosynthesis protein 1|serine C-palmitoyltransferase|serine-palmitoyl-CoA transferase 1 33 0.004517 10.58 1 1 +10559 SLC35A1 solute carrier family 35 member A1 6 protein-coding CDG2F|CMPST|CST|hCST CMP-sialic acid transporter|CMP-SA-Tr|CMP-Sia-Tr|mutated CMP-sialic acid transporter A1|solute carrier family 35 (CMP-sialic acid transporter), member 1|solute carrier family 35 (CMP-sialic acid transporter), member A1|solute carrier family 35 (UDP-galactose transporter), member 1 13 0.001779 8.86 1 1 +10560 SLC19A2 solute carrier family 19 member 2 1 protein-coding TC1|THMD1|THT1|THTR1|TRMA thiamine transporter 1|high affinity thiamine transporter|reduced folate carrier protein (RFC) like|solute carrier family 19 (thiamine transporter), member 2|thTr-1 31 0.004243 8.752 1 1 +10561 IFI44 interferon induced protein 44 1 protein-coding MTAP44|TLDC5|p44 interferon-induced protein 44|TBC/LysM-associated domain containing 5|interferon-induced, hepatitis C-associated microtubular aggregate protein (44kD)|microtubule-associated protein 44 45 0.006159 8.654 1 1 +10562 OLFM4 olfactomedin 4 13 protein-coding GC1|GW112|OLM4|OlfD|UNQ362|bA209J19.1|hGC-1|hOLfD olfactomedin-4|G-CSF-stimulated clone 1 protein|antiapoptotic protein GW112 63 0.008623 4.426 1 1 +10563 CXCL13 C-X-C motif chemokine ligand 13 4 protein-coding ANGIE|ANGIE2|BCA-1|BCA1|BLC|BLR1L|SCYB13 C-X-C motif chemokine 13|B-cell chemoattractant|B-cell-attracting chemokine 1|B-cell-homing chemokine (ligand for Burkitt's lymphoma receptor-1)|B-lymphocyte chemoattractant|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 7 0.0009581 5.682 1 1 +10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 20 protein-coding BIG2|PVNH2|dJ1164I10.1 brefeldin A-inhibited guanine nucleotide-exchange protein 2|ADP-ribosylation factor guanine nucleotide-exchange factor 2 (brefeldin A-inhibited)|brefeldin A-inhibited GEP 2 130 0.01779 10.61 1 1 +10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 8 protein-coding ARFGEP1|BIG1|P200 brefeldin A-inhibited guanine nucleotide-exchange protein 1|ADP-ribosylation factor guanine nucleotide-exchange factor 1 (brefeldin A-inhibited)|p200 ARF guanine nucleotide exchange factor 172 0.02354 10.66 1 1 +10566 AKAP3 A-kinase anchoring protein 3 12 protein-coding AKAP 110|AKAP110|CT82|FSP95|HEL159|PRKA3|SOB1 A-kinase anchor protein 3|A kinase (PRKA) anchor protein 3|A-kinase anchor protein, 110kDa|Fibrous Sheath Protein of 95 kDa|cancer/testis antigen 82|epididymis luminal protein 159|fibrousheathin I|fibrousheathin-1|protein kinase A binding protein AKAP 110|protein kinase A-anchoring protein 3|sperm oocyte-binding protein 1 89 0.01218 4.434 1 1 +10567 RABAC1 Rab acceptor 1 19 protein-coding PRA1|PRAF1|YIP3 prenylated Rab acceptor protein 1|PRA1 domain family 1|PRA1 family protein 1|Rab acceptor 1 (prenylated)|prenylated Rab acceptor 1 11 0.001506 10.67 1 1 +10568 SLC34A2 solute carrier family 34 member 2 4 protein-coding NAPI-3B|NAPI-IIb|NPTIIb sodium-dependent phosphate transport protein 2B|sodium/phosphate cotransporter 2B|solute carrier family 34 (sodium phosphate), member 2|solute carrier family 34 (type II sodium/phosphate cotransporter), member 2|type II sodium-dependent phosphate transporter 3b 67 0.009171 6.34 1 1 +10569 SLU7 SLU7 homolog, splicing factor 5 protein-coding 9G8|hSlu7 pre-mRNA-splicing factor SLU7|SLU7 splicing factor homolog|splicing factor|step II splicing factor SLU7|zinc knuckle motif containing 39 0.005338 10 1 1 +10570 DPYSL4 dihydropyrimidinase like 4 10 protein-coding CRMP3|DRP-4|ULIP4 dihydropyrimidinase-related protein 4|CRMP-3|ULIP-4|UNC33-like phosphoprotein 4|collapsin response mediator protein 3 58 0.007939 5.344 1 1 +10572 SIVA1 SIVA1 apoptosis inducing factor 14 protein-coding CD27BP|SIVA|Siva-1|Siva-2 apoptosis regulatory protein Siva|CD27-binding (Siva) protein 10 0.001369 10.07 1 1 +10573 MRPL28 mitochondrial ribosomal protein L28 16 protein-coding MAAT1|p15 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 17 0.002327 10.22 1 1 +10574 CCT7 chaperonin containing TCP1 subunit 7 2 protein-coding CCTETA|CCTH|NIP7-1|TCP1ETA T-complex protein 1 subunit eta|CCT-eta|HIV-1 Nef interacting protein|TCP-1-eta|chaperonin containing t-complex polypeptide 1, eta subunit 31 0.004243 12.33 1 1 +10575 CCT4 chaperonin containing TCP1 subunit 4 2 protein-coding CCT-DELTA|Cctd|SRB T-complex protein 1 subunit delta|TCP-1-delta|chaperonin containing TCP1, subunit 4 (delta)|chaperonin containing t-complex polypeptide 1, delta subunit|stimulator of TAR RNA-binding 27 0.003696 11.89 1 1 +10576 CCT2 chaperonin containing TCP1 subunit 2 12 protein-coding 99D8.1|CCT-beta|CCTB|HEL-S-100n|PRO1633|TCP-1-beta T-complex protein 1 subunit beta|T-complex protein 1, beta subunit|chaperonin containing TCP1, subunit 2 (beta)|chaperonin containing t-complex polypeptide 1, beta subunit|chaperonin containing t-complex polypeptide 1, subunit 2|epididymis secretory sperm binding protein Li 100n 30 0.004106 11.62 1 1 +10577 NPC2 NPC intracellular cholesterol transporter 2 14 protein-coding EDDM1|HE1 epididymal secretory protein E1|Niemann-Pick disease type C2 protein|Niemann-Pick disease, type C2|epididymal protein 1|human epididymis-specific protein 1|tissue-specific secretory protein 7 0.0009581 12.06 1 1 +10578 GNLY granulysin 2 protein-coding D2S69E|LAG-2|LAG2|NKG5|TLA519 granulysin|T-cell activation protein 519|T-lymphocyte activation gene 519|lymphocyte-activation gene 2|lymphokine LAG-2 16 0.00219 5.807 1 1 +10579 TACC2 transforming acidic coiled-coil containing protein 2 10 protein-coding AZU-1|ECTACC transforming acidic coiled-coil-containing protein 2|anti zuai-1 193 0.02642 10.09 1 1 +10580 SORBS1 sorbin and SH3 domain containing 1 10 protein-coding CAP|FLAF2|R85FL|SH3D5|SH3P12|SORB1 sorbin and SH3 domain-containing protein 1|Fas-ligand associated factor 2|SH3 domain protein 5|c-Cbl associated protein|ponsin 78 0.01068 9.307 1 1 +10581 IFITM2 interferon induced transmembrane protein 2 11 protein-coding 1-8D|DSPA2c interferon-induced transmembrane protein 2|dispanin subfamily A member 2c|interferon-inducible protein 1-8D 9 0.001232 10.88 1 1 +10584 COLEC10 collectin subfamily member 10 8 protein-coding CL-34|CLL1 collectin-10|collectin liver 1|collectin liver protein 1|collectin sub-family member 10 (C-type lectin)|collectin-34 26 0.003559 1.727 1 1 +10585 POMT1 protein O-mannosyltransferase 1 9 protein-coding LGMD2K|MDDGA1|MDDGB1|MDDGC1|RT protein O-mannosyl-transferase 1|dolichyl-phosphate-mannose--protein mannosyltransferase 1|testis tissue sperm-binding protein Li 57p 39 0.005338 9.348 1 1 +10586 MAB21L2 mab-21 like 2 4 protein-coding MCOPS14 protein mab-21-like 2 42 0.005749 2.276 1 1 +10587 TXNRD2 thioredoxin reductase 2 22 protein-coding SELZ|TR|TR-BETA|TR3|TRXR2 thioredoxin reductase 2, mitochondrial|selenoprotein Z|thioredoxin reductase 3|thioredoxin reductase TR3|thioredoxin reductase beta 26 0.003559 8.985 1 1 +10588 MTHFS 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) 15 protein-coding HsT19268 5-formyltetrahydrofolate cyclo-ligase|methenyl-THF synthetase 15 0.002053 8.565 1 1 +10589 DRAP1 DR1 associated protein 1 11 protein-coding NC2-alpha dr1-associated corepressor|DR1-associated protein 1 (negative cofactor 2 alpha)|negative co-factor 2-alpha|negative cofactor 2 alpha 15 0.002053 10.65 1 1 +10590 SCGN secretagogin, EF-hand calcium binding protein 6 protein-coding CALBL|DJ501N12.8|SECRET|SEGN|setagin secretagogin 19 0.002601 2.336 1 1 +10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 6 protein-coding C6orf108|RCL|dJ330M21.3 2'-deoxynucleoside 5'-phosphate N-hydrolase 1|c-Myc-responsive protein RCL|c-Myc-responsive protein Rcl|deoxyribonucleoside 5'-monophosphate N-glycosidase|putative c-Myc-responsive 8 0.001095 9.262 1 1 +10592 SMC2 structural maintenance of chromosomes 2 9 protein-coding CAP-E|CAPE|SMC-2|SMC2L1 structural maintenance of chromosomes protein 2|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 82 0.01122 9.303 1 1 +10594 PRPF8 pre-mRNA processing factor 8 17 protein-coding HPRP8|PRP8|PRPC8|RP13|SNRNP220 pre-mRNA-processing-splicing factor 8|220 kDa U5 snRNP-specific protein|PRP8 homolog|PRP8 pre-mRNA processing factor 8 homolog|U5 snRNP-specific protein (220 kD), ortholog of S. cerevisiae Prp8p|apoptosis-regulated protein 1|apoptosis-regulated protein 2|p220|precursor mRNA processing protein|splicing factor Prp8 119 0.01629 12.63 1 1 +10595 ERN2 endoplasmic reticulum to nucleus signaling 2 16 protein-coding IRE1-BETA|IRE1b|IRE2p|hIRE2p serine/threonine-protein kinase/endoribonuclease IRE2|ER to nucleus signalling 2|IRE1 beta|IRE1, S. cerevisiae, homolog of|endoplasmic reticulum to nucleus signalling 2|inositol-requiring 1 beta|inositol-requiring protein 2 91 0.01246 3.017 1 1 +10597 TRAPPC2B trafficking protein particle complex 2B 19 pseudo MIP-2A|SEDLP|SEDLP1|TRAPPC2P1 MBP-1 interacting protein-2A|spondyloepiphyseal dysplasia, late, pseudogene|trafficking protein particle complex 2 pseudogene 1 7 0.0009581 7.187 1 1 +10598 AHSA1 activator of Hsp90 ATPase activity 1 14 protein-coding AHA1|C14orf3|hAha1|p38 activator of 90 kDa heat shock protein ATPase homolog 1|AHA1, activator of heat shock 90kDa protein ATPase homolog 1 21 0.002874 11 1 1 +10599 SLCO1B1 solute carrier organic anion transporter family member 1B1 12 protein-coding HBLRR|LST-1|LST1|OATP-C|OATP1B1|OATP2|OATPC|SLC21A6 solute carrier organic anion transporter family member 1B1|OATP-2|liver-specific organic anion transporter 1|sodium-independent organic anion-transporting polypeptide 2|solute carrier family 21 (organic anion transporter), member 6 93 0.01273 1.217 1 1 +10600 USP16 ubiquitin specific peptidase 16 21 protein-coding UBP-M|UBPM ubiquitin carboxyl-terminal hydrolase 16|deubiquitinating enzyme 16|ubiquitin specific protease 16|ubiquitin thioesterase 16|ubiquitin thiolesterase 16|ubiquitin-processing protease UBP-M|ubiquitin-specific processing protease 16 32 0.00438 9.772 1 1 +10602 CDC42EP3 CDC42 effector protein 3 2 protein-coding BORG2|CEP3|UB1 cdc42 effector protein 3|CDC42 effector protein (Rho GTPase binding) 3|CRIB-containing BORG2 protein|MSE55-related Cdc42-binding protein|MSE55-related protein|binder of Rho GTPases 2 13 0.001779 8.958 1 1 +10603 SH2B2 SH2B adaptor protein 2 7 protein-coding APS SH2B adapter protein 2|SH2 and PH domain-containing adapter protein APS|adapter protein with pleckstrin homology and Src homology 2 domains 14 0.001916 5.758 1 1 +10605 PAIP1 poly(A) binding protein interacting protein 1 5 protein-coding - polyadenylate-binding protein-interacting protein 1|PABC1-interacting protein 1|PABP-interacting protein 1|PAIP-1 38 0.005201 9.99 1 1 +10606 PAICS phosphoribosylaminoimidazole carboxylase; phosphoribosylaminoimidazolesuccinocarboxamide synthase 4 protein-coding ADE2|ADE2H1|AIRC|PAIS multifunctional protein ADE2|AIR carboxylase|SAICAR synthetase|multifunctional protein ADE2H1|phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase 17 0.002327 11.4 1 1 +10607 TBL3 transducin beta like 3 16 protein-coding SAZD|UTP13 transducin beta-like protein 3|WD repeat-containing protein SAZD|WD-repeat protein SAZD 52 0.007117 10.03 1 1 +10608 MXD4 MAX dimerization protein 4 4 protein-coding MAD4|MST149|MSTP149|bHLHc12 max dimerization protein 4|Mad4 homolog|class C basic helix-loop-helix protein 12|max dimerizer 4|max-associated protein 4|max-interacting transcriptional repressor MAD4 15 0.002053 10.71 1 1 +10609 P3H4 prolyl 3-hydroxylase family member 4 (non-enzymatic) 17 protein-coding LEPREL4|NO55|NOL55|SC65 synaptonemal complex protein SC65|leprecan-like 4|leprecan-like protein 4|nucleolar autoantigen (55kD)|nucleolar autoantigen No55|nucleolar autoantigen, 55kDa 17 0.002327 9.264 1 1 +10610 ST6GALNAC2 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 17 protein-coding SAITL1|SIAT7|SIAT7B|SIATL1|ST6GalNAII|STHM alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2|(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|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2|ST6 GalNAc alpha-2,6-sialyltransferase 2|ST6GALNAC2, alpha-2,6-sialyltransferase 2|ST6GalNAc II|ST6GalNAcII|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 22 0.003011 7.563 1 1 +10611 PDLIM5 PDZ and LIM domain 5 4 protein-coding ENH|ENH1|L9|LIM PDZ and LIM domain protein 5|enigma homolog|enigma-like LIM domain protein|enigma-like PDZ and LIM domains protein 53 0.007254 11.22 1 1 +10612 TRIM3 tripartite motif containing 3 11 protein-coding BERP|HAC1|RNF22|RNF97 tripartite motif-containing protein 3|RING finger protein 97|brain expressed ring finger|brain-expressed RING finger protein|ring finger protein 22|tripartite motif protein TRIM3 46 0.006296 7.866 1 1 +10613 ERLIN1 ER lipid raft associated 1 10 protein-coding C10orf69|Erlin-1|KE04|KEO4|SPFH1|SPG62 erlin-1|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|stomatin-prohibitin-flotillin-HflC/K domain-containing protein 1 18 0.002464 9.962 1 1 +10614 HEXIM1 hexamethylene bisacetamide inducible 1 17 protein-coding CLP1|EDG1|HIS1|MAQ1 protein HEXIM1|HMBA-inducible|cardiac lineage protein 1|estrogen down-regulated gene 1 protein|hexamethylene bis-acetamide inducible 1|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 39 0.005338 10.24 1 1 +10615 SPAG5 sperm associated antigen 5 17 protein-coding DEEPEST|MAP126|hMAP126 sperm-associated antigen 5|astrin|mitotic spindle associated protein p126|mitotic spindle coiled-coil related protein 71 0.009718 8.909 1 1 +10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 20 protein-coding C20orf18|HOIL-1|HOIL1|PBMEI|PGBM1|RBCK2|RNF54|UBCE7IP3|XAP3|XAP4|ZRANB4 ranBP-type and C3HC4-type zinc finger-containing protein 1|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|ubiquitin conjugating enzyme 7 interacting protein 3 26 0.003559 10.98 1 1 +10617 STAMBP STAM binding protein 2 protein-coding AMSH|MICCAP STAM-binding protein|associated molecule with the SH3 domain of STAM|endosome-associated ubiquitin isopeptidase|testicular secretory protein Li 54 25 0.003422 9.617 1 1 +10618 TGOLN2 trans-golgi network protein 2 2 protein-coding TGN38|TGN46|TGN48|TGN51|TTGN2 trans-Golgi network integral membrane protein 2|TGN38 homolog|trans-Golgi network protein (46, 48, 51kD isoforms)|trans-Golgi network protein TGN51 33 0.004517 12.44 1 1 +10620 ARID3B AT-rich interaction domain 3B 15 protein-coding BDP|DRIL2 AT-rich interactive domain-containing protein 3B|ARID domain-containing protein 3B|AT rich interactive domain 3B (BRIGHT- like)|bright and dead ringer protein|bright-like protein 34 0.004654 7.129 1 1 +10621 POLR3F RNA polymerase III subunit F 20 protein-coding RPC39|RPC6 DNA-directed RNA polymerase III subunit RPC6|RNA polymerase III C39 subunit|RNA polymerase III subunit C6|polymerase (RNA) III (DNA directed) polypeptide F, 39 kDa|polymerase (RNA) III subunit F 16 0.00219 8.098 1 1 +10622 POLR3G RNA polymerase III subunit G 5 protein-coding RPC32|RPC7 DNA-directed RNA polymerase III subunit RPC7|DNA-directed RNA polymerase III 32 kDa polypeptide|DNA-directed RNA polymerase III subunit G|RNA polymerase III 32 kDa subunit|RNA polymerase III subunit C7|polymerase (RNA) III (DNA directed) polypeptide G (32kD)|polymerase (RNA) III subunit G 11 0.001506 5.966 1 1 +10623 POLR3C RNA polymerase III subunit C 1 protein-coding RPC3|RPC62 DNA-directed RNA polymerase III subunit RPC3|DNA-directed III 62 kDa polypeptide|DNA-directed RNA polymerase III subunit C|RNA polymerase III 62 kDa subunit|RNA polymerase III subunit C3|polymerase (RNA) III (DNA directed) polypeptide C (62kD)|polymerase (RNA) III subunit C 37 0.005064 9.009 1 1 +10625 IVNS1ABP influenza virus NS1A binding protein 1 protein-coding FLARA3|HSPC068|KLHL39|ND1|NS-1|NS1-BP|NS1BP influenza virus NS1A-binding protein|NCX downstream gene 1|NS1-binding protein|aryl hydrocarbon receptor-associated 3|aryl hydrocarbon receptor-associated protein 3|kelch-like family member 39 49 0.006707 11.47 1 1 +10626 TRIM16 tripartite motif containing 16 17 protein-coding EBBP tripartite motif-containing protein 16|estrogen-responsive B box protein 23 0.003148 9.363 1 1 +10627 MYL12A myosin light chain 12A 18 protein-coding HEL-S-24|MLC-2B|MLCB|MRCL3|MRLC3|MYL2B myosin regulatory light chain 12A|epididymis secretory protein Li 24|myosin RLC|myosin regulatory light chain 2, nonsarcomeric|myosin regulatory light chain 3|myosin regulatory light chain MRLC3|myosin, light chain 12A, regulatory, non-sarcomeric|myosin, light polypeptide, regulatory, non-sarcomeric (20kD) 7 0.0009581 12.27 1 1 +10628 TXNIP thioredoxin interacting protein 1 protein-coding ARRDC6|EST01027|HHCPA78|THIF|VDUP1 thioredoxin-interacting protein|thioredoxin binding protein 2|upregulated by 1,25-dihydroxyvitamin D-3|vitamin D3 up-regulated protein 1 43 0.005886 12.96 1 1 +10629 TAF6L TATA-box binding protein associated factor 6 like 11 protein-coding PAF65A TAF6-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 6L|PAF65-alpha|PCAF-associated factor 65-alpha|TAF6-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa|p300/CBP-associated factor (PCAF)-associated factor 65 36 0.004927 8.341 1 1 +10630 PDPN podoplanin 1 protein-coding AGGRUS|GP36|GP40|Gp38|HT1A-1|OTS8|PA2.26|T1A|T1A-2|T1A2|TI1A podoplanin|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) 27 0.003696 8.004 1 1 +10631 POSTN periostin 13 protein-coding OSF-2|OSF2|PDLPOSTN|PN periostin|osteoblast specific factor 2 (fasciclin I-like)|periodontal ligament-specific periostin|periostin, osteoblast specific factor 117 0.01601 10.2 1 1 +10632 ATP5L ATP synthase, H+ transporting, mitochondrial Fo complex subunit G 11 protein-coding ATP5JG ATP synthase subunit g, mitochondrial|ATP synthase g chain, 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 9 0.001232 11.43 1 1 +10633 RASL10A RAS like family 10 member A 22 protein-coding RRP22 ras-like protein family member 10A|ras-like protein RRP22|ras-related protein on chromosome 22 6 0.0008212 3.4 1 1 +10634 GAS2L1 growth arrest specific 2 like 1 22 protein-coding GAR22 GAS2-like protein 1|GAS2-related protein on chromosome 22|growth arrest-specific protein 2-like 1 37 0.005064 9.42 1 1 +10635 RAD51AP1 RAD51 associated protein 1 12 protein-coding PIR51 RAD51-associated protein 1|RAD51-interacting protein 30 0.004106 7.155 1 1 +10636 RGS14 regulator of G-protein signaling 14 5 protein-coding - regulator of G-protein signaling 14|regulator of G-protein signalling 14 35 0.004791 8.389 1 1 +10637 LEFTY1 left-right determination factor 1 1 protein-coding LEFTB|LEFTYB left-right determination factor 1|left-right determination factor B|protein lefty-1|protein lefty-B 23 0.003148 3.668 1 1 +10638 SPHAR S-phase response (cyclin related) 1 protein-coding - protein SPHAR|S-phase response protein 4 0.0005475 6.927 1 1 +10640 EXOC5 exocyst complex component 5 14 protein-coding HSEC10|PRO1912|SEC10|SEC10L1|SEC10P exocyst complex component 5|SEC10-like 1|exocyst complex component Sec10 39 0.005338 10.16 1 1 +10641 NPRL2 NPR2-like, GATOR1 complex subunit 3 protein-coding FFEVF2|NPR2|NPR2L|TUSC4 nitrogen permease regulator 2-like protein|2810446G01Rik|G21 protein|NPR2-like protein|gene 21 protein|homologous to yeast nitrogen permease (candidate tumor suppressor)|tumor suppressor candidate 4 16 0.00219 8.592 1 1 +10642 IGF2BP1 insulin like growth factor 2 mRNA binding protein 1 17 protein-coding CRD-BP|CRDBP|IMP-1|IMP1|VICKZ1|ZBP1 insulin-like growth factor 2 mRNA-binding protein 1|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 deltaN CRDBP|zipcode-binding protein 1 74 0.01013 3.307 1 1 +10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 7 protein-coding CT98|IMP-3|IMP3|KOC|KOC1|VICKZ3 insulin-like growth factor 2 mRNA-binding protein 3|IGF-II mRNA-binding protein 3|IGF2 mRNA-binding protein 3|KH domain containing protein overexpressed in cancer|VICKZ family member 3|cancer/testis antigen 98 39 0.005338 5.877 1 1 +10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 3 protein-coding IMP-2|IMP2|VICKZ2 insulin-like growth factor 2 mRNA-binding protein 2|IGF-II mRNA-binding protein 2|IGF2 mRNA-binding protein 2|VICKZ family member 2 39 0.005338 7.69 1 1 +10645 CAMKK2 calcium/calmodulin dependent protein kinase kinase 2 12 protein-coding CAMKK|CAMKKB calcium/calmodulin-dependent protein kinase kinase 2|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, beta 43 0.005886 10.39 1 1 +10647 SCGB1D2 secretoglobin family 1D member 2 11 protein-coding LIPB|LPHB|LPNB secretoglobin family 1D member 2|lipophilin-B|prostatein-like lipophilin B 13 0.001779 2.287 1 1 +10648 SCGB1D1 secretoglobin family 1D member 1 11 protein-coding LIPA|LPHA|LPNA secretoglobin family 1D member 1|lipophilin A (uteroglobin family member)|lipophilin-A|prostatein-like lipophilin A 13 0.001779 0.1165 1 1 +10650 PRELID3A PRELI domain containing 3A 18 protein-coding C18orf43|HFL-EDDG1|SLMO1 PRELI domain containing protein 3A|erythroid differentiation and denucleation factor 1|protein slowmo homolog 1|slowmo homolog 1 7 0.0009581 5.564 1 1 +10651 MTX2 metaxin 2 2 protein-coding - metaxin-2|mitochondrial outer membrane import complex protein 2 16 0.00219 9.341 1 1 +10652 YKT6 YKT6 v-SNARE homolog (S. cerevisiae) 7 protein-coding - synaptobrevin homolog YKT6|R-SNARE|SNARE protein Ykt6|YKT6 v-SNARE protein|YKT6, S. cerevisiae, homolog of 10 0.001369 11.2 1 1 +10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 19 protein-coding DIAR3|HAI-2|HAI2|Kop|PB kunitz-type protease inhibitor 2|hepatocyte growth factor activator inhibitor type 2|placental bikunin|serine protease inhibitor, Kunitz type, 2|testicular tissue protein Li 183 19 0.002601 12.13 1 1 +10654 PMVK phosphomevalonate kinase 1 protein-coding HUMPMKI|PMK|PMKA|PMKASE|POROK1 phosphomevalonate kinase|testis tissue sperm-binding protein Li 95mP 16 0.00219 10.13 1 1 +10655 DMRT2 doublesex and mab-3 related transcription factor 2 9 protein-coding - doublesex- and mab-3-related transcription factor 2|DSXL-2|doublesex-like 2 protein|terra-like protein 29 0.003969 3.039 1 1 +10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 8 protein-coding Etle|SALP|SLM-2|SLM2|T-STAR|TSTAR|etoile KH domain-containing, RNA-binding, signal transduction-associated protein 3|KH domain containing, RNA binding, signal transduction associated 3|RNA-binding protein T-Star|Sam68-like phosphotyrosine protein, T-STAR|sam68-like mammalian protein 2 34 0.004654 7.683 1 1 +10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 1 protein-coding Sam68|p62|p68 KH domain-containing, RNA-binding, signal transduction-associated protein 1|GAP-associated tyrosine phosphoprotein p62 (Sam68)|KH domain containing, RNA binding, signal transduction associated 1|p21 Ras GTPase-activating protein-associated p62|src-associated in mitosis 68 kDa protein 32 0.00438 11.78 1 1 +10658 CELF1 CUGBP, Elav-like family member 1 11 protein-coding BRUNOL2|CUG-BP|CUGBP|CUGBP1|EDEN-BP|NAB50|NAPOR|hNab50 CUGBP Elav-like family member 1|50 kDa nuclear polyadenylated RNA-binding protein|CELF-1|CUG RNA-binding protein|CUG triplet repeat RNA-binding protein 1|CUG-BP- and ETR-3-like factor 1|CUG-BP1|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 30 0.004106 10.75 1 1 +10659 CELF2 CUGBP, Elav-like family member 2 10 protein-coding BRUNOL3|CELF-2|CUG-BP2|CUGBP2|ETR-3|ETR3|NAPOR CUGBP Elav-like family member 2|CUG triplet repeat RNA-binding protein 2|CUG-BP- and ETR-3-like factor 2|ELAV-type RNA-binding protein 3|RNA-binding protein BRUNOL-3|bruno-like protein 3|neuroblastoma apoptosis-related RNA-binding protein 47 0.006433 8.994 1 1 +10660 LBX1 ladybird homeobox 1 10 protein-coding HPX-6|HPX6|LBX1H|homeobox transcription factor LBX1|lady bird-like homeobox|ladybird homeobox homolog 1|ladybird homeobox protein homolog 1|transcription factor similar to D. melanogaster homeodomain protein lady bird late 18 0.002464 0.4524 1 1 +10661 KLF1 Kruppel like factor 1 19 protein-coding EKLF Krueppel-like factor 1|erythroid Kruppel-like factor|erythroid krueppel-like transcription factor|erythroid-specific transcription factor EKLF 22 0.003011 1.468 1 1 +10663 CXCR6 C-X-C motif chemokine receptor 6 3 protein-coding BONZO|CD186|STRL33|TYMSTR 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|chemokine (C-X-C motif) receptor 6 11 0.001506 5.523 1 1 +10664 CTCF CCCTC-binding factor 16 protein-coding MRD21 transcriptional repressor CTCF|11 zinc finger transcriptional repressor|11-zinc finger protein|CCCTC-binding factor (zinc finger protein)|CTCFL paralog 100 0.01369 10.4 1 1 +10665 C6orf10 chromosome 6 open reading frame 10 6 protein-coding TSBP uncharacterized protein C6orf10|testis specific basic protein 33 0.004517 0.4696 1 1 +10666 CD226 CD226 molecule 18 protein-coding DNAM-1|DNAM1|PTA1|TLiSA1 CD226 antigen|DNAX accessory molecule-1|T lineage-specific activation antigen 1 antigen|adhesion glycoprotein|platelet and T cell activation antigen 1 41 0.005612 3.787 1 1 +10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial 6 protein-coding COXPD14|FARS1|HSPC320|PheRS|SPG77 phenylalanine--tRNA ligase, mitochondrial|dJ236A3.1 (phenylalanine-tRNA synthetase)|dJ520B18.2 (FARS1 (phenylalanine-tRNA synthetase))|mitochondrial PHERS|phenylalanine tRNA ligase 2, mitochondrial|phenylalanine translase|phenylalanine-tRNA synthetase 1 (mitochondrial) 36 0.004927 7.903 1 1 +10668 CGRRF1 cell growth regulator with ring finger domain 1 14 protein-coding CGR19|RNF197 cell growth regulator with RING finger domain protein 1|RING finger protein 197|cell growth regulatory gene 19 protein 20 0.002737 7.563 1 1 +10669 CGREF1 cell growth regulator with EF-hand domain 1 2 protein-coding CGR11 cell growth regulator with EF hand domain protein 1|cell growth regulatory gene 11 protein|hydrophobestin 20 0.002737 6.942 1 1 +10670 RRAGA Ras related GTP binding A 9 protein-coding FIP-1|FIP1|RAGA ras-related GTP-binding protein A|adenovirus E3 14.7 kDa-interacting protein 1|adenovirus E3-14.7K interacting protein 1|rag A 15 0.002053 10.74 1 1 +10671 DCTN6 dynactin subunit 6 8 protein-coding WS-3|WS3|p27 dynactin subunit 6|dynactin 6|dynactin subunit p27|novel RGD-containing protein|protein WS-3 13 0.001779 9.05 1 1 +10672 GNA13 G protein subunit alpha 13 17 protein-coding G13 guanine nucleotide-binding protein subunit alpha-13|g alpha-13|guanine nucleotide binding protein (G protein), alpha 13 35 0.004791 10.88 1 1 +10673 TNFSF13B tumor necrosis factor superfamily member 13b 13 protein-coding BAFF|BLYS|CD257|DTL|TALL-1|TALL1|THANK|TNFSF20|TNLG7A|ZTNF4 tumor necrosis factor ligand superfamily member 13B|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 13b|tumor necrosis factor (ligand) superfamily, member 20|tumor necrosis factor ligand 7A|tumor necrosis factor-like protein ZTNF4 24 0.003285 5.421 1 1 +10675 CSPG5 chondroitin sulfate proteoglycan 5 3 protein-coding NGC chondroitin sulfate proteoglycan 5|acidic leucine-rich EGF-like domain-containing brain protein|chondroitin sulfate proteoglycan 5 (neuroglycan C) 43 0.005886 5.521 1 1 +10677 AVIL advillin 12 protein-coding ADVIL|DOC6|p92 advillin 42 0.005749 5.183 1 1 +10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 2 protein-coding 3-Gn-T1|3-Gn-T2|B3GN-T2|B3GNT|B3GNT-2|B3GNT1|BETA3GNT|BGNT2|BGnT-2|beta-1|beta3Gn-T1|beta3Gn-T2 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase 2|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1|beta-1,3-N-acetylglucosaminyltransferase bGnT-1|beta-1,3-N-acetylglucosaminyltransferase bGnT-2 32 0.00438 9.344 1 1 +10681 GNB5 G protein subunit beta 5 15 protein-coding GB5 guanine nucleotide-binding protein subunit beta-5|G protein, beta subunit 5L|G protein, beta-5 subunit|gbeta5|guanine nucleotide binding protein (G protein), beta 5|guanine nucleotide-binding protein, beta subunit 5L|transducin beta chain 5 36 0.004927 9.086 1 1 +10682 EBP emopamil binding protein (sterol isomerase) X protein-coding CDPX2|CHO2|CPX|CPXD|MEND 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 8-isomerase 13 0.001779 9.898 1 1 +10683 DLL3 delta like canonical Notch ligand 3 19 protein-coding SCDO1 delta-like protein 3|delta-like 3|delta3|drosophila Delta homolog 3 35 0.004791 3.471 1 1 +10686 CLDN16 claudin 16 3 protein-coding HOMG3|PCLN1 claudin-16|PCLN-1|hypomagnesemia 3, with hypercalciuria and nephrocalcinosis|paracellin-1 39 0.005338 2.335 1 1 +10687 PNMA2 paraneoplastic Ma antigen 2 8 protein-coding MA2|MM2|RGAG2 paraneoplastic antigen Ma2|40 kDa neuronal protein|onconeuronal antigen MA2|paraneoplastic neuronal antigen MM2|retrotransposon gag domain containing 2 34 0.004654 6.824 1 1 +10690 FUT9 fucosyltransferase 9 6 protein-coding Fuc-TIX alpha-(1,3)-fucosyltransferase 9|fucT-IX|fucosyltransferase 9 (alpha (1,3) fucosyltransferase)|fucosyltransferase IX|galactoside 3-L-fucosyltransferase 68 0.009307 3.169 1 1 +10691 GMEB1 glucocorticoid modulatory element binding protein 1 1 protein-coding P96PIF|PIF96 glucocorticoid modulatory element-binding protein 1|DNA-binding protein p96PIF|PIF p96|parvovirus initiation factor p96 32 0.00438 7.217 1 1 +10692 RRH retinal pigment epithelium-derived rhodopsin homolog 4 protein-coding - visual pigment-like receptor peropsin|peropsin 19 0.002601 1.44 1 1 +10693 CCT6B chaperonin containing TCP1 subunit 6B 17 protein-coding CCT-zeta-2|CCTZ-2|Cctz2|TCP-1-zeta-2|TSA303 T-complex protein 1 subunit zeta-2|chaperonin containing TCP1, subunit 6B (zeta 2)|chaperonin-containing T-complex polypeptide 1, subunit 6B|testis-specific Tcp20|testis-specific protein TSA303 43 0.005886 5.253 1 1 +10694 CCT8 chaperonin containing TCP1 subunit 8 21 protein-coding C21orf112|Cctq|D21S246|PRED71 T-complex protein 1 subunit theta|CCT-theta|TCP-1-theta|chaperonin containing TCP1, subunit 8 (theta)|renal carcinoma antigen NY-REN-15 32 0.00438 11.76 1 1 +10695 CNPY3 canopy FGF signaling regulator 3 6 protein-coding CAG4A|ERDA5|PRAT4A|TNRC5 protein canopy homolog 3|CAG repeat containing|CTG repeat protein 4a|expanded repeat-domain protein CAG/CTG 5|protein associated with TLR4|protein associated with Toll-like receptor 4A|trinucleotide repeat-containing gene 5 protein 34 0.004654 10.68 1 1 +10699 CORIN corin, serine peptidase 4 protein-coding ATC2|CRN|Lrp4|PEE5|TMPRSS10 atrial natriuretic peptide-converting enzyme|heart-specific serine proteinase ATC2|pro-ANP-convertase|pro-ANP-converting enzyme|transmembrane protease serine 10 90 0.01232 4.447 1 1 +10712 FAM189B family with sequence similarity 189 member B 1 protein-coding C1orf2|COTE1 protein FAM189B 44 0.006022 9.606 1 1 +10713 USP39 ubiquitin specific peptidase 39 2 protein-coding 65K|CGI-21|HSPC332|SAD1|SNRNP65 U4/U6.U5 tri-snRNP-associated protein 2|SAD1 homolog|SnRNP assembly defective 1 homolog|U4/U6.U5 tri-snRNP-associated 65 kDa protein|inactive ubiquitin-specific peptidase 39|small nuclear ribonucleoprotein 65kDa (U4/U6.U5)|ubiquitin specific protease 39 30 0.004106 10.19 1 1 +10714 POLD3 DNA polymerase delta 3, accessory subunit 11 protein-coding P66|P68|PPP1R128 DNA polymerase delta subunit 3|DNA polymerase delta subunit p66|Pol delta C subunit (p66)|polymerase (DNA) delta 3, accessory subunit|polymerase (DNA-directed), delta 3, accessory subunit|protein phosphatase 1, regulatory subunit 128 29 0.003969 8.748 1 1 +10715 CERS1 ceramide synthase 1 19 protein-coding EPM8|LAG1|LASS1|UOG1 ceramide synthase 1|longevity assurance (LAG1, S. cerevisiae) homolog 1|longevity assurance gene 1 protein homolog 1|protein UOG-1|upstream of GDF1 10 0.001369 4.708 1 1 +10716 TBR1 T-box, brain 1 2 protein-coding TBR-1|TES-56 T-box brain protein 1|T-brain-1 51 0.006981 0.8483 1 1 +10717 AP4B1 adaptor related protein complex 4 beta 1 subunit 1 protein-coding BETA-4|CPSQ5|SPG47 AP-4 complex subunit beta-1|AP-4 adaptor complex subunit beta|beta 4 subunit of AP-4|beta4-adaptin|spastic paraplegia 47 49 0.006707 8.393 1 1 +10718 NRG3 neuregulin 3 10 protein-coding HRG3|pro-NRG3 pro-neuregulin-3, membrane-bound isoform|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 122 0.0167 2.979 1 1 +10720 UGT2B11 UDP glucuronosyltransferase family 2 member B11 4 protein-coding - UDP-glucuronosyltransferase 2B11|UDP glucuronosyltransferase 2 family, polypeptide B11|UDP glycosyltransferase 2 family protein|UDP glycosyltransferase 2 family, polypeptide B11|UDPGT 2B11 66 0.009034 1.365 1 1 +10721 POLQ DNA polymerase theta 3 protein-coding PRO0327 DNA polymerase theta|polymerase (DNA directed), theta|polymerase (DNA) theta 225 0.0308 6.308 1 1 +10723 SLC12A7 solute carrier family 12 member 7 5 protein-coding KCC4 solute carrier family 12 member 7|K-Cl cotransporter 4|electroneutral potassium-chloride cotransporter 4|potassium/chloride transporter KCC4|solute carrier family 12 (potassium/chloride transporter), member 7|solute carrier family 12 (potassium/chloride transporters), member 7 103 0.0141 10.65 1 1 +10724 MGEA5 meningioma expressed antigen 5 (hyaluronidase) 10 protein-coding MEA5|NCOAT|OGA protein O-GlcNAcase|N-acetyl-beta-D-glucosaminidase|N-acetyl-beta-glucosaminidase|O-GlcNAcase|beta-N-acetylglucosaminidase|beta-N-acetylhexosaminidase|beta-hexosaminidase|bifunctional protein NCOAT|hyaluronidase in meningioma|meningioma-expressed antigen 5|nuclear cytoplasmic O-GlcNAcase and acetyltransferase 60 0.008212 11.53 1 1 +10725 NFAT5 nuclear factor of activated T-cells 5 16 protein-coding NF-AT5|NFATL1|NFATZ|OREBP|TONEBP nuclear factor of activated T-cells 5|NFAT-like protein 1|T-cell transcription factor NFAT5|TonE-binding protein|glutamine rich protein H65|nuclear factor of activated T-cells 5, tonicity-responsive|osmotic response element-binding protein|tonicity-responsive enhancer-binding protein 78 0.01068 10.4 1 1 +10726 NUDC nuclear distribution C, dynein complex regulator 1 protein-coding HNUDC|MNUDC|NPD011 nuclear migration protein nudC|nuclear distribution C homolog|nuclear distribution gene C homolog|nuclear distribution protein C homolog|nudC nuclear distribution protein 24 0.003285 11.22 1 1 +10728 PTGES3 prostaglandin E synthase 3 12 protein-coding P23|TEBP|cPGES prostaglandin E synthase 3|Hsp90 co-chaperone|cytosolic prostaglandin E synthase|cytosolic prostaglandin E2 synthase|progesterone receptor complex p23|prostaglandin E synthase 3 (cytosolic)|telomerase-binding protein p23|unactive progesterone receptor, 23 kD 12 0.001642 12.57 1 1 +10730 YME1L1 YME1 like 1 ATPase 10 protein-coding FTSH|MEG4|PAMP|YME1L ATP-dependent zinc metalloprotease YME1L1|ATP-dependent metalloprotease FtsH1 homolog|YME1-like protein 1|meg-4|presenilin-associated metalloprotease 57 0.007802 11.5 1 1 +10732 TCFL5 transcription factor like 5 20 protein-coding CHA|E2BP-1|Figlb|SOSF1|bHLHe82 transcription factor-like 5 protein|HPV-16 E2-binding protein 1|cha transcription factor|spermatogenesis- and oogenesis-specific bHLH-containing protein 1|transcription factor-like 5 (basic helix-loop-helix) 30 0.004106 8.498 1 1 +10733 PLK4 polo like kinase 4 4 protein-coding MCCRP2|SAK|STK18 serine/threonine-protein kinase PLK4|Snk akin kinase|serine/threonine-protein kinase 18|serine/threonine-protein kinase Sak 62 0.008486 7.112 1 1 +10734 STAG3 stromal antigen 3 7 protein-coding - cohesin subunit SA-3|SCC3 homolog 3|stromalin-3 85 0.01163 5.048 1 1 +10735 STAG2 stromal antigen 2 X protein-coding SA-2|SA2|SCC3B|bA517O1.1 cohesin subunit SA-2|SCC3 homolog 2 163 0.02231 11.12 1 1 +10736 SIX2 SIX homeobox 2 2 protein-coding - homeobox protein SIX2|sine oculis homeobox homolog 2 22 0.003011 4.996 1 1 +10737 RFPL3S RFPL3 antisense 22 ncRNA NCRNA00005|RFPL3-AS|RFPL3-AS1|RFPL3ANT|RFPL3AS RFPL3 antisense RNA 1 (non-protein coding)|non-protein coding RNA 5|ret finger protein-like 3 antisense 0 0 2.572 1 1 +10738 RFPL3 ret finger protein like 3 22 protein-coding - ret finger protein-like 3 39 0.005338 0.4177 1 1 +10739 RFPL2 ret finger protein like 2 22 protein-coding RNF79 ret finger protein-like 2|RING finger protein 79 42 0.005749 1.767 1 1 +10740 RFPL1S RFPL1 antisense RNA 1 22 ncRNA NCRNA00006|RFPL1-AS|RFPL1-AS1|RFPL1AS RFPL1 antisense RNA 1 (non-protein coding)|non-protein coding RNA 6 19 0.002601 3.515 1 1 +10741 RBBP9 RB binding protein 9, serine hydrolase 20 protein-coding BOG|RBBP10 putative hydrolase RBBP9|B5T overexpressed gene protein|RBBP-10|RBBP-9|retinoblastoma-binding protein 10|retinoblastoma-binding protein 9|retinoma-binding protein 9 14 0.001916 9.374 1 1 +10742 RAI2 retinoic acid induced 2 X protein-coding - retinoic acid-induced protein 2 41 0.005612 7.625 1 1 +10743 RAI1 retinoic acid induced 1 17 protein-coding SMCR|SMS retinoic acid-induced protein 1|Smith-Magenis syndrome chromosome region 121 0.01656 10.16 1 1 +10744 PTTG2 pituitary tumor-transforming 2 4 protein-coding - securin-2|pituitary tumor-transforming gene 2 protein 14 0.001916 1.152 1 1 +10745 PHTF1 putative homeodomain transcription factor 1 1 protein-coding PHTF putative homeodomain transcription factor 1 52 0.007117 7.953 1 1 +10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 2 protein-coding MEKK2|MEKK2B mitogen-activated protein kinase kinase kinase 2|MAP/ERK kinase kinase 2|MAPK/ERK kinase kinase 2|MEK kinase 2|MEKK 2 43 0.005886 8.824 1 1 +10747 MASP2 mannan binding lectin serine peptidase 2 1 protein-coding MAP19|MASP-2|MASP1P1|sMAP mannan-binding lectin serine protease 2|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|mannose-binding protein-associated serine protease 2|small MBL-associated protein 45 0.006159 4.114 1 1 +10748 KLRA1P killer cell lectin like receptor A1, pseudogene 12 pseudo KLRA1|KLRAP1|LY49L|Ly-49L|Ly49 killer cell lectin-like receptor subfamily A pseudogene 1|killer cell lectin-like receptor subfamily A, member 1, pseudogene 14 0.001916 4.477 1 1 +10749 KIF1C kinesin family member 1C 17 protein-coding LTXS1|SATX2|SAX2|SPAX2|SPG58 kinesin-like protein KIF1C|spastic ataxia 2 (autosomal recessive) 54 0.007391 11.55 1 1 +10750 GRAP GRB2-related adaptor protein 17 protein-coding - GRB2-related adapter protein|growth factor receptor-bound protein 2-related adaptor protein 5 0.0006844 6.886 1 1 +10752 CHL1 cell adhesion molecule L1 like 3 protein-coding CALL|L1CAM2 neural cell adhesion molecule L1-like protein|L1 cell adhesion molecule 2|cell adhesion molecule with homology to L1CAM (close homolog of L1)|cell adhesion molecule with homology to L1CAM (close homologue of L1)|close homolog of L1 159 0.02176 6.475 1 1 +10753 CAPN9 calpain 9 1 protein-coding GC36|nCL-4 calpain-9|digestive tract-specific calpain|new calpain 4|novel calpain large subunit-4 50 0.006844 3.168 1 1 +10755 GIPC1 GIPC PDZ domain containing family member 1 19 protein-coding C19orf3|GIPC|GLUT1CBP|Hs.6454|IIP-1|NIP|RGS19IP1|SEMCAP|SYNECTIIN|SYNECTIN|TIP-2 PDZ domain-containing protein GIPC1|GAIP C-terminus-interacting protein|GLUT1 C-terminal binding protein|IGF-1 receptor interacting protein 1|RGS-GAIP-interacting protein|RGS19-interacting protein 1|regulator of G-protein signalling 19 interacting protein 1|tax interaction protein 2 34 0.004654 11.29 1 1 +10758 TRAF3IP2 TRAF3 interacting protein 2 6 protein-coding ACT1|C6orf2|C6orf4|C6orf5|C6orf6|CANDF8|CIKS|PSORS13 adapter protein CIKS|NFkB-activating protein ACT1|connection to IKK and SAPK/JNK|nuclear factor NF-kappa-B activator 1 31 0.004243 9.288 1 1 +10761 PLAC1 placenta specific 1 X protein-coding CT92|OOSP2L placenta-specific protein 1|cancer/testis antigen 92 18 0.002464 2.422 1 1 +10762 NUP50 nucleoporin 50 22 protein-coding NPAP60|NPAP60L nuclear pore complex protein Nup50|50 kDa nucleoporin|nuclear pore-associated protein 60L|nucleoporin 50kD|nucleoporin 50kDa|nucleoporin Nup50 20 0.002737 10.24 1 1 +10763 NES nestin 1 protein-coding Nbla00170 nestin 149 0.02039 10.36 1 1 +10765 KDM5B lysine demethylase 5B 1 protein-coding CT31|JARID1B|PLU-1|PLU1|PPP1R98|PUT1|RBBP2H1A|RBP2-H1 lysine-specific demethylase 5B|cancer/testis antigen 31|histone demethylase JARID1B|jumonji, AT rich interactive domain 1B|jumonji/ARID domain-containing protein 1B|lysine (K)-specific demethylase 5B|protein phosphatase 1, regulatory subunit 98|putative DNA/chromatin binding motif|retinoblastoma-binding protein 2 homolog 1|retinoblastoma-binding protein 2, homolog 1A 104 0.01423 10.81 1 1 +10766 TOB2 transducer of ERBB2, 2 22 protein-coding APRO5|TOB4|TOBL|TROB2 protein Tob2|protein Tob4|transducer of erbB-2 2 23 0.003148 10.73 1 1 +10767 HBS1L HBS1 like translational GTPase 6 protein-coding EF-1a|ERFS|HBS1|HSPC276|eRF3c HBS1-like protein|ERF3-similar protein|Hsp70 subfamily B suppressor 1-like protein|eRF3 family member 49 0.006707 9.78 1 1 +10768 AHCYL1 adenosylhomocysteinase like 1 1 protein-coding DCAL|IRBIT|PPP1R78|PRO0233|XPVKONA adenosylhomocysteinase 2|DC-expressed AHCY-like molecule|IP(3)Rs binding protein released with IP(3)|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|protein phosphatase 1, regulatory subunit 78|putative adenosylhomocysteinase 2 39 0.005338 11.69 1 1 +10769 PLK2 polo like kinase 2 5 protein-coding SNK|hPlk2|hSNK serine/threonine-protein kinase PLK2|PLK-2|serine/threonine-protein kinase SNK|serum-inducible kinase 40 0.005475 9.683 1 1 +10771 ZMYND11 zinc finger MYND-type containing 11 10 protein-coding BRAM1|BS69|MRD30 zinc finger MYND domain-containing protein 11|adenovirus 5 E1A-binding protein|bone morphogenetic protein receptor-associated molecule 1 41 0.005612 10.79 1 1 +10772 SRSF10 serine and arginine rich splicing factor 10 1 protein-coding FUSIP1|FUSIP2|NSSR|PPP1R149|SFRS13|SFRS13A|SRp38|SRrp40|TASR|TASR1|TASR2 serine/arginine-rich splicing factor 10|40 kDa SR-repressor protein|FUS interacting protein (serine-arginine rich) 1|FUS-interacting protein (serine-arginine rich) 2|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|protein phosphatase 1, regulatory subunit 149|serine-arginine repressor protein (40 kDa)|splicing factor SRp38|splicing factor, arginine/serine-rich 13|splicing factor, arginine/serine-rich 13A 1 0.0001369 10.53 1 1 +10773 ZBTB6 zinc finger and BTB domain containing 6 9 protein-coding ZID|ZNF482 zinc finger and BTB domain-containing protein 6|zinc finger protein 482|zinc finger protein with interaction domain 29 0.003969 8.194 1 1 +10775 POP4 POP4 homolog, ribonuclease P/MRP subunit 19 protein-coding RPP29 ribonuclease P protein subunit p29|hPOP4 11 0.001506 9.313 1 1 +10776 ARPP19 cAMP regulated phosphoprotein 19 15 protein-coding ARPP-16|ARPP-19|ARPP16|ENSAL cAMP-regulated phosphoprotein 19|cAMP-regulated phosphoprotein 19kDa|cyclic AMP phosphoprotein, 19 kD 8 0.001095 11.74 1 1 +10777 ARPP21 cAMP regulated phosphoprotein 21 3 protein-coding ARPP-21|R3HDM3|RCS|TARPP cAMP-regulated phosphoprotein 21|R3H domain containing 3|cAMP regulated phosphoprotein 21kDa|cyclic AMP-regulated phosphoprotein, 21 kD|thymocyte cAMP-regulated phosphoprotein 122 0.0167 1.989 1 1 +10778 ZNF271P zinc finger protein 271, pseudogene 18 pseudo CT-ZFP48|HZF7|ZNF-EB|ZNF-dp|ZNF271|ZNFEB C2H2 (Kruppel-type) zinc finger protein pseudogene|EBV-induced zinc finger protein|Zinc finger protein HZF7|Zinc finger protein ZNFphex133|Zinc finger protein dp|epstein-barr virus-induced zinc finger protein 46 0.006296 9.141 1 1 +10780 ZNF234 zinc finger protein 234 19 protein-coding HZF4|ZNF269 zinc finger protein 234|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 62 0.008486 7.178 1 1 +10781 ZNF266 zinc finger protein 266 19 protein-coding HZF1 zinc finger protein 266|zinc finger protein 1|zinc finger protein HZF1 43 0.005886 9.131 1 1 +10782 ZNF274 zinc finger protein 274 19 protein-coding HFB101|ZF2|ZKSCAN19|ZSCAN51 neurotrophin receptor-interacting factor homolog|KRAB zinc finger protein HFB101|zinc finger protein HFB101|zinc finger protein with KRAB and SCAN domains 19|zinc finger protein zfp2 40 0.005475 8.724 1 1 +10783 NEK6 NIMA related kinase 6 9 protein-coding SID6-1512 serine/threonine-protein kinase Nek6|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 22 0.003011 9.539 1 1 +10785 WDR4 WD repeat domain 4 21 protein-coding TRM82|TRMT82 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit WDR4|TRM82 tRNA methyltransferase 82 homolog|WD repeat-containing protein 4|tRNA (guanine-N(7)-)-methyltransferase subunit WDR4 26 0.003559 7.659 1 1 +10786 SLC17A3 solute carrier family 17 member 3 6 protein-coding GOUT4|NPT4|UAQTL4 sodium-dependent phosphate transport protein 4|Na(+)/PI cotransporter 4|sodium/phosphate cotransporter 4|solute carrier family 17 (organic anion transporter), member 3|solute carrier family 17 (sodium phosphate), member 3 63 0.008623 1.191 1 1 +10787 NCKAP1 NCK associated protein 1 2 protein-coding HEM2|NAP1|NAP125|p125Nap1 nck-associated protein 1|membrane-associated protein HEM-2 78 0.01068 11.87 1 1 +10788 IQGAP2 IQ motif containing GTPase activating protein 2 5 protein-coding - ras GTPase-activating-like protein IQGAP2 107 0.01465 8.783 1 1 +10791 VAMP5 vesicle associated membrane protein 5 2 protein-coding - vesicle-associated membrane protein 5|VAMP-5|myobrevin 12 0.001642 8.802 1 1 +10793 ZNF273 zinc finger protein 273 7 protein-coding HZF9 zinc finger protein 273|zinc finger protein 9|zinc finger protein HZF9 45 0.006159 7.013 1 1 +10794 ZNF460 zinc finger protein 460 19 protein-coding HZF8|ZNF272 zinc finger protein 460|zinc finger protein 272|zinc finger protein HZF8 51 0.006981 5.512 1 1 +10795 ZNF268 zinc finger protein 268 12 protein-coding HZF3 zinc finger protein 268|zinc finger protein 3|zinc finger protein HZF3 42 0.005749 8.18 1 1 +10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase 2 protein-coding NMDMC bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial|NAD-dependent methylene tetrahydrofolate dehydrogenase cyclohydrolase 30 0.004106 9.971 1 1 +10798 OR5I1 olfactory receptor family 5 subfamily I member 1 11 protein-coding HSOlf1|OLF1 olfactory receptor 5I1|olfactory receptor OR11-159|olfactory receptor-like protein OLF1 78 0.01068 0.006278 1 1 +10799 RPP40 ribonuclease P/MRP subunit p40 6 protein-coding RNASEP1|bA428J1.3 ribonuclease P protein subunit p40|RNase P subunit 1|RNaseP protein p40|ribonuclease P (40 kD)|ribonuclease P, 40kD subunit|ribonuclease P/MRP 40kDa subunit|ribonuclease P1 26 0.003559 6.941 1 1 +10800 CYSLTR1 cysteinyl leukotriene receptor 1 X protein-coding CYSLT1|CYSLT1R|CYSLTR|HMTMF81 cysteinyl leukotriene receptor 1|G-protein coupled receptor HG55|LTD4 receptor|cysteinyl leukotriene D4 receptor 40 0.005475 4.384 1 1 +10801 SEPT9 septin 9 17 protein-coding AF17q25|MSF|MSF1|NAPB|PNUTL4|SINT1|SeptD1 septin-9|MLL septin-like fusion protein MSF-A|Ov/Br septin|ovarian/breast septin|septin D1 44 0.006022 12.73 1 1 +10802 SEC24A SEC24 homolog A, COPII coat complex component 5 protein-coding - protein transport protein Sec24A|SEC24 family, member A|SEC24 related gene family, member A|SEC24-related protein A 64 0.00876 9.629 1 1 +10803 CCR9 C-C motif chemokine receptor 9 3 protein-coding CC-CKR-9|CDw199|GPR-9-6|GPR28 C-C chemokine receptor type 9|G protein-coupled receptor 28|chemokine (C-C motif) receptor 9 23 0.003148 1.289 1 1 +10804 GJB6 gap junction protein beta 6 13 protein-coding CX30|DFNA3|DFNA3B|DFNB1B|ECTD2|ED2|EDH|HED|HED2 gap junction beta-6 protein|connexin 30|ectodermal dysplasia 2, hidrotic (Clouston syndrome)|gap junction protein, beta 6 (connexin 30)|gap junction protein, beta 6, 30kDa 20 0.002737 4.368 1 1 +10806 SDCCAG8 serologically defined colon cancer antigen 8 1 protein-coding BBS16|CCCAP|CCCAP SLSN7|HSPC085|NPHP10|NY-CO-8|SLSN7|hCCCAP serologically defined colon cancer antigen 8|Bardet-Biedl syndrome 16|Senior-Loken syndrome 7|antigen NY-CO-8|centrosomal colon cancer autoantigen protein|nephrocystin 10 64 0.00876 8.893 1 1 +10807 SDCCAG3 serologically defined colon cancer antigen 3 9 protein-coding NY-CO-3 serologically defined colon cancer antigen 3|antigen NY-CO-3 33 0.004517 9.383 1 1 +10808 HSPH1 heat shock protein family H (Hsp110) member 1 13 protein-coding HSP105|HSP105A|HSP105B|NY-CO-25 heat shock protein 105 kDa|antigen NY-CO-25|heat shock 105kD alpha|heat shock 105kD beta|heat shock 105kDa/110kDa protein 1 50 0.006844 11.25 1 1 +10809 STARD10 StAR related lipid transfer domain containing 10 11 protein-coding CGI-52|NY-CO-28|PCTP2|SDCCAG28 PCTP-like protein|PCTP-L|START domain containing 10|START domain-containing protein 10|StAR-related lipid transfer (START) domain containing 10|antigen NY-CO-28|serologically defined colon cancer antigen 28|stAR-related lipid transfer protein 10 21 0.002874 10.51 1 1 +10810 WASF3 WAS protein family member 3 13 protein-coding Brush-1|SCAR3|WAVE3 wiskott-Aldrich syndrome protein family member 3|WASP family Verprolin-homologous protein 3|protein WAVE-3|verprolin homology domain-containing protein 3 70 0.009581 7.617 1 1 +10811 NOXA1 NADPH oxidase activator 1 9 protein-coding NY-CO-31|SDCCAG31|p51NOX NADPH oxidase activator 1|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 23 0.003148 6.724 1 1 +10813 UTP14A UTP14A small subunit processome component X protein-coding NYCO16|SDCCAG16|dJ537K23.3 U3 small nucleolar RNA-associated protein 14 homolog A|UTP14, U3 small nucleolar ribonucleoprotein, homolog A|UTP14A small subunit (SSU) processome component|antigen NY-CO-16|serologically defined colon cancer antigen 16 60 0.008212 9.015 1 1 +10814 CPLX2 complexin 2 5 protein-coding 921-L|CPX-2|CPX2|Hfb1 complexin-2|CPX II|complexin II|synaphin 1 12 0.001642 3.369 1 1 +10815 CPLX1 complexin 1 4 protein-coding CPX-I|CPX1 complexin-1|CPX I|complexin I|synaphin 2 15 0.002053 6.369 1 1 +10816 SPINT3 serine peptidase inhibitor, Kunitz type 3 20 protein-coding HKIB9 kunitz-type protease inhibitor 3|serine protease inhibitor, Kunitz type, 3 4 0.0005475 0.05437 1 1 +10817 FRS3 fibroblast growth factor receptor substrate 3 6 protein-coding FRS2-beta|FRS2B|FRS2beta|SNT-2|SNT2 fibroblast growth factor receptor substrate 3|FGFR substrate 3|FGFR-signaling adaptor SNT2|suc1-associated neurotrophic factor target 2 (FGFR signalling adaptor)|testicular tissue protein Li 71 46 0.006296 7.064 1 1 +10818 FRS2 fibroblast growth factor receptor substrate 2 12 protein-coding FRS1A|FRS2A|FRS2alpha|SNT|SNT-1|SNT1 fibroblast growth factor receptor substrate 2|FGFR signalling adaptor|FGFR substrate 2|FGFR-signaling adaptor SNT|suc1-associated neurotrophic factor target 1 37 0.005064 9.444 1 1 +10819 OR7E14P olfactory receptor family 7 subfamily E member 14 pseudogene 11 pseudo OR11-5|OR7E151P - 2 0.0002737 1 0 +10824 DIAPH2-AS1 DIAPH2 antisense RNA 1 X ncRNA EPAG DIAPH2 antisense RNA 1 (non-protein coding)|early lymphoid activation protein 1 0.0001369 1 0 +10825 NEU3 neuraminidase 3 11 protein-coding SIAL3 sialidase-3|N-acetyl-alpha-neuraminidase 3|ganglioside sialidase|membrane sialidase|neuraminidase 3 (membrane sialidase)|sialidase 3 (membrane sialidase) 28 0.003832 6.088 1 1 +10826 FAXDC2 fatty acid hydroxylase domain containing 2 5 protein-coding C5orf4 fatty acid hydroxylase domain-containing protein 2 14 0.001916 8.616 1 1 +10827 FAM114A2 family with sequence similarity 114 member A2 5 protein-coding 133K02|C5orf3 protein FAM114A2|testis tissue sperm-binding protein Li 81P 41 0.005612 8.503 1 1 +10838 ZNF275 zinc finger protein 275 X protein-coding - zinc finger protein 275 25 0.003422 9.325 1 1 +10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 3 protein-coding 10-FTHFDH|10-fTHF|FDH|FTHFD cytosolic 10-formyltetrahydrofolate dehydrogenase|10-formyltetrahydrofolate dehydrogenase|MER57B-ALDH1L1 89 0.01218 6.548 1 1 +10841 FTCD formimidoyltransferase cyclodeaminase 21 protein-coding LCHC1 formimidoyltransferase-cyclodeaminase|formiminotransferase-cyclodeaminase 51 0.006981 2.788 1 1 +10842 PPP1R17 protein phosphatase 1 regulatory subunit 17 7 protein-coding C7orf16|GSBS protein phosphatase 1 regulatory subunit 17|G-substrate 30 0.004106 0.8041 1 1 +10844 TUBGCP2 tubulin gamma complex associated protein 2 10 protein-coding GCP-2|GCP2|Grip103|SPBC97|Spc97p|h103p|hGCP2|hSpc97 gamma-tubulin complex component 2|gamma-ring complex protein 103 kDa|hGrip103|spindle pole body protein Spc97 homolog 52 0.007117 10.61 1 1 +10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit 15 protein-coding - ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial|ClpX caseinolytic peptidase X homolog|ClpX caseinolytic protease X homolog|energy-dependent regulator of proteolysis 28 0.003832 9.416 1 1 +10846 PDE10A phosphodiesterase 10A 6 protein-coding ADSD2|HSPDE10A|IOLOD|LINC00473|PDE10A19 cAMP and cAMP-inhibited cGMP 3',5'-cyclic phosphodiesterase 10A|3',5' cAMP/cGMP phosphodiesterase|dJ416F21.1 (phosphodiesterase 10A)|phosphodiesterase 10A1 (PDE10A1)|phosphodiesterase 10A7 (PDE10A7) 125 0.01711 6.518 1 1 +10847 SRCAP Snf2 related CREBBP activator protein 16 protein-coding DOMO1|EAF1|FLHS|SWR1 helicase SRCAP|Snf2-related CBP activator protein|Swi2/Snf2-related ATPase homolog, domino homolog 1|domino homolog 2 264 0.03613 11.77 1 1 +10848 PPP1R13L protein phosphatase 1 regulatory subunit 13 like 19 protein-coding IASPP|NKIP1|RAI|RAI4 relA-associated inhibitor|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|retinoic acid induced 4 55 0.007528 9.389 1 1 +10849 CD3EAP CD3e molecule associated protein 19 protein-coding ASE-1|ASE1|CAST|PAF49 DNA-directed RNA polymerase I subunit RPA34|CD3e antigen, epsilon polypeptide associated protein|CD3e molecule, epsilon associated protein|RNA polymerase I-associated factor PAF49|antisense to ERCC-1 protein 39 0.005338 8.797 1 1 +10850 CCL27 C-C motif chemokine ligand 27 9 protein-coding ALP|CTACK|CTAK|ESKINE|ILC|PESKY|SCYA27 C-C motif chemokine 27|CC chemokine ILC|IL-11 R-alpha-locus chemokine|IL-11 Ralpha-locus chemokine|chemokine (C-C motif) ligand 27|cutaneous T-cell attracting chemokine|skinkine|small inducible cytokine subfamily A (Cys-Cys), member 27|small-inducible cytokine A27 6 0.0008212 0.5619 1 1 +10855 HPSE heparanase 4 protein-coding HPA|HPA1|HPR1|HPSE1|HSE1 heparanase|endo-glucoronidase|heparanase-1 38 0.005201 5.873 1 1 +10856 RUVBL2 RuvB like AAA ATPase 2 19 protein-coding CGI-46|ECP-51|ECP51|INO80J|REPTIN|RVB2|TAP54-beta|TIH2|TIP48|TIP49B ruvB-like 2|48 kDa TATA box-binding protein-interacting protein|48 kDa TBP-interacting protein|51 kDa erythrocyte cytosolic protein|INO80 complex subunit J|RuvB (E coli homolog)-like 2|TIP60-associated protein 54-beta|erythrocyte cytosolic protein, 51-KD|repressing pontin 52|reptin52 protein 30 0.004106 10.87 1 1 +10857 PGRMC1 progesterone receptor membrane component 1 X protein-coding HPR6.6|MPR membrane-associated progesterone receptor component 1|progesterone binding protein 18 0.002464 11.55 1 1 +10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 14 protein-coding CP46|CYP46 cholesterol 24-hydroxylase|CH24H|cytochrome P450 46A1|cytochrome P450, family 46, subfamily A, polypeptide 1|cytochrome P450, subfamily 46 (cholesterol 24-hydroxylase) 42 0.005749 4.206 1 1 +10859 LILRB1 leukocyte immunoglobulin like receptor B1 19 protein-coding CD85J|ILT-2|ILT2|LIR-1|LIR1|MIR-7|MIR7|PIR-B|PIRB leukocyte immunoglobulin-like receptor subfamily B member 1|CD85 antigen-like family member J|Ig-like transcript 2|leucocyte Ig-like receptor B1|leukocyte immunoglobulin-like receptor subfamily B member 1 soluble isoform|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 1|monocyte/macrophage immunoglobulin-like receptor 7|myeloid inhibitory receptor 7 127 0.01738 6.403 1 1 +10861 SLC26A1 solute carrier family 26 member 1 4 protein-coding CAON|EDM4|SAT-1|SAT1 sulfate anion transporter 1|solute carrier family 26 (anion exchanger), member 1|solute carrier family 26 (sulfate transporter), member 1|sulfate anion tranporter AT1|sulfate/anion transporter SAT-1 protein 27 0.003696 5.425 1 1 +10863 ADAM28 ADAM metallopeptidase domain 28 8 protein-coding ADAM 28|MDC-L|MDCL|eMDC II|eMDCII disintegrin and metalloproteinase domain-containing protein 28|epididymal metalloproteinase-like, disintegrin-like, and cysteine-rich protein II|epididymial metalloproteinase-like, disintegrin-like, and cysteine-rich protein II|metalloproteinase-like, disintegrin-like, and cysteine-rich protein-L 80 0.01095 6.506 1 1 +10864 SLC22A7 solute carrier family 22 member 7 6 protein-coding NLT|OAT2 solute carrier family 22 member 7|hOAT2|liver-specific transporter|novel liver transporter|organic anion transporter 2|solute carrier family 22 (organic anion transporter), member 7 41 0.005612 1.197 1 1 +10865 ARID5A AT-rich interaction domain 5A 2 protein-coding MRF-1|MRF1|RP11-363D14 AT-rich interactive domain-containing protein 5A|ARID domain-containing protein 5A|AT rich interactive domain 5A (MRF1-like)|RFVG5814|modulator recognition factor 1|modulator recognition factor I 34 0.004654 9.017 1 1 +10866 HCP5 HLA complex P5 (non-protein coding) 6 ncRNA 6S2650E|D6S2650E|P5-1 HLA class I histocompatibility antigen protein P5|HLA complex protein P5|MHC class I region ORF 17 0.002327 9.254 1 1 +10867 TSPAN9 tetraspanin 9 12 protein-coding NET-5|NET5|PP1057 tetraspanin-9|new EST tetraspan 5|tetraspan NET-5|transmembrane 4 superfamily member tetraspan NET-5|tspan-9 18 0.002464 10.36 1 1 +10868 USP20 ubiquitin specific peptidase 20 9 protein-coding LSFR3A|VDU2|hVDU2 ubiquitin carboxyl-terminal hydrolase 20|deubiquitinating enzyme 20|pVHL-interacting deubiquitinating enzyme 2|ubiquitin thioesterase 20|ubiquitin thiolesterase 20|ubiquitin-specific-processing protease 20 56 0.007665 9.583 1 1 +10869 USP19 ubiquitin specific peptidase 19 3 protein-coding ZMYND9 ubiquitin carboxyl-terminal hydrolase 19|deubiquitinating enzyme 19|ubiquitin specific protease 19|ubiquitin thioesterase 19|ubiquitin thiolesterase 19|ubiquitin-specific-processing protease 19|zinc finger MYND domain-containing protein 9 80 0.01095 10.39 1 1 +10870 HCST hematopoietic cell signal transducer 19 protein-coding DAP10|KAP10|PIK3AP hematopoietic cell signal transducer|DNAX-activation protein 10|kinase assoc pro of ~10kDa|kinase assoc protein|membrane protein DAP10|phosphoinositide-3-kinase adaptor protein|transmembrane adapter protein KAP10 8 0.001095 6.709 1 1 +10871 CD300C CD300c molecule 17 protein-coding CLM-6|CMRF-35|CMRF-35A|CMRF35|CMRF35-A1|CMRF35A|CMRF35A1|IGSF16|LIR CMRF35-like molecule 6|CD300 antigen-like family member C|CD300c antigen|CMRF35 antigen|CMRF35 leukocyte immunoglobulin-like receptor|CMRF35A leukocyte immunoglobulin-like receptor|immunoglobulin superfamily member 16 29 0.003969 4.659 1 1 +10873 ME3 malic enzyme 3 11 protein-coding NADP-ME NADP-dependent malic enzyme, mitochondrial|malate dehydrogenase|malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))|malic enzyme 3, NADP(+)-dependent, mitochondrial|malic enzyme, NADP+-dependent, mitochondrial|mitochondrial NADP(+)-dependent malic enzyme 3|pyruvic-malic carboxylase 47 0.006433 7.581 1 1 +10874 NMU neuromedin U 4 protein-coding - neuromedin-U|prepro-NMU 15 0.002053 4.021 1 1 +10875 FGL2 fibrinogen like 2 7 protein-coding T49|pT49 fibroleukin|fibrinogen-like protein 2 32 0.00438 8.685 1 1 +10876 EDDM3A epididymal protein 3A 14 protein-coding EP3A|FAM12A|HE3-ALPHA|HE3A|HE3ALPHA|RAM1 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|ribonuclease A M1 14 0.001916 0.2822 1 1 +10877 CFHR4 complement factor H related 4 1 protein-coding CFHL4|FHR-4|FHR4 complement factor H-related protein 4 88 0.01204 0.6443 1 1 +10878 CFHR3 complement factor H related 3 1 protein-coding CFHL3|DOWN16|FHR-3|FHR3|HLF4 complement factor H-related protein 3|H factor-like 4|H factor-like protein 3 38 0.005201 2.001 1 1 +10879 SMR3B submaxillary gland androgen regulated protein 3B 4 protein-coding P-B|PBII|PRL3|PROL3|SMR1B submaxillary gland androgen-regulated protein 3B|proline rich 3|proline-rich peptide P-B|proline-rich protein 3|salivary proline-rich protein|submaxillary gland androgen regulated protein 3 homolog B 13 0.001779 0.3994 1 1 +10880 ACTL7B actin like 7B 9 protein-coding Tact1 actin-like protein 7B|actin-like 7-beta|testis tissue sperm-binding protein Li 43a 42 0.005749 0.2269 1 1 +10881 ACTL7A actin like 7A 9 protein-coding - actin-like protein 7A|actin-like 7-alpha|testicular secretory protein Li 3 33 0.004517 0.08224 1 1 +10882 C1QL1 complement C1q like 1 17 protein-coding C1QRF|C1QTNF14|CRF C1q-related factor|C1q and tumor necrosis factor-related protein 14|C1q/TNF-related protein 14|complement component 1, q subcomponent-like 1 16 0.00219 5.36 1 1 +10884 MRPS30 mitochondrial ribosomal protein S30 5 protein-coding MRP-S30|PAP|PDCD9|S30mt 28S ribosomal protein S30, mitochondrial|programmed cell death 9 39 0.005338 9.003 1 1 +10885 WDR3 WD repeat domain 3 1 protein-coding DIP2|UTP12 WD repeat-containing protein 3|dJ776P7.2 (WD repeat domain 3) 60 0.008212 9.541 1 1 +10886 NPFFR2 neuropeptide FF receptor 2 4 protein-coding GPR74|HLWAR77|NPFF2|NPGPR neuropeptide FF receptor 2|G-protein coupled receptor 74|G-protein coupled receptor HLWAR77|neuropeptide FF 2|neuropeptide G-protein coupled receptor 90 0.01232 1.654 1 1 +10887 PROKR1 prokineticin receptor 1 2 protein-coding GPR73|GPR73a|PK-R1|PKR1|ZAQ prokineticin receptor 1|G protein-coupled receptor 73|G protein-coupled receptor ZAQ 46 0.006296 0.6168 1 1 +10888 GPR83 G protein-coupled receptor 83 11 protein-coding GIR|GPR72 probable G-protein coupled receptor 83|G-protein coupled receptor 72|glucocorticoid induced receptor 55 0.007528 2.747 1 1 +10890 RAB10 RAB10, member RAS oncogene family 2 protein-coding - ras-related protein Rab-10|GTP-binding protein RAB10|ras-related GTP-binding protein 17 0.002327 11.78 1 1 +10891 PPARGC1A PPARG coactivator 1 alpha 4 protein-coding LEM6|PGC-1(alpha)|PGC-1alpha|PGC-1v|PGC1|PGC1A|PPARGC1 peroxisome proliferator-activated receptor gamma coactivator 1-alpha|L-PGC-1alpha|PGC-1-alpha|PPAR gamma coactivator variant form|PPARGC-1-alpha|PPARgamma coactivator 1alpha|ligand effect modulator-6|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-NT 94 0.01287 6.392 1 1 +10892 MALT1 MALT1 paracaspase 18 protein-coding IMD12|MLT|MLT1|PCASP1 mucosa-associated lymphoid tissue lymphoma translocation protein 1|MALT lymphoma-associated translocation|MALT1 protease|caspase-like protein|mucosa associated lymphoid tissue lymphoma translocation gene 1|paracaspase|paracaspase-1 43 0.005886 9.03 1 1 +10893 MMP24 matrix metallopeptidase 24 20 protein-coding MMP-24|MMP25|MT-MMP 5|MT-MMP5|MT5-MMP|MT5MMP|MTMMP5 matrix metalloproteinase-24|matrix metallopeptidase 24 (membrane-inserted)|matrix metalloproteinase 24 (membrane-inserted)|membrane-type 5 matrix metalloproteinase|membrane-type matrix metalloproteinase 5 28 0.003832 8.583 1 1 +10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 11 protein-coding CRSBP-1|HAR|LYVE-1|XLKD1 lymphatic vessel endothelial hyaluronic acid receptor 1|cell surface retention sequence binding protein-1|extracellular link domain-containing 1|extracellular link domain-containing protein 1|hyaluronic acid receptor 18 0.002464 5.852 1 1 +10895 PPBPP2 pro-platelet basic protein pseudogene 2 4 pseudo PPBPL2|SPBPBP DNA-binding protein SPBPBP|DNA-binding protein amplifying expression of surfactant protein B|Putative platelet basic protein-like 2|pro-platelet basic protein-like 2 3 0.0004106 0.08515 1 1 +10896 OCLM oculomedin 1 protein-coding TISR oculomedin|trabecular meshwork inducible stretch response protein 2 0.0002737 1.765 1 1 +10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein 11 protein-coding 54TM|FinGER7|YIF1|YIF1P protein YIF1A|54TMp|YIP1-interacting factor homolog A|Yip1 interacting factor homolog A|Yip1p-interacting factor|putative Rab5-interacting protein|putative transmembrane protein 54TMp 32 0.00438 10.46 1 1 +10898 CPSF4 cleavage and polyadenylation specific factor 4 7 protein-coding CPSF30|NAR|NEB-1|NEB1 cleavage and polyadenylation specificity factor subunit 4|CPSF 30 kDa subunit|NS1 effector domain-binding protein 1|cleavage and polyadenylation specific factor 4, 30kDa|cleavage and polyadenylation specificity factor 30 kDa subunit|no arches homolog|no arches-like zinc finger protein 21 0.002874 9.089 1 1 +10899 JTB jumping translocation breakpoint 1 protein-coding HJTB|HSPC222|PAR|hJT protein JTB|jumping translocation breakpoint protein|prostate androgen-regulated protein 16 0.00219 11.39 1 1 +10900 RUNDC3A RUN domain containing 3A 17 protein-coding RAP2IP|RPIP-8|RPIP8 RUN domain-containing protein 3A|RaP2 interacting protein 8|rap2-interacting protein 8 17 0.002327 5.146 1 1 +10901 DHRS4 dehydrogenase/reductase 4 14 protein-coding CR|NRDR|PHCR|PSCD|SCAD-SRL|SDR-SRL|SDR25C1|SDR25C2 dehydrogenase/reductase SDR family member 4|NADPH-dependent carbonyl reductase/NADP-retinol dehydrogenase|NADPH-dependent retinol dehydrogenase/reductase|dehydrogenase/reductase (SDR family) member 4 like 2A|peroxisomal short-chain alcohol dehydrogenase|short chain dehydrogenase/reductase family 25C member 2|short chain dehydrogenase/reductase family 25C, member 1|short-chain dehydrogenase/reductase family member 4 31 0.004243 9.263 1 1 +10902 BRD8 bromodomain containing 8 5 protein-coding SMAP|SMAP2|p120 bromodomain-containing protein 8|skeletal muscle abundant protein 2|thyroid hormone receptor coactivating protein of 120 kDa|trCP120 82 0.01122 9.967 1 1 +10903 MTMR11 myotubularin related protein 11 1 protein-coding CRA myotubularin-related protein 11|cisplatin resistance associated|cisplatin resistance-associated protein|hCRA 59 0.008076 7.998 1 1 +10904 BLCAP bladder cancer associated protein 20 protein-coding BC10 bladder cancer-associated protein|bladder cancer related protein (10kD) 9 0.001232 10.95 1 1 +10905 MAN1A2 mannosidase alpha class 1A member 2 1 protein-coding MAN1B mannosyl-oligosaccharide 1,2-alpha-mannosidase IB|alpha-1,2-mannosidase IB|alpha1,2-mannosidase|processing alpha-1,2-mannosidase IB 49 0.006707 9.17 1 1 +10906 TRAFD1 TRAF-type zinc finger domain containing 1 12 protein-coding FLN29 TRAF-type zinc finger domain-containing protein 1|FLN29 gene product 35 0.004791 9.996 1 1 +10907 TXNL4A thioredoxin like 4A 18 protein-coding BMKS|DIB1|DIM1|SNRNP15|TXNL4|U5-15kD thioredoxin-like protein 4A|DIM1 protein homolog|spliceosomal U5 snRNP-specific 15 kDa protein|thioredoxin-like 4|thioredoxin-like U5 snRNP protein U5-15kD 8 0.001095 9.792 1 1 +10908 PNPLA6 patatin like phospholipase domain containing 6 19 protein-coding BNHS|LNMS|NTE|NTEMND|OMCS|SPG39|iPLA2delta|sws neuropathy target esterase|patatin-like phospholipase domain-containing protein 6 75 0.01027 10.45 1 1 +10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone 13 protein-coding SGT1 protein SGT1 homolog|SGT1, suppressor of G2 allele of SKP1|putative 40-6-3 protein|suppressor of G2 allele of SKP1, S. cerevisiae, homolog of 24 0.003285 9.235 1 1 +10911 UTS2 urotensin 2 1 protein-coding PRO1068|U-II|UCN2|UII urotensin-2|prepro U-II|urotensin II 13 0.001779 1.341 1 1 +10912 GADD45G growth arrest and DNA damage inducible gamma 9 protein-coding CR6|DDIT2|GADD45gamma|GRP17 growth arrest and DNA damage-inducible protein GADD45 gamma|DDIT-2|DNA damage-inducible transcript 2 protein|GADD45-gamma|cytokine-responsive protein CR6|gadd-related protein, 17 kD 7 0.0009581 7.515 1 1 +10913 EDAR ectodysplasin A receptor 2 protein-coding DL|ECTD10A|ECTD10B|ED1R|ED3|ED5|EDA-A1R|EDA1R|EDA3|HRM1 tumor necrosis factor receptor superfamily member EDAR|EDA-A1 receptor|anhidrotic ectodysplasin receptor 1|downless homolog|downless, mouse, homolog of|ectodermal dysplasia receptor|ectodysplasin 1, anhidrotic receptor 48 0.00657 3.395 1 1 +10914 PAPOLA poly(A) polymerase alpha 14 protein-coding PAP poly(A) polymerase alpha|PAP-alpha|polynucleotide adenylyltransferase alpha 51 0.006981 11.74 1 1 +10915 TCERG1 transcription elongation regulator 1 5 protein-coding CA150|TAF2S|Urn1 transcription elongation regulator 1|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 79 0.01081 9.82 1 1 +10916 MAGED2 MAGE family member D2 X protein-coding 11B6|BARTS5|BCG-1|BCG1|HCA10|MAGE-D2 melanoma-associated antigen D2|MAGE-D2 antigen|breast cancer-associated gene 1 protein|hepatocellular carcinoma-associated protein JCL-1|melanoma antigen family D, 2|melanoma antigen family D2 51 0.006981 12.21 1 1 +10917 BTNL3 butyrophilin like 3 5 protein-coding BTN9.1|BTNLR butyrophilin-like protein 3|butyrophilin-like receptor 43 0.005886 1.172 1 1 +10919 EHMT2 euchromatic histone lysine methyltransferase 2 6 protein-coding BAT8|C6orf30|G9A|GAT8|KMT1C|NG36 histone-lysine N-methyltransferase EHMT2|G9A histone methyltransferase|H3-K9-HMTase 3|HLA-B associated transcript 8|ankyrin repeat-containing protein|euchromatic histone-lysine N-methyltransferase 2|histone H3-K9 methyltransferase 3|histone-lysine N-methyltransferase, H3 lysine-9 specific 3|lysine N-methyltransferase 1C 89 0.01218 10.7 1 1 +10920 COPS8 COP9 signalosome subunit 8 2 protein-coding COP9|CSN8|SGN8 COP9 signalosome complex subunit 8|COP9 constitutive photomorphogenic homolog subunit 8|COP9 homolog|JAB1-containing signalosome subunit 8|hCOP9|signalosome subunit 8 7 0.0009581 10.09 1 1 +10921 RNPS1 RNA binding protein with serine rich domain 1 16 protein-coding E5.1 RNA-binding protein with serine-rich domain 1|RNA binding protein with serine-rich domain|RNA-binding protein S1, serine-rich domain|SR protein|SR-related protein LDC2 14 0.001916 11.53 1 1 +10922 FASTK Fas activated serine/threonine kinase 7 protein-coding FAST fas-activated serine/threonine kinase|FAST kinase 30 0.004106 10.55 1 1 +10923 SUB1 SUB1 homolog, transcriptional regulator 5 protein-coding P15|PC4|p14 activated RNA polymerase II transcriptional coactivator p15|SUB1 homolog|activated RNA polymerase II transcription cofactor 4|positive cofactor 4 5 0.0006844 11.63 1 1 +10924 SMPDL3A sphingomyelin phosphodiesterase acid like 3A 6 protein-coding ASM3A|ASML3a|yR36GH4.1 acid sphingomyelinase-like phosphodiesterase 3a|0610010C24Rik|ASM-like phosphodiesterase 3a 22 0.003011 8.111 1 1 +10926 DBF4 DBF4 zinc finger 7 protein-coding ASK|CHIF|DBF4A|ZDBF1 protein DBF4 homolog A|DBF4 homolog|DBF4 zinc finger A|DBF4-type zinc finger-containing protein 1|activator of S phase kinase|chiffon homolog A|zinc finger, DBF-type containing 1 42 0.005749 7.839 1 1 +10927 SPIN1 spindlin 1 9 protein-coding SPIN|TDRD24 spindlin-1|ovarian cancer-related protein|spindlin1 15 0.002053 10.99 1 1 +10928 RALBP1 ralA binding protein 1 18 protein-coding RIP1|RLIP1|RLIP76 ralA-binding protein 1|76 kDa Ral-interacting protein|DNP-SG ATPase|dinitrophenyl S-glutathione ATPase|ral-interacting protein 1 30 0.004106 10.85 1 1 +10929 SRSF8 serine and arginine rich splicing factor 8 11 protein-coding DSM-1|SFRS2B|SRP46 serine/arginine-rich splicing factor 8|SR splicing factor 8|pre-mRNA-splicing factor SRP46|splicing factor, arginine/serine-rich 2B|splicing factor, arginine/serine-rich, 46kD 18 0.002464 10.04 1 1 +10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 6 protein-coding ARCD1|ARP1 C->U-editing enzyme APOBEC-2|apolipoprotein B mRNA editing enzyme, catalytic polypeptide 2|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 2|mRNA(cytosine(6666)) deaminase 2|probable C->U-editing enzyme APOBEC-2 16 0.00219 2.216 1 1 +10933 MORF4L1 mortality factor 4 like 1 15 protein-coding Eaf3|FWP006|HsT17725|MEAF3|MORFRG15|MRG15|S863-6 mortality factor 4-like protein 1|Esa1p-associated factor 3 homolog|MORF-related gene 15 protein|MORF-related gene on chromosome 15|protein MSL3-1|transcription factor-like protein MRG15 32 0.00438 11.77 1 1 +10934 MORF4 mortality factor 4 (pseudogene) 4 pseudo CSR|CSRB|SEN|SEN1 mortality factor 4 like 1 pseudogene|senescence (cellular)-related 1|senescence-related, cellular, 1 0 0 2.233 1 1 +10935 PRDX3 peroxiredoxin 3 10 protein-coding AOP-1|AOP1|HBC189|MER5|PRO1748|SP-22|prx-III thioredoxin-dependent peroxide reductase, mitochondrial|antioxidant protein 1|peroxiredoxin III|protein MER5 homolog 17 0.002327 11.49 1 1 +10936 GPR75 G protein-coupled receptor 75 2 protein-coding GPRchr2|WI31133 probable G-protein coupled receptor 75 37 0.005064 4.408 1 1 +10938 EHD1 EH domain containing 1 11 protein-coding H-PAST|HPAST1|PAST|PAST1 EH domain-containing protein 1|PAST homolog 1|testilin 36 0.004927 10.63 1 1 +10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 18 protein-coding SCA28|SPAX5 AFG3-like protein 2|AFG3 ATPase family gene 3-like 2|AFG3 ATPase family member 3-like 2|AFG3 like AAA ATPase 2|ATPase family gene 3, yeast|paraplegin-like protein 36 0.004927 10.51 1 1 +10940 POP1 POP1 homolog, ribonuclease P/MRP subunit 8 protein-coding - ribonucleases P/MRP protein subunit POP1|hPOP1|processing of precursor 1, ribonuclease P/MRP subunit|processing of precursors 1 74 0.01013 7.514 1 1 +10941 UGT2A1 UDP glucuronosyltransferase family 2 member A1 complex locus 4 protein-coding UDPGT2A1 UDP-glucuronosyltransferase 2A1|UDP glucuronosyltransferase 2 family, polypeptide A1, complex locus|UDP glycosyltransferase 2 family, polypeptide A1|uridine diphosphate glycosyltransferase 2 family, member A1 62 0.008486 0.825 1 1 +10942 PRSS21 protease, serine 21 16 protein-coding ESP-1|ESP1|TEST1|TESTISIN testisin|eosinophil serine protease 1|protease, serine, 21 (testisin)|serine protease from eosinophils 26 0.003559 3.23 1 1 +10943 MSL3 male-specific lethal 3 homolog (Drosophila) X protein-coding MSL3L1 male-specific lethal 3 homolog|MSL3-like 1|male-specific lethal-3 protein-like 1 53 0.007254 9.106 1 1 +10944 C11orf58 chromosome 11 open reading frame 58 11 protein-coding IMAGE145052|SMAP small acidic protein 14 0.001916 11.5 1 1 +10945 KDELR1 KDEL endoplasmic reticulum protein retention receptor 1 19 protein-coding ERD2|ERD2.1|HDEL|PM23 ER lumen protein-retaining receptor 1|KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1|KDEL receptor 1|putative MAPK-activating protein PM23 12 0.001642 12.1 1 1 +10946 SF3A3 splicing factor 3a subunit 3 1 protein-coding PRP9|PRPF9|SAP61|SF3a60 splicing factor 3A subunit 3|SAP 61|pre-mRNA splicing factor SF3a (60kD)|spliceosome associated protein 61|splicing factor 3a, subunit 3, 60kD|splicing factor 3a, subunit 3, 60kDa 29 0.003969 10.68 1 1 +10947 AP3M2 adaptor related protein complex 3 mu 2 subunit 8 protein-coding AP47B|CLA20|P47B 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|adapter-related protein complex 3 subunit mu-2|adaptor-related protein complex 3 subunit mu-2|clathrin assembly protein assembly protein complex 1 medium chain homolog 2|clathrin assembly protein assembly protein complex 3 mu-2 medium chain|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 30 0.004106 9.009 1 1 +10948 STARD3 StAR related lipid transfer domain containing 3 17 protein-coding CAB1|MLN64|es64 stAR-related lipid transfer protein 3|MLN 64|START domain-containing protein 3|StAR-related lipid transfer (START) domain containing 3|metastatic lymph node gene 64 protein|metastatic lymph node protein 64|steroidogenic acute regulatory protein related 28 0.003832 10.04 1 1 +10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 5 protein-coding HNRPA0 heterogeneous nuclear ribonucleoprotein A0|hnRNA binding protein|hnRNP A0 15 0.002053 11.82 1 1 +10950 BTG3 BTG anti-proliferation factor 3 21 protein-coding ANA|APRO4|TOB5|TOB55|TOFA protein BTG3|B-cell translocation gene 3|BTG family member 3|abundant in neuroepithelium area protein|protein Tob5 13 0.001779 9.22 1 1 +10951 CBX1 chromobox 1 17 protein-coding CBX|HP1-BETA|HP1Hs-beta|HP1Hsbeta|M31|MOD1|p25beta chromobox protein homolog 1|HP1 beta homolog|chromobox homolog 1 (HP1 beta homolog Drosophila )|heterochromatin protein 1 homolog beta|heterochromatin protein 1-beta|heterochromatin protein p25 beta|modifier 1 protein 16 0.00219 10.71 1 1 +10952 SEC61B Sec61 translocon beta subunit 9 protein-coding - protein transport protein Sec61 subunit beta|Sec61 beta subunit|Sec61 complex, beta subunit|protein translocation complex beta|protein transport protein SEC61 beta subunit 7 0.0009581 10.55 1 1 +10953 TOMM34 translocase of outer mitochondrial membrane 34 20 protein-coding HTOM34P|TOM34|URCC3 mitochondrial import receptor subunit TOM34|hTom34|outer mitochondrial membrane translocase (34kD)|translocase of outer membrane 34 kDa subunit 20 0.002737 10.06 1 1 +10954 PDIA5 protein disulfide isomerase family A member 5 3 protein-coding PDIR protein disulfide-isomerase A5|protein disulfide isomerase-associated 5|protein disulfide isomerase-related protein 44 0.006022 9.072 1 1 +10955 SERINC3 serine incorporator 3 20 protein-coding AIGP1|DIFF33|SBBI99|TDE|TDE1|TMS-1 serine incorporator 3|tumor differentially expressed protein 1 41 0.005612 11.09 1 1 +10956 OS9 OS9, endoplasmic reticulum lectin 12 protein-coding ERLEC2|OS-9 protein OS-9|amplified in osteosarcoma 9|endoplasmic reticulum lectin 2|erlectin 2|osteosarcoma amplified 9, endoplasmic reticulum associated protein|osteosarcoma amplified 9, endoplasmic reticulum lectin 39 0.005338 12.87 1 1 +10957 PNRC1 proline rich nuclear receptor coactivator 1 6 protein-coding B4-2|PNAS-145|PROL2|PRR2 proline-rich nuclear receptor coactivator 1|proline rich 2 protein|proline-rich polypeptide 2|proline-rich protein 2|proline-rich protein with nuclear targeting signal|protein B4-2 22 0.003011 10.85 1 1 +10959 TMED2 transmembrane p24 trafficking protein 2 12 protein-coding P24A|RNP24|p24|p24b1|p24beta1 transmembrane emp24 domain-containing protein 2|coated vesicle membrane protein|membrane protein p24A|p24 family protein beta-1|transmembrane emp24 domain trafficking protein 2 13 0.001779 12.51 1 1 +10960 LMAN2 lectin, mannose binding 2 5 protein-coding C5orf8|GP36B|VIP36 vesicular integral-membrane protein VIP36|glycoprotein GP36b|vesicular integral protein of 36 kDa|vesicular integral-membrane protein 36 23 0.003148 11.79 1 1 +10961 ERP29 endoplasmic reticulum protein 29 12 protein-coding C12orf8|ERp28|ERp31|HEL-S-107|PDI-DB|PDIA9 endoplasmic reticulum resident protein 29|endoplasmic reticulum lumenal protein ERp28|endoplasmic reticulum resident protein 28|endoplasmic reticulum resident protein 31|epididymis secretory protein Li 107|protein disulfide isomerase family A, member 9 21 0.002874 11.77 1 1 +10962 MLLT11 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 11 1 protein-coding AF1Q protein AF1q|ALL1 fused gene from chromosome 1q|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 11 8 0.001095 7.784 1 1 +10963 STIP1 stress induced phosphoprotein 1 11 protein-coding HEL-S-94n|HOP|IEF-SSP-3521|P60|STI1|STI1L stress-induced-phosphoprotein 1|Hsp70/Hsp90-organizing protein|NY-REN-11 antigen|epididymis secretory sperm binding protein Li 94n|hsc70/Hsp90-organizing protein|renal carcinoma antigen NY-REN-11|transformation-sensitive protein IEF SSP 3521 41 0.005612 11.73 1 1 +10964 IFI44L interferon induced protein 44 like 1 protein-coding C1orf29|GS3686 interferon-induced protein 44-like 54 0.007391 8.63 1 1 +10965 ACOT2 acyl-CoA thioesterase 2 14 protein-coding CTE-IA|CTE1A|MTE1|PTE2|PTE2A|ZAP128 acyl-coenzyme A thioesterase 2, mitochondrial|acyl-coenzyme A thioester hydrolase 2a|long-chain acyl-CoA thioesterase 2|mitochondrial acyl-CoA thioesterase 1|peroxisomal long-chain acyl-coA thioesterase 2 29 0.003969 8.013 1 1 +10966 RAB40B RAB40B, member RAS oncogene family 17 protein-coding RAR|SEC4L ras-related protein Rab-40B|GTP-binding protein homologous to Saccharomyces cerevisiae SEC4|SOCS box-containing protein RAR|protein Rar 25 0.003422 8.429 1 1 +10969 EBNA1BP2 EBNA1 binding protein 2 1 protein-coding EBP2|NOBP|P40 probable rRNA-processing protein EBP2|nuclear FGF3 binding protein|nucleolar protein p40|nucleolar protein p40; homolog of yeast EBNA1-binding protein 20 0.002737 10.31 1 1 +10970 CKAP4 cytoskeleton associated protein 4 12 protein-coding CLIMP-63|ERGIC-63|p63 cytoskeleton-associated protein 4|63 kDa membrane protein|63-kDa cytoskeleton-linking membrane protein|transmembrane protein (63kD), endoplasmic reticulum/Golgi intermediate compartment|type-II transmembrane protein p63 35 0.004791 11.36 1 1 +10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta 2 protein-coding 14-3-3|1C5|HS1 14-3-3 protein theta|14-3-3 protein T-cell|14-3-3 protein tau|protein, theta|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, theta polypeptide 20 0.002737 12.71 1 1 +10972 TMED10 transmembrane p24 trafficking protein 10 14 protein-coding P24(DELTA)|S31I125|S31III125|TMP21|Tmp-21-I|p23|p24d1 transmembrane emp24 domain-containing protein 10|21 kDa transmembrane trafficking protein|p24 family protein delta-1|p24delta|p24delta1|testicular tissue protein Li 206|transmembrane emp24-like trafficking protein 10|transmembrane protein Tmp21 26 0.003559 12.75 1 1 +10973 ASCC3 activating signal cointegrator 1 complex subunit 3 6 protein-coding ASC1p200|HELIC1|RNAH activating signal cointegrator 1 complex subunit 3|ASC-1 complex subunit P200|RNA helicase family|helicase, ATP binding 1|trip4 complex subunit p200 142 0.01944 9.95 1 1 +10974 ADIRF adipogenesis regulatory factor 10 protein-coding AFRO|APM2|C10orf116|apM-2 adipogenesis regulatory factor|adipogenesis factor rich in obesity|adipose most abundant gene transcript 2 protein|adipose specific 2|adipose-specific protein 2 4 0.0005475 9.171 1 1 +10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI 19 protein-coding 0710008D09Rik|QCR10|UQCR cytochrome b-c1 complex subunit 10|complex III subunit 10|complex III subunit XI|ubiquinol-cytochrome c reductase complex 6.4 kDa protein|ubiquinol-cytochrome c reductase, 6.4kDa subunit 4 0.0005475 10.53 1 1 +10978 CLP1 cleavage and polyadenylation factor I subunit 1 11 protein-coding HEAB|hClp1 polyribonucleotide 5'-hydroxyl-kinase Clp1|ATP/GTP-binding protein|homolog of yeast CFIA subunit Clp1p|polyadenylation factor Clp1|polynucleotide kinase Clp1|pre-mRNA cleavage complex II protein Clp1 15 0.002053 8.017 1 1 +10979 FERMT2 fermitin family member 2 14 protein-coding KIND2|MIG2|PLEKHC1|UNC112|UNC112B|mig-2 fermitin family homolog 2|PH domain-containing family C member 1|kindlin 2|mitogen inducible gene 2 protein|pleckstrin homology domain containing, family C (with FERM domain) member 1|pleckstrin homology domain containing, family C member 1 45 0.006159 9.733 1 1 +10980 COPS6 COP9 signalosome subunit 6 7 protein-coding CSN6|MOV34-34KD COP9 signalosome complex subunit 6|COP9 constitutive photomorphogenic homolog subunit 6|H_NH0506M12.12|JAB1-containing signalosome subunit 6|MOV34 homolog, 34 kD|SGN6|hVIP|vpr-interacting protein 18 0.002464 11.09 1 1 +10981 RAB32 RAB32, member RAS oncogene family 6 protein-coding - ras-related protein Rab-32 18 0.002464 8.613 1 1 +10982 MAPRE2 microtubule associated protein RP/EB family member 2 18 protein-coding CSCSC2|EB1|EB2|RP1 microtubule-associated protein RP/EB family member 2|APC-binding protein EB1|APC-binding protein EB2|T-cell activation protein, EB1 family|end-binding protein 2 23 0.003148 9.681 1 1 +10983 CCNI cyclin I 4 protein-coding CCNI1|CYC1|CYI cyclin-I|cyclin ITI 22 0.003011 11.87 1 1 +10984 KCNQ1OT1 KCNQ1 opposite strand/antisense transcript 1 (non-protein coding) 11 ncRNA KCNQ1-AS2|KCNQ10T1|Kncq1|KvDMR1|KvLQT1-AS|LIT1|NCRNA00012 KCNQ1 antisense RNA 2 (non-protein coding)|KCNQ1 overlapping transcript 1 (non-protein coding)|long QT intronic transcript 1 4 0.0005475 6.469 1 1 +10985 GCN1 GCN1, eIF2 alpha kinase activator homolog 12 protein-coding GCN1L|GCN1L1|PRIC295 eIF-2-alpha kinase activator GCN1|GCN1 (general control of amino-acid synthesis 1, yeast)-like 1|GCN1 eIF-2-alpha kinase activator homolog|GCN1 general control of amino-acid synthesis 1-like 1|GCN1-like protein 1|general control of amino-acid synthesis 1-like protein 1|hsGCN1|peroxisome proliferator activated receptor interacting complex protein|translational activator GCN1 157 0.02149 11.48 1 1 +10987 COPS5 COP9 signalosome subunit 5 8 protein-coding CSN5|JAB1|MOV-34|SGN5 COP9 signalosome complex subunit 5|38 kDa Mov34 homolog|COP9 constitutive photomorphogenic homolog subunit 5|jun activation domain-binding protein 1|signalosome subunit 5|testis secretory sperm-binding protein Li 231m 21 0.002874 10.24 1 1 +10988 METAP2 methionyl aminopeptidase 2 12 protein-coding MAP2|MNPEP|p67eIF2 methionine aminopeptidase 2|eIF-2-associated p67 homolog|initiation factor 2-associated 67 kDa glycoprotein|peptidase M 2|testicular tissue protein Li 17 28 0.003832 10.83 1 1 +10989 IMMT inner membrane mitochondrial protein 2 protein-coding HMP|MINOS2|Mic60|P87|P87/89|P89|PIG4|PIG52 MICOS complex subunit MIC60|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 52 0.007117 10.99 1 1 +10990 LILRB5 leukocyte immunoglobulin like receptor B5 19 protein-coding CD85C|LIR-8|LIR8 leukocyte immunoglobulin-like receptor subfamily B member 5|CD85 antigen-like family member C|leucocyte Ig-like receptor B5|leukocyte immunoglobulin-like receptor 8|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 5 136 0.01861 5.24 1 1 +10991 SLC38A3 solute carrier family 38 member 3 3 protein-coding G17|NAT1|SN1|SNAT3 sodium-coupled neutral amino acid transporter 3|N-system amino acid transporter 1|Na(+)-coupled neutral amino acid transporter 3|system N amino acid transporter 1|system N1 Na+ and H+-coupled glutamine transporter 41 0.005612 4.574 1 1 +10992 SF3B2 splicing factor 3b subunit 2 11 protein-coding Cus1|SAP145|SF3B145|SF3b1|SF3b150 splicing factor 3B subunit 2|SAP 145|pre-mRNA splicing factor SF3b 145 kDa subunit|spliceosome associated protein 145|splicing factor 3b, subunit 2, 145kD|splicing factor 3b, subunit 2, 145kDa 73 0.009992 12.32 1 1 +10993 SDS serine dehydratase 12 protein-coding SDH L-serine dehydratase/L-threonine deaminase|L-serine ammonia-lyase|L-serine deaminase|L-serine dehydratase|L-threonine dehydratase|TDH 21 0.002874 6.815 1 1 +10994 ILVBL ilvB acetolactate synthase like 19 protein-coding 209L8|AHAS|HACL1L|ILV2H acetolactate synthase-like protein|2-hydroxyacyl-CoA lyase 1 like|acetolactate synthase homolog|ilvB (bacterial acetolactate synthase)-like|ilvB-like protein 43 0.005886 10.48 1 1 +10998 SLC27A5 solute carrier family 27 member 5 19 protein-coding ACSB|ACSVL6|BACS|BAL|FACVL3|FATP-5|FATP5|VLACSR|VLCS-H2|VLCSH2 bile acyl-CoA synthetase|BA-CoA ligase|VLACS-related|bile acid-CoA ligase|cholate--CoA ligase|fatty acid transport protein 5|fatty-acid-Coenzyme A ligase, very long-chain 3|solute carrier family 27 (fatty acid transporter), member 5|very long-chain acyl-CoA synthetase homolog 2|very long-chain acyl-CoA synthetase-related protein 65 0.008897 7.095 1 1 +10999 SLC27A4 solute carrier family 27 member 4 9 protein-coding ACSVL4|FATP4|IPS long-chain fatty acid transport protein 4|solute carrier family 27 (fatty acid transporter), member 4 44 0.006022 9.888 1 1 +11000 SLC27A3 solute carrier family 27 member 3 1 protein-coding ACSVL3|FATP3|VLCS-3 long-chain fatty acid transport protein 3|fatty acid transport protein 3|solute carrier family 27 (fatty acid transporter), member 3|very long-chain acyl-CoA synthetase homolog 3 47 0.006433 8.875 1 1 +11001 SLC27A2 solute carrier family 27 member 2 15 protein-coding ACSVL1|FACVL1|FATP2|HsT17226|VLACS|VLCS|hFACVL1 very long-chain acyl-CoA synthetase|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 (fatty acid transporter), member 2|very long-chain fatty-acid-coenzyme A ligase 1|very long-chain-fatty-acid-CoA ligase 46 0.006296 6.617 1 1 +11004 KIF2C kinesin family member 2C 1 protein-coding CT139|KNSL6|MCAK kinesin-like protein KIF2C|kinesin-like protein 6|mitotic centromere-associated kinesin|testis tissue sperm-binding protein Li 68n 44 0.006022 8.185 1 1 +11005 SPINK5 serine peptidase inhibitor, Kazal type 5 5 protein-coding LEKTI|LETKI|NETS|NS|VAKTI serine protease inhibitor Kazal-type 5|lympho-epithelial Kazal-type-related inhibitor|lymphoepithelial Kazal-type-related inhibitor 90 0.01232 4.734 1 1 +11006 LILRB4 leukocyte immunoglobulin like receptor B4 19 protein-coding CD85K|ILT-3|ILT3|LIR-5|LIR5 leukocyte immunoglobulin-like receptor subfamily B member 4|CD85 antigen-like family member K|immunoglobulin-like transcript 3|leucocyte Ig-like receptor B4|leukocyte immunoglobulin-like receptor 5|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 4|monocyte inhibitory receptor HM18 66 0.009034 7.684 1 1 +11007 CCDC85B coiled-coil domain containing 85B 11 protein-coding DIPA coiled-coil domain-containing protein 85B|delta-interacting protein A|hepatitis delta antigen-interacting protein A 1 0.0001369 8.556 1 1 +11009 IL24 interleukin 24 1 protein-coding C49A|FISP|IL10B|MDA7|MOB5|ST16 interleukin-24|IL-4-induced secreted protein|melanocyte-associated Mda-7|melanoma differentiation-associated gene 7 protein|suppression of tumorigenicity 16 (melanoma differentiation) 17 0.002327 2.654 1 1 +11010 GLIPR1 GLI pathogenesis related 1 12 protein-coding CRISP7|GLIPR|RTVP1 glioma pathogenesis-related protein 1|GLI pathogenesis-related 1 (glioma)|gliPR 1|protein RTVP-1|related to testis-specific, vespid, and pathogenesis proteins 1|testes-specific vespid and pathogenesis protein 1 33 0.004517 8.636 1 1 +11011 TLK2 tousled like kinase 2 17 protein-coding HsHPK|PKU-ALPHA serine/threonine-protein kinase tousled-like 2 58 0.007939 9.222 1 1 +11012 KLK11 kallikrein related peptidase 11 19 protein-coding PRSS20|TLSP kallikrein-11|hK11|hippostasin|serine protease 20|trypsin-like protease 27 0.003696 4.793 1 1 +11013 TMSB15A thymosin beta 15a X protein-coding TMSB15|TMSB15B|TMSL8|TMSNB|Tb15|TbNB thymosin beta-15A|NB thymosin beta|Thymosin beta-15B|thymosin, beta, identified in neuroblastoma cells|thymosin-like 8|thymosin-like protein 8 7 0.0009581 4.035 1 1 +11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 7 protein-coding ELP-1|ERD2.2 ER lumen protein-retaining receptor 2|(Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2|ERD-2-like protein|ERD2-like protein 1|KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2|KDEL receptor 2 21 0.002874 12.47 1 1 +11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 22 protein-coding ERD2L3 ER lumen protein-retaining receptor 3|KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3|KDEL receptor 3 17 0.002327 8.635 1 1 +11016 ATF7 activating transcription factor 7 12 protein-coding ATFA cyclic AMP-dependent transcription factor ATF-7|transcription factor ATF-A 24 0.003285 10.15 1 1 +11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 2 protein-coding 27K|RY1 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|small nuclear ribonucleoprotein 27kDa (U4/U6.U5)|small nuclear ribonucleoprotein, U4/U6.U5 27kDa subunit 18 0.002464 9.103 1 1 +11018 TMED1 transmembrane p24 trafficking protein 1 19 protein-coding IL1RL1LG|Il1rl1l|Tp24|p24g1 transmembrane emp24 domain-containing protein 1|IL1RL1-binding protein|interleukin 1 receptor-like 1 ligand|p24 family protein gamma-1|putative T1/ST2 receptor-binding protein|transmembrane emp24 protein transport domain containing 1 24 0.003285 9.414 1 1 +11019 LIAS lipoic acid synthetase 4 protein-coding HGCLAS|HUSSY-01|LAS|LIP1|LS|PDHLD lipoyl synthase, mitochondrial|LS|lip-syn|lipoate synthase 23 0.003148 7.536 1 1 +11020 IFT27 intraflagellar transport 27 22 protein-coding BBS19|RABL4|RAYL intraflagellar transport protein 27 homolog|RAB, member of RAS oncogene family-like 4|rab-like protein 4 10 0.001369 8.826 1 1 +11021 RAB35 RAB35, member RAS oncogene family 12 protein-coding H-ray|RAB1C|RAY ras-related protein Rab-35|GTP-binding protein RAY|ras-related protein rab-1c (GTP-binding protein ray) 22 0.003011 10.18 1 1 +11022 TDRKH tudor and KH domain containing 1 protein-coding TDRD2 tudor and KH domain-containing protein|putative RNA binding protein|tudor domain containing 2|tudor domain-containing protein 2 28 0.003832 8.155 1 1 +11023 VAX1 ventral anterior homeobox 1 10 protein-coding MCOPS11 ventral anterior homeobox 1 33 0.004517 1.074 1 1 +11024 LILRA1 leukocyte immunoglobulin like receptor A1 19 protein-coding CD85I|LIR-6|LIR6 leukocyte immunoglobulin-like receptor subfamily A member 1|CD85 antigen-like family member I|leucocyte Ig-like receptor A1|leukocyte immunoglobulin-like receptor 6|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 1 96 0.01314 2.637 1 1 +11025 LILRB3 leukocyte immunoglobulin like receptor B3 19 protein-coding CD85A|HL9|ILT-5|ILT5|LILRA6|LIR-3|LIR3|PIR-B|PIRB leukocyte immunoglobulin-like receptor subfamily B member 3|CD85 antigen-like family member A|immunoglobulin-like transcript 5|leucocyte Ig-like receptor B3|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 3|monocyte inhibitory receptor HL9 72 0.009855 5.565 1 1 +11026 LILRA3 leukocyte immunoglobulin like receptor A3 19 protein-coding CD85E|HM31|HM43|ILT-6|ILT6|LIR-4|LIR4 leukocyte immunoglobulin-like receptor subfamily A member 3|CD85 antigen-like family member E|immunoglobulin-like transcript 6|leucocyte Ig-like receptor A3|leukocyte immunoglobulin-like receptor 4|leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 3|monocyte inhibitory receptor HM43/HM31 52 0.007117 2.36 1 1 +11027 LILRA2 leukocyte immunoglobulin like receptor A2 19 protein-coding CD85H|ILT1|LIR-7|LIR7 leukocyte immunoglobulin-like receptor subfamily A member 2|CD85 antigen-like family member H|immunoglobulin-like transcript 1|leucocyte Ig-like receptor A2|leukocyte immunoglobulin-like receptor 7|leukocyte immunoglobulin-like receptor subfamily A member 2 soluble|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 75 0.01027 4.672 1 1 +11030 RBPMS RNA binding protein with multiple splicing 8 protein-coding HERMES RNA-binding protein with multiple splicing|heart and RRM expressed sequence 13 0.001779 9.726 1 1 +11031 RAB31 RAB31, member RAS oncogene family 18 protein-coding Rab22B ras-related protein Rab-31|ras-related protein Rab-22B 11 0.001506 10.79 1 1 +11033 ADAP1 ArfGAP with dual PH domains 1 7 protein-coding CENTA1|GCS1L|p42IP4 arf-GAP with dual PH domain-containing protein 1|centaurin-alpha|centaurin-alpha-1|cnt-a1|putative MAPK-activating protein PM25 13 0.001779 8.218 1 1 +11034 DSTN destrin, actin depolymerizing factor 20 protein-coding ACTDP|ADF|HEL32|bA462D18.2 destrin|actin-depolymerizing factor|bA462D18.2 (destrin (actin depolymerizing factor ADF) (ACTDP))|epididymis luminal protein 32 21 0.002874 12.64 1 1 +11035 RIPK3 receptor interacting serine/threonine kinase 3 14 protein-coding RIP3 receptor-interacting serine/threonine-protein kinase 3|RIP-3|RIP-like protein kinase 3|receptor interacting protein 3 34 0.004654 6.758 1 1 +11036 GTF2A1L general transcription factor IIA subunit 1 like 2 protein-coding ALF TFIIA-alpha and beta-like factor|GTF2A1-like factor|TFIIA large subunit isoform ALF|TFIIA-alpha/beta-like factor|general transcription factor II A, 1-like factor|general transcription factor IIA 1-like|testis secretory sperm-binding protein Li 230m 6 0.0008212 1.89 1 1 +11037 STON1 stonin 1 2 protein-coding SALF|SBLF|STN1|STNB1 stonin-1|stoned B homolog 1|stoned B-like factor|stoned-b1 46 0.006296 7.889 1 1 +11040 PIM2 Pim-2 proto-oncogene, serine/threonine kinase X protein-coding - serine/threonine-protein kinase pim-2|pim-2 oncogene|pim-2h|proto-oncogene Pim-2 (serine threonine kinase) 27 0.003696 8.829 1 1 +11041 B4GAT1 beta-1,4-glucuronyltransferase 1 11 protein-coding B3GN-T1|B3GNT1|B3GNT6|BETA3GNTI|MDDGA13|iGAT|iGNT beta-1,4-glucuronyltransferase 1|N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1|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 28 0.003832 9.428 1 1 +11043 MID2 midline 2 X protein-coding FXY2|MRX101|RNF60|TRIM1 probable E3 ubiquitin-protein ligase MID2|RING finger protein 60|midin 2|midline defect 2|tripartite motif protein 1|tripartite motif-containing protein 1 53 0.007254 8.346 1 1 +11044 PAPD7 poly(A) RNA polymerase D7, non-canonical 5 protein-coding LAK-1|LAK1|POLK|POLS|TRF4|TRF4-1|TRF41|TUTASE5 non-canonical poly(A) RNA polymerase PAPD7|DNA polymerase kappa|DNA polymerase sigma|PAP associated domain containing 7|PAP-associated domain-containing protein 7|TRAMP-like complex polyadenylate polymerase|TUTase 5|polymerase (DNA directed) sigma|terminal uridylyltransferase 5|topoisomerase-related function protein 4-1 69 0.009444 9.364 1 1 +11045 UPK1A uroplakin 1A 19 protein-coding TSPAN21|UP1A|UPIA|UPKA uroplakin-1a|tetraspanin-21|tspan-21|uroplakin Ia 24 0.003285 2.156 1 1 +11046 SLC35D2 solute carrier family 35 member D2 9 protein-coding HFRC1|SQV7L|UGTrel8|hfrc UDP-N-acetylglucosamine/UDP-glucose/GDP-mannose transporter|SQV7-like protein|UDP-N-acetylglucosamine transporter|UDP-galactose transporter-related protein 8|fringe connection|homolog of Fringe connection protein 1|solute carrier family 35 (UDP-GlcNAc/UDP-glucose transporter), member D2 13 0.001779 8.987 1 1 +11047 ADRM1 adhesion regulating molecule 1 20 protein-coding ARM-1|ARM1|GP110 proteasomal ubiquitin receptor ADRM1|110 kDa cell membrane glycoprotein|M(r) 110,000 surface antigen|proteasome regulatory particle non-ATPase 13|rpn13 homolog 24 0.003285 11.19 1 1 +11051 NUDT21 nudix hydrolase 21 16 protein-coding CFIM25|CPSF5 cleavage and polyadenylation specificity factor subunit 5|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 factor Im complex 25 kDa subunit|nucleoside diphosphate-linked moiety X motif 21|nudix (nucleoside diphosphate linked moiety X)-type 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 12 0.001642 10.93 1 1 +11052 CPSF6 cleavage and polyadenylation specific factor 6 12 protein-coding CFIM|CFIM68|HPBRII-4|HPBRII-7 cleavage and polyadenylation specificity factor subunit 6|CPSF 68 kDa subunit|cleavage and polyadenylation specific factor 6, 68kDa|cleavage and polyadenylation specificity factor 68 kDa subunit|cleavage factor Im complex 68 kDa subunit|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 45 0.006159 10.65 1 1 +11054 OGFR opioid growth factor receptor 20 protein-coding - opioid growth factor receptor|protein 7-60|zeta-type opioid receptor 48 0.00657 10.43 1 1 +11055 ZPBP zona pellucida binding protein 7 protein-coding ZPBP1 zona pellucida-binding protein 1 55 0.007528 0.1697 1 1 +11056 DDX52 DExD-box helicase 52 17 protein-coding HUSSY19|ROK1 probable ATP-dependent RNA helicase DDX52|DEAD (Asp-Glu-Ala-Asp) box polypeptide 52|DEAD box protein 52|DEAD-box helicase 52 37 0.005064 9.134 1 1 +11057 ABHD2 abhydrolase domain containing 2 15 protein-coding HS1-2|LABH2|PHPS1-2 monoacylglycerol lipase ABHD2|2-arachidonoylglycerol hydrolase|abhydrolase domain-containing protein 2|alpha/beta hydrolase domain containing protein 2|lung alpha/beta hydrolase 2|protein PHPS1-2|testicular tissue protein Li 6 37 0.005064 11.82 1 1 +11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 8 protein-coding AIP5|Tiul1|hSDRP1 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 72 0.009855 10.25 1 1 +11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 16 protein-coding AIP2|WWp2-like NEDD4-like E3 ubiquitin-protein ligase WWP2|atrophin-1 interacting protein 2 64 0.00876 10.38 1 1 +11061 LECT1 leukocyte cell derived chemotaxin 1 13 protein-coding BRICD3|CHM-I|CHM1|MYETS1 leukocyte cell-derived chemotaxin 1|BRICHOS domain containing 3|chondromodulin-1|chondromodulin-I|multiple myeloma tumor suppressor 1 27 0.003696 1.313 1 1 +11062 DUS4L dihydrouridine synthase 4 like 7 protein-coding DUS4|PP35 tRNA-dihydrouridine(20a/20b) synthase [NAD(P)+]-like|protein similar to E.coli yhdg and R. capsulatus nifR3 18 0.002464 7.332 1 1 +11063 SOX30 SRY-box 30 5 protein-coding - transcription factor SOX-30|SRY (sex determining region Y)-box 30|Sox30 protein type II 50 0.006844 2.31 1 1 +11064 CNTRL centriolin 9 protein-coding CEP1|CEP110|FAN|bA165P4.1 centriolin|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 111 0.01519 8.546 1 1 +11065 UBE2C ubiquitin conjugating enzyme E2 C 20 protein-coding UBCH10|dJ447F3.2 ubiquitin-conjugating enzyme E2 C|(E3-independent) E2 ubiquitin-conjugating enzyme C|E2 ubiquitin-conjugating enzyme C|cyclin-selective ubiquitin carrier protein|mitotic-specific ubiquitin-conjugating enzyme|ubiquitin conjugating enzyme E2C|ubiquitin-protein ligase C 15 0.002053 8.54 1 1 +11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 12 protein-coding HM-1|U1SNRNPBP U11/U12 small nuclear ribonucleoprotein 35 kDa protein|U1 snRNP-binding protein homolog|U11/U12 snRNP 35 kDa protein|U11/U12 snRNP 35K|U11/U12-35K|protein HM-1|small nuclear ribonucleoprotein 35kDa (U11/U12)|small nuclear ribonucleoprotein, U11/U12 35kDa subunit 19 0.002601 8.721 1 1 +11067 C10orf10 chromosome 10 open reading frame 10 10 protein-coding DEPP|FIG|Fseg protein DEPP|decidual protein induced by progesterone|fasting induced|fasting-induced gene protein|fasting-induced protein|fat-specific expressed 16 0.00219 10.16 1 1 +11068 CYB561D2 cytochrome b561 family member D2 3 protein-coding 101F6|TSP10|XXcos-LUCA11.4 cytochrome b561 domain-containing protein 2|putative tumor suppressor protein 101F6 10 0.001369 8.712 1 1 +11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 2 protein-coding CAMP-GEFII|CGEF2|EPAC|EPAC 2|EPAC2|Nbla00496 rap guanine nucleotide exchange factor 4|RAP guanine-nucleotide-exchange factor (GEF) 4|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 66 0.009034 7.125 1 1 +11070 TMEM115 transmembrane protein 115 3 protein-coding PL6 transmembrane protein 115|PP6|placental protein 6|testicular tissue protein Li 201 15 0.002053 10.19 1 1 +11072 DUSP14 dual specificity phosphatase 14 17 protein-coding MKP-L|MKP6 dual specificity protein phosphatase 14|MAP kinase phosphatase 6|MKP-1-like protein tyrosine phosphatase|MKP-6|mitogen-activated protein kinase phosphatase 6 17 0.002327 8.818 1 1 +11073 TOPBP1 topoisomerase (DNA) II binding protein 1 3 protein-coding TOP2BP1 DNA topoisomerase 2-binding protein 1|DNA topoisomerase II-beta-binding protein 1|DNA topoisomerase II-binding protein 1 95 0.013 9.748 1 1 +11074 TRIM31 tripartite motif containing 31 6 protein-coding C6orf13|HCG1|HCGI|RNF E3 ubiquitin-protein ligase TRIM31|tripartite motif-containing protein 31 27 0.003696 3.401 1 1 +11075 STMN2 stathmin 2 8 protein-coding SCG10|SCGN10 stathmin-2|neuron-specific growth-associated protein|neuronal growth-associated protein (silencer element)|stathmin-like 2|superior cervical ganglia, neural specific 10|superior cervical ganglion-10 protein 12 0.001642 4.077 1 1 +11076 TPPP tubulin polymerization promoting protein 5 protein-coding TPPP/p25|TPPP1|p24|p25|p25alpha tubulin polymerization-promoting protein|25 kDa brain-specific protein|brain specific protein p25 alpha|glycogen synthase kinase 3 (GSK3) inhibitor p24|p25-alpha 17 0.002327 7.821 1 1 +11077 HSF2BP heat shock transcription factor 2 binding protein 21 protein-coding - heat shock factor 2-binding protein 18 0.002464 4.578 1 1 +11078 TRIOBP TRIO and F-actin binding protein 22 protein-coding DFNB28|HRIHFB2122|TAP68|TARA|dJ37E16.4 TRIO and F-actin-binding protein|protein Tara|tara-like protein|trio-associated repeat on actin 178 0.02436 10.62 1 1 +11079 RER1 retention in endoplasmic reticulum sorting receptor 1 1 protein-coding - protein RER1|RER1 retention in endoplasmic reticulum 1 homolog 13 0.001779 11.38 1 1 +11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 1 protein-coding DNAJW|DjB4|HLJ1 dnaJ homolog subfamily B member 4|DnaJ (Hsp40) homolog, subfamily B, member 4|DnaJ-like heat shock protein 40|HSP40 homolog|heat shock 40 kDa protein 1 homolog|heat shock protein 40 homolog|human liver DnaJ-like protein 27 0.003696 8.324 1 1 +11081 KERA keratocan 12 protein-coding CNA2|KTN|SLRR2B keratocan|keratan sulfate proteoglycan keratocan 39 0.005338 1.519 1 1 +11082 ESM1 endothelial cell specific molecule 1 5 protein-coding endocan endothelial cell-specific molecule 1|ESM-1 19 0.002601 6.975 1 1 +11083 DIDO1 death inducer-obliterator 1 20 protein-coding BYE1|C20orf158|DATF-1|DATF1|DIDO2|DIDO3|DIO-1|DIO1|dJ885L7.8 death-inducer obliterator 1|death-associated transcription factor 1 236 0.0323 10.71 1 1 +11085 ADAM30 ADAM metallopeptidase domain 30 1 protein-coding svph4 disintegrin and metalloproteinase domain-containing protein 30|a disintegrin and metalloproteinase domain 30 81 0.01109 0.1018 1 1 +11086 ADAM29 ADAM metallopeptidase domain 29 4 protein-coding CT73|svph1 disintegrin and metalloproteinase domain-containing protein 29|a disintegrin and metalloproteinase domain 29|cancer/testis antigen 73|metallaproteinase-disintegrin (ADAM29)|testis secretory sperm-binding protein Li 207a 119 0.01629 0.7122 1 1 +11091 WDR5 WD repeat domain 5 9 protein-coding BIG-3|CFAP89|SWD3 WD repeat-containing protein 5|BMP2-induced 3-kb gene protein|SWD3, Set1c WD40 repeat protein, homolog|cilia and flagella associated protein 89 22 0.003011 10.04 1 1 +11092 SPACA9 sperm acrosome associated 9 9 protein-coding C9orf9|Mast sperm acrosome-associated protein 9|Rsb66 homolog 15 0.002053 7.262 1 1 +11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 9 protein-coding ADAM-TS13|ADAMTS-13|C9orf8|VWFCP|vWF-CP A disintegrin and metalloproteinase with thrombospondin motifs 13|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 13|vWF-cleaving protease|von Willebrand factor-cleaving protease 94 0.01287 6.175 1 1 +11094 CACFD1 calcium channel flower domain containing 1 9 protein-coding C9orf7|D9S2135|FLOWER calcium channel flower homolog|calcium channel flower domain-containing protein 1 11 0.001506 9.585 1 1 +11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 11 protein-coding ADAM-TS8|METH2 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 67 0.009171 4.338 1 1 +11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 21 protein-coding ADAM-TS 11|ADAM-TS 5|ADAM-TS5|ADAMTS-11|ADAMTS-5|ADAMTS11|ADMP-2 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 110 0.01506 6.976 1 1 +11097 NUPL2 nucleoporin like 2 7 protein-coding CG1|NLP-1|NLP_1|hCG1 nucleoporin-like protein 2|H_RG271G13.9|NUP42 homolog|nucleoporin hCG1|nucleoporin-like protein 1 49 0.006707 8.863 1 1 +11098 PRSS23 protease, serine 23 11 protein-coding SIG13|SPUVE|ZSIG13 serine protease 23|putative secreted protein Zsig13|serine protease, umbilical endothelium 26 0.003559 10.88 1 1 +11099 PTPN21 protein tyrosine phosphatase, non-receptor type 21 14 protein-coding PTPD1|PTPRL10 tyrosine-protein phosphatase non-receptor type 21|dJ1175B15.2 (protein tyrosine phosphatase, non-receptor type 21)|protein-tyrosine phosphatase D1 71 0.009718 8.548 1 1 +11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 19 protein-coding E1B-AP5|E1BAP5|HNRPUL1 heterogeneous nuclear ribonucleoprotein U-like protein 1|E1B 55kDa associated protein 5|E1B-55 kDa-associated protein 5|adenovirus early region 1B-associated protein 5 73 0.009992 12.5 1 1 +11101 ATE1 arginyltransferase 1 10 protein-coding - arginyl-tRNA--protein transferase 1|R-transferase 1|arginine-tRNA--protein transferase 1|arginyl-tRNA-protein transferase 35 0.004791 7.408 1 1 +11102 RPP14 ribonuclease P/MRP subunit p14 3 protein-coding HsHTD2|P14 ribonuclease P protein subunit p14|3-hydroxyacyl-[acyl-carrier-protein] dehydratase|Hydroxyacyl-thioester dehydratase type 2, mitochondrial|ribonuclease P/MRP 14kDa subunit 7 0.0009581 8.862 1 1 +11103 KRR1 KRR1, small subunit processome component homolog 12 protein-coding HRB2|RIP-1 KRR1 small subunit processome component homolog|HIV-1 Rev-binding protein 2|HIV-1 rev binding protein 2|KRR-R motif-containing protein 1|KRR1, small subunit (SSU) processome component, homolog|Rev interacting protein|rev-interacting protein 1 22 0.003011 9.364 1 1 +11104 KATNA1 katanin catalytic subunit A1 6 protein-coding - katanin p60 ATPase-containing subunit A1|katanin p60 (ATPase containing) subunit A 1|katanin p60 subunit A1|p60 katanin 33 0.004517 8.129 1 1 +11105 PRDM7 PR/SET domain 7 16 protein-coding PFM4|ZNF910 probable histone-lysine N-methyltransferase PRDM7|PR domain 7|PR domain containing 7|PR domain zinc finger protein 7|PR-domain family protein 4 36 0.004927 0.4404 1 1 +11107 PRDM5 PR/SET domain 5 4 protein-coding BCS2|PFM2 PR domain zinc finger protein 5|PR domain 5|PR domain containing 5 69 0.009444 4.98 1 1 +11108 PRDM4 PR/SET domain 4 12 protein-coding PFM1 PR domain zinc finger protein 4|PR domain 4|PR domain containing 4|PR domain-containing protein 4|PR-domain zinc-finger protein PFM1 50 0.006844 9.592 1 1 +11112 HIBADH 3-hydroxyisobutyrate dehydrogenase 7 protein-coding NS5ATP1 3-hydroxyisobutyrate dehydrogenase, mitochondrial|3'-hydroxyisobutyrate dehydrogenase 15 0.002053 10.1 1 1 +11113 CIT citron rho-interacting serine/threonine kinase 12 protein-coding CRIK|MCPH17|STK21 citron Rho-interacting kinase|citron (rho-interacting, serine/threonine kinase 21)|serine/threonine kinase 21|serine/threonine-protein kinase 21 135 0.01848 8.967 1 1 +11116 FGFR1OP FGFR1 oncogene partner 6 protein-coding FOP FGFR1 oncogene partner|fibroblast growth factor receptor 1 oncogene partner 12 0.001642 7.682 1 1 +11117 EMILIN1 elastin microfibril interfacer 1 2 protein-coding EMI|EMILIN|gp115 EMILIN-1|elastin microfibril interface-located protein 1 58 0.007939 9.875 1 1 +11118 BTN3A2 butyrophilin subfamily 3 member A2 6 protein-coding BT3.2|BTF4|BTN3.2|CD277 butyrophilin subfamily 3 member A2|butyrophilin protein 27 0.003696 9.937 1 1 +11119 BTN3A1 butyrophilin subfamily 3 member A1 6 protein-coding BT3.1|BTF5|BTN3.1|CD277 butyrophilin subfamily 3 member A1|dJ45P21.3 (butyrophilin, subfamily 3, member A1) 48 0.00657 9.401 1 1 +11120 BTN2A1 butyrophilin subfamily 2 member A1 6 protein-coding BK14H9.1|BT2.1|BTF1|BTN2.1|DJ3E1.1 butyrophilin subfamily 2 member A1 49 0.006707 9.061 1 1 +11122 PTPRT protein tyrosine phosphatase, receptor type T 20 protein-coding RPTPrho receptor-type tyrosine-protein phosphatase T|R-PTP-T|RPTP-rho|receptor protein tyrosine phosphatase|receptor-type tyrosine-protein phosphatase rho 257 0.03518 4.385 1 1 +11123 RCAN3 RCAN family member 3 1 protein-coding DSCR1L2|MCIP3|RCN3|hRCN3 calcipressin-3|Down syndrome candidate region 1-like 2|Down syndrome critical region gene 1-like 2|down syndrome candidate region 1-like protein 2|myocyte-enriched calcineurin-interacting protein 3|regulator of calcineurin 3 isoform 1b,2 16 0.00219 6.512 1 1 +11124 FAF1 Fas associated factor 1 1 protein-coding CGI-03|HFAF1s|UBXD12|UBXN3A|hFAF1 FAS-associated factor 1|Fas (TNFRSF6) associated factor 1|TNFRSF6-associated factor 1|UBX domain protein 3A|UBX domain-containing protein 12|UBX domain-containing protein 3A 48 0.00657 9.851 1 1 +11126 CD160 CD160 molecule 1 protein-coding BY55|NK1|NK28 CD160 antigen|CD160 transmembrane isoform|CD160-delta Ig|natural killer cell receptor BY55|natural killer cell receptor, immunoglobulin superfamily member 10 0.001369 3.616 1 1 +11127 KIF3A kinesin family member 3A 5 protein-coding FLA10|KLP-20 kinesin-like protein KIF3A|kinesin family protein 3A|microtubule plus end-directed kinesin motor 3A 38 0.005201 8.505 1 1 +11128 POLR3A RNA polymerase III subunit A 10 protein-coding ADDH|HLD7|RPC1|RPC155|hRPC155 DNA-directed RNA polymerase III subunit RPC1|DNA-directed RNA polymerase III largest subunit|DNA-directed RNA polymerase III subunit A|RNA polymerase III 155 kDa subunit|RNA polymerase III subunit C1|RNA polymerase III subunit C160|RNA polymerase III subunit RPC155-D|polymerase (RNA) III (DNA directed) polypeptide A, 155kDa|polymerase (RNA) III subunit A 83 0.01136 8.887 1 1 +11129 CLASRP CLK4 associating serine/arginine rich protein 19 protein-coding CLASP|SFRS16|SWAP2 CLK4-associating serine/arginine rich protein|Clk4 associating SR-related protein|splicing factor, arginine/serine-rich 16 (suppressor-of-white-apricot homolog, Drosophila)|suppressor of white apricot homolog 2 56 0.007665 9.115 1 1 +11130 ZWINT ZW10 interacting kinetochore protein 10 protein-coding HZwint-1|KNTC2AP|SIP30|ZWINT1 ZW10 interactor|SNAP25 interacting protein of 30 kDa|ZW10 interactor, kinetochore protein|human ZW10 interacting protein-1|zwint-1 49 0.006707 8.866 1 1 +11131 CAPN11 calpain 11 6 protein-coding calpain11 calpain-11|CANP 11|calcium-activated neutral proteinase 11 55 0.007528 2.412 1 1 +11132 CAPN10 calpain 10 2 protein-coding CANP10|NIDDM1 calpain-10|calcium-activated neutral proteinase 10|calpain-like protease CAPN10 37 0.005064 8.354 1 1 +11133 KPTN kaptin, actin binding protein 19 protein-coding 2E4|MRT41 kaptin|actin-associated protein 2E4 30 0.004106 7.486 1 1 +11135 CDC42EP1 CDC42 effector protein 1 22 protein-coding BORG5|CEP1|MSE55 cdc42 effector protein 1|55 kDa bone marrow stromal/endothelial cell protein|CDC42 effector protein (Rho GTPase binding) 1|binder of Rho GTPases 5|serum constituent protein|serum protein MSE55 45 0.006159 10.76 1 1 +11136 SLC7A9 solute carrier family 7 member 9 19 protein-coding BAT1|CSNU3 B(0,+)-type amino acid transporter 1|b(0,+)AT|glycoprotein-associated amino acid transporter b0,+AT1|solute carrier family 7 (amino acid transporter light chain, bo,+ system), member 9|solute carrier family 7 (cationic amino acid transporter, y+ system), member 9|solute carrier family 7 (glycoprotein-associated amino acid transporter light chain, bo,+ system), member 9 44 0.006022 2.837 1 1 +11137 PWP1 PWP1 homolog, endonuclein 12 protein-coding IEF-SSP-9502 periodic tryptophan protein 1 homolog|endonuclein|keratinocyte protein IEF SSP 9502|nuclear phosphoprotein similar to S. cerevisiae PWP1 30 0.004106 9.872 1 1 +11138 TBC1D8 TBC1 domain family member 8 2 protein-coding AD3|GRAMD8|HBLP1|TBC1D8A|VRP TBC1 domain family member 8|BUB2-like protein 1|TBC1 domain family, member 8 (with GRAM domain)|TBC1 domain family, member 8A|vascular Rab-GAP/TBC-containing protein 66 0.009034 9.095 1 1 +11140 CDC37 cell division cycle 37 19 protein-coding P50CDC37 hsp90 co-chaperone Cdc37|CDC37 (cell division cycle 37, S. cerevisiae, homolog)|CDC37 cell division cycle 37 homolog|cell division cycle 37 homolog|hsp90 chaperone protein kinase-targeting subunit 27 0.003696 11.7 1 1 +11141 IL1RAPL1 interleukin 1 receptor accessory protein like 1 X protein-coding IL1R8|IL1RAPL|MRX10|MRX21|MRX34|OPHN4|TIGIRR-2 interleukin-1 receptor accessory protein-like 1|IL-1-RAPL-1|IL-1RAPL-1|IL1RAPL-1|X-linked interleukin-1 receptor accessory protein-like 1|interleukin 1 receptor-8|mental retardation, X-linked 10|oligophrenin-4|three immunoglobulin domain-containing IL-1 receptor-related 2 104 0.01423 1.067 1 1 +11142 PKIG protein kinase (cAMP-dependent, catalytic) inhibitor gamma 20 protein-coding PKI-gamma cAMP-dependent protein kinase inhibitor gamma 12 0.001642 9.624 1 1 +11143 KAT7 lysine acetyltransferase 7 17 protein-coding HBO1|HBOA|MYST2|ZC2HC7 histone acetyltransferase KAT7|K(lysine) acetyltransferase 7|MOZ, YBF2/SAS3, SAS2 and TIP60 protein 2|MYST histone acetyltransferase 2|MYST-2|histone acetyltransferase MYST2|histone acetyltransferase binding to ORC1 45 0.006159 10.11 1 1 +11144 DMC1 DNA meiotic recombinase 1 22 protein-coding DMC1H|LIM15|dJ199H16.1 meiotic recombination protein DMC1/LIM15 homolog|DMC1 dosage suppressor of mck1 homolog, meiosis-specific homologous recombination|disrupted meiotic cDNA1, yeast, homolog of 22 0.003011 3.141 1 1 +11145 PLA2G16 phospholipase A2 group XVI 11 protein-coding AdPLA|H-REV107-1|HRASLS3|HREV107|HREV107-1|HREV107-3|HRSL3 HRAS-like suppressor 3|Ca-independent phospholipase A1/2|H-rev 107 protein homolog|HRAS-like suppressor 1|adipose-specific PLA2|adipose-specific phospholipase A2|group XVI phospholipase A1/A2|group XVI phospholipase A2|renal carcinoma antigen NY-REN-65 10 0.001369 9.452 1 1 +11146 GLMN glomulin, FKBP associated protein 1 protein-coding FAP|FAP48|FAP68|FKBPAP|GLML|GVM|VMGLOM glomulin|FK506-binding protein-associated protein|FKBP-associated protein 33 0.004517 7.004 1 1 +11147 HHLA3 HERV-H LTR-associating 3 1 protein-coding - 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 10 0.001369 7.223 1 1 +11148 HHLA2 HERV-H LTR-associating 2 3 protein-coding B7-H5|B7-H7|B7H7|B7y HERV-H LTR-associating protein 2|human endogenous retrovirus-H long terminal repeat-associating protein 2 35 0.004791 2.7 1 1 +11149 BVES blood vessel epicardial substance 6 protein-coding HBVES|LGMD2X|POP1|POPDC1 blood vessel epicardial substance|popeye domain-containing protein 1 37 0.005064 5.955 1 1 +11151 CORO1A coronin 1A 16 protein-coding CLABP|CLIPINA|HCORO1|IMD8|TACO|p57 coronin-1A|clipin-A|coronin, actin binding protein, 1A|coronin-1|coronin-like protein A|coronin-like protein p57|tryptophan aspartate-containing coat protein 27 0.003696 9.716 1 1 +11152 WDR45 WD repeat domain 45 X protein-coding JM5|NBIA4|NBIA5|WDRX1|WIPI-4|WIPI4 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|neurodegeneration with brain iron accumulation 5 43 0.005886 10.09 1 1 +11153 FICD FIC domain containing 12 protein-coding HIP13|HYPE|UNQ3041 adenosine monophosphate-protein transferase FICD|AMPylator FICD|FIC domain-containing protein|HIP-13|Huntingtin interacting protein E|fic S-phase protein cell division homolog|huntingtin interactor protein E|huntingtin yeast partner E|huntingtin-interacting protein 13|huntingtin-interacting protein E 18 0.002464 6.127 1 1 +11154 AP4S1 adaptor related protein complex 4 sigma 1 subunit 14 protein-coding AP47B|CLA20|CLAPS4|CPSQ6|SPG52 AP-4 complex subunit sigma-1|AP-4 adapter complex subunit sigma-1|AP-4 adaptor complex subunit sigma-1|adaptor-related protein complex 4 subunit sigma-1|clathrin-associated/assembly/adaptor protein, sigma 4|sigma-4-adaptin 8 0.001095 6.258 1 1 +11155 LDB3 LIM domain binding 3 10 protein-coding CMD1C|CMH24|CMPD3|CYPHER|LDB3Z1|LDB3Z4|LVNC3|MFM4|ORACLE|PDLIM6|ZASP LIM domain-binding protein 3|PDZ and LIM domain 6|Z-band alternatively spliced PDZ-motif protein|cardiomyopathy, dilated 1C (autosomal dominant)|protein cypher 61 0.008349 4.878 1 1 +11156 PTP4A3 protein tyrosine phosphatase type IVA, member 3 8 protein-coding PRL-3|PRL-R|PRL3 protein tyrosine phosphatase type IVA 3|potentially prenylated protein tyrosine phosphatase|protein-tyrosine phosphatase 4a3|protein-tyrosine phosphatase of regenerating liver 3 24 0.003285 9.352 1 1 +11157 LSM6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated 4 protein-coding YDR378C U6 snRNA-associated Sm-like protein LSm6|LSM6 U6 small nuclear RNA and mRNA degradation associated|LSM6 homolog, U6 small nuclear RNA associated|Sm protein F 2 0.0002737 7.943 1 1 +11158 RABL2B RAB, member of RAS oncogene family-like 2B 22 protein-coding - rab-like protein 2B 12 0.001642 8.329 1 1 +11159 RABL2A RAB, member of RAS oncogene family-like 2A 2 protein-coding - rab-like protein 2A 8 0.001095 8.049 1 1 +11160 ERLIN2 ER lipid raft associated 2 8 protein-coding C8orf2|Erlin-2|NET32|SPFH2|SPG18 erlin-2|SPFH domain family, member 2|endoplasmic reticulum lipid raft-associated protein 2|stomatin-prohibitin-flotillin-HflC/K domain-containing protein 2 23 0.003148 10.63 1 1 +11161 C14orf1 chromosome 14 open reading frame 1 14 protein-coding ERG28|NET51 probable ergosterol biosynthetic protein 28 6 0.0008212 10.05 1 1 +11162 NUDT6 nudix hydrolase 6 4 protein-coding ASFGF2|FGF-AS|FGF2AS|GFG-1|GFG1 nucleoside diphosphate-linked moiety X motif 6|antisense basic fibroblast growth factor|nudix (nucleoside diphosphate linked moiety X)-type motif 6 22 0.003011 6.232 1 1 +11163 NUDT4 nudix hydrolase 4 12 protein-coding DIPP2|DIPP2alpha|DIPP2beta|HDCMB47P diphosphoinositol polyphosphate phosphohydrolase 2|DIPP-2|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 2|diphosphoinositol polyphosphate phosphohydrolase type 2|nudix (nucleoside diphosphate linked moiety X)-type motif 4 8 0.001095 9.887 1 1 +11164 NUDT5 nudix hydrolase 5 10 protein-coding YSA1|YSA1H|YSAH1|hNUDT5 ADP-sugar pyrophosphatase|8-oxo-dGDP phosphatase|nuclear ATP-synthesis protein NUDIX5|nudix (nucleoside diphosphate linked moiety X)-type motif 5 17 0.002327 9.59 1 1 +11165 NUDT3 nudix hydrolase 3 6 protein-coding DIPP|DIPP-1|DIPP1 diphosphoinositol polyphosphate phosphohydrolase 1|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 1|nucleoside diphosphate-linked moiety X motif 3|nudix (nucleoside diphosphate linked moiety X)-type motif 3|nudix motif 3 8 0.001095 9.076 1 1 +11166 SOX21 SRY-box 21 13 protein-coding SOX25 transcription factor SOX-21|SOX-A|SRY (sex determining region Y)-box 21 15 0.002053 3.264 1 1 +11167 FSTL1 follistatin like 1 3 protein-coding FRP|FSL1|MIR198|OCC-1|OCC1|tsc36 follistatin-related protein 1|follistatin-like protein 1 26 0.003559 12.05 1 1 +11168 PSIP1 PC4 and SFRS1 interacting protein 1 9 protein-coding DFS70|LEDGF|PAIP|PSIP2|p52|p75 PC4 and SFRS1-interacting protein|CLL-associated antigen KW-7|dense fine speckles 70 kDa protein|lens epithelium-derived growth factor|transcriptional coactivator p52/p75 68 0.009307 10.32 1 1 +11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 14 protein-coding AND-1|AND1|CHTF4|CTF4 WD repeat and HMG-box DNA-binding protein 1|Acidic nucleoplasmic DNA-binding protein 1|CTF4, chromosome transmission fidelity factor 4 homolog 62 0.008486 7.611 1 1 +11170 FAM107A family with sequence similarity 107 member A 3 protein-coding DRR1|TU3A protein FAM107A|down-regulated in renal cell carcinoma 1 10 0.001369 7.769 1 1 +11171 STRAP serine/threonine kinase receptor associated protein 12 protein-coding MAWD|PT-WD|UNRIP serine-threonine kinase receptor-associated protein|MAP activator with WD repeats|WD-40 repeat protein PT-WD|unr-interacting protein 23 0.003148 11.2 1 1 +11172 INSL6 insulin like 6 9 protein-coding RIF1 insulin-like peptide INSL6|insulin-like peptide 5|insulin-like peptide 6|relaxin/insulin-like factor 1 23 0.003148 0.2248 1 1 +11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 15 protein-coding ADAM-TS 7|ADAM-TS7|ADAMTS-7 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 128 0.01752 7.207 1 1 +11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 5 protein-coding ADAM-TS 6|ADAM-TS6|ADAMTS-6 A disintegrin and metalloproteinase with thrombospondin motifs 6|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 6 54 0.007391 4.977 1 1 +11176 BAZ2A bromodomain adjacent to zinc finger domain 2A 12 protein-coding TIP5|WALp3 bromodomain adjacent to zinc finger domain protein 2A|TTF-I interacting peptide 5|TTF-I-interacting protein 5|transcription termination factor I-interacting protein 5 100 0.01369 11.22 1 1 +11177 BAZ1A bromodomain adjacent to zinc finger domain 1A 14 protein-coding ACF1|WALp1|WCRF180|hACF1 bromodomain adjacent to zinc finger domain protein 1A|ATP-dependent chromatin remodeling protein|ATP-utilizing chromatin assembly and remodeling factor 1|CHRAC subunit ACF1|hWALp1|williams syndrome transcription factor-related chromatin-remodeling factor 180 74 0.01013 9.839 1 1 +11178 LZTS1 leucine zipper tumor suppressor 1 8 protein-coding F37|FEZ1 leucine zipper putative tumor suppressor 1|F37/Esophageal cancer-related gene-coding leucine-zipper motif|leucine zipper, putative tumor suppressor 1 63 0.008623 7.909 1 1 +11179 ZNF277 zinc finger protein 277 7 protein-coding NRIF4|ZNF277P zinc finger protein 277|nuclear receptor-interacting factor 4|zinc finger protein (C2H2 type) 277|zinc finger protein 277 pseudogene 29 0.003969 8.696 1 1 +11180 WDR6 WD repeat domain 6 3 protein-coding - WD repeat-containing protein 6 74 0.01013 11.59 1 1 +11181 TREH trehalase 11 protein-coding TRE|TREA trehalase|alpha,alpha-trehalose glucohydrolase|trehalase (brush-border membrane glycoprotein) 17 0.002327 1.349 1 1 +11182 SLC2A6 solute carrier family 2 member 6 9 protein-coding GLUT6|GLUT9|HSA011372 solute carrier family 2, facilitated glucose transporter member 6|GLUT-6|GLUT-9|glucose transporter type 6|glucose transporter type 9|solute carrier family 2 (facilitated glucose transporter), member 6 30 0.004106 7.064 1 1 +11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 14 protein-coding GCKR|KHS|KHS1|MAPKKKK5 mitogen-activated protein kinase kinase kinase kinase 5|MAPK/ERK kinase kinase kinase 5|MEK kinase kinase 5|MEKKK 5|germinal center kinase-related|kinase homologous to SPS1/STE20 34 0.004654 9.65 1 1 +11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 19 protein-coding HPK1 mitogen-activated protein kinase kinase kinase kinase 1|MAPK/ERK kinase kinase kinase 1|MEK kinase kinase 1|MEKKK 1|hematopoietic progenitor kinase 1 63 0.008623 6.498 1 1 +11185 INMT indolethylamine N-methyltransferase 7 protein-coding TEMT indolethylamine N-methyltransferase|amine N-methyltransferase|aromatic alkylamine N-methyltransferase|arylamine N-methyltransferase|indolamine N-methyltransferase|nicotine N-methyltransferase|thioether S-methyltransferase 24 0.003285 6.515 1 1 +11186 RASSF1 Ras association domain family member 1 3 protein-coding 123F2|NORE2A|RASSF1A|RDA32|REH3P21 ras association domain-containing protein 1|Ras association (RalGDS/AF-6) domain family member 1|WUGSC:H_LUCA12.5|cardiac-specific ras association domain family 1 protein|pancreas-specific ras association domain family 1 protein|tumor suppressor protein RDA32 20 0.002737 9.013 1 1 +11187 PKP3 plakophilin 3 11 protein-coding - plakophilin-3|plakophilin 3b 44 0.006022 8.362 1 1 +11188 NISCH nischarin 3 protein-coding I-1|IR1|IRAS|hIRAS nischarin|I-1 receptor candidate protein|I1R candidate protein|imidazoline receptor 1|imidazoline receptor antisera selected 80 0.01095 10.88 1 1 +11189 CELF3 CUGBP, Elav-like family member 3 1 protein-coding BRUNOL1|CAGH4|ERDA4|ETR-1|TNRC4 CUGBP Elav-like family member 3|CAG repeat domain|CAG repeat protein 4|CUG-BP- and ETR-3-like factor 3|ELAV-type RNA-binding protein 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 40 0.005475 2.279 1 1 +11190 CEP250 centrosomal protein 250 20 protein-coding C-NAP1|CEP2|CNAP1 centrosome-associated protein CEP250|250 kDa centrosomal protein|centrosomal Nek2-associated protein 1 130 0.01779 9.795 1 1 +11191 PTENP1 phosphatase and tensin homolog pseudogene 1 9 pseudo PTEN-rs|PTEN2|PTENpg1|PTH2|psiPTEN PTEN/MMAC1 pseudogene|phosphatase and tensin homolog (mutated in multiple advanced cancers 1), pseudogene 1|phosphatase and tensin homolog pseudogene 1 (functional) 52 0.007117 7.831 1 1 +11193 WBP4 WW domain binding protein 4 13 protein-coding FBP21 WW domain-binding protein 4|WBP-4|WW domain-containing binding protein 4|domain-containing binding protein 4|formin binding protein 21 26 0.003559 8.278 1 1 +11194 ABCB8 ATP binding cassette subfamily B member 8 7 protein-coding EST328128|M-ABC1|MABC1 ATP-binding cassette sub-family B member 8, mitochondrial|ATP-binding cassette, sub-family B (MDR/TAP), member 8|mitochondrial ABC protein|mitochondrial ATP-binding cassette 1 58 0.007939 9.636 1 1 +11196 SEC23IP SEC23 interacting protein 10 protein-coding MSTP053|P125|P125A SEC23-interacting protein 68 0.009307 9.833 1 1 +11197 WIF1 WNT inhibitory factor 1 12 protein-coding WIF-1 wnt inhibitory factor 1 51 0.006981 2.554 1 1 +11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit 14 protein-coding CDC68|FACTP140|SPT16|SPT16/CDC68 FACT complex subunit SPT16|FACT 140 kDa subunit|chromatin-specific transcription elongation factor 140 kDa subunit|facilitates chromatin remodeling 140 kDa subunit|facilitates chromatin transcription complex subunit SPT16|hSPT16|suppressor of Ty 16 homolog 83 0.01136 11.43 1 1 +11199 ANXA10 annexin A10 4 protein-coding ANX14 annexin A10|annexin 14|annexin-10 26 0.003559 1.906 1 1 +11200 CHEK2 checkpoint kinase 2 22 protein-coding CDS1|CHK2|HuCds1|LFS2|PP1425|RAD53|hCds1 serine/threonine-protein kinase Chk2|CHK2 checkpoint homolog|cds1 homolog|checkpoint-like protein CHK2 186 0.02546 7.617 1 1 +11201 POLI DNA polymerase iota 18 protein-coding RAD30B|RAD3OB DNA polymerase iota|RAD30 homolog B|eta2|polymerase (DNA directed) iota|polymerase (DNA) iota|polymerase (DNA-directed), iota 45 0.006159 8.44 1 1 +11202 KLK8 kallikrein related peptidase 8 19 protein-coding HNP|NP|NRPN|PRSS19|TADG14 kallikrein-8|ovasin|serine protease 19|serine protease TADG-14|tumor-associated differentially expressed gene 14 protein 33 0.004517 3.032 1 1 +11209 MST1P2 macrophage stimulating 1 pseudogene 2 1 pseudo MSPL-1|MSPL-2|MSPL-3|MSPL1|MSPL2|MSPL3|MSTP1|MSTP2|MSTP3 macrophage stimulating 1 (hepatocyte growth factor-like) pseudogene 2|macrophage stimulating, pseudogene 1|macrophage stimulating, pseudogene 2|macrophage stimulating, pseudogene 3 18 0.002464 6.064 1 1 +11211 FZD10 frizzled class receptor 10 12 protein-coding CD350|FZ-10|Fz10|FzE7|hFz10 frizzled-10|frizzled 10, seven transmembrane spanning receptor|frizzled family receptor 10|frizzled homolog 10 101 0.01382 4.98 1 1 +11212 PROSC proline synthetase cotranscribed homolog (bacterial) 8 protein-coding - proline synthase co-transcribed bacterial homolog protein|proline synthetase co-transcribed (bacterial homolog)|proline synthetase co-transcribed bacterial homolog protein|proline synthetase co-transcribed homolog 26 0.003559 10.02 1 1 +11213 IRAK3 interleukin 1 receptor associated kinase 3 12 protein-coding ASRT5|IRAKM interleukin-1 receptor-associated kinase 3|IL-1 receptor-associated kinase M 56 0.007665 7.343 1 1 +11214 AKAP13 A-kinase anchoring protein 13 15 protein-coding AKAP-13|AKAP-Lbc|ARHGEF13|BRX|HA-3|Ht31|LBC|PRKA13|PROTO-LB|PROTO-LBC|c-lbc|p47 A-kinase anchor protein 13|A kinase (PRKA) 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 170 0.02327 11.34 1 1 +11215 AKAP11 A-kinase anchoring protein 11 13 protein-coding AKAP-11|AKAP220|PPP1R44|PRKA11 A-kinase anchor protein 11|A kinase (PRKA) 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 phosphatase 1, regulatory subunit 44 114 0.0156 10.14 1 1 +11216 AKAP10 A-kinase anchoring protein 10 17 protein-coding AKAP-10|D-AKAP-2|D-AKAP2|PRKA10 A-kinase anchor protein 10, mitochondrial|A kinase (PRKA) anchor protein 10|A kinase anchor protein 10|dual specificity A kinase-anchoring protein 2|mitochondrial A kinase PPKA anchor protein 10|protein kinase A anchoring protein 10 27 0.003696 8.414 1 1 +11217 AKAP2 A-kinase anchoring protein 2 9 protein-coding AKAP-2|AKAPKL|MISP2|PRKA2 A-kinase anchor protein 2|A kinase (PRKA) anchor protein 2|protein kinase A anchoring protein 2|protein kinase A2 8 0.001095 8.557 1 1 +11218 DDX20 DEAD-box helicase 20 1 protein-coding DP103|GEMIN3 probable ATP-dependent RNA helicase DDX20|DEAD (Asp-Glu-Ala-Asp) box polypeptide 20|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 44 0.006022 8.56 1 1 +11219 TREX2 three prime repair exonuclease 2 X protein-coding - three prime repair exonuclease 2|3'-5' exonuclease TREX2 long form 28 0.003832 2.749 1 1 +11221 DUSP10 dual specificity phosphatase 10 1 protein-coding MKP-5|MKP5 dual specificity protein phosphatase 10|dual specificity phosphatase MKP-5|map kinase phosphatase 5|mitogen-activated protein kinase phosphatase 5|serine/threonine specific protein phosphatase 44 0.006022 8.034 1 1 +11222 MRPL3 mitochondrial ribosomal protein L3 3 protein-coding COXPD9|MRL3|RPML3 39S ribosomal protein L3, mitochondrial|L3mt|MRP-L3|mitochondrial 60S ribosomal protein L3 31 0.004243 10.78 1 1 +11223 MST1L macrophage stimulating 1 like 1 protein-coding BRF-1|D1F15S1A|MSPL-7|MSPL7|MST1P9|MSTP7|MSTP9 putative macrophage stimulating 1-like protein|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 148 0.02026 4.855 1 1 +11224 RPL35 ribosomal protein L35 9 protein-coding L35 60S ribosomal protein L35 10 0.001369 13.01 1 1 +11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 12 protein-coding GALNAC-T6|GalNAcT6 polypeptide N-acetylgalactosaminyltransferase 6|GalNAc transferase 6|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 6|UDP-N-acetyl-alpha-D-galactosamine: polypeptide N-acetylgalactosaminyltransferase 6|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 6 (GalNAc-T6)|polypeptide GalNAc transferase 6|pp-GaNTase 6|protein-UDP acetylgalactosaminyltransferase 6 47 0.006433 8.443 1 1 +11227 GALNT5 polypeptide N-acetylgalactosaminyltransferase 5 2 protein-coding GALNAC-T5|GALNACT5 polypeptide N-acetylgalactosaminyltransferase 5|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 5|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 5 (GalNAc-T5)|polypeptide GalNAc transferase 5|pp-GaNTase 5|protein-UDP acetylgalactosaminyltransferase 5 71 0.009718 5.118 1 1 +11228 RASSF8 Ras association domain family member 8 12 protein-coding C12orf2|HOJ1 ras association domain-containing protein 8|Ras association (RalGDS/AF-6) domain family (N-terminal) member 8|carcinoma-associated protein HOJ-1 26 0.003559 8.39 1 1 +11230 PRAF2 PRA1 domain family member 2 X protein-coding JM4|Yip6a PRA1 family protein 2|Jena-Muenchen 4 6 0.0008212 9.45 1 1 +11231 SEC63 SEC63 homolog, protein translocation regulator 6 protein-coding DNAJC23|ERdj2|PCLD2|PRO2507|SEC63L translocation protein SEC63 homolog|SEC63 homolog|SEC63 protein translocation regulator|SEC63-like protein 57 0.007802 11.12 1 1 +11232 POLG2 DNA polymerase gamma 2, accessory subunit 17 protein-coding HP55|MTPOLB|PEOA4|POLB|POLG-BETA|POLGB DNA polymerase subunit gamma-2, mitochondrial|DNA polymerase gamma accessory 55 kDa subunit|mitochondrial DNA polymerase subunit gamma-2|mitochondrial DNA polymerase, accessory subunit|p55|polymerase (DNA directed), gamma 2, accessory subunit|polymerase (DNA) gamma 2, accessory subunit 32 0.00438 6.872 1 1 +11234 HPS5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 11 protein-coding AIBP63|BLOC2S2 Hermansky-Pudlak syndrome 5 protein|alpha integrin binding protein 63|ruby-eye protein 2 homolog 52 0.007117 9.069 1 1 +11235 PDCD10 programmed cell death 10 3 protein-coding CCM3|TFAR15 programmed cell death protein 10|TF-1 cell apoptosis-related protein 15|apoptosis-related protein 15|cerebral cavernous malformations 3 protein 25 0.003422 9.407 1 1 +11236 RNF139 ring finger protein 139 8 protein-coding HRCA1|RCA1|TRC8 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 37 0.005064 9.858 1 1 +11237 RNF24 ring finger protein 24 20 protein-coding G1L RING finger protein 24 8 0.001095 8.049 1 1 +11238 CA5B carbonic anhydrase 5B X protein-coding CA-VB carbonic anhydrase 5B, mitochondrial|carbonate dehydratase VB|carbonic anhydrase VB, mitochondrial|carbonic dehydratase 19 0.002601 7.53 1 1 +11240 PADI2 peptidyl arginine deiminase 2 1 protein-coding PAD-H19|PAD2|PDI2 protein-arginine deiminase type-2|peptidyl arginine deiminase, type II|protein-arginine deiminase type II 57 0.007802 7.623 1 1 +11243 PMF1 polyamine modulated factor 1 1 protein-coding - polyamine-modulated factor 1|Est1p-like protein B (EST1B) 13 0.001779 9.952 1 1 +11244 ZHX1 zinc fingers and homeoboxes 1 8 protein-coding - zinc fingers and homeoboxes protein 1|zinc finger and homeodomain protein 1|zinc fingers and homeobox 1 48 0.00657 9.791 1 1 +11245 GPR176 G protein-coupled receptor 176 15 protein-coding HB-954 probable G-protein coupled receptor 176 24 0.003285 6.407 1 1 +11247 NXPH4 neurexophilin 4 12 protein-coding NPH4 neurexophilin-4|alternative protein NXPH4 13 0.001779 6.187 1 1 +11248 NXPH3 neurexophilin 3 17 protein-coding NPH3 neurexophilin-3 19 0.002601 5.889 1 1 +11249 NXPH2 neurexophilin 2 2 protein-coding NPH2 neurexophilin-2 36 0.004927 1.473 1 1 +11250 GPR45 G protein-coupled receptor 45 2 protein-coding PSP24|PSP24(ALPHA)|PSP24A probable G-protein coupled receptor 45|PSP24-1|PSP24-alpha|high-affinity lysophosphatidic acid receptor 56 0.007665 1.196 1 1 +11251 PTGDR2 prostaglandin D2 receptor 2 11 protein-coding CD294|CRTH2|DL1R|DP2|GPR44 prostaglandin D2 receptor 2|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 21 0.002874 3.111 1 1 +11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 22 protein-coding SDPII protein kinase C and casein kinase substrate in neurons protein 2|cytoplasmic phosphoprotein PACSIN2|syndapin-2|syndapin-II|syndapin2 26 0.003559 9.901 1 1 +11253 MAN1B1 mannosidase alpha class 1B member 1 9 protein-coding ERMAN1|ERManI|MANA-ER|MRT15 endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase|ER alpha 1,2-mannosidase|Man9GlcNAc2-specific processing alpha-mannosidase|endoplasmic Reticulum Class I alpha-mannosidase|endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase 1 46 0.006296 10.9 1 1 +11254 SLC6A14 solute carrier family 6 member 14 X protein-coding BMIQ11 sodium- and chloride-dependent neutral and basic amino acid transporter B(0+)|amino acid transporter ATB0+|amino acid transporter B0+|solute carrier family 6 (amino acid transporter), member 14|solute carrier family 6 (neurotransmitter transporter), member 14 50 0.006844 4.344 1 1 +11255 HRH3 histamine receptor H3 20 protein-coding GPCR97|HH3R histamine H3 receptor|G protein-coupled receptor 97|H3R 33 0.004517 1.403 1 1 +11257 TP53TG1 TP53 target 1 (non-protein coding) 7 ncRNA LINC00096|NCRNA00096|P53TG1|P53TG1-D|TP53AP1 H_RG012D21.9|TP53 activated protein 1|TP53 target gene 1|long intergenic non-protein coding RNA 96 13 0.001779 8.3 1 1 +11258 DCTN3 dynactin subunit 3 9 protein-coding DCTN-22|DCTN22 dynactin subunit 3|dynactin 3 (p22)|dynactin complex subunit 22 kDa subunit|dynactin light chain 7 0.0009581 9.862 1 1 +11259 FILIP1L filamin A interacting protein 1 like 3 protein-coding DOC-1|DOC1|GIP130|GIP90 filamin A-interacting protein 1-like|130 kDa GPBP-interacting protein|90 kDa GPBP-interacting protein|protein down-regulated in ovarian cancer 1 71 0.009718 9.042 1 1 +11260 XPOT exportin for tRNA 12 protein-coding XPO3 exportin-T|exportin(tRNA)|exportin, tRNA (nuclear export receptor for tRNAs)|tRNA exportin 69 0.009444 10.8 1 1 +11261 CHP1 calcineurin like EF-hand protein 1 15 protein-coding CHP|SLC9A1BP|Sid470p|p22|p24 calcineurin B homologous protein 1|EF-hand calcium-binding domain-containing protein p22|SLC9A1 binding protein|calcineurin B homolog|calcineurin B-like protein|calcineurin homologous protein|calcium binding protein P22|calcium-binding protein CHP|calcium-binding protein p22 10 0.001369 11.45 1 1 +11262 SP140 SP140 nuclear body protein 2 protein-coding LYSP100|LYSP100-A|LYSP100-B nuclear body protein SP140|lymphoid-restricted homolog of Sp100|lymphoid-specific SP100 homolog|nuclear autoantigen Sp-140|speckled 140 kDa 80 0.01095 5.663 1 1 +11264 PXMP4 peroxisomal membrane protein 4 20 protein-coding PMP24 peroxisomal membrane protein 4|24 kDa peroxisomal intrinsic membrane protein|peroxisomal membrane protein 4, 24kDa 21 0.002874 8.986 1 1 +11266 DUSP12 dual specificity phosphatase 12 1 protein-coding DUSP1|YVH1 dual specificity protein phosphatase 12|YVH1 protein-tyrosine phosphatase ortholog|dual specificity tyrosine phosphatase YVH1|serine/threonine specific protein phosphatase 22 0.003011 8.166 1 1 +11267 SNF8 SNF8, ESCRT-II complex subunit 17 protein-coding Dot3|EAP30|VPS22 vacuolar-sorting protein SNF8|EAP30 subunit of ELL complex|ELL-associated protein of 30 kDa|ESCRT-II complex subunit VPS22|SNF8, ESCRT-II complex subunit, homolog 16 0.00219 10 1 1 +11269 DDX19B DEAD-box helicase 19B 16 protein-coding DBP5|DDX19|RNAh ATP-dependent RNA helicase DDX19B|ATP-dependent RNA helicase DDX19|DEAD (Asp-Glu-Ala-As) box polypeptide 19B|DEAD (Asp-Glu-Ala-Asp) box polypeptide 19B|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 27 0.003696 9.416 1 1 +11270 NRM nurim (nuclear envelope membrane protein) 6 protein-coding NRM29 nurim|nuclear rim protein 18 0.002464 8.597 1 1 +11272 PRR4 proline rich 4 (lacrimal) 12 protein-coding LPRP|PROL4 proline-rich protein 4|lacrimal proline-rich protein|nasopharyngeal carcinoma-associated proline-rich protein 4|proline-rich polypeptide 4 22 0.003011 5.243 1 1 +11273 ATXN2L ataxin 2 like 16 protein-coding A2D|A2LG|A2LP|A2RP ataxin-2-like protein|ataxin 2 related protein|ataxin-2 domain protein 84 0.0115 11.49 1 1 +11274 USP18 ubiquitin specific peptidase 18 22 protein-coding ISG43|UBP43 ubl carboxyl-terminal hydrolase 18|43 kDa ISG15-specific protease|ISG15-specific-processing protease|hUBP43|ubiquitin specific protease 18|ubl thioesterase 18|ubl thiolesterase 18 15 0.002053 8.273 1 1 +11275 KLHL2 kelch like family member 2 4 protein-coding ABP-KELCH|MAV|MAYVEN kelch-like protein 2|actin-binding protein Mayven|kelch|kelch-like 2, Mayven 43 0.005886 8.645 1 1 +11276 SYNRG synergin gamma 17 protein-coding AP1GBP1|SYNG synergin gamma|AP1 gamma subunit binding protein 1|AP1 subunit gamma-binding protein 1|adaptor-related protein complex 1 gamma subunit-binding protein 1|gamma-synergin 81 0.01109 10.01 1 1 +11277 TREX1 three prime repair exonuclease 1 3 protein-coding AGS1|CRV|DRN3|HERNS three-prime repair exonuclease 1|3' repair exonuclease 1|3'-5' exonuclease TREX1|DNase III|deoxyribonuclease III 21 0.002874 8.575 1 1 +11278 KLF12 Kruppel like factor 12 13 protein-coding AP-2rep|AP2REP|HSPC122 Krueppel-like factor 12|AP-2 repressor|AP-2rep transcription factor|KLF12 zinc finger transcriptional repressor|transcriptional repressor AP-2rep 19 0.002601 8.316 1 1 +11279 KLF8 Kruppel like factor 8 X protein-coding BKLF3|ZNF741 Krueppel-like factor 8|basic krueppel-like factor 3|basic kruppel-like factor 3|zinc finger protein 741 36 0.004927 6.589 1 1 +11280 SCN11A sodium voltage-gated channel alpha subunit 11 3 protein-coding FEPS3|HSAN7|NAV1.9|NaN|PN5|SCN12A|SNS-2 sodium channel protein type 11 subunit alpha|peripheral nerve sodium channel 5|sensory neuron sodium channel 2|sodium channel protein type XI subunit alpha|sodium channel, voltage-gated, type XI, alpha polypeptide|sodium channel, voltage-gated, type XI, alpha subunit|sodium channel, voltage-gated, type XII, alpha polypeptide|voltage-gated sodium channel subunit alpha Nav1.9 179 0.0245 2.407 1 1 +11281 POU6F2 POU class 6 homeobox 2 7 protein-coding RPF-1|WT5|WTSL POU domain, class 6, transcription factor 2|Wilms tumor suppressor locus|retina-derived POU-domain factor-1 76 0.0104 1.35 1 1 +11282 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B 5 protein-coding GNT-IV|GNT-IVB alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase B|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 beta-1,4-N-acetylglucosaminyltransferase|aminyltransferase|glcNAc-T IVb|mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isoenzyme B 37 0.005064 11.25 1 1 +11283 CYP4F8 cytochrome P450 family 4 subfamily F member 8 19 protein-coding CPF8|CYPIVF8 cytochrome P450 4F8|cytochrome P450, family 4, subfamily F, polypeptide 8|cytochrome P450, subfamily IVF, polypeptide 8|flavoprotein-linked monooxygenase|microsomal monooxygenase 94 0.01287 1.258 1 1 +11284 PNKP polynucleotide kinase 3'-phosphatase 19 protein-coding AOA4|EIEE10|MCSZ|PNK bifunctional polynucleotide phosphatase/kinase|DNA 5'-kinase/3'-phosphatase|Homo sapiens polynucleotide kinase 3'-phosphatase (PNKP) 26 0.003559 9.203 1 1 +11285 B4GALT7 beta-1,4-galactosyltransferase 7 5 protein-coding EDSP1|EDSSLA|XGALT1|XGPT1 beta-1,4-galactosyltransferase 7|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 VII|beta4Gal-T7|beta4GalT-VII|galactosyltransferase I|proteoglycan UDP-galactose:beta-xylose beta1,4-galactosyltransferase I|xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 17 0.002327 9.249 1 1 +11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 11 protein-coding OATP-B|OATP2B1|OATPB|SLC21A9 solute carrier organic anion transporter family member 2B1|OATP-RP2|organic anion transporter B|organic anion transporter polypeptide-related protein 2|solute carrier family 21 (organic anion transporter), member 9 53 0.007254 9.761 1 1 +11311 VPS45 vacuolar protein sorting 45 homolog 1 protein-coding H1|H1VPS45|SCN5|VPS45A|VPS45B|VPS54A|VSP45|VSP45A vacuolar protein sorting-associated protein 45|hlVps45|leucocyte vacuolar protein sorting 45|vacuolar protein sorting 45A 41 0.005612 9.76 1 1 +11313 LYPLA2 lysophospholipase II 1 protein-coding APT-2|APT2|DJ886K2.4 acyl-protein thioesterase 2|LPL-II|lysoPLA II|testicular tissue protein Li 3 13 0.001779 10.56 1 1 +11314 CD300A CD300a molecule 17 protein-coding CLM-8|CMRF-35-H9|CMRF-35H|CMRF35-H|CMRF35-H9|CMRF35H|CMRF35H9|IGSF12|IRC1|IRC1/IRC2|IRC2|IRp60 CMRF35-like molecule 8|CD300 antigen-like family member A|CD300a antigen|CMRF35H leukocyte immunoglobulin-like receptor|NK inhibitory receptor|immunoglobulin superfamily member 12|inhibitory receptor protein 60|leukocyte membrane antigen 27 0.003696 7.161 1 1 +11315 PARK7 Parkinsonism associated deglycase 1 protein-coding DJ-1|DJ1|HEL-S-67p protein deglycase DJ-1|Parkinson disease (autosomal recessive, early onset) 7|epididymis secretory sperm binding protein Li 67p|oncogene DJ1|parkinson protein 7|protein DJ-1 11 0.001506 11.9 1 1 +11316 COPE coatomer protein complex subunit epsilon 19 protein-coding epsilon-COP coatomer subunit epsilon|coatomer epsilon subunit|epsilon coat protein 18 0.002464 11.57 1 1 +11317 RBPJL recombination signal binding protein for immunoglobulin kappa J region like 20 protein-coding RBPL|RBPSUHL|SUHL recombining binding protein suppressor of hairless-like protein|transcription factor RBP-L 44 0.006022 0.4312 1 1 +11318 GPR182 G protein-coupled receptor 182 12 protein-coding 7TMR|ADMR|AM-R|AMR|G10D|gamrh|hrhAMR G-protein coupled receptor 182|adrenomedullin receptor 21 0.002874 1.306 1 1 +11319 ECD ecdysoneless cell cycle regulator 10 protein-coding GCR2|HSGT1|SGT1 protein ecdysoneless homolog|ecdysoneless homolog|human suppressor of GCR two|protein SGT1|suppressor of GCR2|suppressor of S. cerevisiae gcr2 32 0.00438 9.15 1 1 +11320 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A 2 protein-coding GNT-IV|GNT-IVA|GnT-4a alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase A|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 beta-1,4-N-acetylglucosaminyltransferase|glcNAc-T IVa|mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isoenzyme A 32 0.00438 9.62 1 1 +11321 GPN1 GPN-loop GTPase 1 2 protein-coding ATPBD1A|MBDIN|NTPBP|RPAP4|XAB1 GPN-loop GTPase 1|ATP(GTP)-binding protein|MBD2-interacting protein|RNA polymerase II associated protein 4|RNAPII-associated protein 4|XPA binding protein 1, GTPase 27 0.003696 9.757 1 1 +11322 TMC6 transmembrane channel like 6 17 protein-coding EV1|EVER1|EVIN1|LAK-4P transmembrane channel-like protein 6|epidermodysplasia verruciformis 1|epidermodysplasia verruciformis protein 1|expressed in activated T/LAK lymphocytes|protein LAK-4 56 0.007665 9.855 1 1 +11325 DDX42 DEAD-box helicase 42 17 protein-coding DDX42P|RHELP|RNAHP|SF3B8|SF3b125 ATP-dependent RNA helicase DDX42|DEAD (Asp-Glu-Ala-Asp) box helicase 42|DEAD (Asp-Glu-Ala-Asp) box polypeptide 42|SF3b DEAD box protein|splicing factor 3B-associated 125 kDa protein|splicing factor 3b, subunit 8 59 0.008076 11.4 1 1 +11326 VSIG4 V-set and immunoglobulin domain containing 4 X protein-coding CRIg|Z39IG V-set and immunoglobulin domain-containing protein 4|Ig superfamily protein|complement receptor of the immunoglobulin superfamily|protein Z39Ig 45 0.006159 7.987 1 1 +11328 FKBP9 FK506 binding protein 9 7 protein-coding FKBP60|FKBP63|PPIase peptidyl-prolyl cis-trans isomerase FKBP9|63 kDa FK506-binding protein|63 kDa FKBP|FK506 binding protein 9, 63 kDa|FKBP-63|FKBP-9|PPIase FKBP9|rotamase 52 0.007117 11.31 1 1 +11329 STK38 serine/threonine kinase 38 6 protein-coding NDR|NDR1 serine/threonine-protein kinase 38|NDR1 protein kinase|Ndr Ser/Thr kinase-like protein|nuclear Dbf2-related kinase 1 39 0.005338 10.13 1 1 +11330 CTRC chymotrypsin C 1 protein-coding CLCR|ELA4 chymotrypsin-C|caldecrin|chymotrypsin C (caldecrin)|elastase 4|elastase IV|serum calcium decreasing factor 21 0.002874 0.7482 1 1 +11331 PHB2 prohibitin 2 12 protein-coding BAP|BCAP37|Bap37|PNAS-141|REA|hBAP|p22 prohibitin-2|B-cell associated protein|B-cell receptor-associated protein BAP37|D-prohibitin|repressor of estrogen receptor activity 18 0.002464 11.83 1 1 +11332 ACOT7 acyl-CoA thioesterase 7 1 protein-coding ACH1|ACT|BACH|CTE-II|LACH|LACH1|hBACH cytosolic acyl coenzyme A thioester hydrolase|CTE-IIa|acyl-CoA thioesterase 2|acyl-CoA thioesterase, long chain|brain acyl-CoA hydrolase|long chain acyl-CoA thioester hydrolase 23 0.003148 9.661 1 1 +11333 PDAP1 PDGFA associated protein 1 7 protein-coding HASPP28|PAP|PAP1 28 kDa heat- and acid-stable phosphoprotein|PDGF-associated protein 12 0.001642 11.25 1 1 +11334 TUSC2 tumor suppressor candidate 2 3 protein-coding C3orf11|FUS1|PAP|PDAP2 tumor suppressor candidate 2|PDGFA-associated protein 2|fus-1 protein|fusion 1 protein 3 0.0004106 9.267 1 1 +11335 CBX3 chromobox 3 7 protein-coding HECH|HP1-GAMMA|HP1Hs-gamma chromobox protein homolog 3|HP1 gamma homolog|chromobox homolog 3 (HP1 gamma homolog, Drosophila)|heterochromatin protein 1 homolog gamma|heterochromatin protein HP1 gamma|heterochromatin-like protein 1|modifier 2 protein 22 0.003011 11.78 1 1 +11336 EXOC3 exocyst complex component 3 5 protein-coding SEC6|SEC6L1|Sec6p exocyst complex component 3|SEC6-like 1|Sec 6 homolog|exocyst complex component Sec6 40 0.005475 10.33 1 1 +11337 GABARAP GABA type A receptor-associated protein 17 protein-coding ATG8A|GABARAP-a|MM46 gamma-aminobutyric acid receptor-associated protein|GABA(A) receptor-associated protein|hypothetical protein 8 0.001095 12.54 1 1 +11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 19 protein-coding U2AF65 splicing factor U2AF 65 kDa subunit|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 46 0.006296 11.7 1 1 +11339 OIP5 Opa interacting protein 5 15 protein-coding 5730547N13Rik|CT86|LINT-25|MIS18B|MIS18beta|hMIS18beta protein Mis18-beta|LAP2alpha interactor-25|MIS18 kinetochore protein homolog B|cancer/testis antigen 86|opa-interacting protein 5 17 0.002327 5.756 1 1 +11340 EXOSC8 exosome component 8 13 protein-coding CIP3|EAP2|OIP2|PCH1C|RRP43|Rrp43p|bA421P11.3|p9 exosome complex component RRP43|CBP-interacting protein 3|OIP-2|Opa interacting protein 2|exosome complex exonuclease RRP43|ribosomal RNA-processing protein 43 22 0.003011 8.338 1 1 +11341 SCRG1 stimulator of chondrogenesis 1 4 protein-coding SCRG-1 scrapie-responsive protein 1|scrapie responsive gene 1|scrapie-responsive gene 1 protein 5 0.0006844 3.245 1 1 +11342 RNF13 ring finger protein 13 3 protein-coding RZF E3 ubiquitin-protein ligase RNF13|RING zinc finger protein 25 0.003422 10.43 1 1 +11343 MGLL monoglyceride lipase 3 protein-coding HU-K5|HUK5|MAGL|MGL monoglyceride lipase|lysophospholipase homolog|monoacylglycerol lipase 22 0.003011 10.56 1 1 +11344 TWF2 twinfilin actin binding protein 2 3 protein-coding A6RP|A6r|MSTP011|PTK9L twinfilin-2|A6-related protein|PTK9L protein tyrosine kinase 9-like (A6-related protein)|protein tyrosine kinase 9-like (A6-related protein)|twinfilin, actin-binding protein, homolog 2|twinfilin-1-like protein 17 0.002327 10.14 1 1 +11345 GABARAPL2 GABA type A receptor associated protein like 2 16 protein-coding ATG8|ATG8C|GATE-16|GATE16|GEF-2|GEF2 gamma-aminobutyric acid receptor-associated protein-like 2|GABA(A) receptor-associated protein-like 2|MAP1 light chain 3 related protein|ganglioside expression factor 2|general protein transport factor p16|golgi-associated ATPase enhancer of 16 kDa 9 0.001232 10.73 1 1 +11346 SYNPO synaptopodin 5 protein-coding - synaptopodin 45 0.006159 10.9 1 1 +22794 CASC3 cancer susceptibility candidate 3 17 protein-coding BTZ|MLN51 protein CASC3|MLN 51|barentsz|cancer susceptibility candidate gene 3 protein|metastatic lymph node 51|metastatic lymph node gene 51 protein|protein barentsz 42 0.005749 11.12 1 1 +22795 NID2 nidogen 2 14 protein-coding NID-2 nidogen-2|nidogen 2 (osteonidogen)|osteonidogen 149 0.02039 8.773 1 1 +22796 COG2 component of oligomeric golgi complex 2 1 protein-coding LDLC conserved oligomeric Golgi complex subunit 2|COG complex subunit 2|brefeldin A-sensitive, peripheral Golgi protein|conserved oligomeric Golgi complex protein 2|low density lipoprotein receptor defect C complementing|low density lipoprotein receptor defect C-complementing protein 52 0.007117 9.517 1 1 +22797 TFEC transcription factor EC 7 protein-coding TCFEC|TFE-C|TFEC-L|TFECL|bHLHe34|hTFEC-L transcription factor EC|class E basic helix-loop-helix protein 34 45 0.006159 6.268 1 1 +22798 LAMB4 laminin subunit beta 4 7 protein-coding - laminin subunit beta-4|laminin beta-1-related protein 158 0.02163 1.854 1 1 +22800 RRAS2 related RAS viral (r-ras) oncogene homolog 2 11 protein-coding TC21 ras-related protein R-Ras2|ras-like protein TC21|teratocarcinoma oncogene 26 0.003559 8.596 1 1 +22801 ITGA11 integrin subunit alpha 11 15 protein-coding HsT18964 integrin alpha-11 85 0.01163 7.887 1 1 +22802 CLCA4 chloride channel accessory 4 1 protein-coding CaCC|CaCC2 calcium-activated chloride channel regulator 4|caCC-2|calcium-activated chloride channel family member 4|calcium-activated chloride channel protein 2|chloride channel regulator 4|chloride channel, calcium activated, family member 4|hCLCA4|hCaCC-2 88 0.01204 2.485 1 1 +22803 XRN2 5'-3' exoribonuclease 2 20 protein-coding - 5'-3' exoribonuclease 2|DHP protein|Dhm1-like protein 60 0.008212 10.91 1 1 +22806 IKZF3 IKAROS family zinc finger 3 17 protein-coding AIO|AIOLOS|ZNFN1A3 zinc finger protein Aiolos|IKAROS family zinc finger 3 (Aiolos)|zinc finger DNA binding protein Aiolos|zinc finger protein, subfamily 1A, 3 (Aiolos) 38 0.005201 3.739 1 1 +22807 IKZF2 IKAROS family zinc finger 2 2 protein-coding ANF1A2|HELIOS|ZNF1A2|ZNFN1A2 zinc finger protein Helios|IKAROS family zinc finger 2 (Helios)|ikaros family zinc finger protein 2|zinc finger DNA binding protein Helios|zinc finger protein, subfamily 1A, 2 (Helios) 75 0.01027 7.677 1 1 +22808 MRAS muscle RAS oncogene homolog 3 protein-coding M-RAs|R-RAS3|RRAS3 ras-related protein M-Ras|muscle and microspikes RAS|ras-related protein R-Ras3 14 0.001916 9.025 1 1 +22809 ATF5 activating transcription factor 5 19 protein-coding ATFX|HMFN0395 cyclic AMP-dependent transcription factor ATF-5|cAMP-dependent transcription factor ATF-5|transcription factor ATFx 22 0.003011 10.08 1 1 +22818 COPZ1 coatomer protein complex subunit zeta 1 12 protein-coding CGI-120|COPZ|HSPC181|zeta-COP|zeta1-COP coatomer subunit zeta-1|coatomer protein complex, subunit zeta|zeta-1 COP|zeta-1-coat protein 15 0.002053 11.84 1 1 +22820 COPG1 coatomer protein complex subunit gamma 1 3 protein-coding COPG coatomer subunit gamma-1|coat protein gamma-cop|coatomer protein complex, subunit gamma|coatomer subunit gamma|gamma-1-COP|gamma-1-coat protein|gamma-COP|gamma-coat protein 51 0.006981 12.19 1 1 +22821 RASA3 RAS p21 protein activator 3 13 protein-coding GAP1IP4BP|GAPIII ras GTPase-activating protein 3|GTPase activating protein III|GTPase-activating protein 1 family, inositol 1,3,4,5-tetrakisphosphate-binding protein|Ins(1,3,4,5)P4-binding protein|ins P4-binding protein 63 0.008623 9.008 1 1 +22822 PHLDA1 pleckstrin homology like domain family A member 1 12 protein-coding DT1P1B11|PHRIP|TDAG51 pleckstrin homology-like domain family A member 1|PQ-rich protein|PQR protein|T-cell death-associated gene 51 protein|apoptosis-associated nuclear protein|proline- and glutamine-rich protein|proline- and histidine-rich protein|proline-histidine rich protein 29 0.003969 10.85 1 1 +22823 MTF2 metal response element binding transcription factor 2 1 protein-coding M96|PCL2|TDRD19A|dJ976O13.2 metal-response element-binding transcription factor 2|hPCl2|metal regulatory transcription factor 2|metal-response element DNA-binding protein M96|polycomb-like 2|polycomb-like protein 2|putative DNA binding protein|tudor domain containing 19A 41 0.005612 8.731 1 1 +22824 HSPA4L heat shock protein family A (Hsp70) member 4 like 4 protein-coding APG-1|HSPH3|Osp94 heat shock 70 kDa protein 4L|heat shock 70 kDa protein 4-like protein|heat shock 70-related protein APG-1|heat shock 70kDa protein 4-like|heat shock protein (hsp110 family)|osmotic stress protein 94|testis tissue sperm-binding protein Li 64n 46 0.006296 7.079 1 1 +22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 1 protein-coding HSPC331|SPF31 dnaJ homolog subfamily C member 8|DnaJ (Hsp40) homolog, subfamily C, member 8|splicing protein spf31 24 0.003285 10.86 1 1 +22827 PUF60 poly(U) binding splicing factor 60 8 protein-coding FIR|RoBPI|SIAHBP1|VRJS poly(U)-binding-splicing factor PUF60|FBP interacting repressor|FUSE-binding protein-interacting repressor|Ro ribonucleoprotein-binding protein 1|Siah binding protein 1|poly(U) binding splicing factor 60KDa|pyrimidine tract binding splicing factor 31 0.004243 11.76 1 1 +22828 SCAF8 SR-related CTD associated factor 8 6 protein-coding RBM16 protein SCAF8|CDC5L complex-associated protein 7|RNA-binding motif protein 16|SR-like CTD-associated factor 8|SR-related and CTD-associated factor 8 75 0.01027 9.964 1 1 +22829 NLGN4Y neuroligin 4, Y-linked Y protein-coding - neuroligin-4, Y-linked 24 0.003285 3.558 1 1 +22832 CEP162 centrosomal protein 162 6 protein-coding C6orf84|KIAA1009|QN1 centrosomal protein of 162 kDa|centrosomal protein 162kDa|protein QN1 homolog 102 0.01396 7.322 1 1 +22834 ZNF652 zinc finger protein 652 17 protein-coding - zinc finger protein 652 38 0.005201 10.01 1 1 +22835 ZFP30 ZFP30 zinc finger protein 19 protein-coding ZNF745 zinc finger protein 30 homolog|zinc finger protein 745 54 0.007391 7.382 1 1 +22836 RHOBTB3 Rho related BTB domain containing 3 5 protein-coding - rho-related BTB domain-containing protein 3 33 0.004517 10.12 1 1 +22837 COBLL1 cordon-bleu WH2 repeat protein like 1 2 protein-coding COBLR1 cordon-bleu protein-like 1|COBL-like 1 83 0.01136 9.409 1 1 +22838 RNF44 ring finger protein 44 5 protein-coding - RING finger protein 44 27 0.003696 10.3 1 1 +22839 DLGAP4 DLG associated protein 4 20 protein-coding DAP-4|DAP4|DLP4|SAPAP-4|SAPAP4 disks large-associated protein 4|PSD-95/SAP90-binding protein 4|SAP90/PSD-95-associated protein 4|discs large homolog associated protein 4|discs, large (Drosophila) homolog-associated protein 4 92 0.01259 11.12 1 1 +22841 RAB11FIP2 RAB11 family interacting protein 2 10 protein-coding Rab11-FIP2|nRip11 rab11 family-interacting protein 2|RAB11 family interacting protein 2 (class I)|RAB11-FIP2 long isoform 41 0.005612 8.639 1 1 +22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E 17 protein-coding CaMKP-N|POPX1|PP2CH|caMKN protein phosphatase 1E|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 (PP2C domain containing) 88 0.01204 4.791 1 1 +22844 FRMPD1 FERM and PDZ domain containing 1 9 protein-coding FRMD2 FERM and PDZ domain-containing protein 1|FERM domain-containing protein 2 134 0.01834 3.286 1 1 +22845 DOLK dolichol kinase 9 protein-coding CDG1M|DK|DK1|SEC59|TMEM15 dolichol kinase|SEC59 homolog|dolichol kinase 1|transmembrane protein 15 28 0.003832 8.945 1 1 +22846 VASH1 vasohibin 1 14 protein-coding KIAA1036 vasohibin-1 28 0.003832 9.227 1 1 +22847 ZNF507 zinc finger protein 507 19 protein-coding - zinc finger protein 507 74 0.01013 9.062 1 1 +22848 AAK1 AP2 associated kinase 1 2 protein-coding - AP2-associated protein kinase 1|adaptor-associated kinase 1 55 0.007528 9.98 1 1 +22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 10 protein-coding - cytoplasmic polyadenylation element-binding protein 3|CPE-BP3|CPE-binding protein 3|hCPEB-3 41 0.005612 7.131 1 1 +22850 ADNP2 ADNP homeobox 2 18 protein-coding ZNF508 ADNP homeobox protein 2|zinc finger protein 508 87 0.01191 9.226 1 1 +22852 ANKRD26 ankyrin repeat domain 26 10 protein-coding THC2|bA145E8.1 ankyrin repeat domain-containing protein 26 128 0.01752 7.382 1 1 +22853 LMTK2 lemur tyrosine kinase 2 7 protein-coding AATYK2|BREK|KPI-2|KPI2|LMR2|PPP1R100|cprk|hBREK serine/threonine-protein kinase LMTK2|CDK5/p35-regulated kinase|apoptosis-associated tyrosine kinase 2|brain-enriched kinase|cyclin-dependent kinase 5/p35-regulated kinase|kinase/phosphatase/inhibitor 2|protein phosphatase 1, regulatory subunit 100|serine/threonine-protein kinase KPI-2 104 0.01423 8.345 1 1 +22854 NTNG1 netrin G1 1 protein-coding Lmnt1 netrin-G1|axon guidance molecule|laminet 1 83 0.01136 3.541 1 1 +22856 CHSY1 chondroitin sulfate synthase 1 15 protein-coding CHSY|CSS1|ChSy-1|TPBS chondroitin sulfate synthase 1|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 54 0.007391 9.916 1 1 +22858 ICK intestinal cell kinase 6 protein-coding ECO|LCK2|MRK serine/threonine-protein kinase ICK|MAK-related kinase|hICK|intestinal cell (MAK-like) kinase|laryngeal cancer kinase 2|serine/threonine protein kinase 36 0.004927 9.285 1 1 +22859 ADGRL1 adhesion G protein-coupled receptor L1 19 protein-coding CIRL1|CL1|LEC2|LPHN1 adhesion G protein-coupled receptor L1|CIRL-1|calcium-independent alpha-latrotoxin receptor 1|latrophilin-1|lectomedin-2 93 0.01273 9.832 1 1 +22861 NLRP1 NLR family pyrin domain containing 1 17 protein-coding CARD7|CIDED|CLR17.1|DEFCAP|DEFCAP-L/S|NAC|NALP1|PP1044|SLEV1|VAMAS1 NACHT, LRR and PYD domains-containing protein 1|NACHT, LRR and PYD 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 102 0.01396 8.011 1 1 +22862 FNDC3A fibronectin type III domain containing 3A 13 protein-coding FNDC3|HUGO|bA203I16.1|bA203I16.5 fibronectin type-III domain-containing protein 3A|human gene expressed in odontoblasts 77 0.01054 10.5 1 1 +22863 ATG14 autophagy related 14 14 protein-coding ATG14L|BARKOR|KIAA0831 beclin 1-associated autophagy-related key regulator|ATG14 autophagy related 14 homolog|Beclin 1-Interacting protein|autophagy-related protein 14-like protein 30 0.004106 8.972 1 1 +22864 R3HDM2 R3H domain containing 2 12 protein-coding CAG6|PR01365 R3H domain-containing protein 2 52 0.007117 10.43 1 1 +22865 SLITRK3 SLIT and NTRK like family member 3 3 protein-coding - SLIT and NTRK-like protein 3|slit and trk like gene 3 158 0.02163 2.263 1 1 +22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 X protein-coding CNK2|KSR2|MAGUIN connector enhancer of kinase suppressor of ras 2|CNK homolog protein 2|connector enhancer of KSR2|membrane-associated guanylate kinase-interacting protein 120 0.01642 3.069 1 1 +22868 FASTKD2 FAST kinase domains 2 2 protein-coding KIAA0971 FAST kinase domain-containing protein 2, mitochondrial|FAST kinase domain-containing protein 2 32 0.00438 9.704 1 1 +22869 ZNF510 zinc finger protein 510 9 protein-coding - zinc finger protein 510 39 0.005338 7.934 1 1 +22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 19 protein-coding KIAA1115|PP6R1|SAP190|SAPS1 serine/threonine-protein phosphatase 6 regulatory subunit 1|SAPS domain family, member 1 45 0.006159 11.2 1 1 +22871 NLGN1 neuroligin 1 3 protein-coding NL1 neuroligin-1 127 0.01738 3.992 1 1 +22872 SEC31A SEC31 homolog A, COPII coat complex component 4 protein-coding ABP125|ABP130|HSPC275|HSPC334|SEC31L1 protein transport protein Sec31A|SEC31 homolog A, COPII coating complex component|SEC31-like protein 1|SEC31-related protein A|web1-like protein|yeast Sec31p homolog 83 0.01136 11.95 1 1 +22873 DZIP1 DAZ interacting zinc finger protein 1 13 protein-coding DZIP|DZIPt1 zinc finger protein DZIP1|DAZ interacting protein 1|DAZ interacting protein testis1|DAZ-interacting protein 1/2|zinc finger DAZ interacting protein 1|zinc-finger protein DZIPt1 67 0.009171 7.688 1 1 +22874 PLEKHA6 pleckstrin homology domain containing A6 1 protein-coding PEPP-3|PEPP3 pleckstrin homology domain-containing family A member 6|PH domain-containing family A member 6|phosphoinositol 3-phosphate-binding protein 3 115 0.01574 9.25 1 1 +22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative) 6 protein-coding NPP4 bis(5'-adenosyl)-triphosphatase ENPP4|AP3A hydrolase|AP3Aase|E-NPP 4|NPP-4|ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative function)|ectonucleotide pyrophosphatase/phosphodiesterase family member 4 33 0.004517 8.578 1 1 +22876 INPP5F inositol polyphosphate-5-phosphatase F 10 protein-coding MSTP007|MSTPO47|SAC2|hSAC2 phosphatidylinositide phosphatase SAC2|Sac domain-containing inositol phosphatase 2|sac domain-containing phosphoinositide 4-phosphatase 2|sac domain-containing phosphoinositide 5-phosphatase 2 79 0.01081 9.018 1 1 +22877 MLXIP MLX interacting protein 12 protein-coding MIR|MONDOA|bHLHe36 MLX-interacting protein|Mlx interactor|class E basic helix-loop-helix protein 36|transcriptional activator MondoA 50 0.006844 9.876 1 1 +22878 TRAPPC8 trafficking protein particle complex 8 18 protein-coding GSG1|HsT2706|KIAA1012|TRS85 trafficking protein particle complex subunit 8|general sporulation gene 1 homolog|protein TRS85 homolog 96 0.01314 9.754 1 1 +22879 MON1B MON1 homolog B, secretory trafficking associated 16 protein-coding HSRG1|SAND2|SRG1 vacuolar fusion protein MON1 homolog B|HSV-1 stimulation-related gene 1 protein|HSV-I stimulating-related protein|MON1 homolog B|MON1 secretory trafficking family member B 42 0.005749 9.424 1 1 +22880 MORC2 MORC family CW-type zinc finger 2 22 protein-coding CMT2Z|ZCW3|ZCWCC1 MORC family CW-type zinc finger protein 2|zinc finger CW-type coiled-coil domain protein 1 47 0.006433 9.915 1 1 +22881 ANKRD6 ankyrin repeat domain 6 6 protein-coding - ankyrin repeat domain-containing protein 6|diego homolog|diversin 41 0.005612 7.669 1 1 +22882 ZHX2 zinc fingers and homeoboxes 2 8 protein-coding AFR1|RAF zinc fingers and homeoboxes protein 2|AFP regulator 1|alpha-fetoprotein regulator 1|regulator of AFP|transcription factor ZHX2|zinc finger and homeodomain protein 2 81 0.01109 9.805 1 1 +22883 CLSTN1 calsyntenin 1 1 protein-coding ALC-ALPHA|CDHR12|CST-1|CSTN1|PIK3CD|XB31alpha|alcalpha1|alcalpha2 calsyntenin-1|alcadein-alpha|alzheimer-related cadherin-like protein|cadherin-related family member 12|non-classical cadherin XB31alpha 58 0.007939 12.54 1 1 +22884 WDR37 WD repeat domain 37 10 protein-coding - WD repeat-containing protein 37 31 0.004243 8.82 1 1 +22885 ABLIM3 actin binding LIM protein family member 3 5 protein-coding HMFN1661 actin-binding LIM protein 3|abLIM-3 75 0.01027 8.443 1 1 +22887 FOXJ3 forkhead box J3 1 protein-coding - forkhead box protein J3 47 0.006433 10.27 1 1 +22888 UBOX5 U-box domain containing 5 20 protein-coding RNF37|UBCE7IP5|UIP5|hUIP5 RING finger protein 37|U-box domain-containing protein 5|ubcM4-interacting protein 5|ubiquitin conjugating enzyme 7 interacting protein 5 25 0.003422 8.371 1 1 +22889 KIAA0907 KIAA0907 1 protein-coding BLOM7 UPF0469 protein KIAA0907 80 0.01095 9.737 1 1 +22890 ZBTB1 zinc finger and BTB domain containing 1 14 protein-coding ZNF909 zinc finger and BTB domain-containing protein 1 43 0.005886 9.52 1 1 +22891 ZNF365 zinc finger protein 365 10 protein-coding Su48|UAN|ZNF365D protein ZNF365|protein su48|talanin 80 0.01095 5.332 1 1 +22893 BAHD1 bromo adjacent homology domain containing 1 15 protein-coding - bromo adjacent homology domain-containing 1 protein|BAH domain-containing protein 1 56 0.007665 9.756 1 1 +22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease 13 protein-coding 2810028N01Rik|EXOSC11|KIAA1008|RRP44|dis3p exosome complex exonuclease RRP44|DIS3 exosome endoribonuclease and 3'-5' exoribonuclease|DIS3 mitotic control homolog|exosome component 11|mitotic control protein dis3 homolog|ribosomal RNA-processing protein 44 56 0.007665 9.831 1 1 +22895 RPH3A rabphilin 3A 12 protein-coding - rabphilin-3A|exophilin-1|rabphilin 3A homolog 73 0.009992 2.387 1 1 +22897 CEP164 centrosomal protein 164 11 protein-coding NPHP15 centrosomal protein of 164 kDa|centrosomal protein 164kDa 98 0.01341 9.033 1 1 +22898 DENND3 DENN domain containing 3 8 protein-coding - DENN domain-containing protein 3|DENN/MADD domain containing 3 79 0.01081 8.76 1 1 +22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 17 protein-coding ARGEF15|E5|Ephexin5|Vsm-RhoGEF rho guanine nucleotide exchange factor 15|Rho guanine nucleotide exchange factor (GEF) 15|ephexin-5 95 0.013 7.342 1 1 +22900 CARD8 caspase recruitment domain family member 8 19 protein-coding CARDINAL|DACAR|DAKAR|NDPP|NDPP1|TUCAN caspase recruitment domain-containing protein 8|CARD inhibitor of NF-kappaB-activating ligands|apoptotic protein NDPP1|tumor up-regulated CARD-containing antagonist of CASP9|tumor up-regulated CARD-containing antagonist of caspase nine 46 0.006296 8.878 1 1 +22901 ARSG arylsulfatase G 17 protein-coding - arylsulfatase G|ASG 43 0.005886 6.496 1 1 +22902 RUFY3 RUN and FYVE domain containing 3 4 protein-coding RIPX|SINGAR1|ZFYVE30 protein RUFY3|rap2 interacting protein x|single axon-regulated protein|single axon-related 1 58 0.007939 9.632 1 1 +22903 BTBD3 BTB domain containing 3 20 protein-coding dJ742J24.1 BTB/POZ domain-containing protein 3|BTB (POZ) domain containing 3 43 0.005886 9.66 1 1 +22904 SBNO2 strawberry notch homolog 2 19 protein-coding KIAA0963|SNO|STNO protein strawberry notch homolog 2 67 0.009171 10.62 1 1 +22905 EPN2 epsin 2 17 protein-coding EHB21 epsin-2|EPS-15-interacting protein 2|Eps15 binding protein 42 0.005749 10.06 1 1 +22906 TRAK1 trafficking kinesin protein 1 3 protein-coding MILT1|OIP106 trafficking kinesin-binding protein 1|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 protein, kinesin binding 1 74 0.01013 10.58 1 1 +22907 DHX30 DExH-box helicase 30 3 protein-coding DDX30|RETCOR putative ATP-dependent RNA helicase DHX30|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 30|DEAH (Asp-Glu-Ala-His) box helicase 30|DEAH (Asp-Glu-Ala-His) box polypeptide 30|DEAH box protein 30|DEAH-box helicase 30|retina co-repressor 82 0.01122 10.86 1 1 +22908 SACM1L SAC1 suppressor of actin mutations 1-like (yeast) 3 protein-coding SAC1 phosphatidylinositide phosphatase SAC1|suppressor of actin 1|suppressor of actin mutations 1-like protein 27 0.003696 9.809 1 1 +22909 FAN1 FANCD2/FANCI-associated nuclease 1 15 protein-coding KIAA1018|KMIN|MTMR15|hFAN1 fanconi-associated nuclease 1|coiled-coil domain-containing protein MTMR15|fanconi anemia associated nuclease 1|myotubularin-related protein 15 67 0.009171 8.945 1 1 +22911 WDR47 WD repeat domain 47 1 protein-coding - WD repeat-containing protein 47|nemitin|neuronal enriched MAP-interacting protein 54 0.007391 8.467 1 1 +22913 RALY RALY heterogeneous nuclear ribonucleoprotein 20 protein-coding HNRPCL2|P542 RNA-binding protein Raly|RNA binding protein, autoantigenic (hnRNP-associated with lethal yellow homolog)|RNA-binding protein (autoantigenic)|RNA-binding protein (autoantigenic, hnRNP-associated with lethal yellow)|autoantigen p542|heterogeneous nuclear ribonucleoprotein C-like 2|hnRNP associated with lethal yellow protein homolog|hnRNP core protein C-like 2 50 0.006844 11.77 1 1 +22914 KLRK1 killer cell lectin like receptor K1 12 protein-coding CD314|D12S2489E|KLR|NKG2-D|NKG2D NKG2-D type II integral membrane protein|NK cell receptor D|NKG2-D-activating NK receptor|killer cell lectin-like receptor subfamily K, member 1 17 0.002327 5.35 1 1 +22915 MMRN1 multimerin 1 4 protein-coding ECM|EMILIN4|GPIa*|MMRN multimerin-1|EMILIN-4|elastin microfibril interface located protein 4|elastin microfibril interfacer 4|endothelial cell multimerin|glycoprotein Ia* 114 0.0156 5.72 1 1 +22916 NCBP2 nuclear cap binding protein subunit 2 3 protein-coding CBC2|CBP20|NIP1|PIG55 nuclear cap-binding protein subunit 2|20 kDa nuclear cap-binding protein|NCBP 20 kDa subunit|NCBP interacting protein 1|cell proliferation-inducing gene 55 protein|nuclear cap binding protein subunit 2, 20kD|nuclear cap binding protein subunit 2, 20kDa 16 0.00219 10.86 1 1 +22917 ZP1 zona pellucida glycoprotein 1 11 protein-coding HEL163|OOMD|OOMD1 zona pellucida sperm-binding protein 1|epididymis luminal protein 163|zona pellucida glycoprotein 1 (sperm receptor) 37 0.005064 1.355 1 1 +22918 CD93 CD93 molecule 20 protein-coding C1QR1|C1qR(P)|C1qRP|CDw93|ECSM3|MXRA4|dJ737E23.1 complement component C1q receptor|C1q receptor 1|C1q/MBL/SPA receptor|C1qR|CD93 antigen|complement component 1 q subcomponent receptor 1|matrix-remodeling-associated protein 4|matrix-remodelling associated 4 86 0.01177 10.07 1 1 +22919 MAPRE1 microtubule associated protein RP/EB family member 1 20 protein-coding EB1 microtubule-associated protein RP/EB family member 1|APC-binding protein EB1|adenomatous polyposis coli-binding protein EB1|end-binding protein 1 19 0.002601 11.58 1 1 +22920 KIFAP3 kinesin associated protein 3 1 protein-coding FLA3|KAP-1|KAP-3|KAP3|SMAP|Smg-GDS|dJ190I16.1 kinesin-associated protein 3|small G protein GDP dissociation stimulator|smg GDS-associated protein 65 0.008897 9.796 1 1 +22921 MSRB2 methionine sulfoxide reductase B2 10 protein-coding CBS-1|CBS1|CGI-131|MSRB|PILB methionine-R-sulfoxide reductase B2, mitochondrial|pilin-like transcription factor 16 0.00219 9.068 1 1 +22924 MAPRE3 microtubule associated protein RP/EB family member 3 2 protein-coding EB3|EBF3|EBF3-S|RP3 microtubule-associated protein RP/EB family member 3|APC binding protein|EB1 protein family member 3|end-binding protein 3 29 0.003969 8.653 1 1 +22925 PLA2R1 phospholipase A2 receptor 1 2 protein-coding CLEC13C|PLA2-R|PLA2G1R|PLA2IR|PLA2R secretory phospholipase A2 receptor|180 kDa secretory phospholipase A2 receptor|C-type lectin domain family 13 member C|M-type receptor|phospholipase A2 receptor 1, 180kD|phospholipase A2 receptor 1, 180kDa 99 0.01355 6.713 1 1 +22926 ATF6 activating transcription factor 6 1 protein-coding ACHM7|ATF6A cyclic AMP-dependent transcription factor ATF-6 alpha|cAMP-dependent transcription factor ATF-6 alpha 45 0.006159 10.3 1 1 +22927 HABP4 hyaluronan binding protein 4 9 protein-coding IHABP-4|IHABP4|Ki-1/57|SERBP1L intracellular hyaluronan-binding protein 4|chromodomain helicase DNA binding protein 3 interacting protein|intracellular antigen detected by monoclonal antibody Ki-1|ki-1/57 intracellular antigen 17 0.002327 8.574 1 1 +22928 SEPHS2 selenophosphate synthetase 2 16 protein-coding SPS2|SPS2b selenide, water dikinase 2|selenium donor protein 2|selenophosphate synthase 2 24 0.003285 11 1 1 +22929 SEPHS1 selenophosphate synthetase 1 10 protein-coding SELD|SPS|SPS1 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 27 0.003696 10.1 1 1 +22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 2 protein-coding P130|RAB3GAP|RAB3GAP130|WARBM1 rab3 GTPase-activating protein catalytic subunit|RAB3 GTPase activating protein subunit 1 (catalytic)|RAB3 GTPase-activating protein 130 kDa subunit|rab3-GAP p130 54 0.007391 10.41 1 1 +22931 RAB18 RAB18, member RAS oncogene family 10 protein-coding RAB18LI1|WARBM3 ras-related protein Rab-18|RAB18 small GTPase 13 0.001779 10.83 1 1 +22932 POMZP3 POM121 and ZP3 fusion 7 protein-coding POM-ZP3|POM121 POM121 and ZP3 fusion protein|POM (POM121 homolog, rat) and ZP3 fusion|POM (POM121 rat homolog) and ZP3 fusion|POM-ZP3 fusion protein|POM121/ZP3 fusion protein 22 0.003011 7.442 1 1 +22933 SIRT2 sirtuin 2 19 protein-coding SIR2|SIR2L|SIR2L2 NAD-dependent protein deacetylase sirtuin-2|NAD-dependent deacetylase sirtuin-2|SIR2-like protein 2|regulatory protein SIR2 homolog 2|silent information regulator 2|sir2-related protein type 2|sirtuin type 2 22 0.003011 10.32 1 1 +22934 RPIA ribose 5-phosphate isomerase A 2 protein-coding RPI|RPIAD ribose-5-phosphate isomerase|phosphoriboisomerase|ribose 5-phosphate epimerase 22 0.003011 8.741 1 1 +22936 ELL2 elongation factor for RNA polymerase II 2 5 protein-coding - RNA polymerase II elongation factor ELL2|ELL-related RNA polymerase II, elongation factor|elongation factor RNA for polymerase II 2|elongation factor, RNA polymerase II, 2 56 0.007665 10.05 1 1 +22937 SCAP SREBF chaperone 3 protein-coding - sterol regulatory element-binding protein cleavage-activating protein|SREBP cleavage-activating protein 73 0.009992 10.98 1 1 +22938 SNW1 SNW domain containing 1 14 protein-coding Bx42|NCOA-62|PRPF45|Prp45|SKIIP|SKIP SNW domain-containing protein 1|SKI interacting protein|homolog of Drosophila BX42|nuclear protein SkiP|nuclear receptor coactivator NCoA-62|nuclear receptor coactivator, 62-kD|ski-interacting protein 41 0.005612 10.4 1 1 +22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 11 protein-coding AUTS17|CORTBP1|CTTNBP1|ProSAP1|SHANK|SPANK-3 SH3 and multiple ankyrin repeat domains protein 2|GKAP/SAPAP interacting protein|cortactin SH3 domain-binding protein|cortactin-binding protein 1|proline-rich synapse associated protein 1 132 0.01807 7.899 1 1 +22943 DKK1 dickkopf WNT signaling pathway inhibitor 1 10 protein-coding DKK-1|SK dickkopf-related protein 1|dickkopf 1 homolog|dickkopf-1 like|dickkopf-like protein 1|hDkk-1 33 0.004517 4.835 1 1 +22944 KIN Kin17 DNA and RNA binding protein 10 protein-coding BTCD|KIN17|Rts2 DNA/RNA-binding protein KIN17|KIN, antigenic determinant of recA protein homolog|binding to curved DNA 48 0.00657 7.721 1 1 +22947 DUX4L1 double homeobox 4 like 1 4 pseudo DUX10|DUX4 double homeobox protein 10|double homeobox protein 4/10 0.0008682 0 1 +22948 CCT5 chaperonin containing TCP1 subunit 5 5 protein-coding CCT-epsilon|CCTE|HEL-S-69|PNAS-102|TCP-1-epsilon T-complex protein 1 subunit epsilon|chaperonin containing TCP1, subunit 5 (epsilon)|epididymis secretory protein Li 69 44 0.006022 12.2 1 1 +22949 PTGR1 prostaglandin reductase 1 9 protein-coding LTB4DH|PGR1|ZADH3 prostaglandin reductase 1|15-oxoprostaglandin 13-reductase|NADP-dependent leukotriene B4 12-hydroxydehydrogenase|PRG-1|leukotriene B4 12-hydroxydehydrogenase|zinc binding alcohol dehydrogenase domain containing 3 25 0.003422 9.566 1 1 +22950 SLC4A1AP solute carrier family 4 member 1 adaptor protein 2 protein-coding HLC3 kanadaptin|HLC-3|human lung cancer oncogene 3 protein|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, adaptor protein|solute carrier family 4 anion exchanger member 1 adapter protein 49 0.006707 9.35 1 1 +22952 CYP2G1P cytochrome P450 family 2 subfamily G member 1, pseudogene 19 pseudo CYP2G1|CYP2G2P|CYP2GP1 cytochrome P450, family 2, subfamily G, polypeptide 1 pseudogene|cytochrome P450, subfamily IIG, olfactory-specific|cytochrome P450, subfamily IIG, polypeptide 1, pseudogene 6 0.0008212 1 0 +22953 P2RX2 purinergic receptor P2X 2 12 protein-coding DFNA41|P2X2 P2X purinoceptor 2|ATP receptor|P2X Receptor, subunit 2|purinergic receptor P2X, ligand gated ion channel, 2 51 0.006981 1.485 1 1 +22954 TRIM32 tripartite motif containing 32 9 protein-coding BBS11|HT2A|LGMD2H|TATIP E3 ubiquitin-protein ligase TRIM32|72 kDa Tat-interacting protein|TAT-interactive protein, 72-KD|tripartite motif-containing protein 32|zinc-finger protein HT2A 35 0.004791 8.609 1 1 +22955 SCMH1 sex comb on midleg homolog 1 (Drosophila) 1 protein-coding Scml3 polycomb protein SCMH1 35 0.004791 9.578 1 1 +22973 LAMB2P1 laminin subunit beta 2 pseudogene 1 3 pseudo LAMB2L laminin, beta 2 pseudogene 1 4.227 0 1 +22974 TPX2 TPX2, microtubule nucleation factor 20 protein-coding C20orf1|C20orf2|DIL-2|DIL2|FLS353|GD:C20orf1|HCA519|HCTP4|REPP86|p100 targeting protein for Xklp2|TPX2, microtubule-associated protein homolog|TPX2, microtubule-associated, homolog|differentially expressed in cancerous and non-cancerous lung cells 2|differentially expressed in lung cells|hepatocellular carcinoma-associated antigen 519|hepatocellular carcinoma-associated antigen 90|preferentially expressed in colorectal cancer|protein fls353|restricted expression proliferation associated protein 100 57 0.007802 9.668 1 1 +22976 PAXIP1 PAX interacting protein 1 7 protein-coding CAGF28|CAGF29|PACIP1|PAXIP1L|PTIP|TNRC2 PAX-interacting protein 1|PAX interacting (with transcription-activation domain) protein 1|PAX transcription activation domain interacting protein 1 like|protein encoded by CAG trinucleotide repeats 62 0.008486 8.599 1 1 +22977 AKR7A3 aldo-keto reductase family 7 member A3 1 protein-coding AFAR2 aflatoxin B1 aldehyde reductase member 3|AFB1 aldehyde reductase 2|AFB1-AR 2|aflatoxin B1 aldehyde reductase 2|aflatoxin aldehyde reductase|aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) 17 0.002327 5.678 1 1 +22978 NT5C2 5'-nucleotidase, cytosolic II 10 protein-coding GMP|NT5B|PNT5|SPG45|SPG65|cN-II cytosolic purine 5'-nucleotidase|5'-nucleotidase (purine), cytosolic type B|IMP-specific 5'-NT 34 0.004654 10.62 1 1 +22979 EFR3B EFR3 homolog B 2 protein-coding KIAA0953 protein EFR3 homolog B 18 0.002464 6.74 1 1 +22980 TCF25 transcription factor 25 16 protein-coding FKSG26|Hulp1|NULP1|PRO2620|hKIAA1049 transcription factor 25|NULP1|TCF-25|nuclear localized protein 1|transcription factor 25 (basic helix-loop-helix) 53 0.007254 11.1 1 1 +22981 NINL ninein like 20 protein-coding NLP ninein-like protein 129 0.01766 8.058 1 1 +22982 DIP2C disco interacting protein 2 homolog C 10 protein-coding KIAA0934 disco-interacting protein 2 homolog C|DIP2 disco-interacting protein 2 homolog C|DIP2 homolog C 131 0.01793 9.216 1 1 +22983 MAST1 microtubule associated serine/threonine kinase 1 19 protein-coding SAST|SAST170 microtubule-associated serine/threonine-protein kinase 1|syntrophin associated serine/threonine kinase|syntrophin-associated serine/threonine-protein kinase 107 0.01465 4.84 1 1 +22984 PDCD11 programmed cell death 11 10 protein-coding ALG-4|ALG4|NFBP|RRP5 protein RRP5 homolog|NF-kappa-B-binding protein|apoptosis-linked gene 4|programmed cell death protein 11 101 0.01382 10.12 1 1 +22985 ACIN1 apoptotic chromatin condensation inducer 1 14 protein-coding ACINUS|ACN|fSAP152 apoptotic chromatin condensation inducer in the nucleus|functional spliceosome-associated protein 152 115 0.01574 11.52 1 1 +22986 SORCS3 sortilin related VPS10 domain containing receptor 3 10 protein-coding SORCS VPS10 domain-containing receptor SorCS3|VPS10 domain receptor protein SORCS 3 (SORCS3) 200 0.02737 1.89 1 1 +22987 SV2C synaptic vesicle glycoprotein 2C 5 protein-coding - synaptic vesicle glycoprotein 2C|synaptic vesicle protein 2C 69 0.009444 1.161 1 1 +22989 MYH15 myosin heavy chain 15 3 protein-coding - myosin-15|myosin, heavy polypeptide 15 171 0.02341 2.98 1 1 +22990 PCNX1 pecanex homolog 1 (Drosophila) 14 protein-coding PCNX|PCNXL1|pecanex pecanex-like protein 1 156 0.02135 10.1 1 1 +22992 KDM2A lysine demethylase 2A 11 protein-coding CXXC8|FBL11|FBL7|FBXL11|JHDM1A|LILINA lysine-specific demethylase 2A|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 (K)-specific demethylase 2A 78 0.01068 11.46 1 1 +22993 HMGXB3 HMG-box containing 3 5 protein-coding HMGX3|SMF HMG domain-containing protein 3|HMG box domain containing 3 22 0.003011 10.29 1 1 +22994 CEP131 centrosomal protein 131 17 protein-coding AZ1|AZI1|ZA1 centrosomal protein of 131 kDa|5-azacytidine induced 1|5-azacytidine-induced protein 1|centrosomal protein 131 kDa|centrosomal protein 131kDa|pre-acrosome localization protein 1 78 0.01068 8.605 1 1 +22995 CEP152 centrosomal protein 152 15 protein-coding MCPH4|MCPH9|SCKL5 centrosomal protein of 152 kDa|asterless|centrosomal protein 152kDa|microcephaly, primary autosomal recessive 4 103 0.0141 6.431 1 1 +22996 TTC39A tetratricopeptide repeat domain 39A 1 protein-coding C1orf34|DEME-6 tetratricopeptide repeat protein 39A|TPR repeat protein 39A|differentially expressed in MCF7 with estradiol protein 6|testicular tissue protein Li 213 45 0.006159 8.155 1 1 +22997 IGSF9B immunoglobulin superfamily member 9B 11 protein-coding - protein turtle homolog B 152 0.0208 4.207 1 1 +22998 LIMCH1 LIM and calponin homology domains 1 4 protein-coding LIMCH1A|LMO7B LIM and calponin homology domains-containing protein 1 80 0.01095 9.684 1 1 +22999 RIMS1 regulating synaptic membrane exocytosis 1 6 protein-coding CORD7|RAB3IP2|RIM|RIM1 regulating synaptic membrane exocytosis protein 1|RAB3-interacting protein 2|rab-3-interacting protein 2|rab3-interacting molecule 1 180 0.02464 2.961 1 1 +23001 WDFY3 WD repeat and FYVE domain containing 3 4 protein-coding ALFY|ZFYVE25 WD repeat and FYVE domain-containing protein 3|autophagy-linked FYVE protein 238 0.03258 10.05 1 1 +23002 DAAM1 dishevelled associated activator of morphogenesis 1 14 protein-coding - disheveled-associated activator of morphogenesis 1 83 0.01136 8.462 1 1 +23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 15 protein-coding JNKBP-1|JNKBP1 mitogen-activated protein kinase-binding protein 1|JNK-binding protein 1 81 0.01109 9.011 1 1 +23007 PLCH1 phospholipase C eta 1 3 protein-coding PLCL3 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-1|PLC eta 1|PLC-L3|phosphoinositide phospholipase C-eta-1|phospholipase C-eta1a|phospholipase C-eta1b|phospholipase C-like 3|phospholipase C-like protein 3 155 0.02122 5.896 1 1 +23008 KLHDC10 kelch domain containing 10 7 protein-coding slim kelch domain-containing protein 10|PNAS-119|scruin like at the midline homolog 22 0.003011 9.03 1 1 +23011 RAB21 RAB21, member RAS oncogene family 12 protein-coding - ras-related protein Rab-21|GTP-binding protein RAB21 18 0.002464 10.02 1 1 +23012 STK38L serine/threonine kinase 38 like 12 protein-coding NDR2 serine/threonine-protein kinase 38-like|NDR2 protein kinase|nuclear Dbf2-related 2|nuclear Dbf2-related kinase 2 29 0.003969 9.761 1 1 +23013 SPEN spen family transcriptional repressor 1 protein-coding HIAA0929|MINT|RBM15C|SHARP msx2-interacting protein|Msx2 interacting nuclear target (MINT) homolog|SMART/HDAC1-associated repressor protein|nuclear receptor transcription cofactor|spen homolog, transcriptional regulator 239 0.03271 10.91 1 1 +23014 FBXO21 F-box protein 21 12 protein-coding FBX21 F-box only protein 21 50 0.006844 10.22 1 1 +23015 GOLGA8A golgin A8 family member A 15 protein-coding GM88 golgin subfamily A member 8A|88 kDa Golgi matrix protein|88-kDa golgi protein|GM88 autoantigen|golgi autoantigen, golgin subfamily a, 8A|golgin-67 12 0.001642 9.545 1 1 +23016 EXOSC7 exosome component 7 3 protein-coding EAP1|RRP42|Rrp42p|hRrp42p|p8 exosome complex component RRP42|exosome complex exonuclease RRP42|ribosomal RNA-processing protein 42 15 0.002053 9.174 1 1 +23017 FAIM2 Fas apoptotic inhibitory molecule 2 12 protein-coding LFG|LFG2|NGP35|NMP35|TMBIM2 protein lifeguard 2|neural membrane protein 35|transmembrane BAX inhibitor motif-containing protein 2 12 0.001642 5.834 1 1 +23019 CNOT1 CCR4-NOT transcription complex subunit 1 16 protein-coding AD-005|CDC39|NOT1|NOT1H 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 166 0.02272 11.84 1 1 +23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 2 protein-coding ASCC3L1|BRR2|HELIC2|RP33|U5-200KD U5 small nuclear ribonucleoprotein 200 kDa helicase|BRR2 homolog|U5 snRNP-specific 200 kDa protein|activating signal cointegrator 1 complex subunit 3-like 1|bad response to refrigeration 2 homolog|small nuclear ribonucleoprotein 200kDa (U5)|small nuclear ribonucleoprotein, U5 200kDa subunit 101 0.01382 12.51 1 1 +23022 PALLD palladin, cytoskeletal associated protein 4 protein-coding CGI-151|CGI151|MYN|PNCA1|SIH002 palladin|myoneurin|sarcoma antigen NY-SAR-77 68 0.009307 11.35 1 1 +23023 TMCC1 transmembrane and coiled-coil domain family 1 3 protein-coding - transmembrane and coiled-coil domains protein 1 80 0.01095 9.622 1 1 +23024 PDZRN3 PDZ domain containing ring finger 3 3 protein-coding LNX3|SEMACAP3|SEMCAP3 E3 ubiquitin-protein ligase PDZRN3|ligand of Numb protein X 3|likely ortholog of mouse semaF cytoplasmic domain associated protein 3|semaphorin cytoplasmic domain-associated protein 3 132 0.01807 7.779 1 1 +23025 UNC13A unc-13 homolog A 19 protein-coding Munc13-1 protein unc-13 homolog A 134 0.01834 4.643 1 1 +23026 MYO16 myosin XVI 13 protein-coding MYAP3|MYR8|Myo16b|NYAP3|PPP1R107 unconventional myosin-XVI|MYO16 variant protein|myosin heavy chain Myr 8|neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 3|neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 3|protein phosphatase 1, regulatory subunit 107|unconventional myosin-16 191 0.02614 3.448 1 1 +23028 KDM1A lysine demethylase 1A 1 protein-coding AOF2|BHC110|CPRF|KDM1|LSD1 lysine-specific histone demethylase 1A|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 1A|lysine-specific histone demethylase 1 42 0.005749 10.83 1 1 +23029 RBM34 RNA binding motif protein 34 1 protein-coding - RNA-binding protein 34 40 0.005475 9.568 1 1 +23030 KDM4B lysine demethylase 4B 19 protein-coding JMJD2B|TDRD14B lysine-specific demethylase 4B|jmjC domain-containing histone demethylation protein 3B|jumonji domain containing 2B|jumonji domain-containing protein 2B|lysine (K)-specific demethylase 4B|tudor domain containing 14B 68 0.009307 10.22 1 1 +23031 MAST3 microtubule associated serine/threonine kinase 3 19 protein-coding - microtubule-associated serine/threonine-protein kinase 3 70 0.009581 8.83 1 1 +23032 USP33 ubiquitin specific peptidase 33 1 protein-coding VDU1 ubiquitin carboxyl-terminal hydrolase 33|VHL-interacting deubiquitinating enzyme 1|deubiquitinating enzyme 33|pVHL-interacting deubiquitinating enzyme 1|ubiquitin thioesterase 33|ubiquitin thiolesterase 33|ubiquitin-specific-processing protease 33 74 0.01013 10.21 1 1 +23033 DOPEY1 dopey family member 1 6 protein-coding DOP1|KIAA1117|dJ202D23.2 protein dopey-1|homolog of yeast DOP1 152 0.0208 9.078 1 1 +23034 SAMD4A sterile alpha motif domain containing 4A 14 protein-coding SAMD4|SMAUG|SMAUG1|SMG|SMGA protein Smaug homolog 1|SAM domain-containing protein 4A 49 0.006707 8.669 1 1 +23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 16 protein-coding PHLPPL|PPM3B PH domain leucine-rich repeat-containing protein phosphatase 2|protein phosphatase, Mg2+/Mn2+ dependent 3B 71 0.009718 7.985 1 1 +23036 ZNF292 zinc finger protein 292 6 protein-coding Nbla00365|ZFP292|ZN-16|Zn-15|bA393I2.3 zinc finger protein 292|16 zinc-finger domain protein|putative protein product of Nbla00365 170 0.02327 9.566 1 1 +23037 PDZD2 PDZ domain containing 2 5 protein-coding AIPC|PAPIN|PDZK3|PIN1 PDZ domain-containing protein 2|PDZ domain-containing protein 3|activated in prostate cancer protein|plakophilin-related armadillo repeat protein-interactive PDZ protein 233 0.03189 7.951 1 1 +23038 WDTC1 WD and tetratricopeptide repeats 1 1 protein-coding ADP|DCAF9 WD and tetratricopeptide repeats protein 1|DDB1 and CUL4 associated factor 9|adipose homolog 67 0.009171 10.77 1 1 +23039 XPO7 exportin 7 8 protein-coding EXP7|RANBP16 exportin-7|RAN binding protein 16 76 0.0104 10.7 1 1 +23040 MYT1L myelin transcription factor 1 like 2 protein-coding MRD39|NZF1|ZC2H2C2|ZC2HC4B|myT1-L myelin transcription factor 1-like protein|neural zinc finger transcription factor 1 194 0.02655 1.433 1 1 +23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking 12 protein-coding - protein MON2 homolog|MON2 regulator of endosome-to-Golgi trafficking 107 0.01465 9.798 1 1 +23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 16 protein-coding LP8165 pyridoxal-dependent decarboxylase domain-containing protein 1 37 0.005064 11.46 1 1 +23043 TNIK TRAF2 and NCK interacting kinase 3 protein-coding MRT54 TRAF2 and NCK-interacting protein kinase 120 0.01642 7.731 1 1 +23046 KIF21B kinesin family member 21B 1 protein-coding - kinesin-like protein KIF21B 161 0.02204 7.527 1 1 +23047 PDS5B PDS5 cohesin associated factor B 13 protein-coding APRIN|AS3|CG008 sister chromatid cohesion protein PDS5 homolog B|androgen induced inhibitor of proliferation|androgen-induced proliferation inhibitor|androgen-induced prostate proliferative shutoff-associated protein AS3|androgen-induced shutoff 3 105 0.01437 9.56 1 1 +23048 FNBP1 formin binding protein 1 9 protein-coding FBP17 formin-binding protein 1|formin-binding protein 17 39 0.005338 10.28 1 1 +23049 SMG1 SMG1, nonsense mediated mRNA decay associated PI3K related kinase 16 protein-coding 61E3.4|ATX|LIP serine/threonine-protein kinase SMG1|PI-3-kinase-related kinase SMG-1|SMG1 phosphatidylinositol 3-kinase-related kinase|lambda-interacting protein|lambda/iota protein kinase C-interacting protein|smg-1 homolog, phosphatidylinositol 3-kinase-related kinase 186 0.02546 11.11 1 1 +23051 ZHX3 zinc fingers and homeoboxes 3 20 protein-coding TIX1 zinc fingers and homeoboxes protein 3|triple homeobox 1|triple homeobox protein 1|zinc finger and homeodomain protein 3 62 0.008486 9.688 1 1 +23052 ENDOD1 endonuclease domain containing 1 11 protein-coding - endonuclease domain-containing 1 protein 19 0.002601 10.31 1 1 +23053 ZSWIM8 zinc finger SWIM-type containing 8 10 protein-coding KIAA0913 zinc finger SWIM domain-containing protein 8|4832404P21Rik 105 0.01437 10.61 1 1 +23054 NCOA6 nuclear receptor coactivator 6 20 protein-coding AIB3|ASC2|NRC|PRIP|RAP250|TRBP nuclear receptor coactivator 6|NRC RAP250|PPAR-interacting protein|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|thyroid hormone receptor binding protein 138 0.01889 10.64 1 1 +23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 1 protein-coding C1orf15|PNAT2 nicotinamide/nicotinic acid mononucleotide adenylyltransferase 2|NMN adenylyltransferase 2|NMN/NaMN adenylyltransferase 2|NaMN adenylyltransferase 2|nicotinamide mononucleotide adenylyltransferase 2|nicotinate-nucleotide adenylyltransferase 2|pyridine nucleotide adenylyltransferase 2 26 0.003559 6.009 1 1 +23059 CLUAP1 clusterin associated protein 1 16 protein-coding CFAP22|FAP22|IFT38 clusterin-associated protein 1|cilia and flagella associated protein 22|flagellar associated protein 22, qilin-like protein, homolog 24 0.003285 8.687 1 1 +23060 ZNF609 zinc finger protein 609 15 protein-coding - zinc finger protein 609 70 0.009581 10.19 1 1 +23061 TBC1D9B TBC1 domain family member 9B 5 protein-coding GRAMD9B TBC1 domain family member 9B|TBC1 domain family, member 9B (with GRAM domain) 76 0.0104 11.68 1 1 +23062 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 16 protein-coding VEAR 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-localized, gamma ear-containing, ARF-binding protein 2 37 0.005064 10.87 1 1 +23063 WAPL WAPL cohesin release factor 10 protein-coding FOE|KIAA0261|WAPAL wings apart-like protein homolog|friend of EBNA2 (Epstein-Barr virus nuclear protein 2)|friend of EBNA2 protein 81 0.01109 10.26 1 1 +23064 SETX senataxin 9 protein-coding ALS4|AOA2|SCAR1|bA479K20.2 probable helicase senataxin|SEN1 homolog|amyotrophic lateral sclerosis 4 protein 153 0.02094 10.78 1 1 +23065 EMC1 ER membrane protein complex subunit 1 1 protein-coding CAVIPMR|KIAA0090 ER membrane protein complex subunit 1 51 0.006981 10.25 1 1 +23066 CAND2 cullin associated and neddylation dissociated 2 (putative) 3 protein-coding TIP120B|Tp120b cullin-associated NEDD8-dissociated protein 2|TBP interacting protein|TBP-interacting protein 120B|TBP-interacting protein of 120 kDa B|cullin-associated and neddylation-dissociated protein 2|epididymis tissue protein Li 169|p120 CAND2 66 0.009034 6.518 1 1 +23067 SETD1B SET domain containing 1B 12 protein-coding KMT2G|Set1B histone-lysine N-methyltransferase SETD1B|SET domain-containing protein 1B|hSET1B|lysine N-methyltransferase 2G 59 0.008076 9.872 1 1 +23070 CMTR1 cap methyltransferase 1 6 protein-coding FTSJD2|KIAA0082|MTr1|hMTr1 cap-specific mRNA (nucleoside-2'-O-)-methyltransferase 1|FtsJ methyltransferase domain containing 2|ISG95|S-adenosyl-L-methionine-dependent methyltransferase FTSJD2|cap1 2'O-ribose methyltransferase 1|ftsJ methyltransferase domain-containing protein 2|interferon-stimulated gene 95 kDa protein 37 0.005064 10.24 1 1 +23071 ERP44 endoplasmic reticulum protein 44 9 protein-coding PDIA10|TXNDC4 endoplasmic reticulum resident protein 44|ER 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 24 0.003285 10.68 1 1 +23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 7 protein-coding NEDL1 E3 ubiquitin-protein ligase HECW1|HECT type E3 ubiquitin ligase|NEDD4-like ubiquitin-protein ligase 1 204 0.02792 3.524 1 1 +23074 UHRF1BP1L UHRF1 binding protein 1 like 12 protein-coding SHIP164 UHRF1-binding protein 1-like|UHRF1 (ICBP90) binding protein 1-like|syntaxin 6Habc-interacting protein of 164 kDa 116 0.01588 8.81 1 1 +23075 SWAP70 SWAP switching B-cell complex 70kDa subunit 11 protein-coding HSPC321|SWAP-70 switch-associated protein 70 32 0.00438 10.2 1 1 +23076 RRP1B ribosomal RNA processing 1B 21 protein-coding KIAA0179|NNP1L|Nnp1|PPP1R136|RRP1 ribosomal RNA processing protein 1 homolog B|RRP1-like protein B|protein phosphatase 1, regulatory subunit 136|ribosomal RNA processing 1 homolog B 34 0.004654 9.964 1 1 +23077 MYCBP2 MYC binding protein 2, E3 ubiquitin protein ligase 13 protein-coding Myc-bp2|PAM|Phr E3 ubiquitin-protein ligase MYCBP2|Highwire|myc-binding protein 2|pam/highwire/rpm-1 protein|probable E3 ubiquitin-protein ligase MYCBP2|protein associated with Myc 270 0.03696 10.32 1 1 +23078 VWA8 von Willebrand factor A domain containing 8 13 protein-coding KIAA0564 von Willebrand factor A domain-containing protein 8 115 0.01574 9.033 1 1 +23080 AVL9 AVL9 cell migration associated 7 protein-coding KIAA0241 late secretory pathway protein AVL9 homolog|AVL9 homolog (S. cerevisiase) 49 0.006707 8.341 1 1 +23081 KDM4C lysine demethylase 4C 9 protein-coding GASC1|JHDM3C|JMJD2C|TDRD14C lysine-specific demethylase 4C|JmjC domain-containing histone demethylation protein 3C|gene amplified in squamous cell carcinoma 1 protein|jumonji domain-containing protein 2C|lysine (K)-specific demethylase 4C|tudor domain containing 14C 83 0.01136 8.949 1 1 +23082 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 10 protein-coding PRC peroxisome proliferator-activated receptor gamma coactivator-related protein 1|PGC-1-related coactivator 121 0.01656 10.05 1 1 +23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 12 protein-coding Cast2|ELKS|ERC-1|RAB6IP2 ELKS/Rab6-interacting/CAST family member 1|RAB6 interacting protein 2 69 0.009444 10.3 1 1 +23086 EXPH5 exophilin 5 11 protein-coding SLAC2-B|SLAC2B exophilin-5|slp homolog lacking C2 domains b|synaptotagmin-like homologue lacking C2 domains b|synaptotagmin-like protein homolog lacking C2 domains b 140 0.01916 7.305 1 1 +23087 TRIM35 tripartite motif containing 35 8 protein-coding HLS5|MAIR tripartite motif-containing protein 35|hemopoietic lineage switch protein 5 28 0.003832 8.749 1 1 +23089 PEG10 paternally expressed 10 7 protein-coding EDR|HB-1|MEF3L|Mar2|Mart2|RGAG3 retrotransposon-derived protein PEG10|MEF3 like 1|embryonal carcinoma differentiation regulated|mammalian retrotransposon-derived protein 2|myelin expression factor 3-like protein 1|paternally expressed gene 10 protein|retrotransposon gag domain-containing protein 3|retrotransposon-derived gag-like polyprotein|ty3/Gypsy-like protein 36 0.004927 8.863 1 1 +23090 ZNF423 zinc finger protein 423 16 protein-coding Ebfaz|JBTS19|NPHP14|OAZ|Roaz|ZFP423|Zfp104|hOAZ zinc finger protein 423|OLF-1/EBF associated zinc finger|Smad- and Olf-interacting zinc finger protein|early B-cell factor associated zinc finger protein|olf1/EBF-associated zinc finger protein 172 0.02354 6.938 1 1 +23091 ZC3H13 zinc finger CCCH-type containing 13 13 protein-coding KIAA0853 zinc finger CCCH domain-containing protein 13 147 0.02012 10.39 1 1 +23092 ARHGAP26 Rho GTPase activating protein 26 5 protein-coding GRAF|GRAF1|OPHN1L|OPHN1L1 rho GTPase-activating protein 26|GTPase regulator associated with focal adhesion kinase pp125(FAK)|oligophrenin-1-like protein 54 0.007391 8.913 1 1 +23093 TTLL5 tubulin tyrosine ligase like 5 14 protein-coding CORD19|KIAA0998|STAMP tubulin polyglutamylase TTLL5|SRC1 and TIF2 associated binding protein|SRC1 and TIF2-associated modulatory protein|tubulin tyrosine ligase-like family, member 5 87 0.01191 8.997 1 1 +23094 SIPA1L3 signal induced proliferation associated 1 like 3 19 protein-coding CTRCT45|SPAL3|SPAR3 signal-induced proliferation-associated 1-like protein 3|SIPA1-like protein 3|SPA-1-like protein 3 124 0.01697 10.16 1 1 +23095 KIF1B kinesin family member 1B 1 protein-coding CMT2|CMT2A|CMT2A1|HMSNII|KLP|NBLST1 kinesin-like protein KIF1B|kinesin superfamily protein KIF1B 173 0.02368 10.71 1 1 +23096 IQSEC2 IQ motif and Sec7 domain 2 X protein-coding BRAG1|MRX1|MRX78 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 83 0.01136 8.718 1 1 +23097 CDK19 cyclin dependent kinase 19 6 protein-coding CDC2L6|CDK11|bA346C16.3 cyclin-dependent kinase 19|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 35 0.004791 9.32 1 1 +23098 SARM1 sterile alpha and TIR motif containing 1 17 protein-coding MyD88-5|SAMD2|SARM sterile alpha and TIR motif-containing protein 1|SAM domain-containing protein 2|sterile alpha and Armadillo repeat protein|sterile alpha and HEAT/Armadillo motif protein, ortholog of Drosophila|sterile alpha motif domain-containing protein 2|tir-1 homolog 23 0.003148 8.449 1 1 +23099 ZBTB43 zinc finger and BTB domain containing 43 9 protein-coding ZBTB22B|ZNF-X|ZNF297B zinc finger and BTB domain-containing protein 43|zinc finger and BTB domain-containing protein 22B|zinc finger protein 297B 29 0.003969 8.583 1 1 +23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 3 protein-coding ARHGEF22 probable guanine nucleotide exchange factor MCF2L2|MCF2-transforming sequence-like protein 2|dbs-related Rho family guanine nucleotide exchange factor 111 0.01519 4.054 1 1 +23102 TBC1D2B TBC1 domain family member 2B 15 protein-coding - TBC1 domain family member 2B 68 0.009307 10.22 1 1 +23105 FSTL4 follistatin like 4 5 protein-coding - follistatin-related protein 4|follistatin-like protein 4 64 0.00876 5.001 1 1 +23107 MRPS27 mitochondrial ribosomal protein S27 5 protein-coding MRP-S27|S27mt 28S ribosomal protein S27, mitochondrial|mitochondrial 28S ribosomal protein S27 22 0.003011 10.37 1 1 +23108 RAP1GAP2 RAP1 GTPase activating protein 2 17 protein-coding GARNL4|RAP1GA3 rap1 GTPase-activating protein 2|GTPase activating RANGAP domain-like 4|GTPase activating Rap/RanGAP domain-like 4|GTPase-activating Rap/Ran-GAP domain-like protein 4 44 0.006022 8.734 1 1 +23109 DDN dendrin 12 protein-coding - dendrin 36 0.004927 3.613 1 1 +23111 SPG20 spastic paraplegia 20 (Troyer syndrome) 13 protein-coding SPARTIN|TAHCCP1 spartin|trans-activated by hepatitis C virus core protein 1 72 0.009855 9.617 1 1 +23112 TNRC6B trinucleotide repeat containing 6B 22 protein-coding - trinucleotide repeat-containing gene 6B protein 121 0.01656 9.669 1 1 +23113 CUL9 cullin 9 6 protein-coding H7AP1|PARC cullin-9|CUL-9|UbcH7-associated protein 1|p53-associated parkin-like cytoplasmic protein|parkin-like cytoplasmic p53 binding protein 147 0.02012 9.5 1 1 +23114 NFASC neurofascin 1 protein-coding NF|NRCAML neurofascin|neurofascin homolog 155 0.02122 7.73 1 1 +23116 FAM179B family with sequence similarity 179 member B 14 protein-coding KIAA0423 protein FAM179B 120 0.01642 8.53 1 1 +23117 NPIPB3 nuclear pore complex interacting protein family member B3 16 protein-coding KIAA0220L|NPIP|NPIPB|NPIPB5|NPIPL3 nuclear pore complex-interacting protein family member B3|KIAA0220-like protein|PI-3-kinase-related kinase SMG-1 isoform 1 homolog|nuclear pore complex-interacting protein B type|nuclear pore complex-interacting protein-like 3|protein pps22-1 4 0.0005475 9.275 1 1 +23118 TAB2 TGF-beta activated kinase 1/MAP3K7 binding protein 2 6 protein-coding CHTD2|MAP3K7IP2|TAB-2 TGF-beta-activated kinase 1 and MAP3K7-binding protein 2|TAK1-binding protein 2|mitogen-activated protein kinase kinase kinase 7-interacting protein 2 45 0.006159 10.78 1 1 +23119 HIC2 HIC ZBTB transcriptional repressor 2 22 protein-coding HRG22|ZBTB30|ZNF907 hypermethylated in cancer 2 protein|HIC1-related gene on chromosome 22 protein|hic-2|hic-3|zinc finger and BTB domain-containing protein 30 41 0.005612 7.407 1 1 +23120 ATP10B ATPase phospholipid transporting 10B (putative) 5 protein-coding ATPVB probable phospholipid-transporting ATPase VB|ATPase, class V, type 10B|P4-ATPase flippase complex alpha subunit ATP10B 154 0.02108 4.969 1 1 +23122 CLASP2 cytoplasmic linker associated protein 2 3 protein-coding - CLIP-associating protein 2|CLIP-associating protein CLASP2|multiple asters (Mast)-like homolog 2|protein Orbit homolog 2 84 0.0115 9.844 1 1 +23125 CAMTA2 calmodulin binding transcription activator 2 17 protein-coding - calmodulin-binding transcription activator 2 87 0.01191 10.02 1 1 +23126 POGZ pogo transposable element with ZNF domain 1 protein-coding MRD37|WHSUS|ZNF280E|ZNF635|ZNF635m pogo transposable element with ZNF domain|putative protein product of Nbla00003|zinc finger protein 280E|zinc finger protein 635 76 0.0104 10.84 1 1 +23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 1 protein-coding C1orf17|GLT25D2 procollagen galactosyltransferase 2|Procollagen galactosyltransferase|glycosyltransferase 25 domain containing 2|glycosyltransferase 25 family member 2|hydroxylysine galactosyltransferase 2 62 0.008486 5.844 1 1 +23129 PLXND1 plexin D1 3 protein-coding PLEXD1 plexin-D1 118 0.01615 11.08 1 1 +23130 ATG2A autophagy related 2A 11 protein-coding - autophagy-related protein 2 homolog A|ATG2 autophagy related 2 homolog A 111 0.01519 9.845 1 1 +23131 GPATCH8 G-patch domain containing 8 17 protein-coding GPATC8|KIAA0553 G patch domain-containing protein 8 116 0.01588 10.22 1 1 +23132 RAD54L2 RAD54-like 2 (S. cerevisiae) 3 protein-coding ARIP4|HSPC325|SRISNF2L helicase ARIP4|AR interacting protein 4|RAD54-like protein 2|androgen receptor-interacting protein 4 82 0.01122 7.022 1 1 +23133 PHF8 PHD finger protein 8 X protein-coding JHDM1F|MRXSSD|ZNF422 histone lysine demethylase PHF8|jumonji C domain-containing histone demethylase 1F 65 0.008897 9.868 1 1 +23135 KDM6B lysine demethylase 6B 17 protein-coding JMJD3 lysine-specific demethylase 6B|jmjC domain-containing protein 3|jumonji domain containing 3, histone lysine demethylase|jumonji domain-containing protein 3|lysine (K)-specific demethylase 6B 112 0.01533 9.956 1 1 +23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 18 protein-coding 4.1B|DAL-1|DAL1 band 4.1-like protein 3|differentially expressed in adenocarcinoma of the lung protein 1 186 0.02546 8.701 1 1 +23137 SMC5 structural maintenance of chromosomes 5 9 protein-coding SMC5L1 structural maintenance of chromosomes protein 5|SMC protein 5|SMC-5|SMC5 structural maintenance of chromosomes 5-like 1|hSMC5 68 0.009307 9.539 1 1 +23138 N4BP3 NEDD4 binding protein 3 5 protein-coding LZTS4 NEDD4-binding protein 3 30 0.004106 7.485 1 1 +23139 MAST2 microtubule associated serine/threonine kinase 2 1 protein-coding MAST205|MTSSK microtubule-associated serine/threonine-protein kinase 2|microtubule associated testis specific serine/threonine protein kinase 95 0.013 10.25 1 1 +23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 17 protein-coding ZZZ4 zinc finger ZZ-type and EF-hand domain-containing protein 1|zinc finger, ZZ-type with EF hand domain 1 147 0.02012 10.15 1 1 +23141 ANKLE2 ankyrin repeat and LEM domain containing 2 12 protein-coding KIAA0692|LEMD7|Lem4|MCPH16 ankyrin repeat and LEM domain-containing protein 2|LEM domain containing 7|LEM domain-containing protein 4 74 0.01013 10.67 1 1 +23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 4 protein-coding - DCN1-like protein 4|DCN1, defective in cullin neddylation 1, domain containing 4|DCUN1 domain-containing protein 4|defective in cullin neddylation protein 1-like protein 4 21 0.002874 9.357 1 1 +23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 13 protein-coding CHDC1|NP81 leucine-rich repeat and calponin homology domain-containing protein 1|leucine-rich repeats and calponin homology (CH) domain containing 1|neuronal protein 81 50 0.006844 8.863 1 1 +23144 ZC3H3 zinc finger CCCH-type containing 3 8 protein-coding ZC3HDC3 zinc finger CCCH domain-containing protein 3|smad-interacting CPSF-like factor|zinc finger CCCH-type domain containing 3 68 0.009307 9.462 1 1 +23145 SSPO SCO-spondin 7 protein-coding - SCO-spondin|SCO protein, thrombospondin domain containing|SCO-spondin homolog (Bos taurus)|subcommissural organ spondin 412 0.05639 3.972 1 1 +23148 NACAD NAC alpha domain containing 7 protein-coding - NAC-alpha domain-containing protein 1 43 0.005886 6.472 1 1 +23149 FCHO1 FCH domain only 1 19 protein-coding - F-BAR domain only protein 1|FCH domain only protein 1 69 0.009444 6.662 1 1 +23150 FRMD4B FERM domain containing 4B 3 protein-coding 6030440G05Rik|GRSP1 FERM domain-containing protein 4B|GRP1-binding protein GRSP1 45 0.006159 8.906 1 1 +23151 GRAMD4 GRAM domain containing 4 22 protein-coding DIP|dA59H18.1|dJ439F8.1 GRAM domain-containing protein 4|death-inducing-protein 42 0.005749 9.726 1 1 +23152 CIC capicua transcriptional repressor 19 protein-coding - protein capicua homolog 181 0.02477 10.83 1 1 +23154 NCDN neurochondrin 1 protein-coding - neurochondrin 45 0.006159 9.851 1 1 +23155 CLCC1 chloride channel CLIC like 1 1 protein-coding MCLC chloride channel CLIC-like protein 1|Mid-1-related chloride channel protein 1 34 0.004654 9.583 1 1 +23157 SEPT6 septin 6 X protein-coding SEP2|SEPT2 septin-6|septin 2 38 0.005201 9.513 1 1 +23158 TBC1D9 TBC1 domain family member 9 4 protein-coding GRAMD9|MDR1 TBC1 domain family member 9|TBC1 domain family member 9A|TBC1 domain family, member 9 (with GRAM domain) 92 0.01259 9.769 1 1 +23160 WDR43 WD repeat domain 43 2 protein-coding NET12|UTP5 WD repeat-containing protein 43|U3 small nucleolar RNA-associated protein 5 homolog|UTP5, small subunit (SSU) processome component, homolog 27 0.003696 9.831 1 1 +23161 SNX13 sorting nexin 13 7 protein-coding RGS-PX1 sorting nexin-13|rgs domain- and phox domain-containing protein 64 0.00876 9.81 1 1 +23162 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 16 protein-coding JIP-3|JIP3|JSAP1|SYD2|syd C-Jun-amino-terminal kinase-interacting protein 3|C-jun-amino-terminal kinase interacting protein 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 86 0.01177 10.04 1 1 +23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 17 protein-coding - ADP-ribosylation factor-binding protein GGA3|Golgi-localized, gamma ear-containing, ARF-binding protein 3 38 0.005201 9.727 1 1 +23164 MPRIP myosin phosphatase Rho interacting protein 17 protein-coding M-RIP|MRIP|RHOIP3|RIP3|p116Rip myosin phosphatase Rho-interacting protein|Rho interacting protein 3 59 0.008076 11.01 1 1 +23165 NUP205 nucleoporin 205 7 protein-coding C7orf14|NPHS13 nuclear pore complex protein Nup205|205 kDa nucleoporin|nucleoporin Nup205 133 0.0182 10.34 1 1 +23166 STAB1 stabilin 1 3 protein-coding CLEVER-1|FEEL-1|FELE-1|FEX1|SCARH2|STAB-1 stabilin-1|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 173 0.02368 9.918 1 1 +23167 EFR3A EFR3 homolog A 8 protein-coding - protein EFR3 homolog A 60 0.008212 10.81 1 1 +23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component 15 protein-coding GTL7|KIAA0252 RNA polymerase-associated protein RTF1 homolog|Rtf1, Paf1/RNA polymerase II complex component, homolog|ortholog of mouse gene trap locus 7 46 0.006296 10.55 1 1 +23169 SLC35D1 solute carrier family 35 member D1 1 protein-coding UGTREL7 UDP-glucuronic acid/UDP-N-acetylgalactosamine transporter|UDP-GlcA/UDP-GalNAc transporter|UDP-galactose transporter-related 7|UDP-galactose transporter-related protein 7|solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1|solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 24 0.003285 9.111 1 1 +23170 TTLL12 tubulin tyrosine ligase like 12 22 protein-coding dJ526I14.2 tubulin--tyrosine ligase-like protein 12|tubulin tyrosine ligase-like family, member 12 40 0.005475 10.54 1 1 +23171 GPD1L glycerol-3-phosphate dehydrogenase 1-like 3 protein-coding GPD1-L glycerol-3-phosphate dehydrogenase 1-like protein 21 0.002874 9.656 1 1 +23172 FAM175B family with sequence similarity 175 member B 10 protein-coding ABRO1|KIAA0157 BRISC complex subunit Abro1|abraxas brother 1|abraxas brother protein 1 28 0.003832 8.757 1 1 +23173 METAP1 methionyl aminopeptidase 1 4 protein-coding MAP1A|MetAP1A methionine aminopeptidase 1|MAP 1|metAP 1|peptidase M 1 17 0.002327 9.955 1 1 +23174 ZCCHC14 zinc finger CCHC-type containing 14 16 protein-coding BDG-29|BDG29 zinc finger CCHC domain-containing protein 14|zinc finger, CCHC domain containing 14 54 0.007391 9.947 1 1 +23175 LPIN1 lipin 1 2 protein-coding PAP1 phosphatidate phosphatase LPIN1 59 0.008076 9.457 1 1 +23176 SEPT8 septin 8 5 protein-coding SEP2 septin-8 25 0.003422 10.67 1 1 +23177 CEP68 centrosomal protein 68 2 protein-coding KIAA0582 centrosomal protein of 68 kDa|centrosomal protein 68kDa 47 0.006433 9.26 1 1 +23178 PASK PAS domain containing serine/threonine kinase 2 protein-coding PASKIN|STK37 PAS domain-containing serine/threonine-protein kinase|per-arnt-sim (PAS) domain kinase 84 0.0115 8.021 1 1 +23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 1 protein-coding RGL ral guanine nucleotide dissociation stimulator-like 1|ralGDS-like 1 57 0.007802 8.989 1 1 +23180 RFTN1 raftlin, lipid raft linker 1 3 protein-coding MIG2|PIB10|PIG9|RAFTLIN raftlin|cell migration-inducing gene 2 protein|proliferation-inducing protein 10|proliferation-inducing protein 9|raft-linking protein 52 0.007117 9.456 1 1 +23181 DIP2A disco interacting protein 2 homolog A 21 protein-coding C21orf106|DIP2 disco-interacting protein 2 homolog A|DIP2 disco-interacting protein 2 homolog A|DIP2 homolog A|disco-interacting protein 2A 103 0.0141 9.517 1 1 +23184 MESDC2 mesoderm development candidate 2 15 protein-coding BOCA|MESD LDLR chaperone MESD|mesoderm development protein|renal carcinoma antigen NY-REN-61 17 0.002327 10.57 1 1 +23185 LARP4B La ribonucleoprotein domain family member 4B 10 protein-coding KIAA0217|LARP5 la-related protein 4B|La ribonucleoprotein domain family, member 5|la-related protein 5 101 0.01382 10.54 1 1 +23186 RCOR1 REST corepressor 1 14 protein-coding COREST|RCOR REST corepressor 1 30 0.004106 9.766 1 1 +23187 PHLDB1 pleckstrin homology like domain family B member 1 11 protein-coding LL5A pleckstrin homology-like domain family B member 1|LL5alpha|pleckstrin homology-like domain family B member 1 variant 3|pleckstrin homology-like domain family B member 1 variant 4|protein LL5-alpha 81 0.01109 10.47 1 1 +23189 KANK1 KN motif and ankyrin repeat domains 1 9 protein-coding ANKRD15|CPSQ2|KANK KN motif and ankyrin repeat domain-containing protein 1|ankyrin repeat domain-containing protein 15|kidney ankyrin repeat-containing protein 96 0.01314 9.949 1 1 +23190 UBXN4 UBX domain protein 4 2 protein-coding UBXD2|UBXDC1|erasin UBX domain-containing protein 4|UBX domain containing 2|UBX domain-containing 1|UBX domain-containing protein 2 41 0.005612 11.49 1 1 +23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 15 protein-coding P140SRA-1|SHYC|SRA-1|SRA1 cytoplasmic FMR1-interacting protein 1|cytoplasmic FMRP interacting protein 1|selective hybridizing clone|specifically Rac1-associated protein 1 79 0.01081 11.48 1 1 +23192 ATG4B autophagy related 4B cysteine peptidase 2 protein-coding APG4B|AUTL1 cysteine protease ATG4B|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|hAPG4B 17 0.002327 10.04 1 1 +23193 GANAB glucosidase II alpha subunit 11 protein-coding G2AN|GIIA|GLUII|PKD3 neutral alpha-glucosidase AB|alpha-glucosidase 2 75 0.01027 13.19 1 1 +23194 FBXL7 F-box and leucine rich repeat protein 7 5 protein-coding FBL6|FBL7 F-box/LRR-repeat protein 7|F-box protein Fbl7 118 0.01615 7.967 1 1 +23195 MDN1 midasin AAA ATPase 1 6 protein-coding Rea1 midasin|MDN1, midasin homolog|MIDAS-containing protein 297 0.04065 9.542 1 1 +23196 FAM120A family with sequence similarity 120A 9 protein-coding C9orf10|OSSA constitutive coactivator of PPAR-gamma-like protein 1|oxidative stess-associated Src activator|oxidative stress-associated Src activator 65 0.008897 12.06 1 1 +23197 FAF2 Fas associated factor family member 2 5 protein-coding ETEA|UBXD8|UBXN3B 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 36 0.004927 10.6 1 1 +23198 PSME4 proteasome activator subunit 4 2 protein-coding PA200 proteasome activator complex subunit 4|proteasome (prosome, macropain) activator subunit 4|proteasome activator 200 kDa|proteasome activator PA200 145 0.01985 10.74 1 1 +23199 GSE1 Gse1 coiled-coil protein 16 protein-coding CRHSP24|KIAA0182 genetic suppressor element 1|CTC-786C10.1|Gse1 coiled-coil protein homolog 84 0.0115 10.62 1 1 +23200 ATP11B ATPase phospholipid transporting 11B (putative) 3 protein-coding ATPIF|ATPIR probable phospholipid-transporting ATPase IF|ATPase IR|ATPase, class VI, type 11B|P4-ATPase flippase complex alpha subunit ATP11B|truncated ATPase 11B protein 69 0.009444 10.18 1 1 +23201 FAM168A family with sequence similarity 168 member A 11 protein-coding KIAA0280|TCRP1 protein FAM168A|tongue cancer chemotherapy resistance-associated protein 1 10 0.001369 7.475 1 1 +23203 PMPCA peptidase, mitochondrial processing alpha subunit 9 protein-coding Alpha-MPP|INPP5E|P-55|SCAR2 mitochondrial-processing peptidase subunit alpha|inositol polyphosphate-5-phosphatase, 72 kD|mitochondrial matrix processing protease, alpha subunit 35 0.004791 10.27 1 1 +23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 16 protein-coding AIP1|ARL6IP|ARMER|SPG61 ADP-ribosylation factor-like protein 6-interacting protein 1|ADP-ribosylation factor GTPase 6 interacting protein 1|ADP-ribosylation factor-like 6 interacting protein 1|ARL-6-interacting protein 1|aip-1|apoptotic regulator in the membrane of the endoplasmic reticulum 15 0.002053 12.52 1 1 +23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 15 protein-coding BG|BG1|BGM|GR-LACS|LPD long-chain-fatty-acid--CoA ligase ACSBG1|bubblegum|lipidosin|very long-chain acyl-CoA synthetase 56 0.007665 3.696 1 1 +23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 1 protein-coding SKIP pleckstrin homology domain-containing family M member 2|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 (with RUN domain) member 2|salmonella-induced filaments A and kinesin-interacting protein|sifA and kinesin-interacting protein 54 0.007391 10.78 1 1 +23208 SYT11 synaptotagmin 11 1 protein-coding SYT12|sytXI synaptotagmin-11|synaptotagmin 12|synaptotagmin XI 43 0.005886 8.805 1 1 +23209 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 22 protein-coding LVM|MLC|VL membrane protein MLC1 33 0.004517 4.035 1 1 +23210 JMJD6 arginine demethylase and lysine hydroxylase 17 protein-coding PSR|PTDSR|PTDSR1 bifunctional arginine demethylase and lysyl-hydroxylase JMJD6|histone arginine demethylase JMJD6|jmjC domain-containing protein 6|jumonji domain containing 6|jumonji domain-containing protein 6|lysyl-hydroxylase JMJD6|peptide-lysine 5-dioxygenase JMJD6|phosphatidylserine receptor 27 0.003696 9.111 1 1 +23211 ZC3H4 zinc finger CCCH-type containing 4 19 protein-coding C19orf7 zinc finger CCCH domain-containing protein 4 85 0.01163 10.04 1 1 +23212 RRS1 ribosome biogenesis regulator homolog 8 protein-coding - ribosome biogenesis regulatory protein homolog|RRS1 ribosome biogenesis regulator homolog|homolog of yeast ribosome biogenesis regulator|homolog of yeast ribosome biogenesis regulatory protein RRS1|ribosome biogenesis regulatory protein RRS1 homolog 23 0.003148 9.185 1 1 +23213 SULF1 sulfatase 1 8 protein-coding SULF-1 extracellular sulfatase Sulf-1|sulfatase FP 142 0.01944 10.4 1 1 +23214 XPO6 exportin 6 16 protein-coding EXP6|RANBP20 exportin-6|ran-binding protein 20 66 0.009034 11.1 1 1 +23215 PRRC2C proline rich coiled-coil 2C 1 protein-coding BAT2-iso|BAT2D1|BAT2L2|XTP2 protein PRRC2C|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|proline-rich and coiled-coil-containing protein 2C|protein BAT2-like 2 141 0.0193 11.96 1 1 +23216 TBC1D1 TBC1 domain family member 1 4 protein-coding TBC|TBC1 TBC1 domain family member 1|TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 77 0.01054 10.25 1 1 +23217 ZFR2 zinc finger RNA binding protein 2 19 protein-coding KIAA1086 zinc finger RNA-binding protein 2 62 0.008486 2.63 1 1 +23218 NBEAL2 neurobeachin like 2 3 protein-coding BDPLT4|GPS neurobeachin-like protein 2 124 0.01697 9.973 1 1 +23219 FBXO28 F-box protein 28 1 protein-coding CENP-30|Fbx28 F-box only protein 28|centromere protein 30 31 0.004243 9.955 1 1 +23220 DTX4 deltex E3 ubiquitin ligase 4 11 protein-coding RNF155 E3 ubiquitin-protein ligase DTX4|RING finger protein 155|deltex 4 homolog|deltex 4, E3 ubiquitin ligase|deltex homolog 4|deltex4|protein deltex-4 43 0.005886 9.459 1 1 +23221 RHOBTB2 Rho related BTB domain containing 2 8 protein-coding DBC2 rho-related BTB domain-containing protein 2|deleted in breast cancer 2 gene protein|p83 39 0.005338 9.459 1 1 +23223 RRP12 ribosomal RNA processing 12 homolog 10 protein-coding KIAA0690 RRP12-like protein 72 0.009855 9.865 1 1 +23224 SYNE2 spectrin repeat containing nuclear envelope protein 2 14 protein-coding EDMD5|NUA|NUANCE|Nesp2|Nesprin-2|SYNE-2|TROPH nesprin-2|nesprin 2|nuclear envelope spectrin repeat protein 2|nucleus and actin connecting element protein|polytrophin|spectrin repeat containing, nuclear envelope 2|synaptic nuclear envelope protein 2|synaptic nuclei expressed gene 2 389 0.05324 11.22 1 1 +23225 NUP210 nucleoporin 210 3 protein-coding GP210|POM210 nuclear pore membrane glycoprotein 210|nuclear envelope pore membrane protein POM 210|nuclear pore protein gp210|nucleoporin 210kDa|nucleoporin Nup210|pore membrane protein of 210 kDa 118 0.01615 10.23 1 1 +23228 PLCL2 phospholipase C like 2 3 protein-coding PLCE2 inactive phospholipase C-like protein 2|PLC-L(2)|PLC-L2|PLC-epsilon-2|phospholipase C-L2|phospholipase C-epsilon-2 80 0.01095 7.368 1 1 +23229 ARHGEF9 Cdc42 guanine nucleotide exchange factor 9 X protein-coding COLLYBISTIN|EIEE8|HPEM-2|PEM-2|PEM2 rho guanine nucleotide exchange factor 9|Cdc42 guanine nucleotide exchange factor (GEF) 9|PEM-2 homolog|hPEM-2 collybistin|rac/Cdc42 guanine nucleotide exchange factor 9 53 0.007254 8.959 1 1 +23230 VPS13A vacuolar protein sorting 13 homolog A 9 protein-coding CHAC|CHOREIN vacuolar protein sorting-associated protein 13A|chorea-acanthocytosis protein|vacuolar protein sorting 13A 201 0.02751 9.069 1 1 +23231 SEL1L3 SEL1L family member 3 4 protein-coding Sel-1L3 protein sel-1 homolog 3|sel-1 suppressor of lin-12-like 3|suppressor of lin-12-like protein 3 79 0.01081 9.976 1 1 +23232 TBC1D12 TBC1 domain family member 12 10 protein-coding - TBC1 domain family member 12 84 0.0115 8.047 1 1 +23233 EXOC6B exocyst complex component 6B 2 protein-coding SEC15B|SEC15L2 exocyst complex component 6B|SEC15 homolog B|SEC15-like protein 2|exocyst complex component Sec15B 44 0.006022 6.977 1 1 +23234 DNAJC9 DnaJ heat shock protein family (Hsp40) member C9 10 protein-coding HDJC9|JDD1|SB73 dnaJ homolog subfamily C member 9|DnaJ (Hsp40) homolog, subfamily C, member 9|DnaJ protein SB73 20 0.002737 9.549 1 1 +23235 SIK2 salt inducible kinase 2 11 protein-coding LOH11CR1I|QIK|SIK-2|SNF1LK2 serine/threonine-protein kinase SIK2|SNF1-like kinase 2|qin-induced kinase|salt-inducible protein kinase 2|salt-inducible serine/threonine kinase 2|serine/threonine-protein kinase SNF1-like kinase 2 53 0.007254 9.419 1 1 +23236 PLCB1 phospholipase C beta 1 20 protein-coding EIEE12|PI-PLC|PLC-154|PLC-I|PLC-beta-1|PLC154|PLCB1A|PLCB1B 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-1|1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|inositoltrisphosphohydrolase|monophosphatidylinositol phosphodiesterase|phosphoinositidase C|phospholipase C, beta 1 (phosphoinositide-specific)|phospholipase C-I|triphosphoinositide phosphodiesterase 176 0.02409 7.947 1 1 +23237 ARC activity regulated cytoskeleton associated protein 8 protein-coding Arg3.1 activity-regulated cytoskeleton-associated protein|ARC/ARG3.1|activity-regulated gene 3.1 protein homolog 43 0.005886 4.755 1 1 +23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 18 protein-coding PHLPP|PLEKHE1|PPM3A|SCOP 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|protein phosphatase, Mg2+/Mn2+ dependent 3A|suprachiasmatic nucleus circadian oscillatory protein 80 0.01095 9.169 1 1 +23240 KIAA0922 KIAA0922 4 protein-coding TMEM131L transmembrane protein 131-like 96 0.01314 8.618 1 1 +23241 PACS2 phosphofurin acidic cluster sorting protein 2 14 protein-coding PACS-2|PACS1L phosphofurin acidic cluster sorting protein 2|PACS1-like protein 53 0.007254 10.43 1 1 +23242 COBL cordon-bleu WH2 repeat protein 7 protein-coding - protein cordon-bleu|cordon-bleu homolog 117 0.01601 8.468 1 1 +23243 ANKRD28 ankyrin repeat domain 28 3 protein-coding PITK|PPP1R65 serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit A|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 subunit ARS-A 71 0.009718 9.951 1 1 +23244 PDS5A PDS5 cohesin associated factor A 4 protein-coding PIG54|SCC-112|SCC112 sister chromatid cohesion protein PDS5 homolog A|PDS5, regulator of cohesion maintenance, homolog A|cell proliferation-inducing gene 54 protein|sister chromatid cohesion protein 112 78 0.01068 11.24 1 1 +23245 ASTN2 astrotactin 2 9 protein-coding bA67K19.1 astrotactin-2|bA264C15.1 200 0.02737 7.493 1 1 +23246 BOP1 block of proliferation 1 8 protein-coding - ribosome biogenesis protein BOP1 10 0.001369 8.515 1 1 +23247 KIAA0556 KIAA0556 16 protein-coding JBTS26 protein KIAA0556|Katanin-interacting protein|Katnip 133 0.0182 9.229 1 1 +23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 1 protein-coding HSPC099|KIAA0460 regulation of nuclear pre-mRNA domain-containing protein 2 99 0.01355 10.54 1 1 +23250 ATP11A ATPase phospholipid transporting 11A 13 protein-coding ATPIH|ATPIS probable phospholipid-transporting ATPase IH|ATPase, class VI, type 11A|P4-ATPase flippase complex alpha subunit ATP11A|phospholipid-translocating ATPase|potential phospholipid-transporting ATPase IH 90 0.01232 10.23 1 1 +23251 KIAA1024 KIAA1024 15 protein-coding - UPF0258 protein KIAA1024 93 0.01273 4.92 1 1 +23252 OTUD3 OTU deubiquitinase 3 1 protein-coding DUBA4 OTU domain-containing protein 3|OTU domain containing 3 17 0.002327 7.881 1 1 +23253 ANKRD12 ankyrin repeat domain 12 18 protein-coding ANCO-2|ANCO1|GAC-1|Nbla00144 ankyrin repeat domain-containing protein 12|ankyrin repeat-containing cofactor 2 141 0.0193 9.717 1 1 +23254 KAZN kazrin, periplakin interacting protein 1 protein-coding KAZ kazrin 48 0.00657 8.719 1 1 +23255 MTCL1 microtubule crosslinking factor 1 18 protein-coding CCDC165|KIAA0802|SOGA2 microtubule cross-linking factor 1|PAR-1-interacting protein|SOGA family member 2|coiled-coil domain containing 165|coiled-coil domain-containing protein 165|protein SOGA2 133 0.0182 7.619 1 1 +23256 SCFD1 sec1 family domain containing 1 14 protein-coding C14orf163|RA410|SLY1|SLY1P|STXBP1L2 sec1 family domain-containing protein 1|syntaxin-binding protein 1-like 2|vesicle transport-related protein 40 0.005475 9.864 1 1 +23258 DENND5A DENN domain containing 5A 11 protein-coding RAB6IP1 DENN domain-containing protein 5A|DENN/MADD domain containing 5A|RAB6 interacting protein 1|rab6-interacting protein 1 74 0.01013 10.31 1 1 +23259 DDHD2 DDHD domain containing 2 8 protein-coding SAMWD1|SPG54|iPLA(1)gamma phospholipase DDHD2|PA-PLA1 like|SAM, WWE and DDHD domain-containing protein 1|intracellular phospholipase A1gamma|sec23p-interacting protein p125-like phosphatidic acid-preferring phospholipase A1 51 0.006981 9.655 1 1 +23261 CAMTA1 calmodulin binding transcription activator 1 1 protein-coding CANPMR calmodulin-binding transcription activator 1 145 0.01985 9.053 1 1 +23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 5 protein-coding CFAP160|HISPPD1|IP7K2|VIP2 inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2|VIP1 homolog 2|histidine acid phosphatase domain-containing protein 1|inositol heptaphosphate kinase 2|insP6 and PP-IP5 kinase 2 70 0.009581 9.38 1 1 +23263 MCF2L MCF.2 cell line derived transforming sequence like 13 protein-coding ARHGEF14|DBS|OST guanine nucleotide exchange factor DBS|DBL's big sister|MCF2 transforming sequence-like protein 93 0.01273 9.13 1 1 +23264 ZC3H7B zinc finger CCCH-type containing 7B 22 protein-coding RoXaN zinc finger CCCH domain-containing protein 7B|Rotavirus 'X' associated non-structural protein|rotavirus 'X'-associated non-structural protein|rotavirus X protein associated with NSP3|ubiquitous tetratricopeptide containing protein RoXaN 56 0.007665 11.34 1 1 +23265 EXOC7 exocyst complex component 7 17 protein-coding 2-5-3p|EX070|EXO70|EXOC1|Exo70p|YJL085W exocyst complex component 7|exocyst complex component Exo70 48 0.00657 11.69 1 1 +23266 ADGRL2 adhesion G protein-coupled receptor L2 1 protein-coding CIRL2|CL2|LEC1|LPHH1|LPHN2 adhesion G protein-coupled receptor L2|calcium-independent alpha-latrotoxin receptor 2|latrophilin homolog 1|latrophilin-2|lectomedin-1 171 0.02341 9.341 1 1 +23268 DNMBP dynamin binding protein 10 protein-coding ARHGEF36|TUBA dynamin-binding protein|scaffold protein TUBA 99 0.01355 9.423 1 1 +23269 MGA MGA, MAX dimerization protein 15 protein-coding MAD5|MXD5 MAX gene-associated protein|MAX dimerization protein 5 219 0.02998 9.647 1 1 +23270 TSPYL4 TSPY like 4 6 protein-coding dJ486I3.2 testis-specific Y-encoded-like protein 4|TSPY-like protein 4 18 0.002464 9.42 1 1 +23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 1 protein-coding CAMSAP1L1 calmodulin-regulated spectrin-associated protein 2|calmodulin-regulated spectrin-associated protein 1-like protein 1 89 0.01218 10.18 1 1 +23272 FAM208A family with sequence similarity 208 member A 3 protein-coding C3orf63|RAP140|se89-1 protein TASOR|CTCL tumor antigen se89-1|protein FAM208A|retinoblastoma-associated protein 140|retinoblastoma-associated protein RAP140|transgene activation suppressor protein 85 0.01163 10.46 1 1 +23274 CLEC16A C-type lectin domain family 16 member A 16 protein-coding Gop-1|KIAA0350 protein CLEC16A 86 0.01177 9.707 1 1 +23275 POFUT2 protein O-fucosyltransferase 2 21 protein-coding C21orf80|FUT13 GDP-fucose protein O-fucosyltransferase 2|O-FucT-2|peptide-O-fucosyltransferase 2 32 0.00438 9.317 1 1 +23276 KLHL18 kelch like family member 18 3 protein-coding - kelch-like protein 18 37 0.005064 8.698 1 1 +23277 CLUH clustered mitochondria homolog 17 protein-coding CLU1|KIAA0664 clustered mitochondria protein homolog|clustered mitochondria (cluA/CLU1) homolog 87 0.01191 11.1 1 1 +23279 NUP160 nucleoporin 160 11 protein-coding - nuclear pore complex protein Nup160|160 kDa nucleoporin|nucleoporin 160kD|nucleoporin 160kDa|nucleoporin Nup160 78 0.01068 10.06 1 1 +23281 MTUS2 microtubule associated tumor suppressor candidate 2 13 protein-coding CAZIP|ICIS|KIAA0774|TIP150 microtubule-associated tumor suppressor candidate 2|+TIP of 150 kDa|cardiac zipper protein|microtubule plus-end tracking protein TIP150|tracking protein of 150 kDa 160 0.0219 3.428 1 1 +23283 CSTF2T cleavage stimulation factor subunit 2 tau variant 10 protein-coding CstF-64T cleavage stimulation factor subunit 2 tau variant|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, 3' pre-RNA, subunit 2, 64kDa, tau|cleavage stimulation factor, 3' pre-RNA, subunit 2, tau|tauCstF-64 43 0.005886 9.655 1 1 +23284 ADGRL3 adhesion G protein-coupled receptor L3 4 protein-coding CIRL3|CL3|LEC3|LPHN3 adhesion G protein-coupled receptor L3|CIRL-3|calcium-independent alpha-latrotoxin receptor 3|latrophilin homolog 3 (cow)|latrophilin-3|lectomedin 3 223 0.03052 5.224 1 1 +23285 KIAA1107 KIAA1107 1 protein-coding - uncharacterized protein KIAA1107 34 0.004654 6.424 1 1 +23286 WWC1 WW and C2 domain containing 1 5 protein-coding HBEBP3|HBEBP36|KIBRA|MEMRYQTL|PPP1R168 protein KIBRA|HBeAg-binding protein 3|WW, C2 and coiled-coil domain containing 1|kidney and brain protein|protein WWC1|protein phosphatase 1, regulatory subunit 168 91 0.01246 9.703 1 1 +23287 AGTPBP1 ATP/GTP binding protein 1 9 protein-coding CCP1|NNA1 cytosolic carboxypeptidase 1|carboxypeptidase-tubulin|nervous system nuclear protein induced by axotomy protein 1 homolog|soluble carboxypeptidase|tubulinyl-Tyr carboxypeptidase|tyrosine carboxypeptidase 84 0.0115 8.343 1 1 +23288 IQCE IQ motif containing E 7 protein-coding 1700028P05Rik IQ domain-containing protein E 45 0.006159 9.56 1 1 +23291 FBXW11 F-box and WD repeat domain containing 11 5 protein-coding BTRC2|BTRCP2|FBW1B|FBXW1B|Fbw11|Hos F-box/WD repeat-containing protein 11|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 1B|beta-transducin repeat-containing protein 2|homologous to Slimb protein 33 0.004517 10.14 1 1 +23293 SMG6 SMG6, nonsense mediated mRNA decay factor 17 protein-coding C17orf31|EST1A|SMG-6|hSMG5/7a telomerase-binding protein EST1A|EST1 telomerase component homolog A|ever shorter telomeres 1A|smg-6 homolog, nonsense mediated mRNA decay factor|telomerase subunit EST1A 74 0.01013 10.12 1 1 +23294 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A 6 protein-coding ANKS1 ankyrin repeat and SAM domain-containing protein 1A|Odin|ankyrin repeat and SAM domain containing 1 72 0.009855 9.978 1 1 +23295 MGRN1 mahogunin ring finger 1 16 protein-coding RNF156 E3 ubiquitin-protein ligase MGRN1|RING finger protein 156|mahogunin RING finger protein 1|mahogunin ring finger 1, E3 ubiquitin protein ligase|probable E3 ubiquitin-protein ligase MGRN1 43 0.005886 10.89 1 1 +23299 BICD2 BICD cargo adaptor 2 9 protein-coding SMALED2|bA526D8.1 protein bicaudal D homolog 2|bic-D 2|bicaudal D homolog 2|coiled-coil protein BICD2|cytoskeleton-like bicaudal D protein homolog 2|homolog of Drosophila bicaudal D 64 0.00876 10.03 1 1 +23300 ATMIN ATM interactor 16 protein-coding ASCIZ|ZNF822 ATM interactor|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 49 0.006707 10.46 1 1 +23301 EHBP1 EH domain binding protein 1 2 protein-coding HPC12|NACSIN EH domain-binding protein 1|NPF calponin-like protein|testis tissue sperm-binding protein Li 50e 91 0.01246 9.834 1 1 +23302 WSCD1 WSC domain containing 1 17 protein-coding - WSC domain-containing protein 1 46 0.006296 6.324 1 1 +23303 KIF13B kinesin family member 13B 8 protein-coding GAKIN kinesin-like protein KIF13B|guanylate kinase associated kinesin|kinesin 13B|kinesin-like protein GAKIN 92 0.01259 10.19 1 1 +23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 6 protein-coding C6orf133|bA49A4.1|dJ242G1.1|dJ392M17.3 E3 ubiquitin-protein ligase UBR2|ubiquitin-protein ligase E3-alpha-2|ubiquitin-protein ligase E3-alpha-II 108 0.01478 9.443 1 1 +23305 ACSL6 acyl-CoA synthetase long-chain family member 6 5 protein-coding ACS2|FACL6|LACS 6|LACS2|LACS5 long-chain-fatty-acid--CoA ligase 6|fatty-acid-Coenzyme A ligase, long-chain 6|long fatty acyl-CoA synthetase 2 50 0.006844 3.887 1 1 +23306 NEMP1 nuclear envelope integral membrane protein 1 12 protein-coding TMEM194|TMEM194A nuclear envelope integral membrane protein 1|transmembrane protein 194|transmembrane protein 194A 21 0.002874 9.118 1 1 +23307 FKBP15 FK506 binding protein 15 9 protein-coding FKBP133|KIAA0674|PPP1R76 FK506-binding protein 15|133 kDa FK506-binding protein|133 kDa FKBP|FK506 binding protein 15, 133kDa|FK506-binding protein 133kDa|FKBP-133|FKBP-15|WAFL|WASP and FKBP-like protein|protein phosphatase 1, regulatory subunit 76 60 0.008212 10.03 1 1 +23308 ICOSLG inducible T-cell costimulator ligand 21 protein-coding B7-H2|B7H2|B7RP-1|B7RP1|CD275|GL50|ICOS-L|ICOSL|LICOS ICOS ligand|B7 homolog 2|B7 homologue 2|B7-like protein Gl50|B7-related protein 1|inducible T-cell co-stimulator ligand|transmembrane protein B7-H2 ICOS ligand 33 0.004517 8.057 1 1 +23309 SIN3B SIN3 transcription regulator family member B 19 protein-coding - paired amphipathic helix protein Sin3b|SIN3 homolog B, transcriptional regulator|SIN3 transcription regulator homolog B|histone deacetylase complex subunit Sin3b|transcriptional corepressor Sin3b 64 0.00876 10.14 1 1 +23310 NCAPD3 non-SMC condensin II complex subunit D3 11 protein-coding CAP-D3|CAPD3|hCAP-D3|hHCP-6|hcp-6 condensin-2 complex subunit D3 120 0.01642 9.377 1 1 +23312 DMXL2 Dmx like 2 15 protein-coding PEPNS|RC3 dmX-like protein 2|rabconnectin-3 186 0.02546 9.07 1 1 +23313 KIAA0930 KIAA0930 22 protein-coding C22orf9|LSC3 uncharacterized protein KIAA0930 30 0.004106 10.94 1 1 +23314 SATB2 SATB homeobox 2 2 protein-coding GLSS DNA-binding protein SATB2|SATB family member 2|special AT-rich sequence-binding protein 2 100 0.01369 7.192 1 1 +23315 SLC9A8 solute carrier family 9 member A8 20 protein-coding NHE-8|NHE8 sodium/hydrogen exchanger 8|Na(+)/H(+) exchanger 8|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 8|solute carrier family 9, subfamily A (NHE8, cation proton antiporter 8), member 8 42 0.005749 9.261 1 1 +23316 CUX2 cut like homeobox 2 12 protein-coding CDP2|CUTL2 homeobox protein cut-like 2|homeobox protein cux-2 142 0.01944 3.461 1 1 +23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 3 protein-coding PARK21|RME8 dnaJ homolog subfamily C member 13|DnaJ (Hsp40) homolog, subfamily C, member 13|DnaJ domain-containing protein RME-8|required for receptor-mediated endocytosis 8 139 0.01903 10.27 1 1 +23318 ZCCHC11 zinc finger CCHC-type containing 11 1 protein-coding PAPD3|TUT4 terminal uridylyltransferase 4|PAP associated domain containing 3|TUTase 4|zinc finger CCHC domain-containing protein 11|zinc finger, CCHC domain containing 11 96 0.01314 9.123 1 1 +23321 TRIM2 tripartite motif containing 2 4 protein-coding CMT2R|RNF86 tripartite motif-containing protein 2|E3 ubiquitin-protein ligase TRIM2|RING finger protein 86|tripartite motif protein TRIM2 41 0.005612 10.1 1 1 +23322 RPGRIP1L RPGRIP1 like 16 protein-coding CORS3|FTM|JBTS7|MKS5|NPHP8|PPP1R134 protein fantom|RPGR-interacting protein 1-like protein|fantom homolog|nephrocystin-8|protein phosphatase 1, regulatory subunit 134 104 0.01423 7.141 1 1 +23324 MAN2B2 mannosidase alpha class 2B member 2 4 protein-coding - epididymis-specific alpha-mannosidase|core-specific lysosomal alpha-1,6-Mannosidase 74 0.01013 10.5 1 1 +23325 KIAA1033 KIAA1033 12 protein-coding MRT43|SWIP WASH complex subunit 7|strumpellin and WASH-interacting protein 75 0.01027 9.953 1 1 +23326 USP22 ubiquitin specific peptidase 22 17 protein-coding USP3L ubiquitin carboxyl-terminal hydrolase 22|deubiquitinating enzyme 22|ubiquitin specific protease 22|ubiquitin thioesterase 22|ubiquitin thiolesterase 22|ubiquitin-specific processing protease 22 25 0.003422 12.22 1 1 +23327 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase 18 protein-coding NEDD4-2|NEDD4.2|RSP5|hNEDD4-2 E3 ubiquitin-protein ligase NEDD4-like|ubiquitin-protein ligase Rsp5 53 0.007254 10.23 1 1 +23328 SASH1 SAM and SH3 domain containing 1 6 protein-coding SH3D6A|dJ323M4|dJ323M4.1 SAM and SH3 domain-containing protein 1|2500002E12Rik|proline-glutamate repeat-containing protein 78 0.01068 9.735 1 1 +23329 TBC1D30 TBC1 domain family member 30 12 protein-coding - TBC1 domain family member 30 6 0.0008212 1 0 +23331 TTC28 tetratricopeptide repeat domain 28 22 protein-coding TPRBK tetratricopeptide repeat protein 28|TPR repeat protein 28|TPR repeat-containing big gene cloned at Keio|TPR-containing big gene cloned at Keio 55 0.007528 8.932 1 1 +23332 CLASP1 cytoplasmic linker associated protein 1 2 protein-coding MAST1 CLIP-associating protein 1|multiple asters 1|multiple asters homolog 1|protein Orbit homolog 1 100 0.01369 10.38 1 1 +23333 DPY19L1 dpy-19 like 1 7 protein-coding - probable C-mannosyltransferase DPY19L1|DPY-19-like protein 1|protein dpy-19 homolog 1 42 0.005749 9.579 1 1 +23334 SZT2 seizure threshold 2 homolog (mouse) 1 protein-coding C1orf84|EIEE18|KIAA0467|SZT2A|SZT2B protein SZT2|seizure threshold 2 protein homolog 162 0.02217 9.794 1 1 +23335 WDR7 WD repeat domain 7 18 protein-coding TRAG WD repeat-containing protein 7|TGF-beta resistance associated|TGF-beta resistance-associated protein TRAG|rabconnectin-3 beta 119 0.01629 8.867 1 1 +23336 SYNM synemin 15 protein-coding DMN|SYN synemin|desmuslin|synemin alpha|synemin beta|synemin, intermediate filament protein 60 0.008212 9.165 1 1 +23338 JADE2 jade family PHD finger 2 5 protein-coding JADE-2|PHF15 protein Jade-2|PHD finger protein 15|jade family PHD finger protein 2 56 0.007665 10.08 1 1 +23339 VPS39 VPS39, HOPS complex subunit 15 protein-coding TLP|VAM6|hVam6p vam6/Vps39-like protein|TRAP1-like protein|vacuolar protein sorting 39 homolog 42 0.005749 10.74 1 1 +23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 1 protein-coding - dnaJ homolog subfamily C member 16|DnaJ (Hsp40) homolog, subfamily C, member 16|novel DnaJ domain-containing protein 47 0.006433 9.163 1 1 +23344 ESYT1 extended synaptotagmin 1 12 protein-coding FAM62A|MBC2 extended synaptotagmin-1|extended synaptotagmin like protein 1|extended synaptotagmin protein 1|family with sequence similarity 62 (C2 domain containing), member A|membrane-bound C2 domain-containing protein 66 0.009034 11.39 1 1 +23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 6 protein-coding 8B|ARCA1|C6orf98|CPG2|EDMD4|MYNE1|Nesp1|SCAR8|dJ45H2.2 nesprin-1|CPG2 full length|enaptin|myocyte nuclear envelope protein 1|nesprin 1|spectrin repeat containing, nuclear envelope 1|synaptic nuclear envelope protein 1|synaptic nuclei expressed gene 1 669 0.09157 9.717 1 1 +23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 18 protein-coding - structural maintenance of chromosomes flexible hinge domain-containing protein 1|SMC hinge domain-containing protein 1 136 0.01861 10.04 1 1 +23348 DOCK9 dedicator of cytokinesis 9 13 protein-coding ZIZ1|ZIZIMIN1 dedicator of cytokinesis protein 9|cdc42 guanine nucleotide exchange factor zizimin-1 120 0.01642 10.2 1 1 +23349 PHF24 PHD finger protein 24 9 protein-coding KIAA1045 PHD finger protein 24 45 0.006159 3.666 1 1 +23350 U2SURP U2 snRNP associated SURP domain containing 3 protein-coding SR140|fSAPa U2 snRNP-associated SURP motif-containing protein|140 kDa Ser/Arg-rich domain protein|Ser/Arg-rich domain protein, 140 kDa|U2-associated SR140 protein|U2-associated protein SR140|functional spliceosome-associated protein a 59 0.008076 10.89 1 1 +23351 KHNYN KH and NYN domain containing 14 protein-coding KIAA0323 protein KHNYN 37 0.005064 10.47 1 1 +23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 1 protein-coding RBAF600|ZUBR1|p600 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 266 0.03641 11.8 1 1 +23353 SUN1 Sad1 and UNC84 domain containing 1 7 protein-coding UNC84A 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 72 0.009855 11.19 1 1 +23354 HAUS5 HAUS augmin like complex subunit 5 19 protein-coding KIAA0841|dgt5 HAUS augmin-like complex subunit 5 41 0.005612 8.617 1 1 +23355 VPS8 VPS8, CORVET complex subunit 3 protein-coding KIAA0804 vacuolar protein sorting-associated protein 8 homolog|vacuolar protein sorting 8 homolog 85 0.01163 9.425 1 1 +23357 ANGEL1 angel homolog 1 14 protein-coding Ccr4e|KIAA0759 protein angel homolog 1 41 0.005612 9.072 1 1 +23358 USP24 ubiquitin specific peptidase 24 1 protein-coding - ubiquitin carboxyl-terminal hydrolase 24|deubiquitinating enzyme 24|ubiquitin specific protease 24|ubiquitin thioesterase 24|ubiquitin thiolesterase 24|ubiquitin-specific processing protease 24 117 0.01601 10.37 1 1 +23359 FAM189A1 family with sequence similarity 189 member A1 15 protein-coding TMEM228 protein FAM189A1|transmembrane protein 228 23 0.003148 4.304 1 1 +23360 FNBP4 formin binding protein 4 11 protein-coding FBP30 formin-binding protein 4|formin-binding protein 30 92 0.01259 10.01 1 1 +23361 ZNF629 zinc finger protein 629 16 protein-coding ZNF|ZNF65 zinc finger protein 629|DNA-binding protein|zinc finger protein 65 51 0.006981 9.757 1 1 +23362 PSD3 pleckstrin and Sec7 domain containing 3 8 protein-coding EFA6D|EFA6R|HCA67 PH and SEC7 domain-containing protein 3|ADP-ribosylation factor guanine nucleotide factor 6|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 76 0.0104 9.278 1 1 +23363 OBSL1 obscurin like 1 2 protein-coding - obscurin-like protein 1 113 0.01547 10.37 1 1 +23365 ARHGEF12 Rho guanine nucleotide exchange factor 12 11 protein-coding LARG|PRO2792 rho guanine nucleotide exchange factor 12|Rho guanine nucleotide exchange factor (GEF) 12|leukemia-associated RhoGEF|leukemia-associated rho guanine nucleotide exchange factor 101 0.01382 11.76 1 1 +23366 KIAA0895 KIAA0895 7 protein-coding - uncharacterized protein KIAA0895 38 0.005201 7.402 1 1 +23367 LARP1 La ribonucleoprotein domain family member 1 5 protein-coding LARP la-related protein 1 98 0.01341 12.23 1 1 +23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B 14 protein-coding ASPP1|p53BP2-like|p85 apoptosis-stimulating of p53 protein 1|apoptosis-stimulating protein of p53, 1|protein phosphatase 1, regulatory (inhibitor) subunit 13B 65 0.008897 9.446 1 1 +23369 PUM2 pumilio RNA binding family member 2 2 protein-coding PUMH2|PUML2 pumilio homolog 2|pumilio-2 72 0.009855 11.57 1 1 +23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 19 protein-coding P114-RhoGEF rho guanine nucleotide exchange factor 18|114 kDa Rho-specific guanine nucleotide exchange factor|Rho-specific guanine nucleotide exchange factor p114|Rho/Rac guanine nucleotide exchange factor (GEF) 18|SA-RhoGEF|p114RhoGEF|septin-associated RhoGEF 63 0.008623 10.28 1 1 +23371 TNS2 tensin 2 12 protein-coding C1-TEN|C1TEN|TENC1 tensin-2|C1 domain-containing phosphatase and tensin homolog|tensin like C1 domain containing phosphatase (tensin 2)|tensin-like C1 domain-containing phosphatase 69 0.009444 10.35 1 1 +23373 CRTC1 CREB regulated transcription coactivator 1 19 protein-coding MECT1|TORC-1|TORC1|WAMTP1 CREB-regulated transcription coactivator 1|mucoepidermoid carcinoma translocated protein 1|transducer of regulated cAMP response element-binding protein (CREB) 1 45 0.006159 8.89 1 1 +23376 UFL1 UFM1 specific ligase 1 6 protein-coding KIAA0776|Maxer|NLBP|RCAD E3 UFM1-protein ligase 1|LZAP-binding protein|Regulator of CDK5RAP3 and DDRGK1|novel LZAP-binding protein|regulator of C53/LZAP and DDRGK1 48 0.00657 9.672 1 1 +23378 RRP8 ribosomal RNA processing 8, methyltransferase, homolog (yeast) 11 protein-coding KIAA0409|NML ribosomal RNA-processing protein 8|RRP8 methyltransferase homolog|cerebral protein 1|nucleomethylin 29 0.003969 8.248 1 1 +23379 ICE1 interactor of little elongation complex ELL subunit 1 5 protein-coding KIAA0947 little elongation complex subunit 1|interactor of little elongator complex ELL subunit 1 175 0.02395 9.97 1 1 +23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 1 protein-coding ARHGAP34|FNBP2|SRGAP2A|SRGAP3 SLIT-ROBO Rho GTPase-activating protein 2|SLIT-ROBO GAP2|formin-binding protein 2|rho GTPase-activating protein 34 53 0.007254 9.741 1 1 +23381 SMG5 SMG5, nonsense mediated mRNA decay factor 1 protein-coding EST1B|LPTS-RP1|LPTSRP1|SMG-5 protein SMG5|EST1 telomerase component homolog B|EST1-like protein B|Est1p-like protein B|LPTS interacting protein|ever shorter telomeres 1B|smg-5 homolog, nonsense mediated mRNA decay factor 68 0.009307 11.39 1 1 +23382 AHCYL2 adenosylhomocysteinase like 2 7 protein-coding ADOHCYASE3|IRBIT2 adenosylhomocysteinase 3|IP(3)Rs binding protein released with IP(3) 2|S-adenosyl-L-homocysteine hydrolase 3|S-adenosylhomocysteine hydrolase-like 2|long-IRBIT|putative adenosylhomocysteinase 3 44 0.006022 9.689 1 1 +23383 MAU2 MAU2 sister chromatid cohesion factor 19 protein-coding KIAA0892|MAU2L|SCC4|mau-2 MAU2 chromatid cohesion factor homolog|cohesin loading complex subunit SCC4 homolog|protein MAU-2|sister chromatid cohesion 4 35 0.004791 10.3 1 1 +23384 SPECC1L sperm antigen with calponin homology and coiled-coil domains 1 like 22 protein-coding CYTSA|GBBB2|OBLFC1 cytospin-A|SPECC1-like protein|cytokinesis and spindle organization A|renal carcinoma antigen NY-REN-22 69 0.009444 10.39 1 1 +23385 NCSTN nicastrin 1 protein-coding ATAG1874 nicastrin|anterior pharynx-defective 2 54 0.007391 11.63 1 1 +23386 NUDCD3 NudC domain containing 3 7 protein-coding NudCL nudC domain-containing protein 3|NudC-like protein 20 0.002737 11.18 1 1 +23387 SIK3 SIK family kinase 3 11 protein-coding L19|QSK|SIK-3 serine/threonine-protein kinase SIK3|salt-inducible kinase 3|serine/threonine-protein kinase QSK 83 0.01136 9.821 1 1 +23389 MED13L mediator complex subunit 13 like 12 protein-coding MRFACD|PROSIT240|THRAP2|TRAP240L 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 118 0.01615 10.7 1 1 +23390 ZDHHC17 zinc finger DHHC-type containing 17 12 protein-coding HIP14|HIP3|HSPC294|HYPH palmitoyltransferase ZDHHC17|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 H|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 43 0.005886 9.071 1 1 +23392 KIAA0368 KIAA0368 9 protein-coding ECM29 proteasome-associated protein ECM29 homolog|ECM29 homolog, proteasome accessory protein|homolog of yeast Ecm29 96 0.01314 11.25 1 1 +23394 ADNP activity dependent neuroprotector homeobox 20 protein-coding ADNP1|HVDAS|MRD28 activity-dependent neuroprotector homeobox protein|ADNP homeobox 1|activity-dependent neuroprotective protein|activity-dependent neuroprotector 77 0.01054 11.15 1 1 +23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial 3 protein-coding HLASA|LEURS|PRLTS4|mtLeuRS probable leucine--tRNA ligase, mitochondrial|leucine tRNA ligase 2, mitochondrial|leucine tRNA ligase 2, mitocondrial|leucine translase|leucyl-tRNA synthetase 2|probable leucyl-tRNA synthetase, mitochondrial 36 0.004927 9.048 1 1 +23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma 19 protein-coding LCCS3|PIP5K-GAMMA|PIP5K1-gamma|PIP5Kgamma phosphatidylinositol 4-phosphate 5-kinase type-1 gamma|diphosphoinositide kinase|phosphatidylinositol-4-phosphate 5-kinase, type I, gamma|ptdIns(4)P-5-kinase 1 gamma|type I PIP kinase 60 0.008212 10.44 1 1 +23397 NCAPH non-SMC condensin I complex subunit H 2 protein-coding BRRN1|CAP-H condensin complex subunit 2|barren homolog 1|chromosome-associated protein H 50 0.006844 7.453 1 1 +23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 5 protein-coding - peptidylprolyl isomerase domain and WD repeat-containing protein 1|spliceosome-associated cyclophilin 32 0.00438 8.553 1 1 +23399 CTDNEP1 CTD nuclear envelope phosphatase 1 17 protein-coding DULLARD|HSA011916|NET56 CTD nuclear envelope phosphatase 1|C-terminal domain nuclear envelope phosphatase 1|dullard homolog|serine/threonine-protein phosphatase dullard 9 0.001232 10.95 1 1 +23400 ATP13A2 ATPase 13A2 1 protein-coding CLN12|HSA9947|KRPPD|PARK9 probable cation-transporting ATPase 13A2|ATPase type 13A2 77 0.01054 10.34 1 1 +23401 FRAT2 frequently rearranged in advanced T-cell lymphomas 2 10 protein-coding - GSK-3-binding protein FRAT2|FRAT-2 1 0.0001369 8.389 1 1 +23403 FBXO46 F-box protein 46 19 protein-coding 20D7-FC4|FBXO34L|Fbx46 F-box only protein 46 41 0.005612 8.914 1 1 +23404 EXOSC2 exosome component 2 9 protein-coding RRP4|Rrp4p|hRrp4p|p7 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 13 0.001779 8.892 1 1 +23405 DICER1 dicer 1, ribonuclease III 14 protein-coding DCR1|Dicer|Dicer1e|HERNA|K12H4.8-LIKE|MNG1|RMSE2 endoribonuclease Dicer|Dicer1, Dcr-1 homolog|dicer 1, double-stranded RNA-specific endoribonuclease|dicer 1, ribonuclease type III|helicase MOI|helicase with RNAse motif 125 0.01711 10.32 1 1 +23406 COTL1 coactosin like F-actin binding protein 1 16 protein-coding CLP coactosin-like protein|coactosin-like 1 13 0.001779 11.23 1 1 +23408 SIRT5 sirtuin 5 6 protein-coding SIR2L5 NAD-dependent protein deacylase sirtuin-5, mitochondrial|NAD-dependent deacetylase sirtuin-5|NAD-dependent lysine demalonylase and desuccinylase sirtuin-5, mitochondrial|silent mating type information regulation 2, S.cerevisiae, homolog 5|sir2-like 5|sirtuin type 5 18 0.002464 8.611 1 1 +23409 SIRT4 sirtuin 4 12 protein-coding SIR2L4 NAD-dependent protein lipoamidase sirtuin-4, mitochondrial|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 22 0.003011 4.405 1 1 +23410 SIRT3 sirtuin 3 11 protein-coding SIR2L3 NAD-dependent protein deacetylase sirtuin-3, mitochondrial|NAD-dependent 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 27 0.003696 9.374 1 1 +23411 SIRT1 sirtuin 1 10 protein-coding SIR2|SIR2L1|SIR2alpha NAD-dependent protein deacetylase sirtuin-1|SIR2-like protein 1|regulatory protein SIR2 homolog 1|sirtuin type 1 47 0.006433 8.965 1 1 +23412 COMMD3 COMM domain containing 3 10 protein-coding BUP|C10orf8 COMM domain-containing protein 3|protein Bup 6 0.0008212 9.336 1 1 +23413 NCS1 neuronal calcium sensor 1 9 protein-coding FLUP|FREQ neuronal calcium sensor 1|frequenin homolog|frequenin-like protein|frequenin-like ubiquitous protein 15 0.002053 9.641 1 1 +23414 ZFPM2 zinc finger protein, FOG family member 2 8 protein-coding DIH3|FOG2|SRXY9|ZC2HC11B|ZNF89B|hFOG-2 zinc finger protein ZFPM2|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, multitype 2 179 0.0245 5.938 1 1 +23415 KCNH4 potassium voltage-gated channel subfamily H member 4 17 protein-coding BEC2|ELK1|Kv12.3 potassium voltage-gated channel subfamily H member 4|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 channel, voltage gated eag related subfamily H, member 4|potassium voltage-gated channel, subfamily H (eag-related), member 4|voltage-gated potassium channel subunit Kv12.3 84 0.0115 2.29 1 1 +23416 KCNH3 potassium voltage-gated channel subfamily H member 3 12 protein-coding BEC1|ELK2|Kv12.2 potassium voltage-gated channel subfamily H member 3|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 channel, voltage gated eag related subfamily H, member 3|potassium voltage-gated channel, subfamily H (eag-related), member 3|voltage-gated potassium channel subunit Kv12.2 84 0.0115 4.418 1 1 +23417 MLYCD malonyl-CoA decarboxylase 16 protein-coding MCD malonyl-CoA decarboxylase, mitochondrial|malonyl coenzyme A decarboxylase 26 0.003559 8.045 1 1 +23418 CRB1 crumbs 1, cell polarity complex component 1 protein-coding LCA8|RP12 protein crumbs homolog 1|crumbs family member 1, photoreceptor morphogenesis associated 204 0.02792 2.427 1 1 +23420 NOMO1 NODAL modulator 1 16 protein-coding Nomo|PM5 nodal modulator 1|nodal modulator 3|pM5 protein 3|pM5 protein, telomeric copy 37 0.005064 11.88 1 1 +23421 ITGB3BP integrin subunit beta 3 binding protein 1 protein-coding CENP-R|CENPR|HSU37139|NRIF3|TAP20 centromere protein R|beta 3 endonexin|beta3-endonexin|integrin beta 3 binding protein (beta3-endonexin)|integrin beta-3-binding protein|nuclear receptor-interacting factor 3 14 0.001916 7.595 1 1 +23423 TMED3 transmembrane p24 trafficking protein 3 15 protein-coding C15orf22|P24B|p24g4|p26 transmembrane emp24 domain-containing protein 3|integral type I protein|membrane protein p24B|p24 family protein gamma-4|p24gamma4|testis tissue sperm-binding protein Li 48e|transmembrane emp24 protein transport domain containing 3 10 0.001369 11.05 1 1 +23424 TDRD7 tudor domain containing 7 9 protein-coding CATC4|PCTAIRE2BP|TRAP tudor domain-containing protein 7|PCTAIRE2-binding protein|tudor repeat associator with PCTAIRE 2 55 0.007528 8.866 1 1 +23426 GRIP1 glutamate receptor interacting protein 1 12 protein-coding GRIP glutamate receptor-interacting protein 1 106 0.01451 5.817 1 1 +23428 SLC7A8 solute carrier family 7 member 8 14 protein-coding LAT2|LPI-PC1 large neutral amino acids transporter small subunit 2|L-type amino acid transporter 2|integral membrane protein E16H|solute carrier family 7 (amino acid transporter light chain, L system), member 8|solute carrier family 7 (amino acid transporter, L-type), member 8|solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 33 0.004517 10.1 1 1 +23429 RYBP RING1 and YY1 binding protein 3 protein-coding AAP1|APAP-1|DEDAF|YEAF1 RING1 and YY1-binding protein|DED-associated factor|YY1 and E4TF1 associated factor 1|apoptin-associating protein 1|death effector domain-associated factor|ring1 interactor RYBP 22 0.003011 10.04 1 1 +23430 TPSD1 tryptase delta 1 16 protein-coding MCP7-LIKE|MCP7L1|MMCP-7L tryptase delta|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-3 30 0.004106 2.329 1 1 +23431 AP4E1 adaptor related protein complex 4 epsilon 1 subunit 15 protein-coding CPSQ4|SPG51|STUT1 AP-4 complex subunit epsilon-1|AP-4 adaptor complex subunit epsilon|adaptor-related protein complex 4 subunit epsilon-1|adaptor-related protein complex AP-4 epsilon|epsilon-adaptin 63 0.008623 8.19 1 1 +23432 GPR161 G protein-coupled receptor 161 1 protein-coding RE2 G-protein coupled receptor 161|G-protein coupled receptor RE2 56 0.007665 6.835 1 1 +23433 RHOQ ras homolog family member Q 2 protein-coding ARHQ|HEL-S-42|RASL7A|TC10|TC10A rho-related GTP-binding protein RhoQ|RAS-like, family 7, member A|epididymis secretory protein Li 42|ras homolog gene family, member Q|ras-like protein TC10|ras-like protein family member 7A 17 0.002327 10.4 1 1 +23434 LINC01565 long intergenic non-protein coding RNA 1565 3 ncRNA C3orf27|GR6 putative GR6 protein 13 0.001779 0.1594 1 1 +23435 TARDBP TAR DNA binding protein 1 protein-coding ALS10|TDP-43 TAR DNA-binding protein 43|TAR DNA-binding protein-43 22 0.003011 11.67 1 1 +23436 CELA3B chymotrypsin like elastase family member 3B 1 protein-coding CBPP|ELA3B chymotrypsin-like elastase family member 3B|cholesterol-binding pancreatic protease|elastase 3B, pancreatic|elastase IIIB|elastase-3B|fecal elastase 1|pancreatic elastase 1|pancreatic endopeptidase E|protease E|proteinase E 30 0.004106 0.3523 1 1 +23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial 5 protein-coding HARSL|HARSR|HO3|PRLTS2 probable histidine--tRNA ligase, mitochondrial|HARS-related|hisRS|histidine tRNA ligase 2, mitochondrial (putative)|histidine translase|histidine-tRNA ligase homolog|histidyl-tRNA synthetase 2|histidyl-tRNA synthetase 2, mitochondrial (putative)|probable histidyl-tRNA synthetase, mitochondrial 18 0.002464 9.465 1 1 +23439 ATP1B4 ATPase Na+/K+ transporting family member beta 4 X protein-coding - protein ATP1B4|ATPase, Na+/K+ transporting, beta 4 polypeptide|BetaM|Na,K-ATPase beta m-subunit|X,K-ATPase beta-m subunit|x/potassium-transporting ATPase subunit beta-m 44 0.006022 0.4012 1 1 +23440 OTP orthopedia homeobox 5 protein-coding - homeobox protein orthopedia|orthopedia homolog 24 0.003285 0.7549 1 1 +23443 SLC35A3 solute carrier family 35 member A3 1 protein-coding AMRS UDP-N-acetylglucosamine transporter|golgi UDP-GlcNAc transporter|solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member 3|solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member A3 18 0.002464 8.106 1 1 +23446 SLC44A1 solute carrier family 44 member 1 9 protein-coding CD92|CDW92|CHTL1|CTL1 choline transporter-like protein 1|CDW92 antigen|solute carrier family 44 (choline transporter), member 1 52 0.007117 11.26 1 1 +23450 SF3B3 splicing factor 3b subunit 3 16 protein-coding RSE1|SAP130|SF3b130|STAF130 splicing factor 3B subunit 3|SAP 130|pre-mRNA splicing factor SF3b, 130 kDa subunit|spliceosome-associated protein 130 77 0.01054 11.82 1 1 +23451 SF3B1 splicing factor 3b subunit 1 2 protein-coding Hsh155|MDS|PRP10|PRPF10|SAP155|SF3b155 splicing factor 3B subunit 1|pre-mRNA processing 10|pre-mRNA splicing factor SF3b, 155 kDa subunit|spliceosome-associated protein 155|splicing factor 3b, subunit 1, 155kDa 147 0.02012 12.42 1 1 +23452 ANGPTL2 angiopoietin like 2 9 protein-coding ARP2|HARP angiopoietin-related protein 2|angiopoietin-like protein 2 28 0.003832 9.818 1 1 +23456 ABCB10 ATP binding cassette subfamily B member 10 1 protein-coding EST20237|M-ABC2|MTABC2 ATP-binding cassette sub-family B member 10, mitochondrial|ABC transporter 10 protein|ATP-binding cassette transporter 10|ATP-binding cassette, sub-family B (MDR/TAP), member 10|mitochondrial ATP-binding cassette 2 46 0.006296 8.683 1 1 +23457 ABCB9 ATP binding cassette subfamily B member 9 12 protein-coding EST122234|TAPL ATP-binding cassette sub-family B member 9|ABC transporter 9 protein|ATP-binding cassette, sub-family B (MDR/TAP), member 9|TAP-like protein 34 0.004654 7.272 1 1 +23460 ABCA6 ATP binding cassette subfamily A member 6 17 protein-coding EST155051 ATP-binding cassette sub-family A member 6|ABC transporter ABCA6|ATP-binding cassette A6|ATP-binding cassette, sub-family A (ABC1), member 6 124 0.01697 5.236 1 1 +23461 ABCA5 ATP binding cassette subfamily A member 5 17 protein-coding ABC13|EST90625 ATP-binding cassette sub-family A member 5|ATP-binding cassette A5|ATP-binding cassette, sub-family A (ABC1), member 5 117 0.01601 8.109 1 1 +23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 8 protein-coding BHLHb31|CHF2|HERP2|HESR1|HRT-1|OAF1|hHRT1 hairy/enhancer-of-split related with YRPW motif protein 1|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|hairy and enhancer of split-related protein 1|hairy-related transcription factor 1|hairy/enhancer-of-split related with YRPW motif 1 14 0.001916 7.829 1 1 +23463 ICMT isoprenylcysteine carboxyl methyltransferase 1 protein-coding HSTE14|MST098|MSTP098|PCCMT|PCMT|PPMT protein-S-isoprenylcysteine O-methyltransferase|prenylated protein carboxyl methyltransferase|prenylcysteine carboxyl methyltransferase 18 0.002464 11.1 1 1 +23464 GCAT glycine C-acetyltransferase 22 protein-coding KBL 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial|2-amino-3-ketobutyrate-CoA ligase|AKB ligase|aminoacetone synthase|glycine acetyltransferase 42 0.005749 8.325 1 1 +23466 CBX6 chromobox 6 22 protein-coding - chromobox protein homolog 6|chromobox homolog 6 30 0.004106 8.75 1 1 +23467 NPTXR neuronal pentraxin receptor 22 protein-coding NPR neuronal pentraxin receptor 32 0.00438 8.386 1 1 +23468 CBX5 chromobox 5 12 protein-coding HEL25|HP1|HP1A chromobox protein homolog 5|HP1 alpha homolog|HP1-ALPHA|HP1Hs alpha|antigen p25|chromobox homolog 5 (HP1 alpha homolog, Drosophila)|epididymis luminal protein 25|heterochromatin protein 1 homolog alpha|heterochromatin protein 1-alpha 16 0.00219 11.5 1 1 +23469 PHF3 PHD finger protein 3 6 protein-coding - PHD finger protein 3 148 0.02026 10.59 1 1 +23471 TRAM1 translocation associated membrane protein 1 8 protein-coding PNAS8|TRAM|TRAMP translocating chain-associated membrane protein 1|translocating chain-associating membrane protein|translocation-associating membrane protein 1 36 0.004927 12.18 1 1 +23473 CAPN7 calpain 7 3 protein-coding CALPAIN7|PALBH calpain-7|calpain like protease|homolog of Aspergillus Nidulans PALB|palB homolog 41 0.005612 9.314 1 1 +23474 ETHE1 ETHE1, persulfide dioxygenase 19 protein-coding HSCO|YF13H12 persulfide dioxygenase ETHE1, mitochondrial|ethylmalonic encephalopathy 1|hepatoma subtracted clone one protein|protein ETHE1, mitochondrial|sulfur dioxygenase ETHE1 12 0.001642 9.224 1 1 +23475 QPRT quinolinate phosphoribosyltransferase 16 protein-coding HEL-S-90n|QPRTase nicotinate-nucleotide pyrophosphorylase [carboxylating]|epididymis secretory sperm binding protein Li 90n|nicotinate-nucleotide pyrophosphorylase (carboxylating) 13 0.001779 8.129 1 1 +23476 BRD4 bromodomain containing 4 19 protein-coding CAP|HUNK1|HUNKI|MCAP bromodomain-containing protein 4|chromosome-associated protein 96 0.01314 10.82 1 1 +23478 SEC11A SEC11 homolog A, signal peptidase complex subunit 15 protein-coding 1810012E07Rik|SEC11L1|SPC18|SPCS4A|sid2895 signal peptidase complex catalytic subunit SEC11A|SEC11 homolog A|SEC11-like protein 1|SPase 18 kDa subunit|endopeptidase SP18|microsomal signal peptidase 18 kDa subunit|signal peptidase complex (18kD)|signal peptidase complex 18 8 0.001095 11.12 1 1 +23479 ISCU iron-sulfur cluster assembly enzyme 12 protein-coding 2310020H20Rik|HML|ISU2|NIFU|NIFUN|hnifU iron-sulfur cluster assembly enzyme ISCU, mitochondrial|IscU iron-sulfur cluster scaffold homolog|nifU-like N-terminal domain-containing protein 13 0.001779 10.68 1 1 +23480 SEC61G Sec61 translocon gamma subunit 7 protein-coding SSS1 protein transport protein Sec61 subunit gamma|Sec61 gamma subunit|protein transport protein SEC61 gamma subunit 7 0.0009581 10.22 1 1 +23481 PES1 pescadillo ribosomal biogenesis factor 1 22 protein-coding PES pescadillo homolog|pescadillo homolog 1, containing BRCT domain 41 0.005612 10.76 1 1 +23483 TGDS TDP-glucose 4,6-dehydratase 13 protein-coding CATMANS|SDR2E1|TDPGD dTDP-D-glucose 4,6-dehydratase|growth-inhibiting protein 21|short chain dehydrogenase/reductase family 2E, member 1 26 0.003559 7.827 1 1 +23484 LEPROTL1 leptin receptor overlapping transcript-like 1 8 protein-coding HSPC112|Vps55|my047 leptin receptor overlapping transcript-like 1|endospanin-2 11 0.001506 9.868 1 1 +23491 CES3 carboxylesterase 3 16 protein-coding ES31 carboxylesterase 3|carboxylesterase 3 (brain)|esterase 31|liver carboxylesterase 31 homolog 42 0.005749 5.501 1 1 +23492 CBX7 chromobox 7 22 protein-coding - chromobox protein homolog 7|chromobox homolog 7 16 0.00219 9.572 1 1 +23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 6 protein-coding CHF1|GRIDLOCK|GRL|HERP1|HESR2|HRT2|bHLHb32 hairy/enhancer-of-split related with YRPW motif protein 2|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 2|protein gridlock homolog 31 0.004243 6.576 1 1 +23495 TNFRSF13B TNF receptor superfamily member 13B 17 protein-coding CD267|CVID|CVID2|IGAD2|RYZN|TACI|TNFRSF14B tumor necrosis factor receptor superfamily member 13B|transmembrane activator and CAML interactor|tumor necrosis factor receptor 13B 28 0.003832 2.052 1 1 +23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase 2 protein-coding 3-HAO|HAO 3-hydroxyanthranilate 3,4-dioxygenase|3-HAO|3-hydroxyanthranilate oxygenase|3-hydroxyanthranilic acid dioxygenase|HAD 17 0.002327 6.575 1 1 +23499 MACF1 microtubule-actin crosslinking factor 1 1 protein-coding ABP620|ACF7|MACF|OFC4 microtubule-actin cross-linking factor 1|620 kDa actin binding protein|actin cross-linking family protein 7|macrophin 1 isoform|trabeculin-alpha 420 0.05749 12.18 1 1 +23500 DAAM2 dishevelled associated activator of morphogenesis 2 6 protein-coding dJ90A20A.1 disheveled-associated activator of morphogenesis 2 96 0.01314 8.371 1 1 +23503 ZFYVE26 zinc finger FYVE-type containing 26 14 protein-coding FYVE-CENT|SPG15 zinc finger FYVE domain-containing protein 26|FYVE domain-containing centrosomal protein|spastizin|zinc finger, FYVE domain containing 26 150 0.02053 9.581 1 1 +23504 RIMBP2 RIMS binding protein 2 12 protein-coding PPP1R133|RBP2|RIM-BP2 RIMS-binding protein 2|RIM binding protein 2|protein phosphatase 1, regulatory subunit 133 145 0.01985 4.065 1 1 +23505 TMEM131 transmembrane protein 131 2 protein-coding CC28|PRO1048|RW1|YR-23 transmembrane protein 131|2610524E03Rik 114 0.0156 10.56 1 1 +23506 GLTSCR1L GLTSCR1 like 6 protein-coding KIAA0240 GLTSCR1-like protein|glioma tumor suppressor candidate region gene 1 protein-like 71 0.009718 9.143 1 1 +23507 LRRC8B leucine rich repeat containing 8 family member B 1 protein-coding TA-LRRP|TALRRP volume-regulated anion channel subunit LRRC8B|T-cell activation leucine repeat-rich protein|leucine-rich repeat-containing protein 8B 42 0.005749 8.966 1 1 +23508 TTC9 tetratricopeptide repeat domain 9 14 protein-coding TTC9A tetratricopeptide repeat protein 9A|TPR repeat protein 9A 13 0.001779 8.428 1 1 +23509 POFUT1 protein O-fucosyltransferase 1 20 protein-coding DDD2|FUT12|O-FUT|O-Fuc-T|O-FucT-1|OFUCT1 GDP-fucose protein O-fucosyltransferase 1|o-fucosyltransferase protein|peptide-O-fucosyltransferase 1 21 0.002874 10.89 1 1 +23510 KCTD2 potassium channel tetramerization domain containing 2 17 protein-coding - BTB/POZ domain-containing protein KCTD2|potassium channel tetramerisation domain containing 2|potassium channel tetramerization domain-containing protein 2 21 0.002874 10.05 1 1 +23511 NUP188 nucleoporin 188 9 protein-coding KIAA0169|hNup188 nucleoporin NUP188 homolog|nucleoporin 188kDa 106 0.01451 10.56 1 1 +23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit 17 protein-coding CHET9|JJAZ1 polycomb protein SUZ12|chET 9 protein|chromatin precipitated E2F target 9 protein|joined to JAZF1 protein|suppressor of zeste 12 protein homolog 42 0.005749 9.812 1 1 +23513 SCRIB scribbled planar cell polarity protein 8 protein-coding CRIB1|SCRB1|SCRIB1|Vartul protein scribble homolog|scribbled homolog 122 0.0167 11.03 1 1 +23514 SPIDR scaffolding protein involved in DNA repair 8 protein-coding KIAA0146 DNA repair-scaffolding protein 61 0.008349 9.707 1 1 +23515 MORC3 MORC family CW-type zinc finger 3 21 protein-coding NXP2|ZCW5|ZCWCC3 MORC family CW-type zinc finger protein 3|nuclear matrix protein 2|nuclear matrix protein NXP2|zinc finger CW-type coiled-coil domain protein 3|zinc finger, CW type with coiled-coil domain 3 60 0.008212 9.385 1 1 +23516 SLC39A14 solute carrier family 39 member 14 8 protein-coding HMNDYT2|LZT-Hs4|NET34|ZIP14|cig19 zinc transporter ZIP14|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 (zinc transporter), member 14|zrt- and Irt-like protein 14 29 0.003969 10.73 1 1 +23517 SKIV2L2 Ski2 like RNA helicase 2 5 protein-coding Dob1|KIAA0052|Mtr4|fSAP118 superkiller viralicidic activity 2-like 2|ATP-dependent RNA helicase DOB1|ATP-dependent RNA helicase SKIV2L2|ATP-dependent helicase SKIV2L2|TRAMP-like complex helicase|functional spliceosome-associated protein 118 77 0.01054 10.23 1 1 +23518 R3HDM1 R3H domain containing 1 2 protein-coding R3HDM R3H domain-containing protein 1|R3H domain (binds single-stranded nucleic acids) containing 80 0.01095 9.405 1 1 +23519 ANP32D acidic nuclear phosphoprotein 32 family member D 12 protein-coding PP32R2 acidic leucine-rich nuclear phosphoprotein 32 family member D|acidic (leucine-rich) nuclear phosphoprotein 32 family, member D|acidic nuclear phosphoprotein 32D|phosphoprotein 32-related protein 2|pp32 related 2|tumorigenic protein pp32r2 11 0.001506 0.2285 1 1 +23520 ANP32C acidic nuclear phosphoprotein 32 family member C 4 protein-coding PP32R1 acidic leucine-rich nuclear phosphoprotein 32 family member C|acidic (leucine-rich) nuclear phosphoprotein 32 family, member C|phosphoprotein 32-related protein 1|pp32 related 1|tumorigenic protein pp32r1 8 0.001095 1.618 1 1 +23521 RPL13A ribosomal protein L13a 19 protein-coding L13A|TSTA1 60S ribosomal protein L13a|23 kDa highly basic protein|tissue specific transplantation antigen 1 19 0.002601 13.74 1 1 +23522 KAT6B lysine acetyltransferase 6B 10 protein-coding GTPTS|MORF|MOZ2|MYST4|ZC2HC6B|qkf|querkopf histone acetyltransferase KAT6B|K(lysine) acetyltransferase 6B|MOZ, YBF2/SAS3, SAS2 and TIP60 protein 4|MOZ-related factor|MYST histone acetyltransferase (monocytic leukemia) 4|MYST-4|histone acetyltransferase MORF|histone acetyltransferase MOZ2|histone acetyltransferase MYST4|monocytic leukemia zinc finger protein-related factor 108 0.01478 9.528 1 1 +23523 CABIN1 calcineurin binding protein 1 22 protein-coding CAIN|KB-318B8.7|PPP3IN calcineurin-binding protein cabin-1|calcineurin binding protein cabin 1|calcineurin inhibitor 107 0.01465 10.72 1 1 +23524 SRRM2 serine/arginine repetitive matrix 2 16 protein-coding 300-KD|CWF21|Cwc21|HSPC075|SRL300|SRm300 serine/arginine repetitive matrix protein 2|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-rich splicing factor-related nuclear matrix protein of 300 kDa|splicing coactivator subunit SRm300|tax-responsive enhancer element-binding protein 803|taxREB803|testicular secretory protein Li 53 215 0.02943 13.35 1 1 +23526 ARHGAP45 Rho GTPase activating protein 45 19 protein-coding HA-1|HLA-HA1|HMHA1 minor histocompatibility protein HA-1|histocompatibility (minor) HA-1|minor histocompatibility antigen HA-1 73 0.009992 9.389 1 1 +23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 3 protein-coding CENTB2|CNT-B2 arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 2|Arf GAP with coiled coil, ANK repeat and PH domains 2|centaurin-beta-2 47 0.006433 10.1 1 1 +23528 ZNF281 zinc finger protein 281 1 protein-coding ZBP-99|ZNP-99 zinc finger protein 281|GC-box-binding zinc finger protein 1|ZNP-99 transcription factor|transcription factor ZBP-99|zinc finger DNA-binding protein 99 53 0.007254 8.059 1 1 +23529 CLCF1 cardiotrophin-like cytokine factor 1 11 protein-coding BSF-3|BSF3|CISS2|CLC|NNT-1|NNT1|NR6 cardiotrophin-like cytokine factor 1|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 13 0.001779 6.83 1 1 +23530 NNT nicotinamide nucleotide transhydrogenase 5 protein-coding GCCD4 NAD(P) transhydrogenase, mitochondrial|pyridine nucleotide transhydrogenase 75 0.01027 10.35 1 1 +23531 MMD monocyte to macrophage differentiation associated 17 protein-coding MMA|MMD1|PAQR11 monocyte to macrophage differentiation factor|macrophage maturation-associated|monocyte to macrophage differentiation protein|progestin and adipoQ receptor family member 11|progestin and adipoQ receptor family member XI 9 0.001232 8.487 1 1 +23532 PRAME preferentially expressed antigen in melanoma 22 protein-coding CT130|MAPE|OIP-4|OIP4 melanoma antigen preferentially expressed in tumors|Opa-interacting protein OIP4|cancer/testis antigen 130|opa-interacting protein 4|preferentially expressed antigen of melanoma 50 0.006844 4.447 1 1 +23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 17 protein-coding F730038I15Rik|FOAP-2|P101-PI3K|p101 phosphoinositide 3-kinase regulatory subunit 5|PI3-kinase p101 subunit|phosphatidylinositol 4,5-bisphosphate 3-kinase regulatory subunit|protein FOAP-2|ptdIns-3-kinase p101 60 0.008212 7.022 1 1 +23534 TNPO3 transportin 3 7 protein-coding IPO12|LGMD1F|MTR10A|TRN-SR|TRN-SR2|TRNSR transportin-3|imp12|importin 12|limb girdle muscular dystrophy 1F (autosomal dominant)|transportin-SR 61 0.008349 9.961 1 1 +23536 ADAT1 adenosine deaminase, tRNA specific 1 16 protein-coding HADAT1 tRNA-specific adenosine deaminase 1|adenosine deaminase acting on tRNA|tRNA-specific adenosine-37 deaminase 35 0.004791 7.615 1 1 +23538 OR52A1 olfactory receptor family 52 subfamily A member 1 11 protein-coding HPFH1OR olfactory receptor 52A1|odorant receptor HOR3'beta4|olfactory receptor OR11-319 33 0.004517 0.0226 1 1 +23539 SLC16A8 solute carrier family 16 member 8 22 protein-coding MCT3|REMP monocarboxylate transporter 3|MCT 3|solute carrier 16 (monocarboxylic acid transporters), member 8|solute carrier family 16 (monocarboxylate transporter), member 8|solute carrier family 16, member 8 (monocarboxylic acid transporter 3) 24 0.003285 3.119 1 1 +23541 SEC14L2 SEC14 like lipid binding 2 22 protein-coding C22orf6|SPF|TAP|TAP1 SEC14-like protein 2|alpha-tocopherol-associated protein|squalene transfer protein|supernatant protein factor|tocopherol-associated protein|tocopherol-associated protein 1 19 0.002601 8.833 1 1 +23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 22 protein-coding IB-2|IB2|JIP2|PRKM8IPL C-Jun-amino-terminal kinase-interacting protein 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 24 0.003285 7.106 1 1 +23543 RBFOX2 RNA binding protein, fox-1 homolog 2 22 protein-coding FOX2|Fox-2|HNRBP2|HRNBP2|RBM9|RTA|dJ106I20.3|fxh RNA binding protein fox-1 homolog 2|RNA binding protein, fox-1 homolog (C. elegans) 2|RNA-binding motif protein 9|fox-1 homolog B|fox-1 homologue|hexaribonucleotide-binding protein 2|repressor of tamoxifen transcriptional activity 24 0.003285 10.78 1 1 +23544 SEZ6L seizure related 6 homolog like 22 protein-coding - seizure 6-like protein|seizure related 6 homolog (mouse)-like|seizure related gene 6-like 125 0.01711 2.873 1 1 +23545 ATP6V0A2 ATPase H+ transporting V0 subunit a2 12 protein-coding A2|ARCL|ARCL2A|ATP6A2|ATP6N1D|J6B7|RTF|STV1|TJ6|TJ6M|TJ6S|VPH1|WSS V-type proton ATPase 116 kDa subunit a isoform 2|A2V-ATPase|ATPase, H+ transporting, lysosomal V0 subunit a2|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 48 0.00657 8.907 1 1 +23546 SYNGR4 synaptogyrin 4 19 protein-coding - synaptogyrin-4|testis tissue sperm-binding protein Li 72n 21 0.002874 1.564 1 1 +23547 LILRA4 leukocyte immunoglobulin like receptor A4 19 protein-coding CD85g|ILT7 leukocyte immunoglobulin-like receptor subfamily A member 4|CD85 antigen-like family member G|immunoglobulin-like transcript 7|leucocyte Ig-like receptor A4|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 4|leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 4 63 0.008623 3.16 1 1 +23548 TTC33 tetratricopeptide repeat domain 33 5 protein-coding OSRF tetratricopeptide repeat protein 33|TPR repeat protein 33|osmosis responsive factor 24 0.003285 8.467 1 1 +23549 DNPEP aspartyl aminopeptidase 2 protein-coding ASPEP|DAP aspartyl aminopeptidase 29 0.003969 10.36 1 1 +23550 PSD4 pleckstrin and Sec7 domain containing 4 2 protein-coding EFA6B|TIC PH and SEC7 domain-containing protein 4|ADP-ribosylation factor guanine nucleotide-exchange factor 6|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 68 0.009307 9.773 1 1 +23551 RASD2 RASD family member 2 22 protein-coding MGC:4834|Rhes|TEM2 GTP-binding protein Rhes|Ras homolog enriched in striatum|tumor endothelial marker 2 26 0.003559 6.904 1 1 +23552 CDK20 cyclin dependent kinase 20 9 protein-coding CCRK|CDCH|P42|PNQALRE cyclin-dependent kinase 20|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 27 0.003696 7.244 1 1 +23553 HYAL4 hyaluronoglucosaminidase 4 7 protein-coding CSHY hyaluronidase-4|chondroitin sulfate endo-beta-N-acetylgalactosaminidase|chondroitin sulfate hydrolase|hyal-4 38 0.005201 1.031 1 1 +23554 TSPAN12 tetraspanin 12 7 protein-coding EVR5|NET-2|NET2|TM4SF12 tetraspanin-12|tetraspan NET-2|transmembrane 4 superfamily member 12|tspan-12 21 0.002874 8.176 1 1 +23555 TSPAN15 tetraspanin 15 10 protein-coding 2700063A19Rik|NET-7|NET7|TM4SF15 tetraspanin-15|tetraspan NET-7|transmembrane 4 superfamily member 15|transmembrane 4 superfamily member tetraspan NET-7|tspan-15 14 0.001916 9.636 1 1 +23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N 18 protein-coding MCAHS|MCAHS1|MCD4|MDC4|PIG-N GPI ethanolamine phosphate transferase 1|MCD4 homolog|phosphatidylinositol-glycan biosynthesis class N protein 48 0.00657 8.875 1 1 +23557 SNAPIN SNAP associated protein 1 protein-coding BLOC1S7|BLOS7|BORCS3|SNAPAP SNARE-associated protein Snapin|BLOC-1 subunit 7|SNAP-25-binding protein|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 9 0.001232 9.367 1 1 +23558 WBP2 WW domain binding protein 2 17 protein-coding GRAMD6|WBP-2 WW domain-binding protein 2 16 0.00219 11.72 1 1 +23559 WBP1 WW domain binding protein 1 2 protein-coding WBP-1 WW domain-binding protein 1 36 0.004927 10.47 1 1 +23560 GTPBP4 GTP binding protein 4 10 protein-coding CRFG|NGB|NOG1 nucleolar GTP-binding protein 1|G protein-binding protein CRFG|GTP-binding protein NGB|chronic renal failure gene protein 40 0.005475 10.06 1 1 +23562 CLDN14 claudin 14 21 protein-coding DFNB29 claudin-14 14 0.001916 2.837 1 1 +23563 CHST5 carbohydrate sulfotransferase 5 16 protein-coding I-GlcNAc-6-ST|I-GlcNAc6ST|glcNAc6ST-3|gn6st-3|hIGn6ST carbohydrate sulfotransferase 5|GST4-alpha|N-acetylglucosamine 6-O-sulfotransferase 3|carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 5|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 4-alpha|intestinal GlcNAc-6-sulfotransferase 51 0.006981 3.093 1 1 +23564 DDAH2 dimethylarginine dimethylaminohydrolase 2 6 protein-coding DDAH|DDAHII|G6a|HEL-S-277|NG30 N(G),N(G)-dimethylarginine dimethylaminohydrolase 2|S-phase protein|dimethylargininase-2|dimethylarginine dimethylaminohydrolase II|epididymis secretory protein Li 277|testis tissue sperm-binding protein Li 54e 10 0.001369 10.38 1 1 +23566 LPAR3 lysophosphatidic acid receptor 3 1 protein-coding EDG7|Edg-7|GPCR|HOFNH30|LP-A3|LPA3|RP4-678I3 lysophosphatidic acid receptor 3|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 37 0.005064 3.446 1 1 +23567 ZNF346 zinc finger protein 346 5 protein-coding JAZ|Zfp346 zinc finger protein 346|double-stranded RNA-binding zinc finger protein JAZ|just another zinc finger protein 16 0.00219 8.13 1 1 +23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein 16 protein-coding BART|BART1|RP66 ADP-ribosylation factor-like protein 2-binding protein|ADP-ribosylation factor like 2 binding protein|ARF-like 2-binding protein|ARL2-binding protein|Arf-like 2 binding protein BART1|binder of ARF2 protein 1|binder of Arl Two|binder of Arl2|retinitis pigmentosa 66 (autosomal recessive) 12 0.001642 10.42 1 1 +23569 PADI4 peptidyl arginine deiminase 4 1 protein-coding PAD|PAD4|PADI5|PDI4|PDI5 protein-arginine deiminase type-4|HL-60 PAD|PADI-H protein|peptidyl arginine deiminase, type IV|peptidyl arginine deiminase, type V|protein-arginine deiminase type IV 53 0.007254 1.352 1 1 +23574 PRG1 p53-responsive gene 1 19 ncRNA - - 0.323 0 1 +23576 DDAH1 dimethylarginine dimethylaminohydrolase 1 1 protein-coding DDAH|DDAH-1|DDAHI|HEL-S-16 N(G),N(G)-dimethylarginine dimethylaminohydrolase 1|NG, NG-dimethylarginine dimethylaminohydrolase|dimethylargininase-1|epididymis secretory protein Li 16 15 0.002053 10.17 1 1 +23580 CDC42EP4 CDC42 effector protein 4 17 protein-coding BORG4|CEP4|KAIA1777 cdc42 effector protein 4|CDC42 effector protein (Rho GTPase binding) 4|binder of Rho GTPases 4 26 0.003559 10.93 1 1 +23581 CASP14 caspase 14 19 protein-coding - caspase-14|CASP-14|apoptosis-related cysteine protease|caspase 14, apoptosis-related cysteine peptidase|caspase 14, apoptosis-related cysteine protease 21 0.002874 1.276 1 1 +23582 CCNDBP1 cyclin D1 binding protein 1 15 protein-coding DIP1|GCIP|HHM cyclin-D1-binding protein 1|D-type cyclin-interacting protein 1|cyclin D-type binding-protein 1|grap2 and cyclin-D-interacting protein|human homolog of Maid 18 0.002464 9.679 1 1 +23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 12 protein-coding FDG|HMUDG|UNG3 single-strand selective monofunctional uracil DNA glycosylase 19 0.002601 9.213 1 1 +23584 VSIG2 V-set and immunoglobulin domain containing 2 11 protein-coding 2210413P10Rik|CTH|CTXL V-set and immunoglobulin domain-containing protein 2|CT-like protein|cortical thymocyte receptor (X. laevis CTX) like|cortical thymocyte-like protein 31 0.004243 5.154 1 1 +23585 TMEM50A transmembrane protein 50A 1 protein-coding IFNRC|SMP1 transmembrane protein 50A|cervical cancer oncogene 9|small membrane protein 1 13 0.001779 11.26 1 1 +23586 DDX58 DExD/H-box helicase 58 9 protein-coding RIG-I|RIGI|RLR-1|SGMRT2 probable ATP-dependent RNA helicase DDX58|DEAD (Asp-Glu-Ala-Asp) box polypeptide 58|DEAD box protein 58|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide|RNA helicase RIG-I|retinoic acid-inducible gene 1 protein|retinoic acid-inducible gene I protein 54 0.007391 9.107 1 1 +23587 ELP5 elongator acetyltransferase complex subunit 5 17 protein-coding C17orf81|DERP6|HSPC002|MST071|MSTP071 elongator complex protein 5|S-phase 2 protein|dermal papilla derived protein 6 26 0.003559 9.34 1 1 +23588 KLHDC2 kelch domain containing 2 14 protein-coding HCLP-1|HCLP1|LCP kelch domain-containing protein 2|hepatocellular carcinoma-associated antigen 33|host cell factor homolog LCP|host cell factor-like protein 1 28 0.003832 9.864 1 1 +23589 CARHSP1 calcium regulated heat stable protein 1 16 protein-coding CRHSP-24|CRHSP24|CSDC1 calcium-regulated heat-stable protein 1|calcium regulated heat stable protein 1, 24kDa|calcium-regulated heat-stable protein (24kD)|calcium-regulated heat-stable protein of 24 kDa 7 0.0009581 10.57 1 1 +23590 PDSS1 prenyl (decaprenyl) diphosphate synthase, subunit 1 10 protein-coding COQ1|COQ10D2|DPS|SPS|TPRT|TPT|TPT 1|hDPS1 decaprenyl-diphosphate synthase subunit 1|all-trans-decaprenyl-diphosphate synthase subunit 1|coenzyme Q1 homolog|decaprenyl pyrophosphate synthase subunit 1|polyprenyl pyrophosphate synthetase|subunit 1 of decaprenyl diphosphate synthase|trans-prenyltransferase (TPT)|trans-prenyltransferase 1 30 0.004106 6.752 1 1 +23591 FAM215A family with sequence similarity 215 member A (non-protein coding) 17 ncRNA APR-2|C17orf88|LINC00530 apoptosis related protein|long intergenic non-protein coding RNA 530 0.5221 0 1 +23592 LEMD3 LEM domain containing 3 12 protein-coding MAN1 inner nuclear membrane protein Man1|LEM domain-containing protein 3|integral inner nuclear membrane protein 40 0.005475 9.314 1 1 +23593 HEBP2 heme binding protein 2 6 protein-coding C6ORF34B|C6orf34|PP23|SOUL heme-binding protein 2|placental protein 23 13 0.001779 10.04 1 1 +23594 ORC6 origin recognition complex subunit 6 16 protein-coding ORC6L origin recognition complex subunit 6 11 0.001506 6.901 1 1 +23595 ORC3 origin recognition complex subunit 3 6 protein-coding LAT|LATHEO|ORC3L origin recognition complex subunit 3|homolog of latheo, Drosophila|origin recognition complex subunit Latheo|origin recognition complex, subunit 3 honolog 33 0.004517 9.04 1 1 +23596 OPN3 opsin 3 1 protein-coding ECPN|PPP1R116 opsin-3|encephalopsin|opsin 3 (encephalopsin, panopsin)|protein phosphatase 1, regulatory subunit 116 22 0.003011 8.519 1 1 +23597 ACOT9 acyl-CoA thioesterase 9 X protein-coding ACATE2|CGI-16|MT-ACT48|MTACT48 acyl-coenzyme A thioesterase 9, mitochondrial|acyl-CoA thioester hydrolase 9|acyl-Coenzyme A thioesterase 2, mitochondrial|mitochondrial Acyl-CoA Thioesterase 18 0.002464 8.97 1 1 +23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 22 protein-coding MAZR|PATZ|RIAZ|ZBTB19|ZNF278|ZSG|dJ400N23 POZ-, AT hook-, and zinc finger-containing protein 1|BTB-POZ domain zinc finger transcription factor|MAZ-related factor|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 48 0.00657 10.2 1 1 +23600 AMACR alpha-methylacyl-CoA racemase 5 protein-coding AMACRD|CBAS4|RACE|RM alpha-methylacyl-CoA racemase|2-methylacyl-CoA racemase 42 0.005749 9.143 1 1 +23601 CLEC5A C-type lectin domain family 5 member A 7 protein-coding CLECSF5|MDL-1|MDL1 C-type lectin domain family 5 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 5|C-type lectin superfamily member 5|myeloid DAP12-associating lectin-1 20 0.002737 5.431 1 1 +23603 CORO1C coronin 1C 12 protein-coding HCRNN4 coronin-1C|coronin, actin binding protein, 1C|coronin-3 39 0.005338 11.31 1 1 +23604 DAPK2 death associated protein kinase 2 15 protein-coding DRP-1|DRP1 death-associated protein kinase 2|DAP kinase 2|DAP-kinase-related protein 1 beta isoform 26 0.003559 7.456 1 1 +23607 CD2AP CD2 associated protein 6 protein-coding CMS CD2-associated protein|Cas ligand with multiple Src homology 3 (SH3) domains|adapter protein CMS|cas ligand with multiple SH3 domains 38 0.005201 10.31 1 1 +23608 MKRN1 makorin ring finger protein 1 7 protein-coding RNF61 E3 ubiquitin-protein ligase makorin-1|RING finger protein 61 26 0.003559 11.37 1 1 +23609 MKRN2 makorin ring finger protein 2 3 protein-coding HSPC070|RNF62 probable E3 ubiquitin-protein ligase makorin-2|RING finger protein 62|makorin RING zinc-finger protein 2 22 0.003011 9.337 1 1 +23612 PHLDA3 pleckstrin homology like domain family A member 3 1 protein-coding TIH1 pleckstrin homology-like domain family A member 3|TDAG51/Ipl homolog 1|pleckstrin homology-like domain, family A, member 2 18 0.002464 9.969 1 1 +23613 ZMYND8 zinc finger MYND-type containing 8 20 protein-coding PRKCBP1|PRO2893|RACK7 protein kinase C-binding protein 1|CTCL tumor antigen se14-3|cutaneous T-cell lymphoma-associated antigen se14-3|predicted protein of HQ2893|zinc finger MYND domain-containing protein 8 83 0.01136 10.03 1 1 +23614 PPY2P pancreatic polypeptide 2, pseudogene 17 pseudo PPY2 - 2 0.0002737 0.3552 1 1 +23615 PYY2 peptide YY 2 (pseudogene) 17 pseudo - peptide YY, 2 (seminalplasmin)|seminalplasmin 2 0.0002737 2.587 1 1 +23616 SH3BP1 SH3 domain binding protein 1 22 protein-coding ARHGAP43 SH3 domain-binding protein 1|3BP-1 45 0.006159 8.878 1 1 +23617 TSSK2 testis specific serine kinase 2 22 protein-coding DGS-G|SPOGA2|STK22B|TSK2 testis-specific serine/threonine-protein kinase 2|TSK-2|TSSK-2|diGeorge syndrome protein G|serine/threonine kinase 22B (spermiogenesis associated)|serine/threonine-protein kinase 22B|spermiogenesis associated 2|testicular secretory protein Li 61|testis specific serine threonine kinase 2|testis-specific kinase 2 25 0.003422 0.001194 1 1 +23619 ZIM2 zinc finger imprinted 2 19 protein-coding ZNF656 zinc finger imprinted 2|zinc finger protein 656 46 0.006296 1.04 1 1 +23620 NTSR2 neurotensin receptor 2 2 protein-coding NTR2 neurotensin receptor type 2|NT-R-2|levocabastine-sensitive neurotensin receptor|neurotensin receptor, type 2 52 0.007117 1.188 1 1 +23621 BACE1 beta-secretase 1 11 protein-coding ASP2|BACE|HSPC104 beta-secretase 1|APP beta-secretase|asp 2|aspartyl protease 2|beta-secretase 1 precursor variant 1|beta-site APP cleaving enzyme 1|beta-site APP-cleaving enzyme|beta-site amyloid beta A4 precursor protein-cleaving enzyme|memapsin-2|membrane-associated aspartic protease 2|transmembrane aspartic proteinase Asp2 31 0.004243 10.03 1 1 +23623 RUSC1 RUN and SH3 domain containing 1 1 protein-coding NESCA RUN and SH3 domain-containing protein 1|new molecule containing SH3 at the carboxy-terminus 56 0.007665 9.986 1 1 +23624 CBLC Cbl proto-oncogene C 19 protein-coding CBL-3|CBL-SL|RNF57 E3 ubiquitin-protein ligase CBL-C|Cas-Br-M (murine) ecotropic retroviral transforming sequence c|Cas-Br-M (murine) ectropic retroviral transforming sequence c|Cbl proto-oncogene C, E3 ubiquitin protein ligase|Cbl proto-oncogene, E3 ubiquitin protein ligase C|RING finger protein 57|SH3-binding protein CBL-3|SH3-binding protein CBL-C|signal transduction protein CBL-C 33 0.004517 6.331 1 1 +23625 FAM89B family with sequence similarity 89 member B 11 protein-coding LRAP25|MTVR|MTVR1 protein FAM89B|leucine repeat adaptor protein 25|mammary tumor virus receptor homolog 1 5 0.0006844 10.04 1 1 +23626 SPO11 SPO11, initiator of meiotic double stranded breaks 20 protein-coding CT35|SPATA43|TOPVIA meiotic recombination protein SPO11|SPO11 meiotic protein covalently bound to DSB homolog|cancer/testis antigen 35|spermatogenesis associated 43 26 0.003559 0.03195 1 1 +23627 PRND prion protein 2 (dublet) 20 protein-coding DOPPEL|DPL|PrPLP|dJ1068H6.4 prion-like protein doppel|prion gene complex, downstream 17 0.002327 3.337 1 1 +23629 BRD7P3 bromodomain containing 7 pseudogene 3 6 pseudo BP75 bromodomain containing protein 75 kDa pseudogene 0.6685 0 1 +23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 X protein-coding KCNE1L potassium voltage-gated channel subfamily E regulatory beta subunit 5|AMME syndrome candidate gene 2 protein|AMMECR2 protein|KCNE1-like|cardiac voltage-gated potassium channel accessory subunit 5|potassium channel subunit beta MiRP4|potassium channel, voltage gated subfamily E regulatory beta subunit 5|potassium voltage-gated channel subfamily E member 1-like protein|potassium voltage-gated channel, Isk-related family, member 1-like 10 0.001369 2.472 1 1 +23632 CA14 carbonic anhydrase 14 1 protein-coding CAXiV carbonic anhydrase 14|CA-XIV|carbonate dehydratase XIV|carbonic anhydrase XIV|carbonic dehydratase 30 0.004106 4.065 1 1 +23633 KPNA6 karyopherin subunit alpha 6 1 protein-coding IPOA7|KPNA7 importin subunit alpha-7|importin alpha 7 subunit|importin-alpha-S2|karyopherin alpha 6 (importin alpha 7) 26 0.003559 10.84 1 1 +23635 SSBP2 single stranded DNA binding protein 2 5 protein-coding HSPC116|SOSS-B2 single-stranded DNA-binding protein 2|sequence-specific single-stranded-DNA-binding protein 2 28 0.003832 8.051 1 1 +23636 NUP62 nucleoporin 62 19 protein-coding IBSN|SNDI|p62 nuclear pore glycoprotein p62|62 kDa nucleoporin|nucleoporin 62kD|nucleoporin 62kDa|nucleoporin Nup62 47 0.006433 10.72 1 1 +23637 RABGAP1 RAB GTPase activating protein 1 9 protein-coding GAPCENA|TBC1D11 rab GTPase-activating protein 1|GAP and centrosome-associated protein|Rab6 GTPase activating protein, GAPCenA|TBC1 domain family, member 11|rab6 GTPase activating protein (GAP and centrosome-associated)|rab6 GTPase-activating protein GAPCenA 63 0.008623 10.37 1 1 +23639 LRRC6 leucine rich repeat containing 6 8 protein-coding CILD19|LRTP|TSLRP protein tilB homolog|protein TILB homolog|testis-specific leucine-rich repeat protein 46 0.006296 5.323 1 1 +23640 HSPBP1 HSPA (Hsp70) binding protein 1 19 protein-coding FES1 hsp70-binding protein 1|HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1|heat shock protein-binding protein 1|hsp70 interacting protein 23 0.003148 9.891 1 1 +23641 LDOC1 leucine zipper down-regulated in cancer 1 X protein-coding BCUR1|Mar7|Mart7 protein LDOC1|breast cancer, up-regulated 1|leucine zipper downregulated in cancer|leucine zipper protein down-regulated in cancer cells 26 0.003559 8.869 1 1 +23642 SNHG1 small nucleolar RNA host gene 1 11 ncRNA LINC00057|NCRNA00057|U22HG|UHG U22 snoRNA host|long intergenic non-protein coding RNA 57|small nucleolar RNA host gene 1 (non-protein coding) 15 0.002053 9.485 1 1 +23643 LY96 lymphocyte antigen 96 8 protein-coding ESOP-1|MD-2|MD2|ly-96 lymphocyte antigen 96|myeloid differentiation protein-2|protein MD-2 20 0.002737 6.331 1 1 +23644 EDC4 enhancer of mRNA decapping 4 16 protein-coding GE1|Ge-1|HEDL5|HEDLS|RCD-8|RCD8 enhancer of mRNA-decapping protein 4|autoantigen Ge-1|autoantigen RCD-8|human enhancer of decapping large subunit 79 0.01081 10.47 1 1 +23645 PPP1R15A protein phosphatase 1 regulatory subunit 15A 19 protein-coding GADD34 protein phosphatase 1 regulatory subunit 15A|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 (inhibitor) subunit 15A 37 0.005064 10.49 1 1 +23646 PLD3 phospholipase D family member 3 19 protein-coding AD19|HU-K4|HUK4 phospholipase D3|choline phosphatase 3|hindIII K4L homolog|phosphatidylcholine-hydrolyzing phospholipase D3 32 0.00438 12.39 1 1 +23647 ARFIP2 ADP ribosylation factor interacting protein 2 11 protein-coding POR1 arfaptin-2|partner of RAC1 (arfaptin 2) 22 0.003011 10.18 1 1 +23648 SSBP3 single stranded DNA binding protein 3 1 protein-coding CSDP|SSDP|SSDP1 single-stranded DNA-binding protein 3|sequence-specific single-stranded-DNA-binding protein 30 0.004106 9.384 1 1 +23649 POLA2 DNA polymerase alpha 2, accessory subunit 11 protein-coding - DNA polymerase alpha subunit B|DNA polymerase alpha 70 kDa subunit|polymerase (DNA directed), alpha 2 (70kD subunit)|polymerase (DNA directed), alpha 2, accessory subunit|polymerase (DNA) alpha 2, accessory subunit|polymerase (DNA-directed), alpha (70kD) 46 0.006296 8.64 1 1 +23650 TRIM29 tripartite motif containing 29 11 protein-coding ATDC tripartite motif-containing protein 29|ataxia-telangiectasia group D-associated protein|tripartite motif protein TRIM29 54 0.007391 7.894 1 1 +23654 PLXNB2 plexin B2 22 protein-coding MM1|Nbla00445|PLEXB2|dJ402G11.3 plexin-B2 158 0.02163 12.87 1 1 +23657 SLC7A11 solute carrier family 7 member 11 4 protein-coding CCBR1|xCT cystine/glutamate transporter|amino acid transport system xc-|calcium channel blocker resistance protein CCBR1|solute carrier family 7 (anionic amino acid transporter light chain, xc- system), member 11|solute carrier family 7, (cationic amino acid transporter, y+ system) member 11 28 0.003832 7.534 1 1 +23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated 7 protein-coding YER146W U6 snRNA-associated Sm-like protein LSm5|LSM5 U6 small nuclear RNA and mRNA degradation associated|LSM5 homolog, U6 small nuclear RNA associated 4 0.0005475 9.344 1 1 +23659 PLA2G15 phospholipase A2 group XV 16 protein-coding ACS|GXVPLA2|LLPL|LPLA2|LYPLA3 group XV phospholipase A2|1-O-acylceramide synthase|LCAT-like lysophospholipase|lysophospholipase 3 (lysosomal phospholipase A2)|lysosomal phospholipase A2 35 0.004791 9.284 1 1 +23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 7 protein-coding ZFP-95|ZFP95|ZNF914|ZSCAN37 zinc finger protein with KRAB and SCAN domains 5|zinc finger protein 95 homolog|zinc finger protein homologous to Zfp95 in mouse 60 0.008212 8.563 1 1 +23666 UBBP4 ubiquitin B pseudogene 4 17 pseudo - - 119 0.01629 1 0 +23670 TMEM2 transmembrane protein 2 9 protein-coding - transmembrane protein 2 91 0.01246 10.21 1 1 +23671 TMEFF2 transmembrane protein with EGF like and two follistatin like domains 2 2 protein-coding CT120.2|HPP1|TENB2|TPEF|TR|TR-2 tomoregulin-2|cancer/testis antigen family 120, member 2|hyperplastic polyposis protein 1|tomoregulin|transmembrane protein TENB2|transmembrane protein with EGF-like and two follistatin-like domains 47 0.006433 2.22 1 1 +23673 STX12 syntaxin 12 1 protein-coding STX13|STX14 syntaxin-12 14 0.001916 10.28 1 1 +23676 SMPX small muscle protein, X-linked X protein-coding DFN6|DFNX4 small muscular protein|deafness, X-linked 6, sensorineural|stretch-responsive skeletal muscle protein 8 0.001095 1.41 1 1 +23677 SH3BP4 SH3 domain binding protein 4 2 protein-coding BOG25|TTP SH3 domain-binding protein 4|EH-binding protein 10|transferrin receptor-trafficking protein 85 0.01163 10.56 1 1 +23678 SGK3 serum/glucocorticoid regulated kinase family member 3 8 protein-coding CISK|SGK2|SGKL serine/threonine-protein kinase Sgk3|cytokine-independent survival kinase 38 0.005201 8.636 1 1 +23682 RAB38 RAB38, member RAS oncogene family 11 protein-coding NY-MEL-1|rrGTPbp ras-related protein Rab-38|Rab-related GTP-binding protein|melanoma antigen NY-MEL-1 18 0.002464 6.613 1 1 +23683 PRKD3 protein kinase D3 2 protein-coding EPK2|PKC-NU|PKD3|PRKCN|nPKC-NU serine/threonine-protein kinase D3|protein kinase C nu type|protein kinase EPK2 64 0.00876 9.598 1 1 +23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 2 protein-coding MIRP3 potassium voltage-gated channel subfamily E member 4|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 channel, voltage gated subfamily E regulatory beta subunit 4|potassium voltage-gated channel, Isk-related family, member 4 15 0.002053 7.247 1 1 +23705 CADM1 cell adhesion molecule 1 11 protein-coding BL2|IGSF4|IGSF4A|NECL2|Necl-2|RA175|ST17|SYNCAM|TSLC1|sTSLC-1|sgIGSF|synCAM1 cell adhesion molecule 1|TSLC-1|TSLC1/Nectin-like 2/IGSF4|immunoglobulin superfamily member 4|immunoglobulin superfamily, member 4D variant 1|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 68 0.009307 9.418 1 1 +23708 GSPT2 G1 to S phase transition 2 X protein-coding ERF3B|GST2 eukaryotic peptide chain release factor GTP-binding subunit ERF3B|eukaryotic peptide chain release factor subunit 3b 42 0.005749 7.396 1 1 +23710 GABARAPL1 GABA type A receptor associated protein like 1 12 protein-coding APG8-LIKE|APG8L|ATG8|ATG8B|ATG8L|GEC1 gamma-aminobutyric acid receptor-associated protein-like 1|GABA(A) receptor-associated protein-like 1|GABARAPL1-a|GEC-1|early estrogen-regulated protein|glandular epithelial cell protein 1 11 0.001506 10.33 1 1 +23729 SHPK sedoheptulokinase 17 protein-coding CARKL|SHK sedoheptulokinase|carbohydrate kinase-like protein 19 0.002601 8.616 1 1 +23731 TMEM245 transmembrane protein 245 9 protein-coding C9orf5|CG-2|CG2 transmembrane protein 245|protein CG-2|transmembrane protein C9orf5 38 0.005201 10.9 1 1 +23732 FRRS1L ferric chelate reductase 1 like 9 protein-coding C9orf4|CG-6|CG6|EIEE37 DOMON domain-containing protein FRRS1L|brain protein CG-6 20 0.002737 1.324 1 1 +23741 EID1 EP300 interacting inhibitor of differentiation 1 15 protein-coding C15orf3|CRI1|EID-1|IRO45620|PNAS-22|PTD014|RBP21 EP300-interacting inhibitor of differentiation 1|21 kDa pRb-associated protein|CREBBP/EP300 inhibitor 1|CREBBP/EP300 inhibitory protein 1|E1A-like inhibitor of differentiation 1|NB4 apoptosis related protein|Rb- and p300-binding protein EID-1|retinoblastoma protein-associated protein 13 0.001779 11.61 1 1 +23742 NPAP1 nuclear pore associated protein 1 15 protein-coding C15orf2 nuclear pore-associated protein 1|protein C15orf2 242 0.03312 0.7694 1 1 +23743 BHMT2 betaine--homocysteine S-methyltransferase 2 5 protein-coding - S-methylmethionine--homocysteine S-methyltransferase BHMT2|SMM-hcy methyltransferase|betaine-homocysteine methyltransferase 2 30 0.004106 5.538 1 1 +23746 AIPL1 aryl hydrocarbon receptor interacting protein like 1 17 protein-coding AIPL2|LCA4 aryl-hydrocarbon-interacting protein-like 1 28 0.003832 0.5343 1 1 +23753 SDF2L1 stromal cell derived factor 2 like 1 22 protein-coding - stromal cell-derived factor 2-like protein 1|OTTHUMT00000075032|PWP1-interacting protein 8|SDF2-like 1|SDF2-like protein 1|dihydropyrimidinase-like 2 8 0.001095 8.883 1 1 +23759 PPIL2 peptidylprolyl isomerase like 2 22 protein-coding CYC4|CYP60|Cyp-60|UBOX7|hCyP-60 peptidyl-prolyl cis-trans isomerase-like 2|PPIase|U-box domain containing 7|cyclophilin, 60kDa|cyclophilin-60|cyclophilin-like protein CyP-60|peptidylprolyl cis-trans isomerase|peptidylprolyl isomerase (cyclophilin)-like 2|rotamase PPIL2 28 0.003832 10.21 1 1 +23760 PITPNB phosphatidylinositol transfer protein beta 22 protein-coding PI-TP-beta|PtdInsTP|VIB1B phosphatidylinositol transfer protein beta isoform|PtdIns transfer protein beta|phosphotidylinositol transfer protein, beta 15 0.002053 10.46 1 1 +23761 PISD phosphatidylserine decarboxylase 22 protein-coding DJ858B16|PSD|PSDC|PSSC|dJ858B16.2 phosphatidylserine decarboxylase proenzyme, mitochondrial 21 0.002874 9.465 1 1 +23762 OSBP2 oxysterol binding protein 2 22 protein-coding HLM|ORP-4|ORP4|OSBPL1|OSBPL4 oxysterol-binding protein 2|OSBP-related protein 4|oxysterol binding protein-like 1|oxysterol-binding protein-related protein 4 58 0.007939 7.427 1 1 +23764 MAFF MAF bZIP transcription factor F 22 protein-coding U-MAF|hMafF transcription factor MafF|v-maf avian musculoaponeurotic fibrosarcoma oncogene family protein F|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog F 2 0.0002737 9.015 1 1 +23765 IL17RA interleukin 17 receptor A 22 protein-coding CANDF5|CD217|CDw217|IL-17RA|IL17R|hIL-17R interleukin-17 receptor A|IL-17 receptor A 47 0.006433 8.224 1 1 +23766 GABARAPL3 GABA type A receptor associated protein like 3 pseudogene 15 pseudo ATG8D GABA(A) receptors associated protein like 3, pseudogene 9 0.001232 1.381 1 1 +23767 FLRT3 fibronectin leucine rich transmembrane protein 3 20 protein-coding HH21 leucine-rich repeat transmembrane protein FLRT3|fibronectin-like domain-containing leucine-rich transmembrane protein 3 51 0.006981 7.395 1 1 +23768 FLRT2 fibronectin leucine rich transmembrane protein 2 14 protein-coding - leucine-rich repeat transmembrane protein FLRT2|fibronectin-like domain-containing leucine-rich transmembrane protein 2 117 0.01601 7.43 1 1 +23769 FLRT1 fibronectin leucine rich transmembrane protein 1 11 protein-coding SPG68 leucine-rich repeat transmembrane protein FLRT1|fibronectin-like domain-containing leucine-rich transmembrane protein 1 29 0.003969 4.235 1 1 +23770 FKBP8 FK506 binding protein 8 19 protein-coding FKBP38|FKBPr38 peptidyl-prolyl cis-trans isomerase FKBP8|38 kDa FK506-binding protein|38 kDa FKBP|FK506 binding protein 8, 38kDa|FK506-binding protein 8 (38kD)|FKBP-38|FKBP-8|PPIase FKBP8|hFKBP38|rotamase 44 0.006022 12.44 1 1 +23774 BRD1 bromodomain containing 1 22 protein-coding BRL|BRPF1|BRPF2 bromodomain-containing protein 1|BR140-like protein|bromodomain and PHD finger-containing protein 2 79 0.01081 9.737 1 1 +23779 ARHGAP8 Rho GTPase activating protein 8 22 protein-coding BPGAP1|PP610 rho GTPase-activating protein 8|BCH domain-containing Cdc42GAP-like protein|BNIP-2 and Cdc42GAP homology domain-containing, proline-rich and Cdc42GAP-like protein subtype-1|rho-type GTPase-activating protein 8 6 0.0008212 6.976 1 1 +23780 APOL2 apolipoprotein L2 22 protein-coding APOL-II|APOL3 apolipoprotein L2|apolipoprotein L, 2|apolipoprotein L-II 27 0.003696 10.06 1 1 +23782 AP1B1P1 adaptor related protein complex 1 beta 1 subunit pseudogene 1 22 pseudo ADTB1L1|dJ127L4.2 adaptin, beta 1-like 1 2 0.0002737 1 0 +23783 ANKRD62P1-PARP4P3 ANKRD62P1-PARP4P3 readthrough, transcribed pseudogene 22 pseudo VWFP1-ANKRD62P1-PARP4P3 ANKRD62P1-PARP4P3 readthrough (non-protein coding) 4 0.0005475 1 0 +23784 POTEH POTE ankyrin domain family member H 22 protein-coding A26C3|ACTBL1|CT104.7|POTE22 POTE ankyrin domain family member H|ANKRD26-like family C member 3|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 81 0.01109 0.426 1 1 +23786 BCL2L13 BCL2 like 13 22 protein-coding BCL-RAMBO|Bcl2-L-13|MIL1 bcl-2-like protein 13|BCL2-like 13 (apoptosis facilitator) 36 0.004927 10.3 1 1 +23787 MTCH1 mitochondrial carrier 1 6 protein-coding CGI-64|PIG60|PSAP|SLC25A49 mitochondrial carrier homolog 1|cell proliferation-inducing protein 60|presenilin-associated protein|solute carrier family 25, member 49 17 0.002327 12.1 1 1 +23788 MTCH2 mitochondrial carrier 2 11 protein-coding HSPC032|MIMP|SLC25A50 mitochondrial carrier homolog 2|2310034D24Rik|met-induced mitochondrial protein|solute carrier family 25, member 50 24 0.003285 10.78 1 1 +24137 KIF4A kinesin family member 4A X protein-coding KIF4|KIF4G1|MRX100 chromosome-associated kinesin KIF4A|chromokinesin-A 87 0.01191 7.908 1 1 +24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 10 protein-coding ISG58|P58|RI58 interferon-induced protein with tetratricopeptide repeats 5|IFIT-5|interferon-induced 58 kDa protein|retinoic acid- and interferon-inducible 58 kDa protein|retinoic acid- and interferon-inducible protein (58kD) 29 0.003969 9.023 1 1 +24139 EML2 echinoderm microtubule associated protein like 2 19 protein-coding ELP70|EMAP-2|EMAP2 echinoderm microtubule-associated protein-like 2|echinoderm MT-associated protein (EMAP)-like protein 70|microtubule-associated protein like echinoderm EMAP 62 0.008486 9.594 1 1 +24140 FTSJ1 FtsJ RNA methyltransferase homolog 1 (E. coli) X protein-coding CDLIV|JM23|MRX44|MRX9|SPB1|TRMT7 putative tRNA (cytidine(32)/guanosine(34)-2'-O)-methyltransferase|2'-O-ribose RNA methyltransferase TRM7 homolog|FtsJ-like protein 1|cell division protein|putative ribosomal RNA methyltransferase 1|rRNA (uridine-2'-O-)-methyltransferase|tRNA methyltransferase 7 homolog 15 0.002053 9.641 1 1 +24141 LAMP5 lysosomal associated membrane protein family member 5 20 protein-coding BAD-LAMP|BADLAMP|C20orf103|LAMP-5|UNC-46 lysosome-associated membrane glycoprotein 5|LAMP family protein C20orf103|brain and dendritic cell-associated LAMP|brain-associated LAMP-like protein|lysosome-associated membrane protein 5 37 0.005064 6.039 1 1 +24142 NAT6 N-acetyltransferase 6 3 protein-coding FUS-2|FUS2 N-acetyltransferase 6|N-acetyltransferase 6 (GCN5-related)|protein fusion-2 10 0.001369 7.487 1 1 +24144 TFIP11 tuftelin interacting protein 11 22 protein-coding NTR1|Spp382|TIP39|bK445C9.6|hNtr1 tuftelin-interacting protein 11|STIP-1|septin and tuftelin-interacting protein 1 42 0.005749 9.806 1 1 +24145 PANX1 pannexin 1 11 protein-coding MRS1|PX1|UNQ2529 pannexin-1|innexin 29 0.003969 8.745 1 1 +24146 CLDN15 claudin 15 7 protein-coding - claudin-15 10 0.001369 7.359 1 1 +24147 FJX1 four jointed box 1 11 protein-coding - four-jointed box protein 1|four-jointed protein homolog|putative secreted ligand homologous to fjx1 16 0.00219 7.558 1 1 +24148 PRPF6 pre-mRNA processing factor 6 20 protein-coding ANT-1|ANT1|C20orf14|Prp6|RP60|SNRNP102|TOM|U5-102K|hPrp6 pre-mRNA-processing factor 6|PRP6 homolog|PRP6 pre-mRNA processing factor 6 homolog|U5 snRNP-associated 102 kDa protein|U5-102 kDa protein|androgen receptor N-terminal domain transactivating protein-1|p102 U5 small nuclear ribonucleoprotein particle-binding protein|putative mitochondrial outer membrane protein import receptor 63 0.008623 11.66 1 1 +24149 ZNF318 zinc finger protein 318 6 protein-coding HRIHFB2436|TZF|ZFP318 zinc finger protein 318|endocrine regulator|endocrine regulatory protein|testicular zinc finger 137 0.01875 9.501 1 1 +25758 KIAA1549L KIAA1549 like 11 protein-coding C11orf41|C11orf69|G2 UPF0606 protein KIAA1549L|UPF0606 protein C11orf41|Uncharacterized protein C11orf69 139 0.01903 6.101 1 1 +25759 SHC2 SHC adaptor protein 2 19 protein-coding SCK|SHCB|SLI SHC-transforming protein 2|SH2 domain protein C2|SHC (Src homology 2 domain containing) transforming protein 2|SHC-transforming protein B|neuronal Shc adaptor homolog|protein Sck|src homology 2 domain-containing-transforming protein C2 35 0.004791 8.506 1 1 +25763 HYPM huntingtin interacting protein M X protein-coding CXorf27|HIP17 huntingtin-interacting protein M|huntingtin yeast partner M 15 0.002053 0.1368 1 1 +25764 HYPK huntingtin interacting protein K 15 protein-coding C15orf63|HSPC136 huntingtin-interacting protein K|huntingtin yeast partner K 10 0.001369 9.864 1 1 +25766 PRPF40B pre-mRNA processing factor 40 homolog B 12 protein-coding HYPC pre-mRNA-processing factor 40 homolog B|Huntingtin interacting protein C|PRP40 pre-mRNA processing factor 40 homolog B|huntingtin yeast partner C 71 0.009718 8.615 1 1 +25769 SLC24A2 solute carrier family 24 member 2 9 protein-coding NCKX2 sodium/potassium/calcium exchanger 2|Na(+)/K(+)/Ca(2+)-exchange protein 2|retinal cone Na-Ca+K exchanger|solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 74 0.01013 1.954 1 1 +25770 C22orf31 chromosome 22 open reading frame 31 22 protein-coding HS747E2A|bK747E2.1 uncharacterized protein C22orf31 15 0.002053 1.241 1 1 +25771 TBC1D22A TBC1 domain family member 22A 22 protein-coding C22orf4|HSC79E021 TBC1 domain family member 22A|putative GTPase activator 59 0.008076 8.815 1 1 +25774 GSTTP1 glutathione S-transferase theta pseudogene 1 22 pseudo GSTT4|HS322B1A GST class-theta-4|Glutathione S-transferase theta-4|glutathione S-transferase theta 1 pseudogene 0.04266 0 1 +25775 C22orf24 chromosome 22 open reading frame 24 22 protein-coding HSN44A4A uncharacterized protein C22orf24 6 0.0008212 1.172 1 1 +25776 CBY1 chibby family member 1, beta catenin antagonist 22 protein-coding C22orf2|CBY|HS508I15A|PGEA1|PIGEA-14|PIGEA14|arb1 protein chibby homolog 1|ARPP-binding protein|PKD2 interactor, Golgi and endoplasmic reticulum-associated 1|chibby CTNNB1-mediated transcription inhibitor|chibby homolog 1|coiled-coil protein PIGEA-14|cytosolic leucine-rich protein|polycystin-2 interactor, Golgi- and endoplasmic reticulum-associated protein, 14 kDa 6 0.0008212 9.071 1 1 +25777 SUN2 Sad1 and UNC84 domain containing 2 22 protein-coding UNC84B 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 31 0.004243 11.56 1 1 +25778 DSTYK dual serine/threonine and tyrosine protein kinase 1 protein-coding CAKUT1|DustyPK|HDCMD38P|RIP5|RIPK5 dual serine/threonine and tyrosine protein kinase|RIP-homologous kinase|dusty PK|dusty protein kinase|receptor-interacting serine/threonine-protein kinase 5|sgK496|sugen kinase 496 60 0.008212 9.33 1 1 +25780 RASGRP3 RAS guanyl releasing protein 3 2 protein-coding GRP3 ras guanyl-releasing protein 3|CalDAG-GEFIII|RAS guanyl releasing protein 3 (calcium and DAG-regulated)|calcium and DAG-regulated guanine nucleotide exchange factor III|calcium- and diacylglycerol-regulated guanine nucleotide exchange factor III|guanine nucleotide exchange factor for Rap1 55 0.007528 7.671 1 1 +25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 1 protein-coding RAB3-GAP150|RAB3GAP150|SPG69|WARBM2|p150 rab3 GTPase-activating protein non-catalytic subunit|RAB3 GTPase activating protein subunit 2 (non-catalytic)|RGAP-iso|rab3 GTPase-activating protein 150 kDa subunit|rab3-GAP p150|rab3-GAP regulatory subunit 98 0.01341 9.922 1 1 +25786 DGCR11 DiGeorge syndrome critical region gene 11 (non-protein coding) 22 ncRNA DGS-D DiGeorge syndrome gene D 5.132 0 1 +25787 DGCR9 DiGeorge syndrome critical region gene 9 (non-protein coding) 22 ncRNA DGS-A DiGeorge syndrome gene A 3.597 0 1 +25788 RAD54B RAD54 homolog B (S. cerevisiae) 8 protein-coding RDH54 DNA repair and recombination protein RAD54B 56 0.007665 6.677 1 1 +25789 TMEM59L transmembrane protein 59 like 19 protein-coding BSMAP|C19orf4 transmembrane protein 59-like|brain-specific membrane-anchored protein 24 0.003285 4.671 1 1 +25790 CFAP45 cilia and flagella associated protein 45 1 protein-coding CCDC19|NESG1 cilia- and flagella-associated protein 45|coiled-coil domain containing 19|coiled-coil domain-containing protein 19, mitochondrial|nasopharyngeal epithelium specific protein 1 (NESG1)|nasopharyngeal epithelium-specific protein 1|protein CFAP45, mitochondrial 63 0.008623 4.126 1 1 +25791 NGEF neuronal guanine nucleotide exchange factor 2 protein-coding ARHGEF27|EPHEXIN ephexin-1|eph-interacting exchange protein 47 0.006433 7.128 1 1 +25792 CIZ1 CDKN1A interacting zinc finger protein 1 9 protein-coding LSFR1|NP94|ZNF356 cip1-interacting zinc finger protein|nuclear protein NP94|zinc finger protein 356 58 0.007939 10.94 1 1 +25793 FBXO7 F-box protein 7 22 protein-coding FBX|FBX07|FBX7|PARK15|PKPS F-box only protein 7 39 0.005338 11.13 1 1 +25794 FSCN2 fascin actin-bundling protein 2, retinal 17 protein-coding RFSN|RP30 fascin-2|fascin homolog 2, actin-bundling protein, retinal 18 0.002464 3.235 1 1 +25796 PGLS 6-phosphogluconolactonase 19 protein-coding 6PGL|HEL-S-304 6-phosphogluconolactonase|epididymis secretory protein Li 304 8 0.001095 10.12 1 1 +25797 QPCT glutaminyl-peptide cyclotransferase 2 protein-coding GCT|QC|sQC glutaminyl-peptide cyclotransferase|EC|glutaminyl cyclase|glutaminyl-tRNA cyclotransferase|glutamyl cyclase 30 0.004106 7.868 1 1 +25798 BRI3 brain protein I3 7 protein-coding I3 brain protein I3|pRGR2 7 0.0009581 10.66 1 1 +25799 ZNF324 zinc finger protein 324 19 protein-coding ZF5128|ZNF324A zinc finger protein 324A|zinc finger protein ZF5128 44 0.006022 7.552 1 1 +25800 SLC39A6 solute carrier family 39 member 6 18 protein-coding LIV-1|ZIP6 zinc transporter ZIP6|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 (zinc transporter), member 6|zrt- and Irt-like protein 6 51 0.006981 11.18 1 1 +25801 GCA grancalcin 2 protein-coding GCL grancalcin|grancalcin, EF-hand calcium-binding protein|grancalcin, penta-EF-hand protein 13 0.001779 8.577 1 1 +25802 LMOD1 leiomodin 1 1 protein-coding 1D|64kD|D1|SM-LMOD|SMLMOD leiomodin-1|64 kDa autoantigen 1D|64 kDa autoantigen 1D3|64 kDa autoantigen D1|leimodin 1 (smooth muscle)|leiomodin 1 (smooth muscle)|leiomodin, muscle form|smooth muscle leiomodin|thyroid and eye muscle autoantigen D1 (64kD)|thyroid-associated ophthalmopathy autoantigen 47 0.006433 8.112 1 1 +25803 SPDEF SAM pointed domain containing ETS transcription factor 6 protein-coding PDEF|bA375E1.3 SAM pointed domain-containing Ets transcription factor|prostate epithelium-specific Ets transcription factor|prostate-derived Ets factor|prostate-specific Ets 29 0.003969 5.428 1 1 +25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated 19 protein-coding GRP|YER112W U6 snRNA-associated Sm-like protein LSm4|LSM4 U6 small nuclear RNA and mRNA degradation associated|LSM4 homolog, U6 small nuclear RNA associated|glycine-rich protein 10 0.001369 10.9 1 1 +25805 BAMBI BMP and activin membrane bound inhibitor 10 protein-coding NMA BMP and activin membrane-bound inhibitor homolog|non-metastatic gene A protein|putative transmembrane protein NMA 21 0.002874 8.072 1 1 +25806 VAX2 ventral anterior homeobox 2 2 protein-coding DRES93 ventral anterior homeobox 2 24 0.003285 3.833 1 1 +25807 RHBDD3 rhomboid domain containing 3 22 protein-coding C22orf3|HS984G1A|PTAG rhomboid domain-containing protein 3|hypothetical protein HS984G1A|pituitary tumor apoptosis 12 0.001642 8.611 1 1 +25809 TTLL1 tubulin tyrosine ligase like 1 22 protein-coding C22orf7|HS323M22B probable tubulin polyglutamylase TTLL1|PGs3|catalytic subunit of neural tubulin polyglutamylase|tubulin polyglutamylase complex subunit 3|tubulin tyrosine ligase-like family, member 1|tubulin--tyrosine ligase-like protein 1|tubulin-tyrosine ligase 29 0.003969 7.431 1 1 +25812 POM121L1P POM121 transmembrane nucleoporin like 1, pseudogene 22 pseudo POM121L1 POM121 membrane glycoprotein-like 1, pseudogene|POM121-like 2 6 0.0008212 1.134 1 1 +25813 SAMM50 SAMM50 sorting and assembly machinery component 22 protein-coding CGI-51|OMP85|SAM50|TOB55|TRG-3|YNL026W sorting and assembly machinery component 50 homolog|sorting and assembly machinery 50kDa|transformation-related gene 3 protein 29 0.003969 9.983 1 1 +25814 ATXN10 ataxin 10 22 protein-coding E46L|HUMEEP|SCA10 ataxin-10|brain protein E46 homolog|spinocerebellar ataxia type 10 protein 30 0.004106 11 1 1 +25816 TNFAIP8 TNF alpha induced protein 8 5 protein-coding GG2-1|MDC-3.13|NDED|SCC-S2|SCCS2 tumor necrosis factor alpha-induced protein 8|NF-kappa-B-inducible DED-containing protein|TNF-induced protein GG2-1|head and neck tumor and metastasis-related protein|tumor necrosis factor, alpha induced protein 8 12 0.001642 8.238 1 1 +25817 FAM19A5 family with sequence similarity 19 member A5, C-C motif chemokine like 22 protein-coding QLLK5208|TAFA-5|TAFA5|UNQ5208 protein FAM19A5|TAFA protein 5|chemokine-like protein TAFA-5|family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 26 0.003559 6.221 1 1 +25818 KLK5 kallikrein related peptidase 5 19 protein-coding KLK-L2|KLKL2|SCTE kallikrein-5|kallikrein-like protein 2|stratum corneum tryptic enzyme 28 0.003832 3.062 1 1 +25819 NOCT nocturnin 4 protein-coding CCR4L|CCRN4L|Ccr4c|NOC nocturnin|CCR4 carbon catabolite repression 4-like|CCR4 protein homolog|CCR4-like (carbon catabolite repression 4, S.cerevisiae)|carbon catabolite repression 4-like protein|circadian deadenylase NOC 14 0.001916 6.672 1 1 +25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 15 protein-coding ARI|HARI|HHARI|UBCH7BP E3 ubiquitin-protein ligase ARIH1|ARI-1|H7-AP2|MOP-6|ariadne homolog, ubiquitin-conjugating enzyme E2 binding protein, 1|ariadne, Drosophila, homolog of|monocyte protein 6|protein ariadne-1 homolog|ubcH7-binding protein|ubcM4-interacting protein|ubiquitin-conjugating enzyme E2-binding protein 1 27 0.003696 10.46 1 1 +25821 MTO1 mitochondrial tRNA translation optimization 1 6 protein-coding CGI-02|COXPD10 protein MTO1 homolog, mitochondrial|homolog of yeast Mto1|mitochondrial MTO1-3|mitochondrial translation optimization 1 homolog 39 0.005338 8.545 1 1 +25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 9 protein-coding Hsc40 dnaJ homolog subfamily B member 5|DnaJ (Hsp40) homolog, subfamily B, member 5|heat shock cognate 40|heat shock protein Hsp40-2|heat shock protein Hsp40-3|heat shock protein cognate 40 28 0.003832 8.246 1 1 +25823 TPSG1 tryptase gamma 1 16 protein-coding PRSS31|TMT|trpA tryptase gamma|serine protease 31|transmembrane tryptase|tryptase gamma I|tryptase gamma II 24 0.003285 1.694 1 1 +25824 PRDX5 peroxiredoxin 5 11 protein-coding ACR1|AOEB166|B166|HEL-S-55|PLP|PMP20|PRDX6|PRXV|SBBI10|prx-V peroxiredoxin-5, mitochondrial|Alu co-repressor 1|TPx type VI|antioxidant enzyme B166|epididymis secretory protein Li 55|liver tissue 2D-page spot 71B|peroxiredoxin V|peroxisomal antioxidant enzyme|thioredoxin peroxidase PMP20|thioredoxin reductase 12 0.001642 12.02 1 1 +25825 BACE2 beta-site APP-cleaving enzyme 2 21 protein-coding AEPLC|ALP56|ASP1|ASP21|BAE2|CDA13|CEAP1|DRAP beta-secretase 2|56 kDa aspartic-like protease|Down syndrome region aspartic protease|aspartyl protease 1|beta-site amyloid beta A4 precursor protein-cleaving enzyme 2|memapsin-1|membrane-associated aspartic protease 1|theta-secretase|transmembrane aspartic proteinase Asp1 37 0.005064 9.987 1 1 +25826 SNORD82 small nucleolar RNA, C/D box 82 2 snoRNA RNU82|U82|Z25 RNA, U82 small nucleolar 1 0.0001369 0 1 1 +25827 FBXL2 F-box and leucine rich repeat protein 2 3 protein-coding FBL2|FBL3 F-box/LRR-repeat protein 2|F-box protein FBL2/FBL3|F-box protein containing leucine-rich repeats 26 0.003559 6.75 1 1 +25828 TXN2 thioredoxin 2 22 protein-coding COXPD29|MT-TRX|MTRX|TRX2 thioredoxin, mitochondrial|mitochondrial thioredoxin 16 0.00219 10.69 1 1 +25829 TMEM184B transmembrane protein 184B 22 protein-coding C22orf5|FM08|HS5O6A|HSPC256 transmembrane protein 184B|putative MAPK-activating protein FM08 19 0.002601 10.81 1 1 +25830 SULT4A1 sulfotransferase family 4A member 1 22 protein-coding BR-STL-1|BRSTL1|DJ388M5.3|NST|SULTX3|hBR-STL-1 sulfotransferase 4A1|ST4A1|brain sulfotransferase-like protein|hBR-STL|nervous system cytosolic sulfotransferase|nervous system sulfotransferase|sulfotransferase-related protein 22 0.003011 3.653 1 1 +25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 14 protein-coding EULIR E3 ubiquitin-protein ligase HECTD1|E3 ligase for inhibin receptor|HECT domain containing E3 ubiquitin protein ligase 1|HECT domain-containing protein 1 131 0.01793 11.35 1 1 +25832 NBPF14 neuroblastoma breakpoint family member 14 1 protein-coding DJ328E19.C1.1|NBPF neuroblastoma breakpoint family member 14|AE5 35 0.004791 7.782 1 1 +25833 POU2F3 POU class 2 homeobox 3 11 protein-coding Epoc-1|OCT-11|OCT11|OTF-11|PLA-1|PLA1|Skn-1a POU domain, class 2, transcription factor 3|POU domain transcription factor OCT11a|octamer-binding protein 11|octamer-binding transcription factor 11|transcription factor PLA-1|transcription factor Skn-1 30 0.004106 4.741 1 1 +25834 MGAT4C MGAT4 family member C 12 protein-coding GNTIVH|HGNT-IV-H alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase C|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|glcNAc-T IVc|gnT-IVc|mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme C (putative) 83 0.01136 2 1 1 +25836 NIPBL NIPBL, cohesin loading factor 5 protein-coding CDLS|CDLS1|IDN3|IDN3-B|Scc2 nipped-B-like protein|Nipped-B homolog|SCC2 homolog|delangin|sister chromatid cohesion 2 homolog 201 0.02751 10.64 1 1 +25837 RAB26 RAB26, member RAS oncogene family 16 protein-coding V46133 ras-related protein Rab-26|Ras-related oncogene protein 19 0.002601 5.382 1 1 +25839 COG4 component of oligomeric golgi complex 4 16 protein-coding CDG2J|COD1 conserved oligomeric Golgi complex subunit 4|COG complex subunit 4|complexed with Dor1p|conserved oligomeric Golgi complex protein 4 51 0.006981 10.44 1 1 +25840 METTL7A methyltransferase like 7A 12 protein-coding AAM-B methyltransferase-like protein 7A|protein AAM-B 18 0.002464 10.71 1 1 +25841 ABTB2 ankyrin repeat and BTB domain containing 2 11 protein-coding ABTB2A|BTBD22 ankyrin repeat and BTB/POZ domain-containing protein 2|ankyrin repeat and BTB (POZ) domain containing 2 49 0.006707 7.794 1 1 +25842 ASF1A anti-silencing function 1A histone chaperone 6 protein-coding CGI-98|CIA|HSPC146 histone chaperone ASF1A|ASF1 anti-silencing function 1 homolog A|CCG1-interacting factor A|anti-silencing function protein 1 homolog A|hAsf1|hAsf1a|hCIA 14 0.001916 8.857 1 1 +25843 MOB4 MOB family member 4, phocein 2 protein-coding 2C4D|CGI-95|MOB1|MOB3|MOBKL3|PHOCN|PREI3 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 5 0.0006844 9.774 1 1 +25844 YIPF3 Yip1 domain family member 3 6 protein-coding C6orf109|FinGER3|KLIP1|dJ337H4.3 protein YIPF3|killer lineage protein 1|natural killer cell-specific antigen KLIP1 24 0.003285 11.49 1 1 +25845 PP7080 uncharacterized LOC25845 5 ncRNA - CTD-2228K2.5 8.637 0 1 +25847 ANAPC13 anaphase promoting complex subunit 13 3 protein-coding APC13|SWM1 anaphase-promoting complex subunit 13|cyclosome subunit 13 2 0.0002737 10.24 1 1 +25849 PARM1 prostate androgen-regulated mucin-like protein 1 4 protein-coding Cipar1|DKFZP564O0823|PARM-1|WSC4 prostate androgen-regulated mucin-like protein 1|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 28 0.003832 9.345 1 1 +25850 ZNF345 zinc finger protein 345 19 protein-coding HZF10 zinc finger protein 345|zinc finger protein HZF10 50 0.006844 5.999 1 1 +25851 TECPR1 tectonin beta-propeller repeat containing 1 7 protein-coding - tectonin beta-propeller repeat-containing protein 1 71 0.009718 8.39 1 1 +25852 ARMC8 armadillo repeat containing 8 3 protein-coding GID5|HSPC056|S863-2|VID28 armadillo repeat-containing protein 8|GID complex subunit 5, VID28 homolog 35 0.004791 9.373 1 1 +25853 DCAF12 DDB1 and CUL4 associated factor 12 9 protein-coding CT102|KIAA1892|TCC52|WDR40A 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 40 0.005475 10.37 1 1 +25854 FAM149A family with sequence similarity 149 member A 4 protein-coding MST119|MSTP119 protein FAM149A 34 0.004654 6.538 1 1 +25855 BRMS1 breast cancer metastasis suppressor 1 11 protein-coding - breast cancer metastasis-suppressor 1 32 0.00438 9.988 1 1 +25858 TEX40 testis expressed 40 11 protein-coding C11orf20 testis-expressed sequence 40 protein 7 0.0009581 1.848 1 1 +25859 PART1 prostate androgen-regulated transcript 1 (non-protein coding) 5 ncRNA NCRNA00206 prostate-specific and androgen-regulated cDNA 14D7 protein 0 0 3.746 1 1 +25861 WHRN whirlin 9 protein-coding CIP98|DFNB31|PDZD7B|USH2D|WI whirlin|CASK-interacting protein CIP98|autosomal recessive deafness type 31 protein 63 0.008623 7.863 1 1 +25862 USP49 ubiquitin specific peptidase 49 6 protein-coding - ubiquitin carboxyl-terminal hydrolase 49|deubiquitinating enzyme 49|ubiquitin specific protease 49|ubiquitin thioesterase 49|ubiquitin thiolesterase 49|ubiquitin-specific-processing protease 49 46 0.006296 4.115 1 1 +25864 ABHD14A abhydrolase domain containing 14A 3 protein-coding DORZ1 protein ABHD14A|abhydrolase domain-containing protein 14A|alpha/beta hydrolase domain-containing protein 14A 8 0.001095 8.384 1 1 +25865 PRKD2 protein kinase D2 19 protein-coding HSPC187|PKD2|nPKC-D2 serine/threonine-protein kinase D2 63 0.008623 10.24 1 1 +25870 SUMF2 sulfatase modifying factor 2 7 protein-coding pFGE sulfatase-modifying factor 2|C-alpha-formyglycine-generating enzyme 2|C-alpha-formylglycine-generating enzyme 2|paralog of the formylglycine-generating enzyme 26 0.003559 11.65 1 1 +25871 NEPRO nucleolus and neural progenitor protein 3 protein-coding C3orf17|NET17 protein nepro homolog|uncharacterized protein C3orf17 36 0.004927 9.773 1 1 +25873 RPL36 ribosomal protein L36 19 protein-coding L36 60S ribosomal protein L36 10 0.001369 12.96 1 1 +25874 MPC2 mitochondrial pyruvate carrier 2 1 protein-coding BRP44 mitochondrial pyruvate carrier 2|brain protein 44 5 0.0006844 10.12 1 1 +25875 LETMD1 LETM1 domain containing 1 12 protein-coding 1110019O13Rik|HCCR|HCCR-1|HCCR-2|HCCR1|HCCR2|HCRR-2 LETM1 domain-containing protein 1|cervical cancer 1 proto-oncogene protein p40|cervical cancer proto-oncogene 2 protein|regulator of TP53 28 0.003832 9.894 1 1 +25876 SPEF1 sperm flagellar 1 20 protein-coding C20orf28|CLAMP|SPEF1A sperm flagellar protein 1|calponin-homology and microtubule-associated protein 11 0.001506 3.495 1 1 +25878 MXRA5 matrix remodeling associated 5 X protein-coding - matrix-remodeling-associated protein 5|adhesion protein with leucine-rich repeats and Immunoglobulin domains related to perlecan|adlican|matrix-remodelling associated 5 278 0.03805 10.4 1 1 +25879 DCAF13 DDB1 and CUL4 associated factor 13 8 protein-coding GM83|HSPC064|WDSOF1 DDB1- and CUL4-associated factor 13|WD repeat and SOF domain-containing protein 1|WD repeats and SOF1 domain containing 52 0.007117 9.921 1 1 +25880 TMEM186 transmembrane protein 186 16 protein-coding C16orf51 transmembrane protein 186 12 0.001642 7.968 1 1 +25884 CHRDL2 chordin like 2 11 protein-coding BNF1|CHL2 chordin-like protein 2|breast tumor novel factor 1|chordin-related protein 2 36 0.004927 3.73 1 1 +25885 POLR1A RNA polymerase I subunit A 2 protein-coding A190|AFDCIN|RPA1|RPA194|RPO1-4|RPO14 DNA-directed RNA polymerase I subunit RPA1|DNA-directed RNA polymerase I largest subunit|DNA-directed RNA polymerase I subunit A|DNA-directed RNA polymerase I subunit A1|RNA polymerase I 194 kDa subunit|polymerase (RNA) I polypeptide A, 194kDa|polymerase (RNA) I subunit A 107 0.01465 9.484 1 1 +25886 POC1A POC1 centriolar protein A 3 protein-coding PIX2|SOFT|WDR51A POC1 centriolar protein homolog A|WD repeat domain 51A|WD repeat-containing protein 51A|proteome of centriole protein 1A 25 0.003422 7.414 1 1 +25888 ZNF473 zinc finger protein 473 19 protein-coding ZFP100|ZN473 zinc finger protein 473|zinc finger protein 100 homolog 72 0.009855 8.003 1 1 +25890 ABI3BP ABI family member 3 binding protein 3 protein-coding NESHBP|TARSH target of Nesh-SH3|ABI family, member 3 (NESH) binding protein|ABI gene family member 3-binding protein|ABI gene family, member 3 (NESH) binding protein|nesh-binding protein 108 0.01478 7.571 1 1 +25891 PAMR1 peptidase domain containing associated with muscle regeneration 1 11 protein-coding DKFZP586H2123|FP938|RAMP inactive serine protease PAMR1|peptidase domain-containing protein associated with muscle regeneration 1|regeneration associated muscle protease|regeneration-associated muscle protease homolog 82 0.01122 6.721 1 1 +25893 TRIM58 tripartite motif containing 58 1 protein-coding BIA2 E3 ubiquitin-protein ligase TRIM58|tripartite motif-containing protein 58 97 0.01328 4.572 1 1 +25894 PLEKHG4 pleckstrin homology and RhoGEF domain containing G4 16 protein-coding ARHGEF44|PRTPHN1|SCA4 puratrophin-1|PH domain-containing family G member 4|Purkinje cell atrophy associated protein 1|pleckstrin homology domain containing, family G (with RhoGef domain) member 4 62 0.008486 7.777 1 1 +25895 METTL21B methyltransferase like 21B 12 protein-coding FAM119B protein-lysine methyltransferase METTL21B|family with sequence similarity 119, member B|hepatocellular carcinoma-associated antigen 557a|hepatocellularcarcinoma-associated antigen HCA557a|methyltransferase-like protein 21B 21 0.002874 7.846 1 1 +25896 INTS7 integrator complex subunit 7 1 protein-coding C1orf73|INT7 integrator complex subunit 7 57 0.007802 9.032 1 1 +25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase 8 protein-coding RNF19 E3 ubiquitin-protein ligase RNF19A|double ring-finger protein|protein p38 interacting with transcription factor Sp1|ring finger protein 19|ring finger protein 19A, E3 ubiquitin protein ligase|ring-IBR-ring domain containing protein Dorfin 56 0.007665 10.4 1 1 +25898 RCHY1 ring finger and CHY zinc finger domain containing 1 4 protein-coding ARNIP|CHIMP|PIRH2|PRO1996|RNF199|ZCHY|ZNF363 RING finger and CHY zinc finger domain-containing protein 1|CH-rich interacting match with PLAG1|E3 ubiquitin-protein ligase Pirh2|RING finger protein 199|androgen-receptor N-terminal-interacting protein|p53-induced protein with a RING-H2 domain|ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase|zinc finger protein 363|zinc finger, CHY-type 18 0.002464 8.66 1 1 +25900 IFFO1 intermediate filament family orphan 1 12 protein-coding HOM-TES-103|IFFO intermediate filament family orphan 1|intermediate filament-like MGC:2625 39 0.005338 7.778 1 1 +25901 CCDC28A coiled-coil domain containing 28A 6 protein-coding C6orf80|CCRL1AP coiled-coil domain-containing protein 28A|chemokine C-C motif receptor-like 1 adjacent 32 0.00438 8.713 1 1 +25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like 6 protein-coding FTHFSDC1|MTC1THFS|dJ292B18.2 monofunctional C1-tetrahydrofolate synthase, mitochondrial|10-formyl-THF synthetase|formyltetrahydrofolate synthetase domain containing 1 62 0.008486 9.005 1 1 +25903 OLFML2B olfactomedin like 2B 1 protein-coding - olfactomedin-like protein 2B|photomedin-2 77 0.01054 8.949 1 1 +25904 CNOT10 CCR4-NOT transcription complex subunit 10 3 protein-coding - CCR4-NOT transcription complex subunit 10 41 0.005612 9.111 1 1 +25906 ANAPC15 anaphase promoting complex subunit 15 11 protein-coding APC15|C11orf51|HSPC020 anaphase-promoting complex subunit 15 11 0.001506 9.007 1 1 +25907 TMEM158 transmembrane protein 158 (gene/pseudogene) 3 protein-coding BBP|RIS1|p40BBP transmembrane protein 158|40 kDa BINP-binding protein|BINP receptor|Ras induced senescence 1|brain injury-derived neurotrophic peptide (BINP) binding protein|brain specific binding protein 2 0.0002737 6.621 1 1 +25909 AHCTF1 AT-hook containing transcription factor 1 1 protein-coding ELYS|MST108|MSTP108|TMBS62 protein ELYS|ELYS transcription factor-like protein TMBS62|embryonic large molecule derived from yolk sac|putative AT-hook-containing transcription factor 1 127 0.01738 10.25 1 1 +25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) 10 protein-coding - protein DPCD|RP11-529I10.4|deleted in a mouse model of primary ciliary dyskinesia 13 0.001779 8.157 1 1 +25912 C1orf43 chromosome 1 open reading frame 43 1 protein-coding HSPC012|NICE-3|NS5ATP4|S863-3 uncharacterized protein C1orf43|HCV NS5A-transactivated protein 4|hepatitis C virus NS5A-transactivated protein 4 24 0.003285 12.2 1 1 +25913 POT1 protection of telomeres 1 7 protein-coding CMM10|GLM9|HPOT1 protection of telomeres protein 1|POT1-like telomere end-binding protein|protection of telomeres 1 homolog 69 0.009444 9 1 1 +25914 RTTN rotatin 18 protein-coding MSSP rotatin 130 0.01779 7.663 1 1 +25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 3 protein-coding 2P1|C3orf60|E3-3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 3|NADH dehydrogenase (ubiquinone) complex I, assembly factor 3|nuclear protein E3-3 16 0.00219 10.07 1 1 +25917 THUMPD3 THUMP domain containing 3 3 protein-coding - THUMP domain-containing protein 3 29 0.003969 9.715 1 1 +25920 NELFB negative elongation factor complex member B 9 protein-coding COBRA1|NELF-B negative elongation factor B|cofactor of BRCA1|negative elongation factor protein B 29 0.003969 10.75 1 1 +25921 ZDHHC5 zinc finger DHHC-type containing 5 11 protein-coding DHHC5|ZNF375 palmitoyltransferase ZDHHC5|DHHC-5|membrane-associated DHHC5 zinc finger protein|probable palmitoyltransferase ZDHHC5|zinc finger DHHC domain-containing protein 5|zinc finger protein 375|zinc finger, DHHC domain containing 5 48 0.00657 11.36 1 1 +25923 ATL3 atlastin GTPase 3 11 protein-coding HSN1F atlastin-3 39 0.005338 8.632 1 1 +25924 MYRIP myosin VIIA and Rab interacting protein 3 protein-coding SLAC2-C|SLAC2C rab effector MyRIP|Slp homologue lacking C2 domains|exophilin-8|myosin-VIIa- and Rab-interacting protein|slp homolog lacking C2 domains c|synaptotagmin-like protein homologue lacking C2 domains-c|synaptotagmin-like protein lacking C2 domains C 70 0.009581 5.539 1 1 +25925 ZNF521 zinc finger protein 521 18 protein-coding EHZF|Evi3 zinc finger protein 521|LYST-interacting protein 3|early hematopoietic zinc finger protein 201 0.02751 7.25 1 1 +25926 NOL11 nucleolar protein 11 17 protein-coding - nucleolar protein 11 44 0.006022 9.92 1 1 +25927 CNRIP1 cannabinoid receptor interacting protein 1 2 protein-coding C2orf32|CRIP1 CB1 cannabinoid receptor-interacting protein 1|CRIP-1|cannabinoid receptor CB1-interacting protein 1 21 0.002874 7.346 1 1 +25928 SOSTDC1 sclerostin domain containing 1 7 protein-coding CDA019|DAND7|ECTODIN|USAG1 sclerostin domain-containing protein 1|cystine-knot containing secreted protein|ectodermal BMP inhibitor|uterine sensitization-associated protein-1 8 0.001095 4.081 1 1 +25929 GEMIN5 gem nuclear organelle associated protein 5 5 protein-coding GEMIN-5 gem-associated protein 5 68 0.009307 9.189 1 1 +25930 PTPN23 protein tyrosine phosphatase, non-receptor type 23 3 protein-coding HD-PTP|HDPTP|PTP-TD14 tyrosine-protein phosphatase non-receptor type 23|his domain-containing protein tyrosine phosphatase|protein tyrosine phosphatase TD14 83 0.01136 10.62 1 1 +25932 CLIC4 chloride intracellular channel 4 1 protein-coding CLIC4L|H1|MTCLIC|huH1|p64H1 chloride intracellular channel protein 4|chloride intracellular channel 4 like|intracellular chloride ion channel protein p64H1 17 0.002327 11.83 1 1 +25934 NIPSNAP3A nipsnap homolog 3A 9 protein-coding HSPC299|NIPSNAP4|TASSC protein NipSnap homolog 3A|protein NipSnap homolog 4|target for Salmonella secreted protein C 11 0.001506 8.88 1 1 +25936 NSL1 NSL1, MIS12 kinetochore complex component 1 protein-coding C1orf48|DC8|MIS14 kinetochore-associated protein NSL1 homolog|NSL1, MIND kinetochore complex component, homolog 20 0.002737 9.193 1 1 +25937 WWTR1 WW domain containing transcription regulator 1 3 protein-coding TAZ WW domain-containing transcription regulator protein 1|transcriptional co-activator with PDZ-binding motif|transcriptional coactivator with PDZ-binding motif 23 0.003148 8.506 1 1 +25938 HEATR5A HEAT repeat containing 5A 14 protein-coding C14orf125 HEAT repeat-containing protein 5A 97 0.01328 9.159 1 1 +25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 20 protein-coding CHBL2|DCIP|HDDC1|MOP-5|SBBI88 deoxynucleoside triphosphate triphosphohydrolase SAMHD1|SAM domain and HD domain 1|SAM domain and HD domain-containing protein 1|dNTPase|dendritic cell-derived IFNG-induced protein|monocyte protein 5 63 0.008623 9.392 1 1 +25940 FAM98A family with sequence similarity 98 member A 2 protein-coding - protein FAM98A 43 0.005886 9.901 1 1 +25941 TPGS2 tubulin polyglutamylase complex subunit 2 18 protein-coding C18orf10|HMFN0601|L17|PGs2 tubulin polyglutamylase complex subunit 2 17 0.002327 10.18 1 1 +25942 SIN3A SIN3 transcription regulator family member A 15 protein-coding WITKOS paired amphipathic helix protein Sin3a|SIN3 homolog A, transcription regulator|SIN3 transcription regulator homolog A|histone deacetylase complex subunit Sin3a|transcriptional co-repressor Sin3A|transcriptional corepressor Sin3a|transcriptional regulator, SIN3A 96 0.01314 10.64 1 1 +25943 C20orf194 chromosome 20 open reading frame 194 20 protein-coding - uncharacterized protein C20orf194 73 0.009992 8.824 1 1 +25945 NECTIN3 nectin cell adhesion molecule 3 3 protein-coding CD113|CDW113|NECTIN-3|PPR3|PRR3|PVRL3|PVRR3 nectin-3|nectin 3|poliovirus receptor-related 3|poliovirus receptor-related protein 3 55 0.007528 6.732 1 1 +25946 ZNF385A zinc finger protein 385A 12 protein-coding HZF|RZF|ZFP385|ZNF385 zinc finger protein 385A|hematopoietic zinc finger protein|retinal zinc finger protein|zinc finger protein 385 18 0.002464 10 1 1 +25948 KBTBD2 kelch repeat and BTB domain containing 2 7 protein-coding BKLHD1 kelch repeat and BTB domain-containing protein 2|BTB and kelch domain containing 1|BTB and kelch domain-containing protein 1|kelch repeat and BTB (POZ) domain containing 2 36 0.004927 10.14 1 1 +25949 SYF2 SYF2 pre-mRNA splicing factor 1 protein-coding CBPIN|NTC31|P29|fSAP29 pre-mRNA-splicing factor SYF2|CCNDBP1 interactor|GCIP-interacting protein p29|SYF2 homolog, RNA splicing factor|functional spliceosome-associated protein 29 18 0.002464 10.14 1 1 +25950 RWDD3 RWD domain containing 3 1 protein-coding RSUME RWD domain-containing protein 3|RWD domain-containing sumoylation enhancer|RWD-containing sumoylation enhancer 24 0.003285 7.73 1 1 +25953 PNKD paroxysmal nonkinesigenic dyskinesia 2 protein-coding BRP17|DYT8|FKSG19|FPD1|KIPP1184|MR-1|MR1|PDC|PKND1|TAHCCP2 probable hydrolase PNKD|brain protein 17|myofibrillogenesis regulator 1|trans-activated by hepatitis C virus core protein 2 24 0.003285 10.68 1 1 +25956 SEC31B SEC31 homolog B, COPII coat complex component 10 protein-coding SEC31B-1|SEC31L2 protein transport protein Sec31B|SEC31 homolog B|SEC31 homolog B, COPII coating complex component|SEC31-like 2|SEC31-like protein 2|SEC31-related protein B|secretory pathway component Sec31B-1 70 0.009581 6.566 1 1 +25957 PNISR PNN interacting serine and arginine rich protein 6 protein-coding C6orf111|HSPC306|SFRS18|SRrp130|bA98I9.2 arginine/serine-rich protein PNISR|PNN-interacting serine/arginine-rich protein|SR-related protein|SR-rich protein|serine-arginine-rich-splicing regulatory protein 130|splicing factor, arginine/serine-rich 130|splicing factor, arginine/serine-rich 18 60 0.008212 10.38 1 1 +25959 KANK2 KN motif and ankyrin repeat domains 2 19 protein-coding ANKRD25|MXRA3|PPKWH|SIP KN motif and ankyrin repeat domain-containing protein 2|SRC-interacting protein|SRC1-interacting protein|ankyrin repeat domain-containing protein 25|kidney ankyrin repeat-containing protein 2|matrix-remodeling-associated protein 3 57 0.007802 10.58 1 1 +25960 ADGRA2 adhesion G protein-coupled receptor A2 8 protein-coding GPR124|TEM5 adhesion G protein-coupled receptor A2|G-protein coupled receptor 124|tumor endothelial marker 5 75 0.01027 9.483 1 1 +25961 NUDT13 nudix hydrolase 13 10 protein-coding - nucleoside diphosphate-linked moiety X motif 13|nudix (nucleoside diphosphate linked moiety X)-type motif 13|nudix motif 13 18 0.002464 5.197 1 1 +25962 KIAA1429 KIAA1429 8 protein-coding MSTP054|fSAP121 protein virilizer homolog|functional spliceosome-associated protein 121 128 0.01752 10.4 1 1 +25963 TMEM87A transmembrane protein 87A 15 protein-coding - transmembrane protein 87A 42 0.005749 10.82 1 1 +25966 C2CD2 C2 calcium dependent domain containing 2 21 protein-coding C21orf25|C21orf258|TMEM24L C2 domain-containing protein 2|TMEM24 related geme 30 0.004106 9.223 1 1 +25970 SH2B1 SH2B adaptor protein 1 16 protein-coding PSM|SH2B SH2B adapter protein 1|SH2 domain-containing protein 1B|SH2 domain-containing putative adapter SH2-B|SH2-B signaling protein|pro-rich, PH and SH2 domain-containing signaling mediator 66 0.009034 10.12 1 1 +25972 UNC50 unc-50 inner nuclear membrane RNA binding protein 2 protein-coding GMH1|HSD23|PDLs22|UNCL|URP protein unc-50 homolog|geal-6 membrane-associated high-copy suppressor 1|periodontal ligament-specific protein 22|protein GMH1 homolog|unc-50 related|unc-50-like protein|uncoordinated-like protein 22 0.003011 9.313 1 1 +25973 PARS2 prolyl-tRNA synthetase 2, mitochondrial (putative) 1 protein-coding MT-PRORS|proRS probable proline--tRNA ligase, mitochondrial|proline tRNA ligase 2, mitochondrial (putative) 24 0.003285 7.245 1 1 +25974 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria 1 protein-coding cblC methylmalonic aciduria and homocystinuria type C protein 14 0.001916 7.274 1 1 +25975 EGFL6 EGF like domain multiple 6 X protein-coding MAEG|W80 epidermal growth factor-like protein 6|EGF repeat-containing protein 6|EGF-like protein 6|MAM and EGF domain containing|MAM and EGF domains-containing gene protein 32 0.00438 5.074 1 1 +25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase 3 protein-coding ARTD14|PARP7|pART14 TCDD-inducible poly [ADP-ribose] polymerase|ADP-ribosyltransferase diphtheria toxin-like 14|poly [ADP-ribose] polymerase 7 32 0.00438 9.658 1 1 +25977 NECAP1 NECAP endocytosis associated 1 12 protein-coding EIEE21 adaptin ear-binding coat-associated protein 1 21 0.002874 9.578 1 1 +25978 CHMP2B charged multivesicular body protein 2B 3 protein-coding ALS17|CHMP2.5|DMT1|VPS2-2|VPS2B charged multivesicular body protein 2b|VPS2 homolog B|chromatin modifying protein 2B|vacuolar protein-sorting-associated protein 2-2 15 0.002053 9.962 1 1 +25979 DHRS7B dehydrogenase/reductase 7B 17 protein-coding CGI-93|SDR32C1 dehydrogenase/reductase SDR family member 7B|dehydrogenase/reductase (SDR family) member 7B|short-chain dehydrogenase/reductase family 32C member 1 23 0.003148 8.995 1 1 +25980 AAR2 AAR2 splicing factor homolog 20 protein-coding C20orf4|CGI-23 protein AAR2 homolog 30 0.004106 10.11 1 1 +25981 DNAH1 dynein axonemal heavy chain 1 3 protein-coding DNAHC1|HDHC7|HL-11|HL11|HSRF-1|XLHSRF-1 dynein heavy chain 1, axonemal|DNAH1 variant protein|axonemal beta dynein heavy chain 1|ciliary dynein heavy chain 1|dynein, axonemal, heavy polypeptide 1|heat shock regulated protein 1|testicular tissue protein Li 60 217 0.0297 7.104 1 1 +25983 NGDN neuroguidin 14 protein-coding C14orf120|CANu1|LCP5|NGD|lpd-2 neuroguidin|EIF4E-binding protein|centromere accumulated nuclear protein 1|eukaryotic initiation factor 4E and CPEB binding protein|neuroguidin, EIF4E binding protein 24 0.003285 9.038 1 1 +25984 KRT23 keratin 23 17 protein-coding CK23|HAIK1|K23 keratin, type I cytoskeletal 23|CK-23|cytokeratin 23|histone deacetylase inducible keratin 23|hyperacetylation-inducible type I keratin|keratin 23 (histone deacetylase inducible)|keratin 23, type I|type I intermediate filament cytokeratin 45 0.006159 5.296 1 1 +25987 TSKU tsukushi, small leucine rich proteoglycan 11 protein-coding E2IG4|LRRC54|TSK tsukushin|E2-induced gene 4 protein|leucine rich repeat containing 54|leucine-rich repeat-containing protein 54|tsukushi homolog|tsukushi small leucine rich proteoglycan homolog 39 0.005338 10.2 1 1 +25988 HINFP histone H4 transcription factor 11 protein-coding HiNF-P|MIZF|ZNF743 histone H4 transcription factor|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 42 0.005749 8.392 1 1 +25989 ULK3 unc-51 like kinase 3 15 protein-coding - serine/threonine-protein kinase ULK3 18 0.002464 9.689 1 1 +25992 SNED1 sushi, nidogen and EGF like domains 1 2 protein-coding SST3|Snep sushi, nidogen and EGF-like domain-containing protein 1|6720455I24Rik homolog|IRE-BP1|insulin responsive sequence DNA binding protein-1 67 0.009171 8.232 1 1 +25994 HIGD1A HIG1 hypoxia inducible domain family member 1A 3 protein-coding HIG1|RCF1a HIG1 domain family member 1A, mitochondrial|HIG1 domain family, member 1A|RCF1 homolog A|hypoxia inducible gene 1|hypoxia-inducible gene 1 protein 10 0.001369 10.84 1 1 +25996 REXO2 RNA exonuclease 2 11 protein-coding CGI-114|REX2|RFN|SFN oligoribonuclease, mitochondrial|REX2, RNA exonuclease 2 homolog|RNA exonuclease 2 homolog|small fragment nuclease 15 0.002053 9.563 1 1 +25998 IBTK inhibitor of Bruton tyrosine kinase 6 protein-coding BTBD26|BTKI inhibitor of Bruton tyrosine kinase|BTK-binding protein|Bruton agammaglobulinemia tyrosine kinase inhibitor|inhibitor of Bruton's tyrosine kinase-alpha|inhibitor of Bruton's tyrosine kinase-beta|inhibitor of Bruton's tyrosine kinase-gamma 83 0.01136 10.19 1 1 +25999 CLIP3 CAP-Gly domain containing linker protein 3 19 protein-coding CLIPR-59|CLIPR59|RSNL1 CAP-Gly domain-containing linker protein 3|CLIP-170-related 59 kDa protein|cytoplasmic linker protein 170-related 59 kDa protein|restin-like 1 53 0.007254 8.71 1 1 +26000 TBC1D10B TBC1 domain family member 10B 16 protein-coding EPI64B|FP2461 TBC1 domain family member 10B|Rab27A-GAPbeta|rab27A-GAP-beta 31 0.004243 10.56 1 1 +26001 RNF167 ring finger protein 167 17 protein-coding 5730408C10Rik|LP2254|RING105 E3 ubiquitin-protein ligase RNF167 23 0.003148 11.08 1 1 +26002 MOXD1 monooxygenase DBH like 1 6 protein-coding MOX|PRO5780|dJ248E1.1 DBH-like monooxygenase protein 1|dopamine-oxygenase|monooxygenase X 48 0.00657 7.482 1 1 +26003 GORASP2 golgi reassembly stacking protein 2 2 protein-coding GOLPH6|GRASP55|GRS2|p59 Golgi reassembly-stacking protein 2|golgi phosphoprotein 6|golgi reassembly stacking protein 2, 55kDa 34 0.004654 11.27 1 1 +26005 C2CD3 C2 calcium dependent domain containing 3 11 protein-coding OFD14 C2 domain-containing protein 3 144 0.01971 9.22 1 1 +26007 TKFC triokinase and FMN cyclase 11 protein-coding DAK|NET45 triokinase/FMN cyclase|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)|dihydroxyacetone kinase 2 homolog|glycerone kinase|testis tissue sperm-binding protein Li 84P 41 0.005612 9.78 1 1 +26009 ZZZ3 zinc finger ZZ-type containing 3 1 protein-coding ATAC1 ZZ-type zinc finger-containing protein 3|ATAC component 1 homolog|zinc finger, ZZ domain containing 3 67 0.009171 9.443 1 1 +26010 SPATS2L spermatogenesis associated serine rich 2 like 2 protein-coding DNAPTP6|SGNP SPATS2-like protein|DNA polymerase-transactivated protein 6|stress granule and nucleolar protein 35 0.004791 11.04 1 1 +26011 TENM4 teneurin transmembrane protein 4 11 protein-coding Doc4|ETM5|ODZ4|TNM4|Ten-M4 teneurin-4|odd Oz/ten-m homolog 4|odz, odd Oz/ten-m homolog 4|protein Odd Oz/ten-m homolog 4|ten-4|tenascin-M4 208 0.02847 7.655 1 1 +26012 NSMF NMDA receptor synaptonuclear signaling and neuronal migration factor 9 protein-coding HH9|NELF NMDA receptor synaptonuclear signaling and neuronal migration factor|nasal embryonic LHRH factor|nasal embryonic luteinizing hormone-releasing hormone factor 25 0.003422 10.25 1 1 +26013 L3MBTL1 l(3)mbt-like 1 (Drosophila) 20 protein-coding H-L(3)MBT|L3MBTL|ZC2HC3|dJ138B7.3 lethal(3)malignant brain tumor-like protein 1|l(3)mbt protein homolog|lethal (3) malignant brain tumor l(3) 66 0.009034 6.667 1 1 +26015 RPAP1 RNA polymerase II associated protein 1 15 protein-coding - RNA polymerase II-associated protein 1 84 0.0115 9.323 1 1 +26017 FAM32A family with sequence similarity 32 member A 19 protein-coding OTAG-12|OTAG12 protein FAM32A|ovarian tumor associated gene-12 5 0.0006844 10.71 1 1 +26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 3 protein-coding LIG-1|LIG1 leucine-rich repeats and immunoglobulin-like domains protein 1|leucine-rich repeat protein LRIG1|ortholog of mouse integral membrane glycoprotein LIG-1 76 0.0104 10.58 1 1 +26019 UPF2 UPF2 regulator of nonsense transcripts homolog (yeast) 10 protein-coding HUPF2|RENT2|smg-3 regulator of nonsense transcripts 2|nonsense mRNA reducing factor 2|smg-3 homolog, nonsense mediated mRNA decay factor|up-frameshift suppressor 2 homolog|yeast Upf2p homolog 87 0.01191 9.738 1 1 +26020 LRP10 LDL receptor related protein 10 14 protein-coding LRP-10|LRP9|MST087|MSTP087 low-density lipoprotein receptor-related protein 10 52 0.007117 11.96 1 1 +26022 TMEM98 transmembrane protein 98 17 protein-coding TADA1 transmembrane protein 98 15 0.002053 9.715 1 1 +26024 PTCD1 pentatricopeptide repeat domain 1 7 protein-coding - pentatricopeptide repeat-containing protein 1, mitochondrial 46 0.006296 8.911 1 1 +26025 PCDHGA12 protocadherin gamma subfamily A, 12 5 protein-coding CDH21|FIB3|PCDH-GAMMA-A12 protocadherin gamma-A12|cadherin 21|fibroblast cadherin FIB3|fibroblast cadherin-3 87 0.01191 5.169 1 1 +26027 ACOT11 acyl-CoA thioesterase 11 1 protein-coding BFIT|STARD14|THEA|THEM1 acyl-coenzyme A thioesterase 11|START domain containing 14|StAR-related lipid transfer (START) domain containing 14|acyl-CoA thioester hydrolase 11|adipose-associated thioesterase|brown fat-inducible thioesterase|thioesterase superfamily member 1|thioesterase, adipose associated 53 0.007254 7.052 1 1 +26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 14 protein-coding ARHGEF43|KIAA0599 pleckstrin homology domain-containing family G member 3|PH domain-containing family G member 3|pleckstrin homology domain containing, family G (with RhoGef domain) member 3|pleckstrin homology domain containing, family G, member 3 67 0.009171 9.741 1 1 +26031 OSBPL3 oxysterol binding protein like 3 7 protein-coding ORP-3|ORP3|OSBP3 oxysterol-binding protein-related protein 3|OSBP-related protein 3 73 0.009992 9.062 1 1 +26032 SUSD5 sushi domain containing 5 3 protein-coding - sushi domain-containing protein 5 42 0.005749 5.539 1 1 +26033 ATRNL1 attractin like 1 10 protein-coding ALP|bA338L11.1|bA454H24.1 attractin-like protein 1 147 0.02012 4.655 1 1 +26034 IPCEF1 interaction protein for cytohesin exchange factors 1 6 protein-coding PIP3-E interactor protein for cytohesin exchange factors 1|interaction protein for cytohesin exchange factors 1 Interaction protein for cytohesin exchange factors 1|phosphoinositide-binding protein PIP3-E 19 0.002601 5.99 1 1 +26035 GLCE glucuronic acid epimerase 15 protein-coding HSEPI 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|heparosan-N-sulfate-glucuronate 5-epimerase 36 0.004927 9.242 1 1 +26036 ZNF451 zinc finger protein 451 6 protein-coding COASTER|dJ417I1.1 E3 SUMO-protein ligase ZNF451|coactivator for steroid receptors 93 0.01273 9.212 1 1 +26037 SIPA1L1 signal induced proliferation associated 1 like 1 14 protein-coding E6TP1 signal-induced proliferation-associated 1-like protein 1|SIPA1-like protein 1|high-risk human papilloma viruses E6 oncoproteins targeted protein 1 141 0.0193 10.07 1 1 +26038 CHD5 chromodomain helicase DNA binding protein 5 1 protein-coding CHD-5 chromodomain-helicase-DNA-binding protein 5|ATP-dependent helicase CHD5 157 0.02149 3.165 1 1 +26039 SS18L1 SS18L1, nBAF chromatin remodeling complex subunit 20 protein-coding CREST|LP2261 calcium-responsive transactivator|SS18-like protein 1|SYT homolog 1|synovial sarcoma translocation gene on chromosome 18-like 1 27 0.003696 8.841 1 1 +26040 SETBP1 SET binding protein 1 18 protein-coding MRD29|SEB SET-binding protein 178 0.02436 8.165 1 1 +26043 UBXN7 UBX domain protein 7 3 protein-coding UBXD7 UBX domain-containing protein 7|UBX domain containing 7 40 0.005475 8.093 1 1 +26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 5 protein-coding - leucine-rich repeat transmembrane neuronal protein 2|leucine-rich repeat neuronal 2 protein|leucine-rich repeat transmembrane neuronal 2 protein 18 0.002464 3.42 1 1 +26046 LTN1 listerin E3 ubiquitin protein ligase 1 21 protein-coding C21orf10|C21orf98|RNF160|ZNF294 E3 ubiquitin-protein ligase listerin|ring finger protein 160|zinc finger protein 294 102 0.01396 9.267 1 1 +26047 CNTNAP2 contactin associated protein-like 2 7 protein-coding AUTS15|CASPR2|CDFE|NRXN4|PTHSL1 contactin-associated protein-like 2|cell recognition molecule Caspr2|homolog of Drosophila neurexin IV 256 0.03504 6.252 1 1 +26048 ZNF500 zinc finger protein 500 16 protein-coding ZKSCAN18|ZSCAN50 zinc finger protein 500|zinc finger protein with KRAB and SCAN domains 18 29 0.003969 7.909 1 1 +26049 FAM169A family with sequence similarity 169 member A 5 protein-coding SLAP75 soluble lamin-associated protein of 75 kDa|protein FAM169A|soluble lamina-associated protein of 75 kD 42 0.005749 7.297 1 1 +26050 SLITRK5 SLIT and NTRK like family member 5 13 protein-coding LRRC11|bA364G4.2 SLIT and NTRK-like protein 5|leucine rich repeat containing 11|leucine-rich repeat-containing protein 11|slit and trk like gene 5 160 0.0219 3.742 1 1 +26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B 20 protein-coding ANKRD4|TIMAP protein phosphatase 1 regulatory inhibitor subunit 16B|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 78 0.01068 7.677 1 1 +26052 DNM3 dynamin 3 1 protein-coding Dyna III dynamin-3|T-dynamin|dynamin family member|dynamin, testicular 80 0.01095 6.257 1 1 +26053 AUTS2 autism susceptibility candidate 2 7 protein-coding FBRSL2|MRD26 autism susceptibility gene 2 protein|autism-related protein 1 132 0.01807 9.521 1 1 +26054 SENP6 SUMO1/sentrin specific peptidase 6 6 protein-coding SSP1|SUSP1 sentrin-specific protease 6|2810017C20Rik|SUMO-1-specific protease 1|SUMO1/sentrin specific protease 6|sentrin/SUMO-specific protease SENP6 72 0.009855 10.37 1 1 +26056 RAB11FIP5 RAB11 family interacting protein 5 2 protein-coding GAF1|RIP11|pp75 rab11 family-interacting protein 5|RAB11 family interacting protein 5 (class I)|gaf-1|gamma-SNAP-associated factor 1|phosphoprotein pp75|rab11-FIP5|rab11-interacting protein Rip11 45 0.006159 9.749 1 1 +26057 ANKRD17 ankyrin repeat domain 17 4 protein-coding GTAR|MASK2|NY-BR-16 ankyrin repeat domain-containing protein 17|gene trap ankyrin repeat protein|serologically defined breast cancer antigen NY-BR-16 142 0.01944 10.98 1 1 +26058 GIGYF2 GRB10 interacting GYF protein 2 2 protein-coding GYF2|PARK11|PERQ2|PERQ3|TNRC15 PERQ amino acid-rich with GYF domain-containing protein 2|PERQ amino acid rich, with GYF domain 3|Parkinson disease (autosomal recessive, early onset) 11|trinucleotide repeat-containing gene 15 protein 112 0.01533 10.58 1 1 +26059 ERC2 ELKS/RAB6-interacting/CAST family member 2 3 protein-coding CAST|CAST1|ELKSL|SPBC110|Spc110 ERC protein 2|CAZ-associated structural protein|cytomatrix protein p110 100 0.01369 3.62 1 1 +26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 3 protein-coding APPL|DIP13alpha|MODY14 DCC-interacting protein 13-alpha|AKT2 interactor|adapter protein containing PH domain, PTB domain and leucine zipper motif 1|adaptor protein containing pH domain, PTB domain and leucine zipper motif 1|adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1|dip13-alpha|signaling adaptor protein DIP13alpha 37 0.005064 10.14 1 1 +26061 HACL1 2-hydroxyacyl-CoA lyase 1 3 protein-coding 2-HPCL|HPCL|HPCL2|PHYH2 2-hydroxyacyl-CoA lyase 1|1600020H07Rik|2-hydroxyphytanol-CoA lyase|2-hydroxyphytanoyl-CoA lyase|phytanoyl-CoA 2-hydroxylase 2|phytanoyl-CoA hydroxylase 2 39 0.005338 8.437 1 1 +26062 HYALP1 hyaluronoglucosaminidase pseudogene 1 7 pseudo HYAL6 - 0.06819 0 1 +26063 DECR2 2,4-dienoyl-CoA reductase 2, peroxisomal 16 protein-coding PDCR|SDR17C1 peroxisomal 2,4-dienoyl-CoA reductase|2,4-dienoyl-CoA reductase 2|short chain dehydrogenase/reductase family 17C member 1 25 0.003422 8.643 1 1 +26064 RAI14 retinoic acid induced 14 5 protein-coding NORPEG|RAI13 ankycorbin|ankyrin repeat and coiled-coil structure-containing protein|novel retinal pigment epithelial cell protein|retinoic acid-induced protein 14 82 0.01122 10.09 1 1 +26065 LSM14A LSM14A, mRNA processing body assembly factor 19 protein-coding C19orf13|FAM61A|RAP55|RAP55A protein LSM14 homolog A|LSM14 homolog A|LSM14A, SCD6 homolog A|RNA-associated protein 55|RNA-associated protein 55A|alphaSNBP|family with sequence similarity 61, member A|hRAP55|hRAP55A|protein SCD6 homolog|putative alpha-synuclein-binding protein 43 0.005886 11.42 1 1 +26070 DKFZP434K028 uncharacterized LOC26070 11 ncRNA - - 0.2455 0 1 +26071 FAM127B family with sequence similarity 127 member B X protein-coding CXX1b|MAR8A protein FAM127B|mammalian retrotransposon derived protein 8A 15 0.002053 9.849 1 1 +26073 POLDIP2 DNA polymerase delta interacting protein 2 17 protein-coding PDIP38|POLD4|p38 polymerase delta-interacting protein 2|38 kDa DNA polymerase delta interaction protein|polymerase (DNA) delta interacting protein 2|polymerase (DNA-directed), delta interacting protein 2|polymerase delta interacting protein 38 63 0.008623 11.37 1 1 +26074 CFAP61 cilia and flagella associated protein 61 20 protein-coding C20orf26|CaM-IP3|dJ1002M8.3|dJ1178H5.4 cilia- and flagella-associated protein 61 135 0.01848 2.749 1 1 +26077 DKFZP434H168 uncharacterized LOC26077 16 ncRNA - CTD-2050B12.2 3 0.0004106 0.2792 1 1 +26082 DKFZP434L187 uncharacterized LOC26082 15 ncRNA - - 1.124 0 1 +26083 TBC1D29 TBC1 domain family member 29 17 protein-coding - putative TBC1 domain family member 29 38 0.005201 0.3662 1 1 +26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 3 protein-coding CSGEF|HMFN1864|SGEF rho guanine nucleotide exchange factor 26|Rho guanine nucleotide exchange factor (GEF) 26|SH3 domain-containing guanine exchange factor|Src homology 3 domain-containing guanine nucleotide exchange factor|testicular tissue protein Li 171 59 0.008076 7.702 1 1 +26085 KLK13 kallikrein related peptidase 13 19 protein-coding KLK-L4|KLKL4 kallikrein-13|kallikrein-like gene 4|kallikrein-like protein 4 34 0.004654 3.063 1 1 +26086 GPSM1 G-protein signaling modulator 1 9 protein-coding AGS3 G-protein-signaling modulator 1|G-protein signalling modulator 1 (AGS3-like, C. elegans)|activator of G-protein signaling 3 40 0.005475 8.476 1 1 +26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 22 protein-coding - ADP-ribosylation factor-binding protein GGA1|ADP-ribosylation factor binding protein 1|gamma-adaptin related protein 1|golgi-localized, gamma ear-containing, ARF-binding protein 1 41 0.005612 10.27 1 1 +26090 ABHD12 abhydrolase domain containing 12 20 protein-coding ABHD12A|BEM46L2|C20orf22|PHARC|dJ965G21.2 monoacylglycerol lipase ABHD12|2-arachidonoylglycerol hydrolase|abhydrolase domain-containing protein 12 24 0.003285 10.83 1 1 +26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 10 protein-coding - probable E3 ubiquitin-protein ligase HERC4|HECT domain and RCC1-like domain-containing protein 4|hect domain and RLD 4 64 0.00876 9.559 1 1 +26092 TOR1AIP1 torsin 1A interacting protein 1 1 protein-coding LAP1|LAP1B|LGMD2Y torsin-1A-interacting protein 1|lamin-associated protein 1B|lamina-associated polypeptide 1B|torsin A interacting protein 1 38 0.005201 10.54 1 1 +26093 CCDC9 coiled-coil domain containing 9 19 protein-coding - coiled-coil domain-containing protein 9 44 0.006022 8.759 1 1 +26094 DCAF4 DDB1 and CUL4 associated factor 4 14 protein-coding WDR21|WDR21A DDB1- and CUL4-associated factor 4|WD repeat domain 21A|WD repeat-containing protein 21A 37 0.005064 8.161 1 1 +26095 PTPN20 protein tyrosine phosphatase, non-receptor type 20 10 protein-coding CT126|PTPN20A|PTPN20B|bA142I17.1|bA42B19.1 tyrosine-protein phosphatase non-receptor type 20|protein tyrosine phosphatase, non-receptor type 20A|protein tyrosine phosphatase, non-receptor type 20B 4 0.0005475 3.679 1 1 +26097 CHTOP chromatin target of PRMT1 1 protein-coding C1orf77|FL-SRAG|FOP|SRAG|SRAG-3|SRAG-5|pp7704 chromatin target of PRMT1 protein|friend of PRMT1 protein|small protein rich in arginine and glycine 19 0.002601 10.9 1 1 +26098 EDRF1 erythroid differentiation regulatory factor 1 10 protein-coding C10orf137 erythroid differentiation-related factor 1 72 0.009855 8.297 1 1 +26099 SZRD1 SUZ RNA binding domain containing 1 1 protein-coding C1orf144 SUZ domain-containing protein 1|UPF0485 protein C1orf144|putative MAPK activating protein PM20,PM21|putative MAPK-activating protein PM18/PM20/PM22 12 0.001642 11.64 1 1 +26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 7 protein-coding ATG18B|Atg21|CGI-50|WIPI-2 WD repeat domain phosphoinositide-interacting protein 2|WD40 repeat protein interacting with phosphoinositides 2|WIPI49-like protein 2 27 0.003696 10.89 1 1 +26102 DKFZP434A062 uncharacterized LOC26102 9 ncRNA - - 1.169 0 1 +26103 LRIT1 leucine rich repeat, Ig-like and transmembrane domains 1 10 protein-coding FIGLER9|LRRC21|PAL leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 1|fibronectin type III, immunoglobulin and leucine rich repeat domains 9|leucine rich repeat containing 21|leucine-rich repeat, immunoglobulin-like and transmembrane domains 1|leucine-rich repeat-containing protein 21|photoreceptor-associated LRR superfamily protein|retina-specific protein PAL 69 0.009444 0.09056 1 1 +26108 PYGO1 pygopus family PHD finger 1 15 protein-coding - pygopus homolog 1|pygopus-like protein 1 39 0.005338 3.577 1 1 +26112 CCDC69 coiled-coil domain containing 69 5 protein-coding - coiled-coil domain-containing protein 69 18 0.002464 8.678 1 1 +26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 17 protein-coding ROLSA|rols protein TANC2|putative ankyrin-repeat containing protein|rolling pebbles homolog B|tetratricopeptide repeat, ankyrin repeat and coiled-coil domain-containing protein 2 109 0.01492 9.68 1 1 +26118 WSB1 WD repeat and SOCS box containing 1 17 protein-coding SWIP1|WSB-1 WD repeat and SOCS box-containing protein 1|SOCS box-containing WD protein SWiP-1 33 0.004517 10.73 1 1 +26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 1 protein-coding ARH|ARH1|ARH2|FHCB1|FHCB2 low density lipoprotein receptor adapter protein 1|LDL receptor adaptor protein|autosomal recessive hypercholesterolemia protein 29 0.003969 9.481 1 1 +26121 PRPF31 pre-mRNA processing factor 31 19 protein-coding NY-BR-99|PRP31|RP11|SNRNP61 U4/U6 small nuclear ribonucleoprotein Prp31|PRP31 pre-mRNA processing factor 31 homolog|U4/U6 snRNP 61 kDa protein|hPrp31|protein 61K|serologically defined breast cancer antigen NY-BR-99 27 0.003696 10.39 1 1 +26122 EPC2 enhancer of polycomb homolog 2 2 protein-coding EPC-LIKE enhancer of polycomb homolog 2 50 0.006844 9.036 1 1 +26123 TCTN3 tectonic family member 3 10 protein-coding C10orf61|JBTS18|OFD4|TECT3 tectonic-3 27 0.003696 10.07 1 1 +26127 FGFR1OP2 FGFR1 oncogene partner 2 12 protein-coding HSPC123-like|WIT3.0 FGFR1 oncogene partner 2|fibroblast growth factor receptor 1 oncogene partner 2|wound inducible transcript 3.0 11 0.001506 8.919 1 1 +26128 KIF1BP KIF1 binding protein 10 protein-coding KBP|KIAA1279|TTC20 KIF1-binding protein|kinesin binding protein 35 0.004791 9.37 1 1 +26130 GAPVD1 GTPase activating protein and VPS9 domains 1 9 protein-coding GAPEX5|GAPex-5|RAP6 GTPase-activating protein and VPS9 domain-containing protein 1|rab5-activating protein 6 91 0.01246 10.01 1 1 +26133 TRPC4AP transient receptor potential cation channel subfamily C member 4 associated protein 20 protein-coding C20orf188|PPP1R158|TRRP4AP|TRUSS short transient receptor potential channel 4-associated protein|TNF-receptor ubiquitous scaffolding/signaling protein|TRP4-associated protein|protein phosphatase 1, regulatory subunit 158|trpc4-associated protein|tumor necrosis factor receptor-associated ubiquitous scaffolding and signaling protein 49 0.006707 11.23 1 1 +26135 SERBP1 SERPINE1 mRNA binding protein 1 1 protein-coding CGI-55|CHD3IP|HABP4L|PAI-RBP1|PAIRBP1 plasminogen activator inhibitor 1 RNA-binding protein|PAI-1 mRNA binding protein|PAI1 RNA-binding protein 1|chromodomain helicase DNA binding protein 3 interacting protein 33 0.004517 12.51 1 1 +26136 TES testin LIM domain protein 7 protein-coding TESS|TESS-2 testin|testis derived transcript (3 LIM domains) 26 0.003559 10.08 1 1 +26137 ZBTB20 zinc finger and BTB domain containing 20 3 protein-coding DPZF|HOF|ODA-8S|PRIMS|ZNF288 zinc finger and BTB domain-containing protein 20|BTB/POZ zinc finger protein DPZF|dendritic cell-derived BTB/POZ zinc finger|zinc finger protein 288 106 0.01451 3.91 1 1 +26138 LINC00588 long intergenic non-protein coding RNA 588 8 ncRNA C8orf71 - 8 0.001095 0.1407 1 1 +26140 TTLL3 tubulin tyrosine ligase like 3 3 protein-coding HOTTL tubulin monoglycylase TTLL3|tubulin tyrosine ligase-like family, member 3|tubulin--tyrosine ligase-like protein 3 55 0.007528 8.817 1 1 +26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 19 protein-coding - interferon regulatory factor 2-binding protein 1|IRF-2-binding protein 1|probable E3 ubiquitin-protein ligase IRF2BP1 34 0.004654 9.493 1 1 +26146 TRAF3IP1 TRAF3 interacting protein 1 2 protein-coding IFT54|MIP-T3|MIPT3|SLSN9 TRAF3-interacting protein 1|TNF receptor-associated factor 3 interacting protein 1|interleukin 13 receptor alpha 1-binding protein-1|intraflagellar transport protein 54 homolog|microtubule interacting protein that associates with TRAF3|microtubule-interacting protein associated with TRAF3 39 0.005338 8.757 1 1 +26147 PHF19 PHD finger protein 19 9 protein-coding MTF2L1|PCL3|TDRD19B PHD finger protein 19|polycomb like 3|polycomb-like protein 3|tudor domain containing 19B 27 0.003696 9.238 1 1 +26148 C10orf12 chromosome 10 open reading frame 12 10 protein-coding - uncharacterized protein C10orf12 95 0.013 6.53 1 1 +26149 ZNF658 zinc finger protein 658 9 protein-coding - zinc finger protein 658 62 0.008486 5.433 1 1 +26150 RIBC2 RIB43A domain with coiled-coils 2 22 protein-coding C22orf11|TRIB RIB43A-like with coiled-coils protein 2 8 0.001095 4.35 1 1 +26151 NAT9 N-acetyltransferase 9 (putative) 17 protein-coding EBSP, hNATL N-acetyltransferase 9|N-acetyltransferase 9 (GCN5-related, putative)|embryo brain specific protein 20 0.002737 9.213 1 1 +26152 ZNF337 zinc finger protein 337 20 protein-coding - zinc finger protein 337 49 0.006707 8.821 1 1 +26153 KIF26A kinesin family member 26A 14 protein-coding - kinesin-like protein KIF26A|KIF26A variant protein 83 0.01136 6.417 1 1 +26154 ABCA12 ATP binding cassette subfamily A member 12 2 protein-coding ARCI4A|ARCI4B|ICR2B|LI2 ATP-binding cassette sub-family A member 12|ATP-binding cassette transporter 12|ATP-binding cassette, sub-family A (ABC1), member 12 236 0.0323 4.578 1 1 +26155 NOC2L NOC2 like nucleolar associated transcriptional repressor 1 protein-coding NET15|NET7|NIR|PPP1R112 nucleolar complex protein 2 homolog|NOC2-like protein|NOC2L nucleolar associated transcriptional repressor|novel INHAT (inhibitor of histone acetyltransferase) repressor|novel INHAT repressor|nucleolar complex associated 2 homolog|protein NOC2 homolog|protein phosphatase 1, regulatory subunit 12 52 0.007117 11.03 1 1 +26156 RSL1D1 ribosomal L1 domain containing 1 16 protein-coding CSIG|L12|PBK1|UTP30 ribosomal L1 domain-containing protein 1|CATX-11|cellular senescence-inhibited gene protein 40 0.005475 11.78 1 1 +26157 GIMAP2 GTPase, IMAP family member 2 7 protein-coding HIMAP2|IAN12|IMAP2 GTPase IMAP family member 2|immune-associated nucleotide-binding protein 12|immunity associated protein 2 37 0.005064 7.068 1 1 +26160 IFT172 intraflagellar transport 172 2 protein-coding BBS20|NPHP17|RP71|SLB|SRTD10|osm-1|wim intraflagellar transport protein 172 homolog|intraflagellar transport 172 homolog|selective LIM binding factor homolog|wimple homolog 112 0.01533 8.888 1 1 +26164 MTG2 mitochondrial ribosome associated GTPase 2 20 protein-coding GTPBP5|ObgH1|dJ1005F21.2 mitochondrial ribosome-associated GTPase 2|GTP binding protein 5 (putative)|GTP-binding protein 5|protein obg homolog 1 28 0.003832 9.063 1 1 +26165 SPATA31A7 SPATA31 subfamily A member 7 9 protein-coding AEP1|C9orf36A|FAM75A4|FAM75A7|SPATA31A4 spermatogenesis-associated protein 31A7|SPATA31 subfamily A, member 4|family with sequence similarity 75, member A4|family with sequence similarity 75, member A7|protein FAM75A4|protein FAM75A7|spermatogenesis-associated protein 31A4 8 0.001095 1 0 +26166 RGS22 regulator of G-protein signaling 22 8 protein-coding CT145|PRTD-NY2 regulator of G-protein signaling 22 133 0.0182 2.637 1 1 +26167 PCDHB5 protocadherin beta 5 5 protein-coding PCDH-BETA5 protocadherin beta-5|PCDH-beta-5 119 0.01629 5.752 1 1 +26168 SENP3 SUMO1/sentrin/SMT3 specific peptidase 3 17 protein-coding SMT3IP1|SSP3|Ulp1 sentrin-specific protease 3|SUMO-1-specific protease 3|sentrin/SUMO-specific protease 3 31 0.004243 9.951 1 1 +26173 INTS1 integrator complex subunit 1 7 protein-coding INT1|NET28 integrator complex subunit 1 112 0.01533 11.53 1 1 +26175 TMEM251 transmembrane protein 251 14 protein-coding C14orf109 transmembrane protein 251|UPF0694 transmembrane protein C14orf109 5 0.0006844 8.288 1 1 +26184 OR1F2P olfactory receptor family 1 subfamily F member 2 pseudogene 16 pseudo OLFMF2|OR16-3|OR1F11|OR1F2|OR1F3P|hg91 olfactory receptor OR16-3 pseudogene|olfactory receptor, family 1, subfamily F, member 11|olfactory receptor, family 1, subfamily F, member 2|olfactory receptor, family 1, subfamily F, member 3 pseudogene 0 0 0.1804 1 1 +26188 OR1C1 olfactory receptor family 1 subfamily C member 1 1 protein-coding HSTPCR27|OR1-42|OR1.5.10|ORL211|TPCR27 olfactory receptor 1C1|olfactory receptor OR1-42|olfactory receptor TPCR27 66 0.009034 0.1257 1 1 +26189 OR1A2 olfactory receptor family 1 subfamily A member 2 17 protein-coding OR17-6 olfactory receptor 1A2|olfactory receptor 17-6|olfactory receptor OR17-10 35 0.004791 0.02381 1 1 +26190 FBXW2 F-box and WD repeat domain containing 2 9 protein-coding FBW2|Fwd2|Md6 F-box/WD repeat-containing protein 2|F-box and WD-40 domain protein 2|F-box and WD-40 domain-containing protein 2 24 0.003285 10.52 1 1 +26191 PTPN22 protein tyrosine phosphatase, non-receptor type 22 1 protein-coding LYP|LYP1|LYP2|PEP|PTPN8 tyrosine-protein phosphatase non-receptor type 22|PEST-domain phosphatase|hematopoietic cell protein-tyrosine phosphatase 70Z-PEP|lymphoid-specific protein tyrosine phosphatase|protein tyrosine phosphatase, non-receptor type 22 (lymphoid)|protein tyrosine phosphatase, non-receptor type 8 54 0.007391 5.389 1 1 +26205 GMEB2 glucocorticoid modulatory element binding protein 2 20 protein-coding GMEB-2|P79PIF|PIF79 glucocorticoid modulatory element-binding protein 2|DNA-binding protein p79PIF|PIF p79|parvovirus initiation factor, p79 38 0.005201 9.191 1 1 +26206 SPAG8 sperm associated antigen 8 9 protein-coding BS-84|CILD28|CT142|HSD-1|SMP1|SPAG3|hSMP-1 sperm-associated antigen 8|sperm membrane protein 1|sperm membrane protein BS-84|testicular tissue protein Li 177 26 0.003559 4.046 1 1 +26207 PITPNC1 phosphatidylinositol transfer protein, cytoplasmic 1 17 protein-coding M-RDGB-beta|MRDGBbeta|RDGB-BETA|RDGBB|RDGBB1 cytoplasmic phosphatidylinositol transfer protein 1|M-rdgB beta|mammalian rdgB homolog beta|retinal degeneration B beta 1|retinal degeneration B homolog beta 32 0.00438 8.372 1 1 +26211 OR2F1 olfactory receptor family 2 subfamily F member 1 (gene/pseudogene) 7 protein-coding 7M1-2|OLF3|OR14-60|OR2F3|OR2F3P|OR2F4|OR2F5|OR7-139|OR7-140 olfactory receptor 2F1|olfactory receptor 2F3|olfactory receptor 2F4|olfactory receptor 2F5|olfactory receptor OR7-7|olfactory receptor, family 2, subfamily F, member 1|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 42 0.005749 0.04148 1 1 +26212 OR2B6 olfactory receptor family 2 subfamily B member 6 6 protein-coding OR2B1|OR2B1P|OR2B5|OR2B6P|OR5-40|OR5-41|OR6-31|dJ408B20.2 olfactory receptor 2B6|hs6M1-32|olfactory receptor 2B1|olfactory receptor 2B5|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 35 0.004791 1.246 1 1 +26219 OR1J4 olfactory receptor family 1 subfamily J member 4 9 protein-coding HSHTPCRX01|HTPCRX01|OR9-21 olfactory receptor 1J4|olfactory receptor OR9-21 31 0.004243 0.2993 1 1 +26220 DGCR5 DiGeorge syndrome critical region gene 5 (non-protein coding) 22 pseudo LINC00037|NCRNA00037 cadherin EGF LAG seven-pass G-type receptor 1 pseudogene|long intergenic non-protein coding RNA 37 40 0.005475 5.015 1 1 +26222 DGCR10 DiGeorge syndrome critical region gene 10 (non-protein coding) 22 ncRNA DGS-B DiGeorge syndrome gene B 1.523 0 1 +26223 FBXL21 F-box and leucine rich repeat protein 21 (gene/pseudogene) 5 protein-coding FBL3B|FBXL3B|FBXL3P|Fbl21 F-box/LRR-repeat protein 21|F-box and leucine-rich repeat protein 21|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 3B 6 0.0008212 1.093 1 1 +26224 FBXL3 F-box and leucine rich repeat protein 3 13 protein-coding FBL3|FBL3A|FBXL3A F-box/LRR-repeat protein 3|F-box and leucine-rich repeat protein 3A|F-box protein Fbl3a|F-box/LRR-repeat protein 3A 24 0.003285 9.877 1 1 +26225 ARL5A ADP ribosylation factor like GTPase 5A 2 protein-coding ARFLP5|ARL5 ADP-ribosylation factor-like protein 5A|ADP-ribosylation factor-like 5|ADP-ribosylation factor-like 5A|ADP-ribosylation factor-like protein 5 8 0.001095 9.77 1 1 +26227 PHGDH phosphoglycerate dehydrogenase 1 protein-coding 3-PGDH|3PGDH|HEL-S-113|NLS|NLS1|PDG|PGAD|PGD|PGDH|PHGDHD|SERA D-3-phosphoglycerate dehydrogenase|3-phosphoglycerate dehydrogenase|epididymis secretory protein Li 113 28 0.003832 10.11 1 1 +26228 STAP1 signal transducing adaptor family member 1 4 protein-coding BRDG1|STAP-1 signal-transducing adaptor protein 1|BCR downstream-signaling protein 1|docking protein BRDG1|stem cell adaptor protein 1 30 0.004106 2.749 1 1 +26229 B3GAT3 beta-1,3-glucuronyltransferase 3 11 protein-coding GLCATI|JDSCD|glcUAT-I galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 3|Sqv-8-like protein|UDP-GlcUA:Gal beta-1,3-Gal-R glucuronyltransferase|beta-1,3-glucuronyltransferase 3 (glucuronosyltransferase I) 20 0.002737 9.774 1 1 +26230 TIAM2 T-cell lymphoma invasion and metastasis 2 6 protein-coding STEF|TIAM-2 T-lymphoma invasion and metastasis-inducing protein 2|SIF and TIAM1-like exchange factor 135 0.01848 6.32 1 1 +26231 LRRC29 leucine rich repeat containing 29 16 protein-coding FBL9|FBXL9 leucine-rich repeat-containing protein 29|F-box and leucine-rich repeat protein 9|F-box protein FBL9|F-box/LRR-repeat protein 9 12 0.001642 5.827 1 1 +26232 FBXO2 F-box protein 2 1 protein-coding FBG1|FBX2|Fbs1|NFB42|OCP1 F-box only protein 2|F-box gene 1|organ of Corti protein 1 18 0.002464 7.827 1 1 +26233 FBXL6 F-box and leucine rich repeat protein 6 8 protein-coding FBL6|FBL6A|PP14630 F-box/LRR-repeat protein 6|F-box protein Fbl6 22 0.003011 8.831 1 1 +26234 FBXL5 F-box and leucine rich repeat protein 5 4 protein-coding FBL4|FBL5|FLR1 F-box/LRR-repeat protein 5|F-box protein FBL4/FBL5|p45SKP2-like protein 46 0.006296 11.02 1 1 +26235 FBXL4 F-box and leucine rich repeat protein 4 6 protein-coding FBL4|FBL5|MTDPS13 F-box/LRR-repeat protein 4 43 0.005886 8.006 1 1 +26238 LINC01558 long intergenic non-protein coding RNA 1558 6 ncRNA C6orf123|HGC6.2|LINC01557|dJ431P23.4 long intergenic non-protein coding RNA 1557 2 0.0002737 2.23 1 1 +26239 LCE2B late cornified envelope 2B 1 protein-coding LEP10|SPRL1B|XP5 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 37 0.005064 0.2282 1 1 +26240 FAM50B family with sequence similarity 50 member B 6 protein-coding D6S2654E|X5L protein FAM50B|XAP5-like protein 40 0.005475 7.329 1 1 +26245 OR2M4 olfactory receptor family 2 subfamily M member 4 1 protein-coding HSHTPCRX18|HTPCRX18|OR1-55|OST710|TPCR100 olfactory receptor 2M4|novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor OR1-55|olfactory receptor TPCR100 74 0.01013 0.07039 1 1 +26246 OR2L2 olfactory receptor family 2 subfamily L member 2 1 protein-coding HSHTPCRH07|HTPCRH07|OR1-48|OR2L12|OR2L4P olfactory receptor 2L2|olfactory receptor 2L12|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 85 0.01163 0.3036 1 1 +26247 OR2L1P olfactory receptor family 2 subfamily L member 1 pseudogene 1 pseudo HSHTPCRX02|HTPCRX02|OR2L1|OR2L7P olfactory receptor, family 2, subfamily L, member 7 pseudogene 2 0.0002737 0.2135 1 1 +26248 OR2K2 olfactory receptor family 2 subfamily K member 2 9 protein-coding HSHTPCRH06|HTPCRH06|OR2AN1P|OR2AR1P 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 28 0.003832 0.1542 1 1 +26249 KLHL3 kelch like family member 3 5 protein-coding PHA2D kelch-like protein 3 37 0.005064 6.738 1 1 +26251 KCNG2 potassium voltage-gated channel modifier subfamily G member 2 18 protein-coding KCNF2|KV6.2 potassium voltage-gated channel subfamily G member 2|cardiac potassium channel subunit|potassium channel, voltage gated modifier subfamily G, member 2|potassium voltage-gated channel, subfamily G, member 2|voltage-gated potassium channel subunit Kv6.2 45 0.006159 1.639 1 1 +26253 CLEC4E C-type lectin domain family 4 member E 12 protein-coding CLECSF9|MINCLE C-type lectin domain family 4 member E|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 9|C-type lectin superfamily member 9|macrophage-inducible C-type lectin 22 0.003011 4.415 1 1 +26254 OPTC opticin 1 protein-coding OPT opticin|oculoglycan 24 0.003285 0.2851 1 1 +26255 PTTG3P pituitary tumor-transforming 3, pseudogene 8 pseudo PTTG3|rcPTTG1 - 2.066 0 1 +26256 CABYR calcium binding tyrosine phosphorylation regulated 18 protein-coding CABYRa|CABYRc|CABYRc/d|CABYRe|CBP86|CT88|FSP-2|FSP2 calcium-binding tyrosine phosphorylation-regulated protein|calcium binding tyrosine-(Y)-phosphorylation regulated (fibrousheathin 2)|calcium-binding protein 86|cancer/testis antigen 88|fibrousheathin II|fibrousheathin-2|testis tissue sperm-binding protein Li 84P|testis-specific calcium-binding protein CBP86 40 0.005475 5.709 1 1 +26257 NKX2-8 NK2 homeobox 8 14 protein-coding NKX2.8|NKX2H|Nkx2-9 homeobox protein Nkx-2.8|NK-2 homolog 8|NK-2 homolog H|NK2 transcription factor related, locus 8|homeobox protein NK-2 homolog H 13 0.001779 2.159 1 1 +26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 15 protein-coding BLOS6|HPS9|PA|PALLID|PLDN biogenesis of lysosome-related organelles complex 1 subunit 6|BLOC-1 subunit 6|biogenesis of lysosomal organelles complex-1, subunit 5, pallidin|biogenesis of lysosomal organelles complex-1, subunit 6, pallidin|pallid protein homolog|syntaxin 13 binding protein 1|syntaxin 13-interacting protein pallid 11 0.001506 10.21 1 1 +26259 FBXW8 F-box and WD repeat domain containing 8 12 protein-coding FBW6|FBW8|FBX29|FBXO29|FBXW6 F-box/WD repeat-containing protein 8|F-box and WD-40 domain protein 8|F-box and WD-40 domain-containing protein 8|F-box only protein 29 36 0.004927 8.688 1 1 +26260 FBXO25 F-box protein 25 8 protein-coding FBX25 F-box only protein 25|F-box protein Fbx25 25 0.003422 8.857 1 1 +26261 FBXO24 F-box protein 24 7 protein-coding FBX24 F-box only protein 24|F-box protein Fbx24 50 0.006844 3.381 1 1 +26262 TSPAN17 tetraspanin 17 5 protein-coding FBX23|FBXO23|TM4SF17 tetraspanin-17|F-box only protein 23, transmembrane 4 superfamily member 17|tetraspan protein SB134 16 0.00219 9.886 1 1 +26263 FBXO22 F-box protein 22 15 protein-coding FBX22|FISTC1 F-box only protein 22|F-box protein FBX22p44|FIST domain containing 1 31 0.004243 8.78 1 1 +26266 SLC13A4 solute carrier family 13 member 4 7 protein-coding NAS2|SUT-1|SUT1 solute carrier family 13 member 4|Na(+)/sulfate cotransporter SUT-1|solute carrier family 13 (sodium/sulfate symporter), member 4|solute carrier family 13 (sodium/sulfate symporters), member 4|solute carrier family 13 (sodium/sulphate symporters), member 4|sulphate transporter 1 44 0.006022 2.678 1 1 +26267 FBXO10 F-box protein 10 9 protein-coding FBX10|PRMT11 F-box only protein 10|F-box protein Fbx10 52 0.007117 7.881 1 1 +26268 FBXO9 F-box protein 9 6 protein-coding FBX9|NY-REN-57|VCIA1|dJ341E18.2 F-box only protein 9|F-box protein Fbx9|cross-immune reaction antigen 1|renal carcinoma antigen NY-REN-57 21 0.002874 9.723 1 1 +26269 FBXO8 F-box protein 8 4 protein-coding DC10|FBS|FBX8 F-box only protein 8|F-box protein Fbx8|F-box/SEC7 protein FBS 22 0.003011 8.691 1 1 +26270 FBXO6 F-box protein 6 1 protein-coding FBG2|FBS2|FBX6|Fbx6b 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 19 0.002601 8.319 1 1 +26271 FBXO5 F-box protein 5 6 protein-coding EMI1|FBX5|Fbxo31 F-box only protein 5|F-box protein Fbx5|early mitotic inhibitor 1 36 0.004927 7.466 1 1 +26272 FBXO4 F-box protein 4 5 protein-coding FBX4 F-box only protein 4|F-box protein Fbx4 35 0.004791 7.67 1 1 +26273 FBXO3 F-box protein 3 11 protein-coding FBA|FBX3 F-box only protein 3|F-box protein FBX3 29 0.003969 9.247 1 1 +26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase 2 protein-coding HIBYLCOAH 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial|3-hydroxyisobutyryl-Coenzyme A hydrolase|HIB-CoA hydrolase|HIBYL-CoA-H|testicular tissue protein Li 86 22 0.003011 9.079 1 1 +26276 VPS33B VPS33B, late endosome and lysosome associated 15 protein-coding - vacuolar protein sorting-associated protein 33B|vacuolar protein sorting 33 homolog B|vacuolar protein sorting 33-like protein B 37 0.005064 8.41 1 1 +26277 TINF2 TERF1 interacting nuclear factor 2 14 protein-coding DKCA3|TIN2 TERF1-interacting nuclear factor 2|TERF1 (TRF1)-interacting nuclear factor 2|TRF1-interacting nuclear protein 2 23 0.003148 10.09 1 1 +26278 SACS sacsin molecular chaperone 13 protein-coding ARSACS|DNAJC29|PPP1R138|SPAX6 sacsin|dnaJ homolog subfamily C member 29|protein phosphatase 1, regulatory subunit 138|spastic ataxia of Charlevoix-Saguenay (sacsin) 301 0.0412 8.553 1 1 +26279 PLA2G2D phospholipase A2 group IID 1 protein-coding PLA2IID|SPLASH|sPLA2-IID|sPLA2S group IID secretory phospholipase A2|GIID sPLA2|phosphatidylcholine 2-acylhydrolase 2D|secretory phospholipase A2s|secretory-type PLA, stroma-associated homolog 11 0.001506 4.071 1 1 +26280 IL1RAPL2 interleukin 1 receptor accessory protein like 2 X protein-coding IL-1R9|IL1R9|IL1RAPL-2|TIGIRR-1 X-linked interleukin-1 receptor accessory protein-like 2|IL-1 receptor accessory protein-like 2|IL-1R-9|IL1RAPL-2-related protein|interleukin 1 receptor 9|three immunoglobulin domain-containing IL-1 receptor-related 1 85 0.01163 1.224 1 1 +26281 FGF20 fibroblast growth factor 20 8 protein-coding FGF-20|RHDA2 fibroblast growth factor 20 17 0.002327 1.049 1 1 +26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 17 protein-coding CEGA|ERA|ERA-W|ERAL1A|H-ERA|HERA-A|HERA-B GTPase Era, mitochondrial|ERA-like protein 1|Era G-protein-like 1|GTP-binding protein era homolog|GTPase, human homolog of E. coli essential cell cycle protein Era|conserved ERA-like GTPase|era (E. coli G-protein homolog)-like 1 16 0.00219 10.21 1 1 +26285 CLDN17 claudin 17 21 protein-coding - claudin-17|human CLDN17 gene for claudin-17 35 0.004791 0.295 1 1 +26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 22 protein-coding ARFGAP1 ADP-ribosylation factor GTPase-activating protein 3|ADP-ribosylation factor GTPase activating protein 1|ARF GAP 3 27 0.003696 10.23 1 1 +26287 ANKRD2 ankyrin repeat domain 2 10 protein-coding ARPP ankyrin repeat domain-containing protein 2|ankyrin repeat domain 2 (stretch responsive muscle)|skeletal muscle ankyrin repeat protein 21 0.002874 2.18 1 1 +26289 AK5 adenylate kinase 5 1 protein-coding AK6 adenylate kinase isoenzyme 5|AK 5|ATP-AMP transphosphorylase 5|adenylate kinase 6 55 0.007528 4.256 1 1 +26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 12 protein-coding GALNAC-T8 probable polypeptide N-acetylgalactosaminyltransferase 8|GalNAc transferase 8|UDP-GalNAc: polypeptide N-acetylgalactosaminyltransferase 8|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 8 (GalNAc-T8)|polypeptide GalNAc transferase 8|pp-GaNTase 8|protein-UDP acetylgalactosaminyltransferase 8 71 0.009718 1.379 1 1 +26291 FGF21 fibroblast growth factor 21 19 protein-coding - fibroblast growth factor 21 13 0.001779 0.7034 1 1 +26292 MYCBP MYC binding protein 1 protein-coding AMY-1 C-Myc-binding protein|associate of myc-1|c-myc binding protein 6 0.0008212 9.188 1 1 +26297 SERGEF secretion regulating guanine nucleotide exchange factor 11 protein-coding DELGEF|Gnefr secretion-regulating guanine nucleotide exchange factor|deafness locus associated putative guanine nucleotide exchange factor|guanine nucleotide exchange factor-related protein 24 0.003285 8.322 1 1 +26298 EHF ETS homologous factor 11 protein-coding ESE3|ESE3B|ESEJ ETS homologous factor|ESE3 transcription factor|ETS domain-containing transcription factor|epithelium-specific Ets transcription factor 3|hEHF 31 0.004243 7.754 1 1 +26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 9 protein-coding A3GALNT|FS|UNQ2513 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1|Forssman glycolipid synthetase (FS)|forssman glycolipid synthase-like protein 23 0.003148 6.738 1 1 +26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic 19 protein-coding GAPD2|GAPDH-2|GAPDS|HEL-S-278|HSD-35 glyceraldehyde-3-phosphate dehydrogenase, testis-specific|epididymis secretory protein Li 278|spermatogenic cell-specific glyceraldehyde 3-phosphate dehydrogenase 2|spermatogenic glyceraldehyde-3-phosphate dehydrogenase 31 0.004243 1.604 1 1 +26333 OR7A17 olfactory receptor family 7 subfamily A member 17 19 protein-coding BC85395_4|HTPCRX19 olfactory receptor 7A17|olfactory receptor OR19-20 26 0.003559 0.01031 1 1 +26338 OR5L2 olfactory receptor family 5 subfamily L member 2 11 protein-coding HSHTPCRX16|HTPCRX16|OR11-153 olfactory receptor 5L2|olfactory receptor OR11-153|olfactory receptor, family 5, subfamily L, member 1 113 0.01547 0.002985 1 1 +26339 OR5K1 olfactory receptor family 5 subfamily K member 1 3 protein-coding HSHTPCRX10|HTPCRX10|OR3-8 olfactory receptor 5K1|olfactory receptor OR3-8 41 0.005612 0.1246 1 1 +26341 OR5H1 olfactory receptor family 5 subfamily H member 1 3 protein-coding HSHTPCRX14|HTPCRX14 olfactory receptor 5H1 60 0.008212 0.005335 1 1 +26343 OR5E1P olfactory receptor family 5 subfamily E member 1 pseudogene 11 pseudo HSTPCR24|OR5E1|TPCR24 olfactory receptor, family 5, subfamily R, member 1 pseudogene|seven transmembrane helix receptor 0.08077 0 1 +26353 HSPB8 heat shock protein family B (small) member 8 12 protein-coding CMT2L|DHMN2|E2IG1|H11|HMN2|HMN2A|HSP22 heat shock protein beta-8|E2-induced gene 1 protein|alpha-crystallin C chain|heat shock 22kDa protein 8|heat shock 27kDa protein 8|protein kinase H11|small stress protein-like protein HSP22 23 0.003148 9.31 1 1 +26354 GNL3 G protein nucleolar 3 3 protein-coding C77032|E2IG3|NNP47|NS guanine nucleotide-binding protein-like 3|E2-induced gene 3 protein|estradiol-induced nucleotide binding protein|guanine nucleotide binding protein-like 3 (nucleolar)|novel nucleolar protein 47|nucleolar GTP-binding protein 3|nucleostemin 29 0.003969 10.53 1 1 +26355 FAM162A family with sequence similarity 162 member A 3 protein-coding C3orf28|E2IG5|HGTD-P protein FAM162A|E2-induced gene 5 protein|HIF-1 alpha-responsive proapoptotic molecule|growth and transformation-dependent protein 16 0.00219 10.19 1 1 +26468 LHX6 LIM homeobox 6 9 protein-coding LHX6.1 LIM/homeobox protein Lhx6|LIM homeodomain protein 6.1|LIM/homeobox protein Lhx6.1 21 0.002874 5.747 1 1 +26469 PTPN18 protein tyrosine phosphatase, non-receptor type 18 2 protein-coding BDP1|PTP-HSCF tyrosine-protein phosphatase non-receptor type 18|brain-derived phosphatase|protein tyrosine phosphatase, non-receptor type 18 (brain-derived) 52 0.007117 10.35 1 1 +26470 SEZ6L2 seizure related 6 homolog like 2 16 protein-coding BSRPA|PSK-1 seizure 6-like protein 2|seizure related 6 homolog (mouse)-like 2|seizure related 6-like protein 2|type I transmembrane receptor (seizure-related protein) 78 0.01068 9.745 1 1 +26471 NUPR1 nuclear protein 1, transcriptional regulator 16 protein-coding COM1|P8 nuclear protein 1|candidate of metastasis 1|nuclear protein, transcriptional regulator, 1|nuclear transcriptional regulator protein 1|protein p8 7 0.0009581 10.51 1 1 +26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B 11 protein-coding PHI-1|PLCB3N|PNG|SOM172 protein phosphatase 1 regulatory subunit 14B|phospholipase C beta-3 neighboring gene protein|phospholipase C-beta-3 neighbouring gene protein 9 0.001232 10.37 1 1 +26476 OR10J1 olfactory receptor family 10 subfamily J member 1 1 protein-coding HGMP07J|HSHGMP07J olfactory receptor 10J1|olfactory receptor OR1-26|olfactory receptor-like protein HGMP07J 54 0.007391 0.01603 1 1 +26492 OR8G2 olfactory receptor family 8 subfamily G member 2 11 protein-coding HSTPCR120|OR8G2P|OR8G4|ORL206|ORL486|TPCR120 olfactory receptor 8G2|olfactory receptor 8G4|olfactory receptor OR11-292|olfactory receptor OR11-297|olfactory receptor TPCR120|olfactory receptor, family 8, subfamily G, member 4|seven transmembrane helix receptor 16 0.00219 0.01528 1 1 +26493 OR8B8 olfactory receptor family 8 subfamily B member 8 11 protein-coding TPCR85 olfactory receptor 8B8|olfactory receptor OR11-316|olfactory receptor TPCR85|olfactory-like receptor JCG8 40 0.005475 0.01114 1 1 +26494 OR8G1 olfactory receptor family 8 subfamily G member 1 (gene/pseudogene) 11 protein-coding HSTPCR25|OR8G1P|TPCR25 olfactory receptor 8G1|olfactory receptor OR11-281|olfactory receptor TPCR25|olfactory receptor, family 8, subfamily G, member 1 pseudogene 3 0.0004106 1 0 +26496 OR10A3 olfactory receptor family 10 subfamily A member 3 11 protein-coding HSHTPCRX12|HTPCRX12 olfactory receptor 10A3|olfactory receptor OR11-97 31 0.004243 0.1685 1 1 +26497 OR10D3 olfactory receptor family 10 subfamily D member 3 (putative) 11 pseudo HTPCRX09|OR10D3P Olfactory receptor OR11-293|Putative olfactory receptor 10D3|olfactory receptor, family 10, subfamily D, member 3 (non-functional)|olfactory receptor, family 10, subfamily D, member 3 pseudogene|seven transmembrane helix receptor 2 0.0002737 1 0 +26499 PLEK2 pleckstrin 2 14 protein-coding - pleckstrin-2|pleckstrin 2 homolog 18 0.002464 7.508 1 1 +26502 NARF nuclear prelamin A recognition factor 17 protein-coding IOP2 nuclear prelamin A recognition factor|iron-only hydrogenase-like protein 2|prenyl-dependent prelamin A binding protein 34 0.004654 9.895 1 1 +26503 SLC17A5 solute carrier family 17 member 5 6 protein-coding AST|ISSD|NSD|SD|SIALIN|SIASD|SLD sialin|H(+)/nitrate cotransporter|H(+)/sialic acid cotransporter|membrane glycoprotein HP59|sialic acid storage disease|sodium/sialic acid cotransporter|solute carrier family 17 (acidic sugar transporter), member 5|solute carrier family 17 (anion/sugar transporter), member 5|vesicular H(+)/Aspartate-glutamate cotransporter 31 0.004243 9.311 1 1 +26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 2 protein-coding ACDP4 metal transporter CNNM4|ancient conserved domain protein 4|ancient conserved domain-containing protein 4|cyclin-M4 51 0.006981 9.241 1 1 +26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 2 protein-coding ACDP3 metal transporter CNNM3|ancient conserved domain protein 3|ancient conserved domain-containing protein 3|cyclin-M3 25 0.003422 9.88 1 1 +26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 10 protein-coding ACDP1|CLP-1 metal transporter CNNM1|ancient conserved domain-containing protein 1|cyclin-M1 51 0.006981 4.735 1 1 +26508 HEYL hes related family bHLH transcription factor with YRPW motif-like 1 protein-coding HESR3|HEY3|HRT3|bHLHb33 hairy/enhancer-of-split related with YRPW motif-like protein|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 22 0.003011 8.382 1 1 +26509 MYOF myoferlin 10 protein-coding FER1L3 myoferlin|fer-1-like 3, myoferlin|fer-1-like family member 3|fer-1-like protein 3 134 0.01834 11.06 1 1 +26511 CHIC2 cysteine rich hydrophobic domain 2 4 protein-coding BTL cysteine-rich hydrophobic domain-containing protein 2|BRX-like translocated in leukemia|cystein-rich hydrophobic domain 2|cysteine-rich hydrophobic domain 2 protein 9 0.001232 7.755 1 1 +26512 INTS6 integrator complex subunit 6 13 protein-coding DBI-1|DDX26|DDX26A|DICE1|HDB|INT6|Notchl2 integrator complex subunit 6|DEAD box protein|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26|RNA helicase HDB|protein deleted in cancer 1 46 0.006296 9.323 1 1 +26515 TIMM10B translocase of inner mitochondrial membrane 10B 11 protein-coding FXC1|TIM10B|Tim9b mitochondrial import inner membrane translocase subunit Tim10 B|fracture callus 1 homolog|fracture callus protein 1|mitochondrial import inner membrane translocase subunit Tim9 B|translocase of inner mitochondrial membrane 10 homolog B 4 0.0005475 9.56 1 1 +26517 TIMM13 translocase of inner mitochondrial membrane 13 19 protein-coding TIM13|TIM13B|TIMM13A|TIMM13B|ppv1 mitochondrial import inner membrane translocase subunit Tim13|mitochondrial import inner membrane translocase subunit Tim13B|translocase of inner mitochondrial membrane 13 homolog 6 0.0008212 10.26 1 1 +26519 TIMM10 translocase of inner mitochondrial membrane 10 11 protein-coding TIM10|TIM10A|TIMM10A mitochondrial import inner membrane translocase subunit Tim10|translocase of inner mitochondrial membrane 10 homolog 5 0.0006844 8.934 1 1 +26520 TIMM9 translocase of inner mitochondrial membrane 9 14 protein-coding TIM9|TIM9A mitochondrial import inner membrane translocase subunit Tim9|translocase of inner mitochondrial membrane 9 homolog 8 0.001095 8.914 1 1 +26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B 11 protein-coding DDP2|TIM8B mitochondrial import inner membrane translocase subunit Tim8 B|DDP-like protein|deafness dystonia protein 2 5 0.0006844 9.125 1 1 +26523 AGO1 argonaute 1, RISC catalytic component 1 protein-coding EIF2C|EIF2C1|GERP95|Q99|hAgo1 protein argonaute-1|Golgi Endoplasmic Reticulum protein 95 kDa|argonaute 1|argonaute RISC catalytic component 1|argonaute1|eIF-2C 1|eIF2C 1|eukaryotic translation initiation factor 2C, 1|putative RNA-binding protein Q99 73 0.009992 9.764 1 1 +26524 LATS2 large tumor suppressor kinase 2 13 protein-coding KPM serine/threonine-protein kinase LATS2|LATS (large tumor suppressor, Drosophila) homolog 2|LATS, large tumor suppressor, homolog 2|kinase phosphorylated during mitosis protein|large tumor suppressor homolog 2|serine/threonine kinase KPM|serine/threonine-protein kinase kpm|warts-like kinase 104 0.01423 8.745 1 1 +26525 IL36RN interleukin 36 receptor antagonist 2 protein-coding FIL1|FIL1(DELTA)|FIL1D|IL-36Ra|IL1F5|IL1HY1|IL1L1|IL1RP3|IL36RA|PSORP|PSORS14 interleukin-36 receptor antagonist protein|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)|interleukin 1 family, member 5 (delta)|interleukin-1 HY1|interleukin-1 receptor antagonist homolog 1|interleukin-1-like protein 1 12 0.001642 2.346 1 1 +26526 TSPAN16 tetraspanin 16 19 protein-coding TM-8|TM4-B|TM4SF16 tetraspanin-16|tetraspanin TM4-B|transmembrane 4 superfamily member 16|tspan-16 21 0.002874 0.1742 1 1 +26528 DAZAP1 DAZ associated protein 1 19 protein-coding - DAZ-associated protein 1|deleted in azoospermia-associated protein 1|testicular tissue protein Li 50 46 0.006296 10.78 1 1 +26529 OR12D2 olfactory receptor family 12 subfamily D member 2 (gene/pseudogene) 6 protein-coding DJ994E9.8|HS6M1-20 olfactory receptor 12D2|olfactory receptor OR6-28|olfactory receptor, family 12, subfamily D, member 2 36 0.004927 0.09635 1 1 +26531 OR11A1 olfactory receptor family 11 subfamily A member 1 6 protein-coding 6M1-18|OR11A2|dJ994E9.6|hs6M1-18 olfactory receptor 11A1|olfactory receptor 11A2|olfactory receptor OR6-30|olfactory receptor, family 11, subfamily A, member 2 39 0.005338 0.08658 1 1 +26532 OR10H3 olfactory receptor family 10 subfamily H member 3 19 protein-coding - olfactory receptor 10H3|olfactory receptor OR19-24 24 0.003285 0.01185 1 1 +26533 OR10G3 olfactory receptor family 10 subfamily G member 3 14 protein-coding OR14-40 olfactory receptor 10G3|olfactory receptor OR14-40 19 0.002601 0.03668 1 1 +26534 OR10G2 olfactory receptor family 10 subfamily G member 2 14 protein-coding OR14-41 olfactory receptor 10G2|olfactory receptor OR14-41 pseudogene 43 0.005886 0.1183 1 1 +26538 OR10H2 olfactory receptor family 10 subfamily H member 2 19 protein-coding - olfactory receptor 10H2|olfactory receptor OR19-23 38 0.005201 0.1401 1 1 +26539 OR10H1 olfactory receptor family 10 subfamily H member 1 19 protein-coding - olfactory receptor 10H1|olfactory receptor OR19-27 32 0.00438 0.3961 1 1 +26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 X protein-coding CHORDC3|ITGB1BP|MELUSIN|MSTP015 integrin beta-1-binding protein 2|integrin beta 1 binding protein (melusin) 2 34 0.004654 2.818 1 1 +26574 AATF apoptosis antagonizing transcription factor 17 protein-coding BFR2|CHE-1|CHE1|DED protein AATF|rb-binding protein Che-1 25 0.003422 10.39 1 1 +26575 RGS17 regulator of G-protein signaling 17 6 protein-coding RGS-17|RGSZ2|hRGS17 regulator of G-protein signaling 17 26 0.003559 3.281 1 1 +26576 SRPK3 SRSF protein kinase 3 X protein-coding MSSK-1|MSSK1|STK23 SRSF protein kinase 3|SFRS protein kinase 3|SR-protein-specific kinase 3|muscle-specific serine kinase 1|serine arginine rich protein-specific kinase 3|serine/threonine kinase 23|serine/threonine-protein kinase 23|serine/threonine-protein kinase SRPK3 42 0.005749 4.596 1 1 +26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 3 protein-coding PCPE2 procollagen C-endopeptidase enhancer 2|procollagen C-proteinase enhancer 2|procollagen COOH-terminal proteinase enhancer 2 41 0.005612 5.497 1 1 +26578 OSTF1 osteoclast stimulating factor 1 9 protein-coding OSF|SH3P2|bA235O14.1 osteoclast-stimulating factor 1 9 0.001232 9.593 1 1 +26579 MYEOV myeloma overexpressed 11 protein-coding OCIM myeloma-overexpressed gene protein|myeloma overexpressed (in a subset of t(11;14) positive multiple myelomas)|myeloma overexpressed gene (in a subset of t(11;14) positive multiple myelomas)|oncogene in multiple myeloma 49 0.006707 4.397 1 1 +26580 BSCL2 BSCL2, seipin lipid droplet biogenesis associated 11 protein-coding GNG3LG|HMN5|PELD|SPG17 seipin|Berardinelli-Seip congenital lipodystrophy 2 (seipin)|Bernardinelli-Seip congenital lipodystrophy type 2 protein 42 0.005749 10.83 1 1 +26584 DUX1 double homeobox 1 10 protein-coding - double homeobox protein 1 1 0.0001369 1 0 +26585 GREM1 gremlin 1, DAN family BMP antagonist 15 protein-coding C15DUPq|CKTSF1B1|CRAC1|CRCS4|DAND2|DRM|DUP15q|GREMLIN|HMPS|HMPS1|IHG-2|MPSH|PIG2 gremlin-1|DAN domain family member 2|cell proliferation-inducing gene 2 protein|colorectal adenoma and carcinoma 1|cysteine knot superfamily 1, BMP antagonist 1|down-regulated in Mos-transformed cells protein|gremlin 1, cysteine knot superfamily, homolog|gremlin 1-like protein|increased in high glucose-2 18 0.002464 7.484 1 1 +26586 CKAP2 cytoskeleton associated protein 2 13 protein-coding LB1|TMAP|se20-10 cytoskeleton-associated protein 2|CTCL tumor antigen se20-10|tumor- and microtubule-associated protein|tumor-associated microtubule-associated protein 42 0.005749 9.247 1 1 +26589 MRPL46 mitochondrial ribosomal protein L46 15 protein-coding C15orf4|LIECG2|P2ECSL 39S ribosomal protein L46, mitochondrial|L46mt|MRP-L46 14 0.001916 8.679 1 1 +26595 OR8B2 olfactory receptor family 8 subfamily B member 2 11 protein-coding OR11-309|OR11-310 olfactory receptor 8B2|olfactory receptor OR11-309|olfactory receptor OR11-310 38 0.005201 0.0341 1 1 +26608 TBL2 transducin beta like 2 7 protein-coding WBSCR13|WS-betaTRP transducin beta-like protein 2|WS beta-transducin repeats protein|Williams-Beuren syndrome chromosome region 13|transducin -like 2 27 0.003696 10.02 1 1 +26609 VCX variable charge, X-linked X protein-coding VCX-10r|VCX-B1|VCX1|VCX10R|VCXB1 variable charge X-linked protein 1|variable charge protein on X with ten repeats|variable charge, X chromosome|variably charged protein X-B1 18 0.002464 0.7415 1 1 +26610 ELP4 elongator acetyltransferase complex subunit 4 11 protein-coding AN|C11orf19|PAX6NEB|PAXNEB|dJ68P15A.1|hELP4 elongator complex protein 4|PAX6 neighbor gene protein|elongation protein 4 homolog 45 0.006159 7.767 1 1 +26628 OR7E47P olfactory receptor family 7 subfamily E member 47 pseudogene 12 pseudo OR7E141 - 4 0.0005475 1 0 +26636 0.4069 0 1 +26648 OR7E24 olfactory receptor family 7 subfamily E member 24 19 protein-coding HSHT2|OR19-8|OR7E24P|OR7E24Q olfactory receptor 7E24|olfactory receptor OR19-14 48 0.00657 0.1444 1 1 +26651 OR7E19P olfactory receptor family 7 subfamily E member 19 pseudogene 19 pseudo HSCIT-B-440L2|OR19-7|OR7E65|TPCR11|tpcr110 olfactory receptor, family 7, subfamily E, member 65 3 0.0004106 1 0 +26658 OR7C2 olfactory receptor family 7 subfamily C member 2 19 protein-coding CIT-HSP-87M17|OR19-18|OR7C3 olfactory receptor 7C2|olfactory receptor 19-18|olfactory receptor 7C3|olfactory receptor OR19-22|olfactory receptor, family 7, subfamily C, member 3 30 0.004106 0.02328 1 1 +26659 OR7A5 olfactory receptor family 7 subfamily A member 5 19 protein-coding HTPCR2 olfactory receptor 7A5|olfactory receptor OR19-17|olfactory receptor TPCR92|olfactory receptor, family 7, subfamily A, member 5 pseudogene 39 0.005338 1.088 1 1 +26664 OR7C1 olfactory receptor family 7 subfamily C member 1 19 protein-coding CIT-HSP-146E8|HSTPCR86P|OR19-5|OR7C4|TPCR86 olfactory receptor 7C1|olfactory receptor 7C4|olfactory receptor OR19-16|olfactory receptor TPCR86|olfactory receptor, family 7, subfamily C, member 4 35 0.004791 0.7329 1 1 +26682 OR4F4 olfactory receptor family 4 subfamily F member 4 15 protein-coding OLA-7501|OR4F18 olfactory receptor 4F4|HS14a-1-A|OR4F17|olfactory receptor OR19-3|olfactory receptor, family 4, subfamily F, member 18 4 0.0005475 0.02558 1 1 +26686 OR4E2 olfactory receptor family 4 subfamily E member 2 14 protein-coding OR14-42 olfactory receptor 4E2|olfactory receptor OR14-42 33 0.004517 0.02588 1 1 +26689 OR4D1 olfactory receptor family 4 subfamily D member 1 17 protein-coding OR17-23|OR4D3|OR4D4P|TPCR16 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 21 0.002874 0.03401 1 1 +26692 OR2W1 olfactory receptor family 2 subfamily W member 1 6 protein-coding hs6M1-15 olfactory receptor 2W1|olfactory receptor OR6-13 45 0.006159 0.008889 1 1 +26693 OR2V1 olfactory receptor family 2 subfamily V member 1 5 protein-coding OR2V1P|OST265 olfactory receptor 2V1|olfactory receptor, family 2, subfamily V, member 1 pseudogene 9 0.001232 1 0 +26695 OR2U1P olfactory receptor family 2 subfamily U member 1 pseudogene 6 pseudo OR2AU1P|hs6M1-24 olfactory receptor, family 2, subfamily AU, member 1 pseudogene|seven transmembrane helix receptor 1 0.0001369 1 0 +26696 OR2T1 olfactory receptor family 2 subfamily T member 1 1 protein-coding OR1-25 olfactory receptor 2T1|olfactory receptor 1-25|olfactory receptor OR1-61 69 0.009444 0.007006 1 1 +26707 OR2J2 olfactory receptor family 2 subfamily J member 2 6 protein-coding OR6-19|OR6-8|OR6.3.8|ORL684|dJ80I19.4|hs6M1-6 olfactory receptor 2J2|olfactory receptor 6-8|olfactory receptor OR6-19 56 0.007665 0.0259 1 1 +26716 OR2H1 olfactory receptor family 2 subfamily H member 1 6 protein-coding 6M1-16|HS6M1-16|OLFR42A-9004-14|OLFR42A-9004.14/9026.2|OR2H6|OR2H8|OR6-2|dJ994E9.4 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 36 0.004927 0.1698 1 1 +26735 OR1L3 olfactory receptor family 1 subfamily L member 3 9 protein-coding OR9-28|OR9-D olfactory receptor 1L3|olfactory receptor 9-D|olfactory receptor OR9-28 33 0.004517 0.08219 1 1 +26737 OR1L1 olfactory receptor family 1 subfamily L member 1 9 protein-coding HG23|OR1L2|OR9-27|OR9-C olfactory receptor 1L1|olfactory receptor 1L2|olfactory receptor 9-C|olfactory receptor OR9-27|olfactory receptor, family 1, subfamily L, member 2 32 0.00438 0.03182 1 1 +26740 OR1J2 olfactory receptor family 1 subfamily J member 2 9 protein-coding HG152|HSA5|OR1J3|OR1J5|OR9-19|OST044 olfactory receptor 1J2|HTPCRX15|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 36 0.004927 0.5793 1 1 +26747 NUFIP1 NUFIP1, FMR1 interacting protein 1 13 protein-coding NUFIP|bA540M5.1 nuclear fragile X mental retardation-interacting protein 1|nuclear FMRP-interacting protein 1|nuclear fragile X mental retardation protein interacting protein 1 38 0.005201 7.665 1 1 +26749 GAGE2E G antigen 2E X protein-coding GAGE-2E|GAGE8 G antigen 2E 0.1268 0 1 +26750 RPS6KC1 ribosomal protein S6 kinase C1 1 protein-coding RPK118|RSKL1|S6K-delta-1|S6PKh1|humS6PKh1 ribosomal protein S6 kinase delta-1|52 kDa ribosomal protein S6 kinase|SPHK1-binding protein|ribosomal S6 kinase-like protein with two PSK domains 118 kDa protein|ribosomal protein S6 kinase, 52kDa, polypeptide 1 87 0.01191 8.993 1 1 +26751 SH3YL1 SH3 and SYLF domain containing 1 2 protein-coding RAY SH3 domain-containing YSC84-like protein 1|SH3 domain containing, Ysc84-like 1 24 0.003285 9.576 1 1 +26762 HAVCR1 hepatitis A virus cellular receptor 1 5 protein-coding CD365|HAVCR|HAVCR-1|KIM-1|KIM1|TIM|TIM-1|TIM1|TIMD-1|TIMD1 hepatitis A virus cellular receptor 1|T cell immunoglobin domain and mucin domain protein 1|T-cell immunoglobulin mucin family member 1|T-cell immunoglobulin mucin receptor 1|T-cell membrane protein 1|kidney injury molecule 1 59 0.008076 1.583 1 1 +26765 SNORD12C small nucleolar RNA, C/D box 12C 20 snoRNA E2|E2-1|E3|RNU106|SNORD106|U106 RNA, U106 small nucleolar|small nucleolar RNA, C/D box 106 0 0 1 +26766 RNU105C RNA, U105C small nucleolar 8 snoRNA E1-5|E1-6 - 1 0.0001369 1 0 +26769 SNORD81 small nucleolar RNA, C/D box 81 1 snoRNA RNU104|U81|Z23 RNA, U104 small nucleolar 0 0 1 +26770 SNORD79 small nucleolar RNA, C/D box 79 1 snoRNA RNU103|U79|Z22 RNA, U103 small nucleolar 1 0.0001369 0 1 1 +26771 SNORD102 small nucleolar RNA, C/D box 102 13 snoRNA RNU102|Z18 C/D box snoRNA U102|RNA, U102 small nucleolar 0 0 0 1 1 +26772 SNORD4B small nucleolar RNA, C/D box 4B 17 snoRNA RNU101B|Z17B RNA, U101B small nucleolar|U101B small nucleolar RNA|U101B snoRNA|Z17B small nucleolar RNA|Z17B snoRNA 0 0 1 +26773 SNORD4A small nucleolar RNA, C/D box 4A 17 snoRNA RNU101A|Z17A|mgh18S-121 RNA, U101A small nucleolar|U101A small nucleolar RNA|U101A snoRNA|Z17A small nucleolar RNA|Z17A snoRNA 2 0.0002737 0 1 1 +26774 SNORD80 small nucleolar RNA, C/D box 80 1 snoRNA RNU100|U80|Z15 RNA, U100 small nucleolar 0 0 1 +26775 SNORA72 small nucleolar RNA, H/ACA box 72 8 snoRNA RNU72|U72 RNA, U72 small nucleolar|U72 small nucleolar RNA|U72 snoRNA 2 0.0002737 0.2888 1 1 +26776 SNORA71B small nucleolar RNA, H/ACA box 71B 20 snoRNA RNU71B|U71b RNA, U71B small nucleolar 1 0.0001369 0.09263 1 1 +26777 SNORA71A small nucleolar RNA, H/ACA box 71A 20 snoRNA RNU71A|U71a RNA, U71A small nucleolar 0.1419 0 1 +26778 SNORA70 small nucleolar RNA, H/ACA box 70 X snoRNA DXS648E|RNU70|U70 RNA, U70 small nucleolar|U70 small nucleolar RNA|U70 snoRNA 0 0 0.0838 1 1 +26779 SNORA69 small nucleolar RNA, H/ACA box 69 X snoRNA RNU69|U69|U69A U69 small nucleolar RNA|U69 snoRNA|U69a small nucleolar RNA 0.007004 0 1 +26780 SNORA68 small nucleolar RNA, H/ACA box 68 19 snoRNA RNU68|SNORA68A|U68 RNA, U68 small nucleolar|U68 small nucleolar RNA|U68 snoRNA 0.1416 0 1 +26781 SNORA67 small nucleolar RNA, H/ACA box 67 17 snoRNA RNU67|U67 RNA, U67 small nucleolar 3 0.0004106 0.673 1 1 +26782 SNORA66 small nucleolar RNA, H/ACA box 66 1 snoRNA RNU66|U66 RNA, U66 small nucleolar 0.01207 0 1 +26783 SNORA65 small nucleolar RNA, H/ACA box 65 9 snoRNA RNU65|U65 RNA, U65 small nucleolar|U65 small nucleolar RNA|U65 snoRNA 1 0.0001369 0.1623 1 1 +26784 SNORA64 small nucleolar RNA, H/ACA box 64 16 snoRNA RNU64|U64 RNA, U64 small nucleolar|U64 small nucleolar RNA|U64 snoRNA 0.07245 0 1 +26785 SNORD63 small nucleolar RNA, C/D box 63 5 snoRNA RNU63|SNORD63A|U63 RNA, U63 small nucleolar 0 0 1 +26786 SNORD62A small nucleolar RNA, C/D box 62A 9 snoRNA RNU62|U62|U62A RNA, U62 small nucleolar 0 0 1 +26787 SNORD61 small nucleolar RNA, C/D box 61 X snoRNA HBII-342|RNU61|U61 RNA, U61 small nuclear 1 0.0001369 0 1 1 +26788 SNORD60 small nucleolar RNA, C/D box 60 16 snoRNA RNU60|U60 RNA, U60 small nuclear 0 0 1 +26789 SNORD59A small nucleolar RNA, C/D box 59A 12 snoRNA RNU59|U59 RNA, U59 small nuclear 0 0 0 1 1 +26790 SNORD58B small nucleolar RNA, C/D box 58B 18 snoRNA RNU58B|U58b RNA, U58B small nuclear 0 0 1 0 +26791 SNORD58A small nucleolar RNA, C/D box 58A 18 snoRNA RNU58A|U58a RNA, U58A small nuclear 0 0 1 +26792 SNORD57 small nucleolar RNA, C/D box 57 20 snoRNA RNU57|U57 RNA, U57 small nuclear 2 0.0002737 0 1 1 +26793 SNORD56 small nucleolar RNA, C/D box 56 20 snoRNA RNU56|U56 RNA, U56 small nuclear 0 0 1 +26795 SNORD54 small nucleolar RNA, C/D box 54 8 snoRNA RNU54|U54 RNA, U54 small nuclear|U54 small nuclear RNA|U54 snoRNA 1 0.0001369 0 1 1 +26796 SNORD53 small nucleolar RNA, C/D box 53 2 snoRNA RNU53|SNORD53A|U53 RNA, U53 small nuclear 0 0 1 +26797 SNORD52 small nucleolar RNA, C/D box 52 6 snoRNA RNU52|U52 RNA, U52 small nuclear 0 0 1 +26798 SNORD51 small nucleolar RNA, C/D box 51 2 snoRNA RNU51|U51 C/D box snoRNA U51|RNA, U51 small nuclear 0 0 1 +26799 SNORD50A small nucleolar RNA, C/D box 50A 6 snoRNA RNU50|U50 RNA, U50 small nuclear 0 0 1 +26800 SNORD49A small nucleolar RNA, C/D box 49A 17 snoRNA RNU49|U49|U49A RNA, U49 small nuclear 1 0.0001369 0 1 1 +26801 SNORD48 small nucleolar RNA, C/D box 48 6 snoRNA RNU48|U48 RNA, U48 small nuclear 0 0 1 +26802 SNORD47 small nucleolar RNA, C/D box 47 1 snoRNA RNU47|U47 RNA, U47 small nuclear 0 0 1 +26804 SNORD45B small nucleolar RNA, C/D box 45B 1 snoRNA RNU45B|U45b RNA, U45B small nuclear 0 0 1 +26805 SNORD45A small nucleolar RNA, C/D box 45A 1 snoRNA RNU45A|U45a RNA, U45A small nuclear 0 0 1 +26806 SNORD44 small nucleolar RNA, C/D box 44 1 snoRNA RNU44|U44 RNA, U44 small nuclear 0 0 1 +26807 SNORD43 small nucleolar RNA, C/D box 43 22 snoRNA RNU43|U43 RNA, U43 small nuclear|U43 small nuclear RNA|U43 small nucleolar RNA|U43 snoRNA 0 0 1 +26808 SNORD42B small nucleolar RNA, C/D box 42B 17 snoRNA RNU42B|U42B RNA, U42B small nucleolar|U42B small nucleolar RNA|U42B snoRNA 1 0.0001369 0 1 1 +26809 SNORD42A small nucleolar RNA, C/D box 42A 17 snoRNA RNU42A|U42|U42A RNA, U42A small nuclear|U42 small nuclear RNA|U42A snoRNA 0 0 1 +26810 SNORD41 small nucleolar RNA, C/D box 41 19 snoRNA RNU41|U41 RNA, U41 small nuclear 0 0 1 +26811 SNORD55 small nucleolar RNA, C/D box 55 1 snoRNA RNU39|RNU55|SNORD39|U39|U55 RNA, U39 small nucleolar|RNA, U55 small nuclear|U39 small nucleolar RNA|U39 snoRNA|small nucleolar RNA, C/D box 39 0 0 1 +26812 SNORD37 small nucleolar RNA, C/D box 37 19 snoRNA RNU37|U37 RNA, U37 small nucleolar 1 0.0001369 0 1 1 +26813 SNORD36C small nucleolar RNA, C/D box 36C 9 snoRNA RNU36C|U36c RNA, U36C small nucleolar|U36c small nucleolar RNA|U36c snoRNA 0 0 0 1 1 +26814 SNORD36B small nucleolar RNA, C/D box 36B 9 snoRNA RNU36B|U36b RNA, U36B small nucleolar|U36b small nucleolar RNA|U36b snoRNA 0 0 1 +26815 SNORD36A small nucleolar RNA, C/D box 36A 9 snoRNA RNU36A|U36a RNA, U36A small nucleolar|U36a small nucleolar RNA|U36a snoRNA 0 0 1 +26816 SNORD35A small nucleolar RNA, C/D box 35A 19 snoRNA RNU35|RNU35A|U35 RNA, U35 small nucleolar|U35 small nucleolar RNA|U35 snoRNA 0 0 1 +26817 SNORD34 small nucleolar RNA, C/D box 34 19 snoRNA RNU34|U34 RNA, U34 small nucleolar|U34 small nucleolar RNA|U34 snoRNA 0 0 1 +26818 SNORD33 small nucleolar RNA, C/D box 33 19 snoRNA RNU33|U33 RNA, U33 small nucleolar|U33 small nucleolar RNA|U33 snoRNA 0 0 0 1 1 +26819 SNORD32A small nucleolar RNA, C/D box 32A 19 snoRNA RNU32|U32|U32A RNA, U32 small nucleolar|U32 small nucleolar RNA|U32 snoRNA 2 0.0002737 0 1 1 +26820 SNORD24 small nucleolar RNA, C/D box 24 9 snoRNA RNU24|U24 RNA, U24 small nucleolar|U24 small nucleolar RNA|U24 snoRNA 1 0.0001369 0 1 1 +26821 SNORA74A small nucleolar RNA, H/ACA box 74A 5 snoRNA RNU19|U19 RNA, U19 small nucleolar 0.3387 0 1 +26823 RNU12-2P RNA, U12 small nuclear 2, pseudogene X pseudo RNU12|RNU12P|U12 RNA, U12 small nuclear pseudogene 0.5162 0 1 +26824 RNU11 RNA, U11 small nuclear 1 snRNA RNU11-1|U11 - 3 0.0004106 0.389 1 1 +26829 RNU5E-1 RNA, U5E small nuclear 1 1 snRNA RNU5E|U5E - 0 0 1 +26843 RNU3P3 RNA, U3 small nucleolar pseudogene 3 14 pseudo U3|U3.5|u3.7 - 1 0.0001369 1 0 +26851 SNORD3B-1 small nucleolar RNA, C/D box 3B-1 17 snoRNA RNU3A1|U3a|U3b1|U3b2 RNA, U3A1 small nucleolar, RNA, U3A1 small nucleolar 6 0.0008212 1 0 +26855 RNU2-2P RNA, U2 small nuclear 2, pseudogene 11 pseudo RNU2-2|RNU2B|U2 RNA, U2B small nuclear 4 0.0005475 1 0 +26863 RNVU1-18 RNA, variant U1 small nuclear 18 1 snRNA RNU1-25|RNU1-25P|RNU1-5|RNU1P1|RNU1P9|U1.15|U1P101|U1P15|vU1.18 RNA, U1 small nuclear 25, pseudogene|RNA, U1 small nuclear 5|RNA, U1 small nuclear pseudogene 1|RNA, U1 small nuclear pseudogene 9 0 0 1 0 +26870 RNU1-2 RNA, U1 small nuclear 2 1 snRNA RNU1C1|RNU1C2|U1C1|U1C21 RNA, U1C1 small nuclear|RNA, U1C2 small nuclear 1 0.0001369 1 0 +26872 STEAP1 STEAP family member 1 7 protein-coding PRSS24|STEAP metalloreductase STEAP1|STEAP1 metalloreductase|six transmembrane epithelial antigen of the prostate 1|six-transmembrane epithelial antigen of prostate 1 26 0.003559 6.962 1 1 +26873 OPLAH 5-oxoprolinase (ATP-hydrolysing) 8 protein-coding 5-Opase|OPLA|OPLAHD 5-oxoprolinase|5-oxo-L-prolinase|pyroglutamase 97 0.01328 8.394 1 1 +26952 SMR3A submaxillary gland androgen regulated protein 3A 4 protein-coding P-B1|PBI|PRL5|PROL5 submaxillary gland androgen-regulated protein 3A|proline rich 5 (salivary)|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 30 0.004106 0.169 1 1 +26953 RANBP6 RAN binding protein 6 9 protein-coding - ran-binding protein 6|Ran-GTP binding protein 77 0.01054 9.119 1 1 +26958 COPG2 coatomer protein complex subunit gamma 2 7 protein-coding 2-COP|gamma-2-COP coatomer subunit gamma-2|coat protein, nonclathrin, gamma-2-cop|gamma-2-coat protein|testicular secretory protein Li 12 13 0.001779 8.75 1 1 +26959 HBP1 HMG-box transcription factor 1 7 protein-coding - HMG box-containing protein 1|high mobility group box transcription factor 1 37 0.005064 10.63 1 1 +26960 NBEA neurobeachin 13 protein-coding BCL8B|LYST2 neurobeachin|lysosomal-trafficking regulator 2 247 0.03381 7.155 1 1 +26973 CHORDC1 cysteine and histidine rich domain containing 1 11 protein-coding CHP1 cysteine and histidine-rich domain-containing protein 1|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|morgana|protein morgana 29 0.003969 8.865 1 1 +26974 ZNF285 zinc finger protein 285 19 protein-coding ZNF285A zinc finger protein 285|zinc finger protein 285A 78 0.01068 5.364 1 1 +26984 SEC22A SEC22 homolog A, vesicle trafficking protein 3 protein-coding SEC22L2 vesicle-trafficking protein SEC22a|SEC22 vesicle trafficking protein homolog A|SEC22 vesicle trafficking protein-like 2|sec22 homolog 27 0.003696 8.398 1 1 +26985 AP3M1 adaptor related protein complex 3 mu 1 subunit 10 protein-coding - AP-3 complex subunit mu-1|AP-3 adapter complex mu3A subunit|adapter-related protein complex 3 mu-1 subunit|clathrin adaptor complex AP3, mu-3A subunit|mu-adaptin 3A|mu3A-adaptin 26 0.003559 10.23 1 1 +26986 PABPC1 poly(A) binding protein cytoplasmic 1 8 protein-coding PAB1|PABP|PABP1|PABPC2|PABPL1 polyadenylate-binding protein 1|poly(A) binding protein, cytoplasmic 2 57 0.007802 14.59 1 1 +26993 AKAP8L A-kinase anchoring protein 8 like 19 protein-coding HA95|HAP95|NAKAP|NAKAP95 A-kinase anchor protein 8-like|A kinase (PRKA) 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 AKAP95|testis tissue sperm-binding protein Li 90mP 41 0.005612 9.919 1 1 +26994 RNF11 ring finger protein 11 1 protein-coding CGI-123|SID1669 RING finger protein 11 10 0.001369 10.99 1 1 +26995 TRUB2 TruB pseudouridine synthase family member 2 9 protein-coding CLONE24922 probable tRNA pseudouridine synthase 2|TruB pseudouridine (psi) synthase family member 2|TruB pseudouridine (psi) synthase homolog 2 20 0.002737 9.534 1 1 +26996 GPR160 G protein-coupled receptor 160 3 protein-coding GPCR1|GPCR150 probable G-protein coupled receptor 160|G-protein coupled receptor GPCR1|hGPCR1|putative G protein-coupled receptor 26 0.003559 8.031 1 1 +26998 FETUB fetuin B 3 protein-coding 16G2|Gugu|IRL685 fetuin-B|fetuin-like protein IRL685 46 0.006296 1.516 1 1 +26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 5 protein-coding PIR121 cytoplasmic FMR1-interacting protein 2|p53-inducible protein 121 94 0.01287 9.712 1 1 +27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 7 protein-coding MPHOSPH11|MPP11|ZRF1|ZUO1 dnaJ homolog subfamily C member 2|DnaJ (Hsp40) homolog, subfamily C, member 2|M-phase phosphoprotein 11|zuotin-related factor 1 41 0.005612 9.41 1 1 +27004 TCL6 T-cell leukemia/lymphoma 6 (non-protein coding) 14 ncRNA TNG1|TNG2 TCL1-neighboring gene 1|TCL1-neighboring gene 2 51 0.006981 1.661 1 1 +27005 USP21 ubiquitin specific peptidase 21 1 protein-coding USP16|USP23 ubiquitin carboxyl-terminal hydrolase 21|NEDD8-specific protease|deubiquitinating enzyme 21|ubiquitin specific protease 21|ubiquitin thioesterase 21|ubiquitin thiolesterase 21|ubiquitin-specific processing protease 21|ubiquitin-specific protease 16 56 0.007665 9.034 1 1 +27006 FGF22 fibroblast growth factor 22 19 protein-coding - fibroblast growth factor 22|FGF-22 12 0.001642 0.4549 1 1 +27010 TPK1 thiamin pyrophosphokinase 1 7 protein-coding HTPK1|PP20|THMD5 thiamin pyrophosphokinase 1|placental protein 20|thiamine diphosphokinase|thiamine kinase 44 0.006022 6.224 1 1 +27012 KCNV1 potassium voltage-gated channel modifier subfamily V member 1 8 protein-coding HNKA|KCNB3|KV2.3|KV8.1 potassium voltage-gated channel subfamily V member 1|neuronal potassium channel alpha subunit HNKA|potassium channel Kv8.1|potassium channel, subfamily V, member 1|potassium channel, voltage gated modifier subfamily V, member 1|voltage-gated potassium channel subunit Kv8.1 87 0.01191 1.509 1 1 +27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 2 protein-coding C2orf24|CGI-57 protein CNPPD1|cyclin Pas1/PHO80 domain-containing protein 1 22 0.003011 10.77 1 1 +27018 BEX3 brain expressed X-linked 3 X protein-coding Bex|DXS6984E|HGR74|NADE|NGFRAP1 protein BEX3|brain-expressed X-linked protein 3|nerve growth factor receptor (TNFRSF16) associated protein 1|ovarian granulosa cell 13.0 kDa protein HGR74|p75NTR-associated cell death executor 14 0.001916 10.8 1 1 +27019 DNAI1 dynein axonemal intermediate chain 1 9 protein-coding CILD1|DIC1|ICS1|PCD dynein intermediate chain 1, axonemal|dynein, axonemal, intermediate polypeptide 1|immotile cilia syndrome 1|testis tissue sperm-binding protein Li 87P 49 0.006707 2.09 1 1 +27020 NPTN neuroplastin 15 protein-coding GP55|GP65|SDFR1|SDR1|np55|np65 neuroplastin|SDR-1|stromal cell derived factor receptor 1|stromal cell-derived receptor 1 24 0.003285 11.1 1 1 +27022 FOXD3 forkhead box D3 1 protein-coding AIS1|Genesis|HFH2|VAMAS2 forkhead box protein D3|HNF3/FH transcription factor genesis 19 0.002601 2.215 1 1 +27023 FOXB1 forkhead box B1 15 protein-coding FKH5|HFKH-5 forkhead box protein B1|transcription factor FKH-5 14 0.001916 0.4787 1 1 +27030 MLH3 mutL homolog 3 14 protein-coding HNPCC7 DNA mismatch repair protein Mlh3 85 0.01163 8.624 1 1 +27031 NPHP3 nephrocystin 3 3 protein-coding CFAP31|MKS7|NPH3|RHPD|RHPD1|SLSN3 nephrocystin-3|Meckel syndrome, type 7|cilia and flagella associated protein 31|nephronophthisis 3 (adolescent) 89 0.01218 8.201 1 1 +27032 ATP2C1 ATPase secretory pathway Ca2+ transporting 1 3 protein-coding ATP2C1A|BCPM|HHD|PMR1|SPCA1|hSPCA1 calcium-transporting ATPase type 2C member 1|ATP-dependent Ca(2+) pump PMR1|ATPase 2C1|ATPase, Ca(2+)-sequestering|ATPase, Ca++ transporting, type 2C, member 1|HUSSY-28|secretory pathway Ca2+/Mn2+ ATPase 1 74 0.01013 11.35 1 1 +27033 ZBTB32 zinc finger and BTB domain containing 32 19 protein-coding FAXF|FAZF|Rog|TZFP|ZNF538 zinc finger and BTB domain-containing protein 32|FANCC-interacting protein|fanconi anemia zinc finger protein|repressor of GATA|testis zinc finger protein|zinc finger protein 538 29 0.003969 2.921 1 1 +27034 ACAD8 acyl-CoA dehydrogenase family member 8 11 protein-coding ACAD-8|ARC42 isobutyryl-CoA dehydrogenase, mitochondrial|activator-recruited cofactor 42 kDa component|acyl-Coenzyme A dehydrogenase family, member 8 32 0.00438 9.036 1 1 +27035 NOX1 NADPH oxidase 1 X protein-coding GP91-2|MOX1|NOH-1|NOH1 NADPH oxidase 1|NADH/NADPH mitogenic oxidase subunit P65-MOX|NADPH oxidase homolog-1|mitogenic oxidase (pyridine nucleotide-dependent superoxide-generating)|mitogenic oxidase 1 47 0.006433 2.198 1 1 +27036 SIGLEC7 sialic acid binding Ig like lectin 7 19 protein-coding AIRM1|CD328|CDw328|D-siglec|QA79|SIGLEC-7|SIGLEC19P|SIGLECP2|p75|p75/AIRM1 sialic acid-binding Ig-like lectin 7|AIRM-1|QA79 membrane protein|adhesion inhibitory receptor molecule 1, siglec-7|sialic acid binding immunoglobulin-like lectin 7 50 0.006844 4.997 1 1 +27037 TRMT2A tRNA methyltransferase 2 homolog A 22 protein-coding HTF9C tRNA (uracil-5-)-methyltransferase homolog A|TRM2 tRNA methyltransferase 2 homolog A|hpaII tiny fragments locus 9c protein 40 0.005475 9.489 1 1 +27039 PKD2L2 polycystin 2 like 2, transient receptor potential cation channel 5 protein-coding TRPP5 polycystic kidney disease 2-like 2 protein|polycystin-2L2|polycystin-L2|transient receptor potential cation channel subfamily P member 5 52 0.007117 0.6531 1 1 +27040 LAT linker for activation of T-cells 16 protein-coding LAT1|pp36 linker for activation of T-cells family member 1|36 kDa phospho-tyrosine adapter protein|36 kDa phospho-tyrosine adaptor protein|linker for activation of T cells, transmembrane adaptor|p36-38 24 0.003285 6.751 1 1 +27042 DIEXF digestive organ expansion factor homolog (zebrafish) 1 protein-coding C1orf107|DEF|DJ434O14.5|UTP25 digestive organ expansion factor homolog|digestive-organ expansion factor homolog 52 0.007117 9.264 1 1 +27043 PELP1 proline, glutamate and leucine rich protein 1 17 protein-coding MNAR|P160 proline-, glutamic acid- and leucine-rich protein 1|modulator of non-genomic activity of estrogen receptor|proline and glutamic acid rich nuclear protein|transcription factor HMX3 68 0.009307 10.66 1 1 +27044 SND1 staphylococcal nuclease and tudor domain containing 1 7 protein-coding TDRD11|Tudor-SN|p100 staphylococcal nuclease domain-containing protein 1|EBNA2 coactivator p100|testis tissue sperm-binding protein Li 82P|tudor domain-containing protein 11 85 0.01163 12.21 1 1 +27063 ANKRD1 ankyrin repeat domain 1 10 protein-coding ALRP|C-193|CARP|CVARP|MCARP|bA320F15.2 ankyrin repeat domain-containing protein 1|ankyrin repeat domain 1 (cardiac muscle)|cardiac ankyrin repeat protein|cytokine-inducible gene C-193 protein|cytokine-inducible nuclear protein|liver ankyrin repeat domain 1 28 0.003832 2.721 1 1 +27065 NSG1 neuron specific gene family member 1 4 protein-coding D4S234|D4S234E|NEEP21|P21 neuron-specific protein family member 1|brain neuron cytoplasmic protein 1|carboxyterminally EE-tagged neuron-enriched endosomal 21 kDa protein 15 0.002053 6.165 1 1 +27067 STAU2 staufen double-stranded RNA binding protein 2 8 protein-coding 39K2|39K3 double-stranded RNA-binding protein Staufen homolog 2|staufen homolog 2|staufen, RNA binding protein, homolog 2 47 0.006433 9.595 1 1 +27068 PPA2 pyrophosphatase (inorganic) 2 4 protein-coding HSPC124|SID6-306 inorganic pyrophosphatase 2, mitochondrial|PPase 2|pyrophosphatase SID6-306|pyrophosphate phospho-hydrolase 2 14 0.001916 9.867 1 1 +27069 GHITM growth hormone inducible transmembrane protein 10 protein-coding DERP2|HSPC282|MICS1|My021|PTD010|TMBIM5 growth hormone-inducible transmembrane protein|dermal papilla-derived protein 2|mitochondrial morphology and cristae structure 1|transmembrane BAX inhibitor motif containing 5|transmembrane BAX inhibitor motif-containing protein 5 25 0.003422 11.92 1 1 +27071 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 1 4 protein-coding BAM32 dual adapter for phosphotyrosine and 3-phosphotyrosine and 3-phosphoinositide|B-cell adapter molecule of 32 kDa|b lymphocyte adapter protein Bam32|hDAPP1 19 0.002601 6.531 1 1 +27072 VPS41 VPS41, HOPS complex subunit 7 protein-coding HVPS41|HVSP41|hVps41p vacuolar protein sorting-associated protein 41 homolog|S53|vacuolar assembly protein 41|vacuolar protein sorting 41 homolog 65 0.008897 10.16 1 1 +27074 LAMP3 lysosomal associated membrane protein 3 3 protein-coding CD208|DC LAMP|DC-LAMP|DCLAMP|LAMP|LAMP-3|TSC403 lysosome-associated membrane glycoprotein 3|DC-lysosome-associated membrane glycoprotein 37 0.005064 7.317 1 1 +27075 TSPAN13 tetraspanin 13 7 protein-coding NET-6|NET6|TM4SF13 tetraspanin-13|tetraspan NET-6|transmembrane 4 superfamily member 13|transmembrane 4 superfamily member tetraspan NET-6|tspan-13 10 0.001369 10.36 1 1 +27076 LYPD3 LY6/PLAUR domain containing 3 19 protein-coding C4.4A ly6/PLAUR domain-containing protein 3|2310061G07Rik|GPI-anchored metastasis-associated protein C4.4A homolog|GPI-anchored metastasis-associated protein homolog|MIG-C4|matrigel-induced gene C4 protein 29 0.003969 7.332 1 1 +27077 B9D1 B9 domain containing 1 17 protein-coding B9|EPPB9|JBTS27|MKS9|MKSR1 B9 domain-containing protein 1|B9 protein domain 1|MKS1-related protein 1|endothelial precursor protein B9 13 0.001779 7.467 1 1 +27079 RPUSD2 RNA pseudouridylate synthase domain containing 2 15 protein-coding C15orf19|C18B11 RNA pseudouridylate synthase domain-containing protein 2|C18B11 homolog (44.9kD) 29 0.003969 7.752 1 1 +27085 MTBP MDM2 binding protein 8 protein-coding MDM2BP mdm2-binding protein|MDM2 (mouse double minute 2)-binding protein, 104kD|Mdm2, transformed 3T3 cell double minute 2, p53 binding protein binding protein, 104kDa 64 0.00876 6.459 1 1 +27086 FOXP1 forkhead box P1 3 protein-coding 12CC4|HSPC215|MFH|QRF1|hFKH1B forkhead box protein P1|fork head-related protein like B|glutamine-rich factor 1|mac-1-regulated forkhead 74 0.01013 9.985 1 1 +27087 B3GAT1 beta-1,3-glucuronyltransferase 1 11 protein-coding CD57|GLCATP|GLCUATP|HNK1|LEU7|NK-1|NK1 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 1|LEU7 antigen|UDP-GlcUA:glycoprotein beta-1,3-glucuronyltransferase|glcUAT-P|glucuronosyltransferase P 36 0.004927 5.366 1 1 +27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII 5 protein-coding MC3DN4|QCR8|QP-C|QPC|UQCR7 cytochrome b-c1 complex subunit 8|complex III subunit 8|complex III subunit VIII|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|ubiquinol-cytochrome c reductase, complex III subunit VII, 9.5kDa 4 0.0005475 10.97 1 1 +27090 ST6GALNAC4 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 9 protein-coding IV|SIAT3-C|SIAT3C|SIAT7-D|SIAT7D|ST6GALNACIV|ST6GalNAc alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3-N-acetyl-galactosaminide alpha-2,6-sialyltransferase|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|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4|ST6 GalNAc alpha-2,6-sialyltransferase 4|ST6 neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminidealpha-2,6-sialyltransferase 4|ST6GalNAc IV|sialyltransferase 3C|sialyltransferase 7D ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) 14 0.001916 8.495 1 1 +27091 CACNG5 calcium voltage-gated channel auxiliary subunit gamma 5 17 protein-coding - voltage-dependent calcium channel gamma-5 subunit|TARP gamma-5|calcium channel, voltage-dependent, gamma subunit 5|neuronal voltage-gated calcium channel gamma-5 subunit|transmembrane AMPAR regulatory protein gamma-5 50 0.006844 0.3253 1 1 +27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 17 protein-coding - voltage-dependent calcium channel gamma-4 subunit|TARP gamma-4|calcium channel, voltage-dependent, gamma subunit 4|neuronal voltage-gated calcium channel gamma-4 subunit|transmembrane AMPAR regulatory protein gamma-4 32 0.00438 6.469 1 1 +27093 KCNMB3P1 potassium calcium-activated channel subfamily M regulatory beta subunit 3 pseudogene 1 22 pseudo KCNMB2L|KCNMB3L|KCNMB3L1|KCNMBLP potassium channel subfamily M regulatory beta subunit 3 pseudogene 1|potassium large conductance calcium-activated channel, subfamily M, beta member 3 pseudogene 1 1 0.0001369 1 0 +27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 3 protein-coding BKBETA3|HBETA3|K(VCA)BETA-3|KCNMB2|KCNMBL|SLO-BETA-3|SLOBETA3 calcium-activated potassium channel subunit beta-3|BK channel beta subunit 3|BK channel subunit beta-3|MaxiK channel beta-subunit 3|big potassium channel beta subunit 3|calcium-activated potassium channel regulatory subunit|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|potassium channel subfamily M regulatory beta subunit 3|potassium large conductance calcium-activated channel, subfamily M beta member 3 22 0.003011 5.727 1 1 +27095 TRAPPC3 trafficking protein particle complex 3 1 protein-coding BET3 trafficking protein particle complex subunit 3 8 0.001095 10.18 1 1 +27097 TAF5L TATA-box binding protein associated factor 5 like 1 protein-coding PAF65B TAF5-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 5L|PAF65-beta|PCAF-associated factor 65 beta|TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa 37 0.005064 9.269 1 1 +27098 CLUL1 clusterin like 1 18 protein-coding RA337M clusterin-like protein 1|clusterin-like 1 (retinal)|retinal clusterin-like protein|retinal-specific clusterin-like protein 37 0.005064 3.584 1 1 +27099 SND1-IT1 SND1 intronic transcript 1 7 ncRNA C7orf54|NAG8|NSG-X SND1 intronic transcript 1 (non-protein coding)|brain and nasopharyngeal carcinoma susceptibility|nasopharyngeal carcinoma associated gene 8 1.687 0 1 +27101 CACYBP calcyclin binding protein 1 protein-coding GIG5|PNAS-107|S100A6BP|SIP calcyclin-binding protein|S100A6-binding protein|Siah-interacting protein (SIP)|growth-inhibiting gene 5 protein|hCacyBP 17 0.002327 10.52 1 1 +27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 7 protein-coding HCR|HRI eukaryotic translation initiation factor 2-alpha kinase 1|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 repressor|hemin-sensitive initiation factor 2-alpha kinase 54 0.007391 12.04 1 1 +27106 ARRDC2 arrestin domain containing 2 19 protein-coding CLONE24945|PP2703 arrestin domain-containing protein 2 22 0.003011 9.5 1 1 +27107 ZBTB11 zinc finger and BTB domain containing 11 3 protein-coding ZNF-U69274|ZNF913 zinc finger and BTB domain-containing protein 11 79 0.01081 9.195 1 1 +27109 ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) 14 protein-coding ATPW|FB|HSU79253 ATP synthase subunit s, mitochondrial|ATP synthase coupling factor B, mitochondrial|ATP synthase coupling factor B-like 1|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit s (factor B)|ATP synthase-coupling factor B|mitochondrial ATP synthase regulatory component factor B 15 0.002053 6.91 1 1 +27111 SDCBP2 syndecan binding protein 2 20 protein-coding SITAC|SITAC18|ST-2 syntenin-2|syndecan binding protein (syntenin) 2 23 0.003148 7.538 1 1 +27112 FAM155B family with sequence similarity 155 member B X protein-coding CXorf63|TED|TMEM28|bB57D9.1 transmembrane protein FAM155B|bB57D9.1 (TED protein)|transmembrane protein 28 36 0.004927 5.646 1 1 +27113 BBC3 BCL2 binding component 3 19 protein-coding JFY-1|JFY1|PUMA bcl-2-binding component 3|p53 up-regulated modulator of apoptosis 12 0.001642 7.695 1 1 +27115 PDE7B phosphodiesterase 7B 6 protein-coding bA472E5.1 cAMP-specific 3',5'-cyclic phosphodiesterase 7B|high-affinity cAMP-specific 3',5'-cyclic phosphodiesterase|rolipram-insensitive phosphodiesterase type 7 32 0.00438 6.327 1 1 +27120 DKKL1 dickkopf like acrosomal protein 1 19 protein-coding CT34|SGY|SGY-1|SGY1 dickkopf-like protein 1|cancer/testis antigen 34|dickkopf-like 1|protein soggy-1|soggy|soggy-1|testicular secretory protein Li 15 22 0.003011 1.881 1 1 +27121 DKK4 dickkopf WNT signaling pathway inhibitor 4 8 protein-coding DKK-4 dickkopf-related protein 4|dickkopf-4|hDkk-4 18 0.002464 1.117 1 1 +27122 DKK3 dickkopf WNT signaling pathway inhibitor 3 11 protein-coding REIC|RIG dickkopf-related protein 3|RIG-like 5-6|RIG-like 7-1|dickkopf 3 homolog|dickkopf homolog 3|dickkopf-3|dkk-3|hDkk-3|regulated in glioma 29 0.003969 10.21 1 1 +27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 4 protein-coding DKK-2 dickkopf-related protein 2|dickkopf 2 homolog|dickkopf homolog 2|dickkopf-2|hDkk-2 51 0.006981 4.725 1 1 +27124 INPP5J inositol polyphosphate-5-phosphatase J 22 protein-coding INPP5|PIB5PA|PIPP phosphatidylinositol 4,5-bisphosphate 5-phosphatase A 44 0.006022 7.036 1 1 +27125 AFF4 AF4/FMR2 family member 4 5 protein-coding AF5Q31|CHOPS|MCEF AF4/FMR2 family member 4|ALL1-fused gene from chromosome 5q31 protein|major CDK9 elongation factor-associated protein 82 0.01122 11.16 1 1 +27127 SMC1B structural maintenance of chromosomes 1B 22 protein-coding SMC1BETA|SMC1L2 structural maintenance of chromosomes protein 1B|SMC protein 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 82 0.01122 2.646 1 1 +27128 CYTH4 cytohesin 4 22 protein-coding CYT4|DJ63G5.1|PSCD4|cytohesin-4 cytohesin-4|PH, SEC7 and coiled-coil domain-containing protein 4|pleckstrin homology, Sec7 and coiled/coil domains 4 36 0.004927 7.85 1 1 +27129 HSPB7 heat shock protein family B (small) member 7 1 protein-coding cvHSP heat shock protein beta-7|cardiovascular heat shock protein|heat shock 27kD protein family, member 7 (cardiovascular)|heat shock 27kDa protein family, member 7 (cardiovascular) 19 0.002601 5.861 1 1 +27130 INVS inversin 9 protein-coding INV|NPH2|NPHP2 inversin|inversion of embryo turning homolog|inversion of embryonic turning|nephrocystin-2 63 0.008623 7.77 1 1 +27131 SNX5 sorting nexin 5 20 protein-coding - sorting nexin-5 24 0.003285 11 1 1 +27132 CPNE7 copine 7 16 protein-coding - copine-7|copine VII 37 0.005064 5.264 1 1 +27133 KCNH5 potassium voltage-gated channel subfamily H member 5 14 protein-coding EAG2|H-EAG2|Kv10.2|hEAG2 potassium voltage-gated channel subfamily H member 5|ether-a-go-go-related potassium channel 2|potassium channel, voltage gated eag related subfamily H, member 5|potassium voltage-gated channel, subfamily H (eag-related), member 5|voltage-gated potassium channel subunit Kv10.2 157 0.02149 0.8976 1 1 +27134 TJP3 tight junction protein 3 19 protein-coding ZO-3|ZO3 tight junction protein ZO-3|tight junction protein 3 (zona occludens 3)|zona occludens protein 3|zonula occludens protein 3 62 0.008486 6.986 1 1 +27136 MORC1 MORC family CW-type zinc finger 1 3 protein-coding CT33|MORC|ZCW6 MORC family CW-type zinc finger protein 1|cancer/testis antigen 33|microrchidia, mouse, homolog of 133 0.0182 0.4975 1 1 +27141 CIDEB cell death-inducing DFFA-like effector b 14 protein-coding - cell death activator CIDE-B 16 0.00219 8.465 1 1 +27143 PALD1 phosphatase domain containing, paladin 1 10 protein-coding KIAA1274|PALD paladin|palladin 73 0.009992 8.297 1 1 +27145 FILIP1 filamin A interacting protein 1 6 protein-coding FILIP filamin-A-interacting protein 1 127 0.01738 5.945 1 1 +27146 FAM184B family with sequence similarity 184 member B 4 protein-coding - protein FAM184B 30 0.004106 2.06 1 1 +27147 DENND2A DENN domain containing 2A 7 protein-coding FAM31D|KIAA1277 DENN domain-containing protein 2A|DENN/MADD domain containing 2A 90 0.01232 7.055 1 1 +27148 STK36 serine/threonine kinase 36 2 protein-coding FU serine/threonine-protein kinase 36|fused homolog|testicular tissue protein Li 188 69 0.009444 8.781 1 1 +27151 CPAMD8 C3 and PZP like, alpha-2-macroglobulin domain containing 8 19 protein-coding K-CAP|VIP C3 and PZP-like alpha-2-macroglobulin domain-containing protein 8|alpha-2 macroglobulin family protein VIP 178 0.02436 6.617 1 1 +27152 INTU inturned planar cell polarity protein 4 protein-coding INT|PDZD6|PDZK6 protein inturned|PDZ domain containing 6|PDZ domain-containing protein 6|homolog of inturned|inturned planar cell polarity effector homolog 65 0.008897 6.315 1 1 +27153 ZNF777 zinc finger protein 777 7 protein-coding - zinc finger protein 777 64 0.00876 8.983 1 1 +27154 BRPF3 bromodomain and PHD finger containing 3 6 protein-coding - bromodomain and PHD finger-containing protein 3 78 0.01068 10.05 1 1 +27156 RSPH14 radial spoke head 14 homolog 22 protein-coding RTDR1 radial spoke head 14 homolog|rhabdoid tumor deletion region gene 1|rhabdoid tumor deletion region protein 1 33 0.004517 2.58 1 1 +27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 9 protein-coding NR1|bA350O14.9 NADPH-dependent diflavin oxidoreductase 1|NADPH-dependent FMN and FAD-containing oxidoreductase 33 0.004517 9.497 1 1 +27159 CHIA chitinase, acidic 1 protein-coding AMCASE|CHIT2|TSA1902 acidic mammalian chitinase|lung-specific protein TSA1902 51 0.006981 1.089 1 1 +27160 INGX inhibitor of growth family, X-linked (pseudogene) X pseudo ING1-like|ING2 ING1-like tumor suppressor protein|inhibitor of growth family, member 2 0.6816 0 1 +27161 AGO2 argonaute 2, RISC catalytic component 8 protein-coding EIF2C2|Q10 protein argonaute-2|CTA-204B4.6|PAZ Piwi domain protein|PPD|argonaute 2|argonaute RISC catalytic component 2|argonaute2|eIF-2C 2|eIF2C 2|eukaryotic translation initiation factor 2C, 2|hAgo2|protein slicer 75 0.01027 7.86 1 1 +27163 NAAA N-acylethanolamine acid amidase 4 protein-coding ASAHL|PLT N-acylethanolamine-hydrolyzing acid amidase|ASAH-like protein|acid ceramidase-like protein 22 0.003011 8.505 1 1 +27164 SALL3 spalt like transcription factor 3 18 protein-coding ZNF796 sal-like protein 3|C2H2 zinc finger protein SALL3|hSALL3|spalt-like zinc finger protein|zinc finger protein 796 135 0.01848 1.681 1 1 +27165 GLS2 glutaminase 2 12 protein-coding GA|GLS|LGA|hLGA glutaminase liver isoform, mitochondrial|L-glutamine amidohydrolase|breast cell glutaminase|glutaminase 2 (liver, mitochondrial)|glutaminase I|phosphate-activated glutaminase|phosphate-dependent glutaminase 28 0.003832 6.1 1 1 +27166 PRELID1 PRELI domain containing 1 5 protein-coding CGI-106|PRELI|PX19|SBBI12 PRELI domain-containing protein 1, mitochondrial|25 kDa protein of relevant evolutionary and lymphoid interest|px19-like protein 10 0.001369 10.91 1 1 +27173 SLC39A1 solute carrier family 39 member 1 1 protein-coding ZIP1|ZIRTL zinc transporter ZIP1|solute carrier family 39 (zinc transporter), member 1|solute carrier family 39 (zinc transporter), member 3|zrt- and Irt-like protein 1 26 0.003559 11.58 1 1 +27175 TUBG2 tubulin gamma 2 17 protein-coding - tubulin gamma-2 chain|gamma-2-tubulin|tubulin gamma 2 chain 27 0.003696 8.302 1 1 +27177 IL36B interleukin 36, beta 2 protein-coding FIL1|FIL1-(ETA)|FIL1H|FILI-(ETA)|IL-1F8|IL-1H2|IL1-ETA|IL1F8|IL1H2 interleukin-36 beta|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 family member 8|interleukin-1 homolog 2 25 0.003422 0.5759 1 1 +27178 IL37 interleukin 37 2 protein-coding FIL1|FIL1(ZETA)|FIL1Z|IL-1F7|IL-1H|IL-1H4|IL-1RP1|IL-37|IL1F7|IL1H4|IL1RP1 interleukin-37|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 25 0.003422 0.847 1 1 +27179 IL36A interleukin 36, alpha 2 protein-coding FIL1|FIL1(EPSILON)|FIL1E|IL-1F6|IL1(EPSILON)|IL1F6 interleukin-36 alpha|FIL1 epsilon|IL-1 epsilon|IL-1F6 (FIL-1-epsilon)|interleukin 1 family, member 6 (epsilon)|interleukin-1 epsilon|interleukin-1 family member 6 18 0.002464 0.452 1 1 +27180 SIGLEC9 sialic acid binding Ig like lectin 9 19 protein-coding CD329|CDw329|FOAP-9|OBBP-LIKE|siglec-9 sialic acid-binding Ig-like lectin 9|protein FOAP-9 67 0.009171 5.152 1 1 +27181 SIGLEC8 sialic acid binding Ig like lectin 8 19 protein-coding SAF2|SIGLEC-8|SIGLEC8L sialic acid-binding Ig-like lectin 8|CDw329|SAF-2|sialoadhesin family member 2 87 0.01191 4.74 1 1 +27183 VPS4A vacuolar protein sorting 4 homolog A 16 protein-coding SKD1|SKD1A|SKD2|VPS4|VPS4-1 vacuolar protein sorting-associated protein 4A|SKD1-homolog|hVPS4|vacuolar protein sorting factor 4A|vacuolar sorting protein 4 25 0.003422 10.96 1 1 +27184 DISC2 disrupted in schizophrenia 2 (non-protein coding) 1 ncRNA DISC1-AS1|DISC1OS|NCRNA00015 DISC1 antisense RNA 1|DISC1 opposite strand 0.3269 0 1 +27185 DISC1 disrupted in schizophrenia 1 1 protein-coding C1orf136|SCZD9 disrupted in schizophrenia 1 protein 69 0.009444 7.134 1 1 +27189 IL17C interleukin 17C 16 protein-coding CX2|IL-17C interleukin-17C|cytokine CX2 16 0.00219 1.145 1 1 +27190 IL17B interleukin 17B 5 protein-coding IL-17B|IL-20|NIRF|ZCYTO7 interleukin-17B|cytokine-like protein ZCYTO7|interleukin 20|interleukin-17 beta|neuronal interleukin-17 related factor 16 0.00219 1.594 1 1 +27197 GPR82 G protein-coupled receptor 82 X protein-coding - probable G-protein coupled receptor 82 18 0.002464 2.952 1 1 +27198 HCAR1 hydroxycarboxylic acid receptor 1 12 protein-coding FKSG80|GPR104|GPR81|HCA1|LACR1|TA-GPCR|TAGPCR hydroxycarboxylic acid receptor 1|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 22 0.003011 4.401 1 1 +27199 OXGR1 oxoglutarate receptor 1 13 protein-coding GPR80|GPR99|P2RY15|P2Y15|aKGR 2-oxoglutarate receptor 1|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 (alpha-ketoglutarate) receptor 1|seven transmembrane helix receptor 33 0.004517 2.547 1 1 +27201 GPR78 G protein-coupled receptor 78 4 protein-coding - G-protein coupled receptor 78 48 0.00657 0.6922 1 1 +27202 C5AR2 complement component 5a receptor 2 19 protein-coding C5L2|GPF77|GPR77 C5a anaphylatoxin chemotactic receptor 2|C5a anaphylatoxin chemotactic receptor C5L2|G protein-coupled receptor 77|G protein-coupled receptor C5L2 19 0.002601 3.816 1 1 +27229 TUBGCP4 tubulin gamma complex associated protein 4 15 protein-coding 76P|GCP-4|GCP4|Grip76|MCCRP3 gamma-tubulin complex component 4|gamma tubulin ring complex protein (76p gene)|gamma-ring complex protein 76 kDa 33 0.004517 7.962 1 1 +27230 SERP1 stress associated endoplasmic reticulum protein 1 3 protein-coding RAMP4 stress-associated endoplasmic reticulum protein 1|ribosome associated membrane protein 4|ribosome-attached membrane protein 4 8 0.001095 11.98 1 1 +27231 NMRK2 nicotinamide riboside kinase 2 19 protein-coding ITGB1BP3|MIBP|NRK2 nicotinamide riboside kinase 2|NRK 2|RNK 2|integrin beta-1-binding protein 3|muscle-specific beta 1 integrin binding protein|nicotinic acid riboside kinase 2|nmR-K 2|ribosylnicotinamide kinase 2|ribosylnicotinic acid kinase 2 24 0.003285 0.9713 1 1 +27232 GNMT glycine N-methyltransferase 6 protein-coding HEL-S-182mP glycine N-methyltransferase|epididymis secretory sperm binding protein Li 182mP 13 0.001779 3.589 1 1 +27233 SULT1C4 sulfotransferase family 1C member 4 2 protein-coding SULT1C|SULT1C2 sulfotransferase 1C4|ST1C4|SULT1C#2|sulfotransferase 1C2|sulfotransferase family, cytosolic, 1C, member 2|sulfotransferase family, cytosolic, 1C, member 4|sulfotransferase family, cytosolic, 1C, member C2 25 0.003422 4.6 1 1 +27235 COQ2 coenzyme Q2, polyprenyltransferase 4 protein-coding CL640|COQ10D1|MSA1|PHB:PPT 4-hydroxybenzoate polyprenyltransferase, mitochondrial|4-HB polyprenyltransferase|4-hydroxybenzoate decaprenyltransferase|PHB:polyprenyltransferase|coenzyme Q2 4-hydroxybenzoate polyprenyltransferase|coenzyme Q2 homolog, prenyltransferase|para-hydroxybenzoate-polyprenyltransferase, mitochondrial 9 0.001232 7.814 1 1 +27236 ARFIP1 ADP ribosylation factor interacting protein 1 4 protein-coding HSU52521 arfaptin-1 22 0.003011 9.665 1 1 +27237 ARHGEF16 Rho guanine nucleotide exchange factor 16 1 protein-coding GEF16|NBR rho guanine nucleotide exchange factor 16|Rho guanine exchange factor (GEF) 16|Rho guanine nucleotide exchange factor (GEF) 16|ephexin-4 37 0.005064 8.015 1 1 +27238 GPKOW G-patch domain and KOW motifs X protein-coding GPATC5|GPATCH5|Spp2|T54 G patch domain and KOW motifs-containing protein|protein MOS2 homolog 33 0.004517 9.148 1 1 +27239 GPR162 G protein-coupled receptor 162 12 protein-coding A-2|GRCA probable G-protein coupled receptor 162|gene rich cluster, A|gene-rich cluster gene A protein 51 0.006981 6.093 1 1 +27240 SIT1 signaling threshold regulating transmembrane adaptor 1 9 protein-coding SIT|SIT-R signaling threshold-regulating transmembrane adapter 1|SHP-2 interacting transmembrane adaptor protein|SHP2 interacting transmembrane adaptor|SHP2-interacting transmembrane adapter protein|SHP2-interacting transmembrane adaptor protein|gp30/40|suppression inducing transmembrane adaptor 1|suppression-inducing transmembrane adapter 1 11 0.001506 4.591 1 1 +27241 BBS9 Bardet-Biedl syndrome 9 7 protein-coding B1|C18|D1|PTHB1 protein PTHB1|PTH-responsive osteosarcoma B1 protein|bardet-Biedl syndrome 9 protein|parathyroid hormone-responsive B1 gene protein 96 0.01314 7.995 1 1 +27242 TNFRSF21 TNF receptor superfamily member 21 6 protein-coding BM-018|CD358|DR6 tumor necrosis factor receptor superfamily member 21|TNFR-related death receptor 6|death receptor 6 46 0.006296 10.77 1 1 +27243 CHMP2A charged multivesicular body protein 2A 19 protein-coding BC-2|BC2|CHMP2|VPS2|VPS2A charged multivesicular body protein 2a|VPS2 homolog A|chromatin modifying protein 2A|putative breast adenocarcinoma marker (32kD)|putative breast adenocarcinoma marker BC-2|vacuolar protein sorting-associated protein 2-1|vps2-1 19 0.002601 11.15 1 1 +27244 SESN1 sestrin 1 6 protein-coding PA26|SEST1 sestrin-1|p53 activated gene 26|p53 regulated PA26 nuclear protein 28 0.003832 9.214 1 1 +27245 AHDC1 AT-hook DNA binding motif containing 1 1 protein-coding MRD25 AT-hook DNA-binding motif-containing protein 1 106 0.01451 9.811 1 1 +27246 RNF115 ring finger protein 115 1 protein-coding BCA2|ZNF364 E3 ubiquitin-protein ligase RNF115|rabring 7|zinc finger protein 364 17 0.002327 8.79 1 1 +27247 NFU1 NFU1 iron-sulfur cluster scaffold 2 protein-coding CGI-33|HIRIP|HIRIP5|MMDS1|NIFUC|Nfu|NifU NFU1 iron-sulfur cluster scaffold homolog, mitochondrial|HIRA-interacting protein 5|NifU-like C-terminal domain containing|iron-sulfur cluster scaffold protein 18 0.002464 9.03 1 1 +27248 ERLEC1 endoplasmic reticulum lectin 1 2 protein-coding C2orf30|CIM|CL24936|CL25084|HEL117|XTP3-B|XTP3TPB endoplasmic reticulum lectin 1|ER lectin|XTP3-transactivated gene B protein|XTP3-transactivated protein B|cancer invasion and metastasis-related|epididymis luminal protein 117|erlectin 1 31 0.004243 10.59 1 1 +27249 MMADHC methylmalonic aciduria and homocystinuria, cblD type 2 protein-coding C2orf25|CL25022|cblD methylmalonic aciduria and homocystinuria type D protein, mitochondrial|methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria|protein C2orf25, mitochondrial 13 0.001779 10.61 1 1 +27250 PDCD4 programmed cell death 4 (neoplastic transformation inhibitor) 10 protein-coding H731 programmed cell death protein 4|neoplastic transformation inhibitor protein|nuclear antigen H731|protein 197/15a 32 0.00438 11.11 1 1 +27252 KLHL20 kelch like family member 20 1 protein-coding KHLHX|KLEIP|KLHLX kelch-like protein 20|Kelch motif containing protein|kelch-like ECT2-interacting protein|kelch-like protein X 37 0.005064 8.542 1 1 +27253 PCDH17 protocadherin 17 13 protein-coding PCDH68|PCH68 protocadherin-17|protocadherin 68 194 0.02655 7.569 1 1 +27254 CSDC2 cold shock domain containing C2 22 protein-coding PIPPIN|dJ347H13.2 cold shock domain-containing protein C2|RNA-binding protein pippin|cold shock domain containing C2, RNA binding 7 0.0009581 5.162 1 1 +27255 CNTN6 contactin 6 3 protein-coding NB3 contactin-6|neural adhesion molecule|neural recognition molecule NB-3 160 0.0219 2.116 1 1 +27257 LSM1 LSM1 homolog, mRNA degradation associated 8 protein-coding CASM|YJL124C U6 snRNA-associated Sm-like protein LSm1|LSM1 homolog, U6 small nuclear RNA associated|LSM1 mRNA degradation associated|LSM1, U6 small nuclear RNA associated|LSM1-like protein U6 small nuclear RNA associated|cancer‐associated Sm protein|cancer-associated Sm protein|cancer-associated Sm-like protein|small nuclear ribonuclear CaSm 15 0.002053 9.2 1 1 +27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated 3 protein-coding SMX4|USS2|YLR438C U6 snRNA-associated Sm-like protein LSm3|LSM3 U6 small nuclear RNA and mRNA degradation associated|LSM3 homolog, U6 small nuclear RNA associated 8 0.001095 9.66 1 1 +27283 TINAG tubulointerstitial nephritis antigen 6 protein-coding TIN-AG tubulointerstitial nephritis antigen 71 0.009718 1.435 1 1 +27284 SULT1B1 sulfotransferase family 1B member 1 4 protein-coding ST1B1|ST1B2|SULT1B2 sulfotransferase family cytosolic 1B member 1|sulfotransferase 1B1|sulfotransferase 1B2|sulfotransferase family, cytosolic, 1B, member 1|thyroid hormone sulfotransferase 43 0.005886 2.034 1 1 +27285 TEKT2 tektin 2 1 protein-coding TEKTB1|TEKTIN-T|h-tektin-t tektin-2|tektin 2 (testicular)|tektin-B1|testicular tektin B1-like protein 28 0.003832 3.295 1 1 +27286 SRPX2 sushi repeat containing protein, X-linked 2 X protein-coding BPP|CBPS|PMGX|RESDX|SRPUL sushi repeat-containing protein SRPX2|sushi-repeat protein up-regulated in leukemia|sushi-repeat protein upregulated in leukemia 37 0.005064 7 1 1 +27287 VENTX VENT homeobox 10 protein-coding HPX42B|NA88A|VENTX2 homeobox protein VENTX|VENT homeobox homolog|VENT-like homeobox 2|VENT-like homeobox protein 2|hemopoietic progenitor homeobox protein VENTX2 28 0.003832 3.874 1 1 +27288 RBMXL2 RNA binding motif protein, X-linked like 2 11 protein-coding HNRNPG-T|HNRNPGT|HNRPGT RNA-binding motif protein, X-linked-like-2|heterogeneous nuclear ribonucleoprotein G T|hnRNP G-T|testes-specific heterogenous nuclear ribonucleoprotein G-T|testis-specific heterogeneous nuclear ribonucleoprotein G-T 51 0.006981 0.5826 1 1 +27289 RND1 Rho family GTPase 1 12 protein-coding ARHS|RHO6|RHOS rho-related GTP-binding protein Rho6|ras homolog gene family, member S 22 0.003011 6.877 1 1 +27290 SPINK4 serine peptidase inhibitor, Kazal type 4 9 protein-coding HEL136|PEC-60|PEC60 serine protease inhibitor Kazal-type 4|epididymis luminal protein 136|gastrointestinal peptide|peptide PEC-60 homolog 10 0.001369 1.139 1 1 +27291 R3HCC1L R3H domain and coiled-coil containing 1 like 10 protein-coding C10orf28|GIDRP86|GIDRP88|PSORT coiled-coil domain-containing protein R3HCC1L|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 50 0.006844 8.336 1 1 +27292 DIMT1 DIM1 dimethyladenosine transferase 1 homolog 5 protein-coding DIM1|DIMT1L|HSA9761|HUSSY5 probable dimethyladenosine transferase|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 13 0.001779 8.628 1 1 +27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B 1 protein-coding ASML3B acid sphingomyelinase-like phosphodiesterase 3b|ASM-like phosphodiesterase 3b 20 0.002737 6.735 1 1 +27294 DHDH dihydrodiol dehydrogenase 19 protein-coding 2DD|HUM2DD trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|3-deoxyglucosone reductase|D-xylose 1-dehydrogenase|D-xylose-NADP dehydrogenase|dihydrodiol dehydrogenase (dimeric) 22 0.003011 3.725 1 1 +27295 PDLIM3 PDZ and LIM domain 3 4 protein-coding ALP PDZ and LIM domain protein 3|alpha-actinin-2-associated LIM protein|enigma homolog 26 0.003559 8.631 1 1 +27296 TP53TG5 TP53 target 5 20 protein-coding C20orf10|CLG01 TP53-target gene 5 protein|TP53-inducible gene 5 protein 25 0.003422 0.4007 1 1 +27297 CRCP CGRP receptor component 7 protein-coding CGRP-RCP|CGRPRCP|RCP|RCP9 DNA-directed RNA polymerase III subunit RPC9|CGRP-receptor component protein|RNA polymerase III subunit C9|calcitonin gene-related peptide-receptor component protein 19 0.002601 9.906 1 1 +27299 ADAMDEC1 ADAM like decysin 1 8 protein-coding M12.219 ADAM DEC1|ADAM-like protein decysin-1|a disintegrin and metalloproteinase domain-like protein decysin-1|decysin|disintegrin protease 48 0.00657 5.263 1 1 +27300 ZNF544 zinc finger protein 544 19 protein-coding - zinc finger protein 544 61 0.008349 8.86 1 1 +27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 X protein-coding APE2|APEXL2|XTH2|ZGRF2 DNA-(apurinic or apyrimidinic site) lyase 2|AP endonuclease 2|AP endonuclease XTH2|APEX nuclease (apurinic/apyrimidinic endonuclease) 2|apurinic/apyrimidinic endonuclease-like 2|zinc finger, GRF-type containing 2 36 0.004927 9.449 1 1 +27302 BMP10 bone morphogenetic protein 10 2 protein-coding - bone morphogenetic protein 10 35 0.004791 0.09554 1 1 +27303 RBMS3 RNA binding motif single stranded interacting protein 3 3 protein-coding - RNA-binding motif, single-stranded-interacting protein 3|RNA binding motif, single stranded interacting protein|RNA-binding protein 41 0.005612 4.715 1 1 +27304 MOCS3 molybdenum cofactor synthesis 3 20 protein-coding UBA4 adenylyltransferase and sulfurtransferase MOCS3|MPT synthase sulfurylase|UBA4, ubiquitin-activating enzyme E1 homolog|molybdenum cofactor synthesis protein 3|molybdopterin synthase sulfurylase|ubiquitin-like modifier activating enzyme 4 32 0.00438 7.964 1 1 +27306 HPGDS hematopoietic prostaglandin D synthase 4 protein-coding GSTS|GSTS1|GSTS1-1|PGD2|PGDS hematopoietic prostaglandin D synthase|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 20 0.002737 4.674 1 1 +27309 ZNF330 zinc finger protein 330 4 protein-coding HSA6591|NOA36 zinc finger protein 330|nucleolar autoantigen 36|nucleolar cysteine-rich protein|zinc finger autoantigen 330 32 0.00438 9.106 1 1 +27314 RAB30 RAB30, member RAS oncogene family 11 protein-coding - ras-related protein Rab-30 12 0.001642 6.089 1 1 +27315 PGAP2 post-GPI attachment to proteins 2 11 protein-coding CWH43-N|FRAG1|HPMRS3|MRT17|MRT21 post-GPI attachment to proteins factor 2|FGF receptor activating protein 1|cell wall biogenesis 43 N-terminal homolog|mental retardation, non-syndromic, autosomal recessive, 21 40 0.005475 9.017 1 1 +27316 RBMX RNA binding motif protein, X-linked X protein-coding HNRNPG|HNRPG|MRXS11|RBMXP1|RBMXRT|RNMX|hnRNP-G RNA-binding motif protein, X chromosome|glycoprotein p43|heterogeneous nuclear ribonucleoprotein G|hnRNP G 62 0.008486 11.7 1 1 +27319 BHLHE22 basic helix-loop-helix family member e22 8 protein-coding BHLHB5|Beta3|Beta3a|CAGL85|TNRC20 class E basic helix-loop-helix protein 22|basic helix-loop-helix domain containing, class B, 5|class B basic helix-loop-helix protein 5|trinucleotide repeat containing 20|trinucleotide repeat-containing gene 20 protein 51 0.006981 3.862 1 1 +27320 TNRC18P2 trinucleotide repeat containing 18 pseudogene 2 7 pseudo TNRC18|TNRC18B trinucleotide repeat containing 18B 1 0.0001369 1 0 +27324 TOX3 TOX high mobility group box family member 3 16 protein-coding CAGF9|TNRC9 TOX high mobility group box family member 3|CAG trinucleotide repeat-containing gene F9 protein|trinucleotide repeat-containing gene 9 protein 51 0.006981 5.754 1 1 +27327 TNRC6A trinucleotide repeat containing 6A 16 protein-coding CAGH26|GW1|GW182|TNRC6 trinucleotide repeat-containing gene 6A protein|CAG repeat protein 26|CTD-2540M10.1|EDIE|EMSY interactor protein|GW182 autoantigen|glycine-tryptophan protein of 182 kDa 164 0.02245 10.13 1 1 +27328 PCDH11X protocadherin 11 X-linked X protein-coding PCDH-X|PCDH11|PCDHX|PPP1R119 protocadherin-11 X-linked|protein phosphatase 1, regulatory subunit 119|protocadherin 11X|protocadherin on the X chromosome|protocadherin-S 254 0.03477 1.937 1 1 +27329 ANGPTL3 angiopoietin like 3 1 protein-coding ANG-5|ANGPT5|ANL3|FHBL2 angiopoietin-related protein 3|angiopoietin 5 29 0.003969 1.473 1 1 +27330 RPS6KA6 ribosomal protein S6 kinase A6 X protein-coding PP90RSK4|RSK-4|RSK4|S6K-alpha-6|p90RSK6 ribosomal protein S6 kinase alpha-6|90 kDa ribosomal protein S6 kinase 6|S6K-alpha 6|p90-RSK 6|ribosomal S6 kinase 4|ribosomal protein S6 kinase, 90kDa, polypeptide 6 95 0.013 3.855 1 1 +27332 ZNF638 zinc finger protein 638 2 protein-coding NP220|ZFML|Zfp638 zinc finger protein 638|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 138 0.01889 10.97 1 1 +27333 GOLIM4 golgi integral membrane protein 4 3 protein-coding GIMPC|GOLPH4|GPP130|P138 Golgi integral membrane protein 4|130 kDa golgi-localized phosphoprotein|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 56 0.007665 9.574 1 1 +27334 P2RY10 purinergic receptor P2Y10 X protein-coding LYPSR2|P2Y10 putative P2Y purinoceptor 10|G-protein coupled purinergic receptor P2Y10|P2Y-like receptor|purinergic receptor P2Y, G-protein coupled, 10 67 0.009171 3.7 1 1 +27335 EIF3K eukaryotic translation initiation factor 3 subunit K 19 protein-coding ARG134|EIF3-p28|EIF3S12|HSPC029|M9|MSTP001|PLAC-24|PLAC24|PRO1474|PTD001 eukaryotic translation initiation factor 3 subunit K|eIF-3 p28|eukaryotic translation initiation factor 3, subunit 12|muscle specific|muscle-specific gene M9 protein 24 0.003285 11.67 1 1 +27336 HTATSF1 HIV-1 Tat specific factor 1 X protein-coding TAT-SF1|TATSF1|dJ196E23.2 HIV Tat-specific factor 1|HIV TAT specific factor 1|cofactor required for Tat activation of HIV-1 transcription 66 0.009034 10.9 1 1 +27338 UBE2S ubiquitin conjugating enzyme E2 S 19 protein-coding E2-EPF|E2EPF|EPF5 ubiquitin-conjugating enzyme E2 S|E2 ubiquitin-conjugating enzyme S|E2-EPF5|ubiquitin carrier protein S|ubiquitin conjugating enzyme E2S|ubiquitin-conjugating enzyme E2-24 kD|ubiquitin-conjugating enzyme E2-24 kDa|ubiquitin-conjugating enzyme E2-EPF5|ubiquitin-protein ligase S 8 0.001095 8.754 1 1 +27339 PRPF19 pre-mRNA processing factor 19 11 protein-coding NMP200|PRP19|PSO4|SNEV|UBOX4|hPSO4 pre-mRNA-processing factor 19|PRP19/PSO4 homolog|PRP19/PSO4 pre-mRNA processing factor 19 homolog|nuclear matrix protein 200|nuclear matrix protein NMP200 related to splicing factor PRP19|psoralen 4|senescence evasion factor 28 0.003832 11.55 1 1 +27340 UTP20 UTP20, small subunit processome component 12 protein-coding 1A6/DRIM|DRIM small subunit processome component 20 homolog|NNP73|UTP20 small subunit (SSU) processome component|UTP20, small subunit (SSU) processome component, homolog|down regulated in metastasis|down-regulated in metastasis protein|novel nucleolar protein 73 148 0.02026 9.274 1 1 +27341 RRP7A ribosomal RNA processing 7 homolog A 22 protein-coding BK126B4.3|CGI-96 ribosomal RNA-processing protein 7 homolog A|CTA-126B4.5|gastric cancer antigen Zg14 13 0.001779 9.741 1 1 +27342 RABGEF1 RAB guanine nucleotide exchange factor 1 7 protein-coding RABEX5|RAP1|rabex-5 rab5 GDP/GTP exchange factor|RAB guanine nucleotide exchange factor (GEF) 1|rabaptin-5-associated exchange factor for Rab5 12 0.001642 9.921 1 1 +27343 POLL DNA polymerase lambda 10 protein-coding BETAN|POLKAPPA DNA polymerase lambda|DNA polymerase beta-2|DNA polymerase beta-N|DNA polymerase kappa|polymerase (DNA directed), lambda|polymerase (DNA) lambda 30 0.004106 9.056 1 1 +27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor X protein-coding BigLEN|PEN|PROSAAS|SAAS|SCG8|SgVIII proSAAS|granin-like neuroendocrine peptide|pro-SAAS|proprotein convertase 1 inhibitor 3 0.0004106 5.868 1 1 +27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 12 protein-coding - calcium-activated potassium channel subunit beta-4|BK channel beta subunit 4|BK channel subunit beta-4|BKbeta4|MaxiK channel beta-subunit 4|big potassium channel beta subunit 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|potassium channel subfamily M regulatory beta subunit 4|potassium large conductance calcium-activated channel, subfamily M, beta member 4|slo-beta-4 17 0.002327 6.498 1 1 +27346 TMEM97 transmembrane protein 97 17 protein-coding MAC30 transmembrane protein 97|meningioma-associated protein 30 20 0.002737 9.426 1 1 +27347 STK39 serine/threonine kinase 39 2 protein-coding DCHT|PASK|SPAK STE20/SPS1-related proline-alanine-rich protein kinase|STE20/SPS1 homolog|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 35 0.004791 9.511 1 1 +27348 TOR1B torsin family 1 member B 9 protein-coding DQ1 torsin-1B|torsin ATPase-1B|torsin B|torsin family 1, member B (torsin B) 22 0.003011 9.239 1 1 +27349 MCAT malonyl-CoA-acyl carrier protein transacylase 22 protein-coding FASN2C|MCT|MT|NET62|fabD malonyl-CoA-acyl carrier protein transacylase, mitochondrial|[Acyl-carrier-protein] malonyltransferase|[acyl-carrier-protein] S-malonyltransferase|malonyl CoA:ACP acyltransferase (mitochondrial)|mitochondrial malonyl CoA:ACP acyltransferase|mitochondrial malonyltransferase 23 0.003148 8.459 1 1 +27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C 22 protein-coding A3C|APOBEC1L|ARDC2|ARDC4|ARP5|PBI|bK150C2.3 DNA dC->dU-editing enzyme APOBEC-3C|apolipoprotein B editing enzyme catalytic polypeptide-like 3C|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3C|phorbolin I|probable DNA dC->dU-editing enzyme APOBEC-3C 10 0.001369 7.902 1 1 +27351 DESI1 desumoylating isopeptidase 1 22 protein-coding D15Wsu75e|DESI2|DJ347H13.4|DeSI-1|FAM152B|PPPDE2 desumoylating isopeptidase 1|PPPDE peptidase domain containing 2|PPPDE peptidase domain-containing protein 2|desumoylating isopeptidase 2|family with sequence similarity 152, member B 11 0.001506 8.293 1 1 +27352 SGSM3 small G protein signaling modulator 3 22 protein-coding CIP85|MAP|RABGAP5|RUSC3|RUTBC3|RabGAP-5|rabGAPLP small G protein signaling modulator 3|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|small G protein signaling modulator 3 protein 41 0.005612 10.28 1 1 +27429 HTRA2 HtrA serine peptidase 2 2 protein-coding OMI|PARK13|PRSS25 serine protease HTRA2, mitochondrial|HtrA-like serine protease|Omi stress-regulated endoprotease|high temperature requirement protein A2|protease, serine, 25|serine protease 25|serine proteinase OMI 28 0.003832 9.408 1 1 +27430 MAT2B methionine adenosyltransferase 2B 5 protein-coding MAT-II|MATIIbeta|Nbla02999|SDR23E1|TGR methionine adenosyltransferase 2 subunit beta|MAT II beta|beta regulatory subunit of methionine adenosyltransferase|dTDP-4-keto-6-deoxy-D-glucose 4-reductase|methionine adenosyltransferase II, beta|putative dTDP-4-keto-6-deoxy-D-glucose 4-reductase|putative protein product of Nbla02999|short chain dehydrogenase/reductase family 23E, member 1|testicular tissue protein Li 118 21 0.002874 10.56 1 1 +27433 TOR2A torsin family 2 member A 9 protein-coding TORP1 prosalusin|salusin-beta|torsin-2A|torsin-related protein 1 18 0.002464 8.332 1 1 +27434 POLM DNA polymerase mu 7 protein-coding Pol Mu|Tdt-N DNA-directed DNA/RNA polymerase mu|Pol iota|polymerase (DNA) mu|polymerase (DNA-directed), mu|terminal transferase 52 0.007117 8.78 1 1 +27436 EML4 echinoderm microtubule associated protein like 4 2 protein-coding C2orf2|ELP120|EMAP-4|EMAPL4|ROPP120 echinoderm microtubule-associated protein-like 4|restrictedly overexpressed proliferation-associated protein|ropp 120 61 0.008349 10.6 1 1 +27437 HSFY1P1 heat shock transcription factor, Y-linked 1 pseudogene 1 22 pseudo CECR8|HSFYL1|HSFYP1|NCRNA00016 cat eye syndrome chromosome region, candidate 8 (non-protein coding)|heat shock transcription factor, Y-linked-like 1, pseudogene|heat shock transcription factor, Y-linked-like pseudogene 1 14 0.001916 0.01752 1 1 +27439 CECR6 cat eye syndrome chromosome region, candidate 6 22 protein-coding - cat eye syndrome critical region protein 6 19 0.002601 4.905 1 1 +27440 CECR5 cat eye syndrome chromosome region, candidate 5 22 protein-coding - cat eye syndrome critical region protein 5 29 0.003969 9.436 1 1 +27442 CECR3 cat eye syndrome chromosome region, candidate 3 (non-protein coding) 22 ncRNA - - 1 0.0001369 1 0 +27443 CECR2 CECR2, histone acetyl-lysine reader 22 protein-coding - cat eye syndrome critical region protein 2|cat eye syndrome chromosome region, candidate 2 115 0.01574 4.579 1 1 +27445 PCLO piccolo presynaptic cytomatrix protein 7 protein-coding ACZ|PCH3 protein piccolo|aczonin 596 0.08158 6.951 1 1 +28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta X|Y protein-coding NYREN8|PPP2R3L|PPP2R3LY|PR48 serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit beta|NY-REN-8 antigen|PP2A, subunit B, PR48 isoform|protein phosphatase 2 (formerly 2A), regulatory subunit B'', beta|protein phosphatase 2, regulatory subunit B'', beta|serine/threonine protein phosphatase 2A, 48kDa regulatory subunit B 7.812 0 1 +28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 20 protein-coding OATP-E|OATP1|OATP4A1|OATPE|OATPRP1|POAT|SLC21A12 solute carrier organic anion transporter family member 4A1|OATP-RP1|colon organic anion transporter|organic anion transporter polypeptide-related protein 1|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 54 0.007391 6.557 1 1 +28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 15 protein-coding OATP-D|OATP-RP3|OATP3A1|OATPD|OATPRP3|SLC21A11 solute carrier organic anion transporter family member 3A1|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 59 0.008076 8.971 1 1 +28234 SLCO1B3 solute carrier organic anion transporter family member 1B3 12 protein-coding HBLRR|LST-2|LST-3TM13|LST3|OATP-8|OATP1B3|OATP8|SLC21A8 solute carrier organic anion transporter family member 1B3|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 106 0.01451 2.232 1 1 +28299 IGKV1-5 immunoglobulin kappa variable 1-5 2 other IGKV|IGKV15|L12|L12a|V1 Ig kappa chain V-region 33 0.004517 1 0 +28307 IGHV3OR16-9 immunoglobulin heavy variable 3/OR16-9 (non-functional) 16 pseudo IGHV3OR169 IGHV3/OR16-9 25 0.003422 1 0 +28309 IGHV3OR16-7 immunoglobulin heavy variable 3/OR16-7 (pseudogene) 16 pseudo IGH|IGHV|IGHV3/OR16-7|IGHV3OR167 anti-pneumococcal antibody 1.10 heavy chain variable region|immunoglobulin heavy chain|immunoglobulin heavy chain variable region 5 0.0006844 1 0 +28316 CDH20 cadherin 20 18 protein-coding CDH7L3|Cdh7 cadherin-20|cadherin 20, type 2 102 0.01396 2.144 1 1 +28317 IGHV4OR15-8 immunoglobulin heavy variable 4/OR15-8 (non-functional) 15 other IGHV4OR158|VSIG6 IGHV4/OR15-8|V-set and immunoglobulin domain containing 6 50 0.006844 1 0 +28318 IGHV3OR15-7 immunoglobulin heavy variable 3/OR15-7 (pseudogene) 15 pseudo IGHV3/OR15-7 - 4 0.0005475 1 0 +28378 IGHV7-81 immunoglobulin heavy variable 7-81 (non-functional) 14 other IGHV781 - 14 0.001916 1 0 +28385 IGHV6-1 immunoglobulin heavy variable 6-1 14 other IGHV61|VH immunogloblin heavy chain variable region 11 0.001506 1 0 +28388 IGHV5-51 immunoglobulin heavy variable 5-51 14 other IGHV551|VH immunogloblin heavy chain variable region 12 0.001642 1 0 +28391 IGHV4-61 immunoglobulin heavy variable 4-61 14 other IGHV461|VH immunogloblin heavy chain variable region 18 0.002464 1 0 +28392 IGHV4-59 immunoglobulin heavy variable 4-59 14 other IGHV459|VH immunogloblin heavy chain variable region 20 0.002737 1 0 +28394 IGHV4-39 immunoglobulin heavy variable 4-39 14 other IGHV439|VH immunogloblin heavy chain variable region 27 0.003696 1 0 +28395 IGHV4-34 immunoglobulin heavy variable 4-34 14 other IGHV434|VH immunogloblin heavy chain variable region 21 0.002874 1 0 +28396 IGHV4-31 immunoglobulin heavy variable 4-31 14 other IGHV431 anti-RhD monoclonal T125 gamma1 heavy chain 20 0.002737 1 0 +28400 IGHV4-28 immunoglobulin heavy variable 4-28 14 other IGHV428|VH immunogloblin heavy chain variable region 19 0.002601 1 0 +28401 IGHV4-4 immunoglobulin heavy variable 4-4 14 other IGHV44|VH immunogloblin heavy chain variable region 12 0.001642 1 0 +28408 IGHV3-74 immunoglobulin heavy variable 3-74 14 other IGHV374|VH immunogloblin heavy chain variable region 8 0.001095 1 0 +28409 IGHV3-73 immunoglobulin heavy variable 3-73 14 other IGHV373|VH immunogloblin heavy chain variable region 10 0.001369 1 0 +28410 IGHV3-72 immunoglobulin heavy variable 3-72 14 other IGHV372|VH immunogloblin heavy chain variable region 13 0.001779 1 0 +28411 IGHV3-71 immunoglobulin heavy variable 3-71 (pseudogene) 14 pseudo 3-71P|IGHV3-G|IGHV371|IGHV3G immunoglobulin heavy variable 3-G (provisional)|immunoglobulin heavy variable 3-G pseudogene (provisional) 0 0 1 0 +28412 IGHV3-66 immunoglobulin heavy variable 3-66 14 other IGHV366|VH immunogloblin heavy chain variable region 9 0.001232 1 0 +28414 IGHV3-64 immunoglobulin heavy variable 3-64 14 other IGHV364|VH immunogloblin heavy chain variable region 11 0.001506 1 0 +28420 IGHV3-53 immunoglobulin heavy variable 3-53 14 other IGHV353|VH immunogloblin heavy chain variable region 24 0.003285 1 0 +28423 IGHV3-49 immunoglobulin heavy variable 3-49 14 other IGHV349|VH immunogloblin heavy chain variable region 15 0.002053 1 0 +28424 IGHV3-48 immunoglobulin heavy variable 3-48 14 other IGHV348|VH immunogloblin heavy chain variable region 15 0.002053 1 0 +28426 IGHV3-43 immunoglobulin heavy variable 3-43 14 other IGHV343|VH immunogloblin heavy chain variable region 23 0.003148 1 0 +28429 IGHV3-38 immunoglobulin heavy variable 3-38 (non-functional) 14 other IGHV338|VH immunogloblin heavy chain variable region 16 0.00219 1 0 +28432 IGHV3-35 immunoglobulin heavy variable 3-35 (non-functional) 14 other IGHV335|VH immunogloblin heavy chain variable region 10 0.001369 1 0 +28434 IGHV3-33 immunoglobulin heavy variable 3-33 14 other IGHV333|VH immunogloblin heavy chain variable region 9 0.001232 1 0 +28439 IGHV3-30 immunoglobulin heavy variable 3-30 14 other IGHV330|VH immunogloblin heavy chain variable region 13 0.001779 1 0 +28442 IGHV3-23 immunoglobulin heavy variable 3-23 14 other DP47|IGHV323|V3-23|VH26 mu-chain precursor (AA -19 to 142) 20 0.002737 1 0 +28444 IGHV3-21 immunoglobulin heavy variable 3-21 14 other IGHV321|VH immunogloblin heavy chain variable region 23 0.003148 1 0 +28445 IGHV3-20 immunoglobulin heavy variable 3-20 14 other IGHV320|VH immunogloblin heavy chain variable region 16 0.00219 1 0 +28447 IGHV3-16 immunoglobulin heavy variable 3-16 (non-functional) 14 other IGHV316|VH immunogloblin heavy chain variable region 19 0.002601 1 0 +28448 IGHV3-15 immunoglobulin heavy variable 3-15 14 other IGHV315|VH immunogloblin heavy chain variable region 4 0.0005475 1 0 +28449 IGHV3-13 immunoglobulin heavy variable 3-13 14 other IGHV313 - 10 0.001369 1 0 +28450 IGHV3-11 immunoglobulin heavy variable 3-11 (gene/pseudogene) 14 other IGHV311|VH immunogloblin heavy chain variable region 7 0.0009581 1 0 +28451 IGHV3-9 immunoglobulin heavy variable 3-9 14 other IGHV39|VH immunogloblin heavy chain variable region 12 0.001642 1 0 +28452 IGHV3-7 immunoglobulin heavy variable 3-7 14 other IGHV37|VH immunogloblin heavy chain variable region 9 0.001232 1 0 +28453 IGHV3-6 immunoglobulin heavy variable 3-6 (pseudogene) 14 pseudo 3-06P|IGHV36 - 1 0.0001369 1 0 +28454 IGHV2-70 immunoglobulin heavy variable 2-70 14 other IGHV270|VH Ig heavy chain V-II region|immunogloblin heavy chain variable region 15 0.002053 1 0 +28455 IGHV2-26 immunoglobulin heavy variable 2-26 14 other IGHV226|VH immunogloblin heavy chain variable region 15 0.002053 1 0 +28457 IGHV2-5 immunoglobulin heavy variable 2-5 14 other IGHV25|VH Ig heavy chain V-II region 5|Ig heavy chain V-II region HE|Ig heavy chain V-II region MCE|immunogloblin heavy chain variable region 10 0.001369 1 0 +28461 IGHV1-69 immunoglobulin heavy variable 1-69 14 other IGHV1-E|IGHV169|IGHV1E immunoglobulin heavy variable 1-e 23 0.003148 1 0 +28463 IGHV1-67 immunoglobulin heavy variable 1-67 (pseudogene) 14 pseudo 1-67P|IGHV167 - 1 0.0001369 1 0 +28464 IGHV1-58 immunoglobulin heavy variable 1-58 14 other IGHV158|VH immunogloblin heavy chain variable region 24 0.003285 1 0 +28465 IGHV1-46 immunoglobulin heavy variable 1-46 14 other IGHV146 - 33 0.004517 1 0 +28466 IGHV1-45 immunoglobulin heavy variable 1-45 14 other IGHV145|VH immunogloblin heavy chain variable region 15 0.002053 1 0 +28467 IGHV1-24 immunoglobulin heavy variable 1-24 14 other IGHV124|VH immunogloblin heavy chain variable region 19 0.002601 1 0 +28468 IGHV1-18 immunoglobulin heavy variable 1-18 14 other IGHV118 - 24 0.003285 1 0 +28472 IGHV1-8 immunoglobulin heavy variable 1-8 14 other IGHV18 - 10 0.001369 1 0 +28473 IGHV1-3 immunoglobulin heavy variable 1-3 14 other IGHV13|VI-3B - 8 0.001095 1 0 +28474 IGHV1-2 immunoglobulin heavy variable 1-2 14 other IGHV12|V35 - 13 0.001779 1 0 +28475 IGHJ6 immunoglobulin heavy joining 6 14 other JH6b - 5 0.0006844 1 0 +28476 IGHJ5 immunoglobulin heavy joining 5 14 other JH5b - 2 0.0002737 1 0 +28477 IGHJ4 immunoglobulin heavy joining 4 14 other JH4b - 1 0.0001369 1 0 +28479 IGHJ3 immunoglobulin heavy joining 3 14 other JH3b - 1 0.0001369 1 0 +28481 IGHJ2 immunoglobulin heavy joining 2 14 other JH2 - 4 0.0005475 1 0 +28483 IGHJ1 immunoglobulin heavy joining 1 14 other JH1 - 1 0.0001369 1 0 +28486 IGHD6-19 immunoglobulin heavy diversity 6-19 14 other IGHD619 - 1 0.0001369 1 0 +28487 IGHD6-13 immunoglobulin heavy diversity 6-13 14 other DN1|IGHD613 - 0 0 1 0 +28488 IGHD6-6 immunoglobulin heavy diversity 6-6 14 other D(N4)|IGHD66 - 0 0 1 0 +28489 IGHD5-24 immunoglobulin heavy diversity 5-24 (non-functional) 14 other IGHD524 - 1 0.0001369 1 0 +28491 IGHD5-12 immunoglobulin heavy diversity 5-12 14 other DK1|IGHD512 - 1 0.0001369 1 0 +28494 IGHD4-17 immunoglobulin heavy diversity 4-17 14 other IGHD417 - 1 0.0001369 1 0 +28495 IGHD4-11 immunoglobulin heavy diversity 4-11 (non-functional) 14 other DA1|IGHD411 - 2 0.0002737 1 0 +28497 IGHD3-22 immunoglobulin heavy diversity 3-22 14 other IGHD322 - 1 0.0001369 1 0 +28499 IGHD3-10 immunoglobulin heavy diversity 3-10 14 other DXP'1|IGHD310 - 1 0.0001369 1 0 +28503 IGHD2-15 immunoglobulin heavy diversity 2-15 14 other D2|IGHD215 - 0 0 1 0 +28504 IGHD2-8 immunoglobulin heavy diversity 2-8 14 other DLR1|IGHD28 - 0 0 1 0 +28505 IGHD2-2 immunoglobulin heavy diversity 2-2 14 other IGHD22 - 1 0.0001369 1 0 +28506 IGHD1-26 immunoglobulin heavy diversity 1-26 14 other IGHD126 - 1 0.0001369 1 0 +28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 17 protein-coding KBRAS2|kappaB-Ras2 NF-kappa-B inhibitor-interacting Ras-like protein 2|I-kappa-B-interacting Ras-like protein 2|NFKB inhibitor interacting Ras-like protein 2|kappa B-Ras protein 2 17 0.002327 10.04 1 1 +28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 3 protein-coding KBRAS1|kappaB-Ras1 NF-kappa-B inhibitor-interacting Ras-like protein 1|I-kappa-B-interacting Ras-like protein 1|NFKB inhibitor interacting Ras-like protein 1|kappa B-Ras protein 1|kappa B-ras 1 17 0.002327 7.622 1 1 +28513 CDH19 cadherin 19 18 protein-coding CDH7|CDH7L2 cadherin-19|cadherin 19, type 2 99 0.01355 2.112 1 1 +28514 DLL1 delta like canonical Notch ligand 1 6 protein-coding DELTA1|DL1|Delta delta-like protein 1|H-Delta-1|drosophila Delta homolog 1 56 0.007665 7.519 1 1 +28518 TRDV1 T cell receptor delta variable 1 14 other hDV101S1 - 12 0.001642 1 0 +28557 TRBV30 T cell receptor beta variable 30 (gene/pseudogene) 7 other TCRBV20S1A1N2|TCRBV30S1 V_segment translation product 13 0.001779 1 0 +28558 TRBV29-1 T cell receptor beta variable 29-1 7 other TCRBV29S1|TCRBV4S1A1T|TRBV291 V_segment translation product 38 0.005201 1 0 +28559 TRBV28 T cell receptor beta variable 28 7 other TCRBV28S1|TCRBV3S1 V_segment translation product 7 0.0009581 1 0 +28560 TRBV27 T cell receptor beta variable 27 7 other TCRBV14S1|TCRBV27S1 V_segment translation product 3 0.0004106 1 0 +28562 TRBV25-1 T cell receptor beta variable 25-1 7 other TCRBV11S1A1T|TCRBV25S1|TRBV251 V_segment translation product 18 0.002464 1 0 +28563 TRBV24-1 T cell receptor beta variable 24-1 7 other TCRBV15S1|TCRBV24S1|TRBV241 V_segment translation product 23 0.003148 1 0 +28564 TRBV23-1 T cell receptor beta variable 23-1 (non-functional) 7 pseudo TCRBV19S1P|TCRBV23S1|TRBV231 T cell receptor beta variable 23-1 pseudogene 3 0.0004106 1 0 +28567 TRBV20-1 T cell receptor beta variable 20-1 7 other TCRBV20S1|TCRBV2S1|TRBV201 V_segment translation product 12 0.001642 1 0 +28568 TRBV19 T cell receptor beta variable 19 7 other TCRBV17S1A1T|TCRBV19S1 V_segment translation product 23 0.003148 1 0 +28581 TRBV11-2 T cell receptor beta variable 11-2 7 other TCRBV11S2|TCRBV21S3A2N2T|TRBV112 V_segment translation product 17 0.002327 1 0 +28582 TRBV11-1 T cell receptor beta variable 11-1 7 other TCRBV11S1|TCRBV21S1|TRBV111 V_segment translation product 14 0.001916 1 0 +28584 TRBV10-2 T cell receptor beta variable 10-2 7 other TCRBV10S2|TCRBV12S3|TRBV102 V_segment translation product 19 0.002601 1 0 +28585 TRBV10-1 T cell receptor beta variable 10-1(gene/pseudogene) 7 other TCRBV10S1|TCRBV12S2|TCRBV12S2A1T|TRBV101 T cell receptor beta variable 10-1|V_segment translation product 21 0.002874 1 0 +28586 TRBV9 T cell receptor beta variable 9 7 other TCRBV1S1A1N1|TCRBV9S1 V_segment translation product 11 0.001506 1 0 +28590 TRBV7-8 T cell receptor beta variable 7-8 7 other TCRBV6S2A1N1T|TCRBV7S8|TRBV78 V_segment translation product 31 0.004243 1 0 +28591 TRBV7-7 T cell receptor beta variable 7-7 7 other TCRBV6S6A2T|TCRBV7S7|TRBV77 V_segment translation product 15 0.002053 1 0 +28592 TRBV7-6 T cell receptor beta variable 7-6 7 other TCRBV6S3A1N1T|TCRBV7S6|TRBV76 V_segment translation product 21 0.002874 1 0 +28594 TRBV7-4 T cell receptor beta variable 7-4 (gene/pseudogene) 7 other TCRBV6S8A2T|TCRBV7S4|TRBV74 V_segment translation product 28 0.003832 1 0 +28595 TRBV7-3 T cell receptor beta variable 7-3 7 other TCRBV6S1A1N1|TCRBV7S3|TRBV73 V_segment translation product 19 0.002601 1 0 +28597 TRBV7-1 T cell receptor beta variable 7-1 (non-functional) 7 pseudo TCRBV6S7P|TCRBV7S1|TRBV71 T cell receptor beta variable 7-1 pseudogene 20 0.002737 1 0 +28598 TRBV6-9 T cell receptor beta variable 6-9 7 other TCRBV13S4|TCRBV6S9|TRBV69 - 26 0.003559 1 0 +28599 TRBV6-8 T cell receptor beta variable 6-8 7 other TCRBV13S7P|TCRBV6S8|TRBV68 - 26 0.003559 1 0 +28600 TRBV6-7 T cell receptor beta variable 6-7 (non-functional) 7 other TCRBV13S8P|TCRBV6S7|TRBV67 - 21 0.002874 1 0 +28601 TRBV6-6 T cell receptor beta variable 6-6 7 other TCRBV13S6A2T|TCRBV6S6|TRBV66 V_segment translation product 17 0.002327 1 0 +28602 TRBV6-5 T cell receptor beta variable 6-5 7 other TCRBV13S1|TCRBV6S5|TRBV65 V_segment translation product 32 0.00438 1 0 +28603 TRBV6-4 T cell receptor beta variable 6-4 7 other TCRBV13S5|TCRBV6S4|TRBV64 V_segment translation product 21 0.002874 1 0 +28606 TRBV6-1 T cell receptor beta variable 6-1 7 other TCRBV13S3|TCRBV6S1|TRBV61 T-cell receptor beta chain V region C5 -like, V_segment translation product|V_segment translation product 14 0.001916 1 0 +28608 TRBV5-7 T cell receptor beta variable 5-7 (non-functional) 7 other TCRBV5S7|TCRBV5S7P|TRBV57 - 26 0.003559 1 0 +28609 TRBV5-6 T cell receptor beta variable 5-6 7 other TCRBV5S2|TCRBV5S6|TRBV56 V_segment translation product 24 0.003285 1 0 +28610 TRBV5-5 T cell receptor beta variable 5-5 7 other TCRBV5S3A2T|TCRBV5S5|TRBV55 V_segment translation product 15 0.002053 1 0 +28611 TRBV5-4 T cell receptor beta variable 5-4 7 other TCRBV5S4|TCRBV5S6A3N2T|TRBV54 V_segment translation product 44 0.006022 1 0 +28612 TRBV5-3 T cell receptor beta variable 5-3 (non-functional) 7 pseudo TCRBV5S3|TCRBV5S5P|TRBV53 T cell receptor beta variable 5-3 pseudogene 1 0.0001369 1 0 +28614 TRBV5-1 T cell receptor beta variable 5-1 7 other TCRBV5S1|TCRBV5S1A1T|TRBV51 - 12 0.001642 1 0 +28616 TRBV4-2 T cell receptor beta variable 4-2 7 other TCRBV4S2|TCRBV7S3A2|TCRBV7S3A2T|TRBV42 V_segment translation product 26 0.003559 1 0 +28617 TRBV4-1 T cell receptor beta variable 4-1 7 other BV07S1J2.7|TCRBV4S1|TCRBV7S1A1N2T|TRBV41 T-cell receptor beta chain V region 86T1|V_segment translation product 13 0.001779 1 0 +28619 TRBV3-1 T cell receptor beta variable 3-1 7 other TCRBV3S1|TCRBV9S1A1T|TRBV31 V_segment translation product 20 0.002737 1 0 +28620 TRBV2 T cell receptor beta variable 2 7 other TCRBV22S1A2N1T|TCRBV2S1 V_segment translation product 23 0.003148 1 0 +28622 TRBJ2-7 T cell receptor beta joining 2-7 7 other TCRBJ2S7|TRBJ27 - 0 0 1 0 +28623 TRBJ2-6 T cell receptor beta joining 2-6 7 other TCRBJ2S6|TRBJ26 - 4 0.0005475 1 0 +28624 TRBJ2-5 T cell receptor beta joining 2-5 7 other TCRBJ2S5|TRBJ25 - 3 0.0004106 1 0 +28625 TRBJ2-4 T cell receptor beta joining 2-4 7 other TCRBJ2S4|TRBJ24 - 1 0.0001369 1 0 +28626 TRBJ2-3 T cell receptor beta joining 2-3 7 other TCRBJ2S3|TRBJ23 - 1 0.0001369 1 0 +28628 TRBJ2-2 T cell receptor beta joining 2-2 7 other TCRBJ2S2|TRBJ22 - 4 0.0005475 1 0 +28629 TRBJ2-1 T cell receptor beta joining 2-1 7 other TCRBJ2S1|TRBJ21 - 2 0.0002737 1 0 +28638 TRBC2 T cell receptor beta constant 2 7 other TCRBC2 V_segment translation product 44 0.006022 1 0 +28640 TRAV41 T cell receptor alpha variable 41 14 other TCRAV19S1|TCRAV41S1 - 5 0.0006844 1 0 +28641 TRAV40 T cell receptor alpha variable 40 14 other TCRAV31S1|TCRAV40S1 - 10 0.001369 1 0 +28642 TRAV39 T cell receptor alpha variable 39 14 other TCRAV27S1|TCRAV39S1 - 4 0.0005475 1 0 +28643 TRAV38-2DV8 T cell receptor alpha variable 38-2/delta variable 8 14 other TCRAV14S1|TRAV382DV8|hADV38S2 T cell receptor alpha/delta variable 38-2/DV8|TRAV38-2/DV8 1 0.0001369 1 0 +28644 TRAV38-1 T cell receptor alpha variable 38-1 14 other TCRAV14S2|TCRAV38S1|TRAV381 - 3 0.0004106 1 0 +28646 TRAV36DV7 T cell receptor alpha variable 36/delta variable 7 14 other TCRAV28S1|TRAV36/DV7|hADV36S1 T cell receptor alpha/delta variable 36/DV7 6 0.0008212 1 0 +28647 TRAV35 T cell receptor alpha variable 35 14 other TCRAV25S1|TCRAV35S1 - 11 0.001506 1 0 +28648 TRAV34 T cell receptor alpha variable 34 14 other TCRAV26S1|TCRAV34S1 - 11 0.001506 1 0 +28652 TRAV30 T cell receptor alpha variable 30 14 other TCRAV29S1|TCRAV30S1 - 5 0.0006844 1 0 +28653 TRAV29DV5 T cell receptor alpha variable 29/delta variable 5 (gene/pseudogene) 14 other TCRAV21S1|TRAV29/DV5|hADV29S1 T cell receptor alpha/delta variable 29/DV5 12 0.001642 1 0 +28655 TRAV27 T cell receptor alpha variable 27 14 other TCRAV10S1|TCRAV27S1 - 13 0.001779 1 0 +28656 TRAV26-2 T cell receptor alpha variable 26-2 14 other TCRAV26S2|TCRAV4S1|TRAV262 - 8 0.001095 1 0 +28657 TRAV26-1 T cell receptor alpha variable 26-1 14 other TCRAV26S1|TCRAV4S2|TRAV261 - 18 0.002464 1 0 +28658 TRAV25 T cell receptor alpha variable 25 14 other TCRAV25S1|TCRAV32S1 - 11 0.001506 1 0 +28659 TRAV24 T cell receptor alpha variable 24 14 other TCRAV18S1|TCRAV24S1 - 20 0.002737 1 0 +28660 TRAV23DV6 T cell receptor alpha variable 23/delta variable 6 14 other TCRAV17S1|TRAV23/DV6|hADV23S1 T cell receptor alpha/delta variable 23/DV6 8 0.001095 1 0 +28661 TRAV22 T cell receptor alpha variable 22 14 other TCRAV13S1|TCRAV22S1 - 6 0.0008212 1 0 +28662 TRAV21 T cell receptor alpha variable 21 14 other TCRAV21S1|TCRAV23S1 - 10 0.001369 1 0 +28663 TRAV20 T cell receptor alpha variable 20 14 other TCRAV20S1|TCRAV30S1 - 13 0.001779 1 0 +28664 TRAV19 T cell receptor alpha variable 19 14 other TCRAV12S1|TCRAV19S1 - 19 0.002601 1 0 +28665 TRAV18 T cell receptor alpha variable 18 14 other TCRAV18S1 - 12 0.001642 1 0 +28666 TRAV17 T cell receptor alpha variable 17 14 other TCRAV17S1|TCRAV3S1 - 15 0.002053 1 0 +28667 TRAV16 T cell receptor alpha variable 16 14 other TCRAV16S1|TCRAV9S1 - 9 0.001232 1 0 +28669 TRAV14DV4 T cell receptor alpha variable 14/delta variable 4 14 other TCRAV6S1-hDV104S1|TRAV14/DV4|hADV14S1 T cell receptor alpha/delta variable 14/DV4 15 0.002053 1 0 +28670 TRAV13-2 T cell receptor alpha variable 13-2 14 other TCRAV13S2|TCRAV8S2|TRAV132 - 9 0.001232 1 0 +28671 TRAV13-1 T cell receptor alpha variable 13-1 14 other TCRAV13S1|TCRAV8S1|TRAV131 - 13 0.001779 1 0 +28672 TRAV12-3 T cell receptor alpha variable 12-3 14 other TCRAV12S3|TCRAV2S2|TRAV123 - 13 0.001779 1 0 +28673 TRAV12-2 T cell receptor alpha variable 12-2 14 other TCRAV12S2|TCRAV2S1|TRAV122 - 19 0.002601 1 0 +28674 TRAV12-1 T cell receptor alpha variable 12-1 14 other TCRAV12S1|TCRAV2S3|TRAV121 - 11 0.001506 1 0 +28676 TRAV10 T cell receptor alpha variable 10 14 other TCRAV10S1|TCRAV24S1 - 13 0.001779 1 0 +28677 TRAV9-2 T cell receptor alpha variable 9-2 14 other TCRAV22S1|TCRAV9S2|TRAV92 - 38 0.005201 1 0 +28678 TRAV9-1 T cell receptor alpha variable 9-1 14 other TCRAV9S1|TRAV91 - 12 0.001642 1 0 +28679 TRAV8-7 T cell receptor alpha variable 8-7 (non-functional) 14 other TCRAV8S7|TRAV87 - 9 0.001232 1 0 +28680 TRAV8-6 T cell receptor alpha variable 8-6 14 other TCRAV1S3|TCRAV8S6|TRAV86 - 14 0.001916 1 0 +28682 TRAV8-4 T cell receptor alpha variable 8-4 14 other TCRAV1S2|TCRAV8S4|TRAV84 - 16 0.00219 1 0 +28683 TRAV8-3 T cell receptor alpha variable 8-3 14 other TCRAV1S4|TCRAV8S3|TRAV83 - 5 0.0006844 1 0 +28684 TRAV8-2 T cell receptor alpha variable 8-2 14 other TCRAV1S5|TCRAV8S2|TRAV82 - 18 0.002464 1 0 +28685 TRAV8-1 T cell receptor alpha variable 8-1 14 other TCRAV1S1|TCRAV8S1|TRAV81 - 13 0.001779 1 0 +28686 TRAV7 T cell receptor alpha variable 7 14 other TCRAV7S1 - 8 0.001095 1 0 +28688 TRAV5 T cell receptor alpha variable 5 14 other TCRAV15S1|TCRAV5S1 - 7 0.0009581 1 0 +28689 TRAV4 T cell receptor alpha variable 4 14 other TCRAV20S1|TCRAV4S1 - 4 0.0005475 1 0 +28690 TRAV3 T cell receptor alpha variable 3 (gene/pseudogene) 14 other TCRAV16S1|TCRAV3S1 - 17 0.002327 1 0 +28691 TRAV2 T cell receptor alpha variable 2 14 other TCRAV11S1|TCRAV2S1 - 7 0.0009581 1 0 +28692 TRAV1-2 T cell receptor alpha variable 1-2 14 other TCRAV1S2|TCRAV7S2|TRAV12 - 8 0.001095 1 0 +28693 TRAV1-1 T cell receptor alpha variable 1-1 14 other TCRAV1S1|TCRAV7S1|TRAV11 - 15 0.002053 1 0 +28703 TRAJ52 T cell receptor alpha joining 52 14 other - - 2 0.0002737 1 0 +28705 TRAJ50 T cell receptor alpha joining 50 14 other - - 1 0.0001369 1 0 +28707 TRAJ48 T cell receptor alpha joining 48 14 other - - 0 0 1 0 +28708 TRAJ47 T cell receptor alpha joining 47 14 other - - 1 0.0001369 1 0 +28709 TRAJ46 T cell receptor alpha joining 46 14 other - - 0 0 1 0 +28713 TRAJ42 T cell receptor alpha joining 42 14 other - - 2 0.0002737 1 0 +28714 TRAJ41 T cell receptor alpha joining 41 14 other - - 1 0.0001369 1 0 +28716 TRAJ39 T cell receptor alpha joining 39 14 other - - 1 0.0001369 1 0 +28717 TRAJ38 T cell receptor alpha joining 38 14 other - - 1 0.0001369 1 0 +28718 TRAJ37 T cell receptor alpha joining 37 14 other - - 1 0.0001369 1 0 +28719 TRAJ36 T cell receptor alpha joining 36 14 other - - 0 0 1 0 +28720 TRAJ35 T cell receptor alpha joining 35 (non-functional) 14 other - - 1 0.0001369 1 0 +28724 TRAJ31 T cell receptor alpha joining 31 14 other - - 2 0.0002737 1 0 +28725 TRAJ30 T cell receptor alpha joining 30 14 other - - 0 0 1 0 +28726 TRAJ29 T cell receptor alpha joining 29 14 other - - 2 0.0002737 1 0 +28727 TRAJ28 T cell receptor alpha joining 28 14 other - - 0 0 1 0 +28728 TRAJ27 T cell receptor alpha joining 27 14 other - - 2 0.0002737 1 0 +28729 TRAJ26 T cell receptor alpha joining 26 14 other - - 2 0.0002737 1 0 +28730 TRAJ25 T cell receptor alpha joining 25 (non-functional) 14 other - - 1 0.0001369 1 0 +28731 TRAJ24 T cell receptor alpha joining 24 14 other - - 0 0 1 0 +28732 TRAJ23 T cell receptor alpha joining 23 14 other - - 4 0.0005475 1 0 +28733 TRAJ22 T cell receptor alpha joining 22 14 other - - 1 0.0001369 1 0 +28735 TRAJ20 T cell receptor alpha joining 20 14 other - - 0 0 1 0 +28736 TRAJ19 T cell receptor alpha joining 19 (non-functional) 14 other - - 1 0.0001369 1 0 +28737 TRAJ18 T cell receptor alpha joining 18 14 other - - 1 0.0001369 1 0 +28738 TRAJ17 T cell receptor alpha joining 17 14 other - - 1 0.0001369 1 0 +28739 TRAJ16 T cell receptor alpha joining 16 14 other - - 0 0 1 0 +28741 TRAJ14 T cell receptor alpha joining 14 14 other - - 1 0.0001369 1 0 +28743 TRAJ12 T cell receptor alpha joining 12 14 other - - 1 0.0001369 1 0 +28744 TRAJ11 T cell receptor alpha joining 11 14 other - - 1 0.0001369 1 0 +28745 TRAJ10 T cell receptor alpha joining 10 14 other - - 2 0.0002737 1 0 +28746 TRAJ9 T cell receptor alpha joining 9 14 other - - 2 0.0002737 1 0 +28748 TRAJ7 T cell receptor alpha joining 7 14 other - - 2 0.0002737 1 0 +28753 TRAJ2 T cell receptor alpha joining 2 (non-functional) 14 other - - 0 0 1 0 +28754 TRAJ1 T cell receptor alpha joining 1 (non-functional) 14 other - - 2 0.0002737 1 0 +28755 TRAC T-cell receptor alpha constant 14 other IMD7|TCRA|TRA|TRCA - 14 0.001916 1 0 +28770 IGLV11-55 immunoglobulin lambda variable 11-55 (non-functional) 22 other IGLV1155|V4-6 - 7 0.0009581 1 0 +28772 IGLV10-54 immunoglobulin lambda variable 10-54 22 other IGLV1054|V1-20 - 5 0.0006844 1 0 +28773 IGLV9-49 immunoglobulin lambda variable 9-49 22 other IGLV949|V5-2 - 5 0.0006844 1 0 +28774 IGLV8-61 immunoglobulin lambda variable 8-61 22 other IGLV861|V3-4 - 14 0.001916 1 0 +28775 IGLV7-46 immunoglobulin lambda variable 7-46 (gene/pseudogene) 22 other IGLV746|V3-3 - 8 0.001095 1 0 +28776 IGLV7-43 immunoglobulin lambda variable 7-43 22 other IGLV743|V3-2 - 9 0.001232 1 0 +28778 IGLV6-57 immunoglobulin lambda variable 6-57 22 other IGLV657|V1-22 amyloid lambda 6 light chain variable region PIP|amyloid lambda 6 light chain variable region SAR 4 0.0005475 1 0 +28779 IGLV5-52 immunoglobulin lambda variable 5-52 22 other IGLV552|V4-4 - 7 0.0009581 1 0 +28780 IGLV5-48 immunoglobulin lambda variable 5-48 (non-functional) 22 other IGLV548|V4-3 - 10 0.001369 1 0 +28781 IGLV5-45 immunoglobulin lambda variable 5-45 22 other IGLV545|V4-2 - 19 0.002601 1 0 +28783 IGLV5-37 immunoglobulin lambda variable 5-37 22 other IGLV537|V4-1 - 6 0.0008212 1 0 +28784 IGLV4-69 immunoglobulin lambda variable 4-69 22 other IGLV469|V5-6 - 6 0.0008212 1 0 +28785 IGLV4-60 immunoglobulin lambda variable 4-60 22 other IGLV460|V5-4 - 13 0.001779 1 0 +28786 IGLV4-3 immunoglobulin lambda variable 4-3 22 other IGLV43|V5-1 - 9 0.001232 1 0 +28787 IGLV3-32 immunoglobulin lambda variable 3-32 (non-functional) 22 other IGLV332|V2-23P - 10 0.001369 1 0 +28791 IGLV3-27 immunoglobulin lambda variable 3-27 22 other IGLV327|V2-19 - 11 0.001506 1 0 +28793 IGLV3-25 immunoglobulin lambda variable 3-25 22 other IGLV325|V2-17 - 4 0.0005475 1 0 +28795 IGLV3-22 immunoglobulin lambda variable 3-22 (gene/pseudogene) 22 other IGLV322|V2-15 - 9 0.001232 1 0 +28796 IGLV3-21 immunoglobulin lambda variable 3-21 22 other IGLV321|V2-14 - 10 0.001369 1 0 +28797 IGLV3-19 immunoglobulin lambda variable 3-19 22 other IGLV319|V2-13|VL3L rearranged Vl3l gene segment|rearranged Vl3l segment 5 0.0006844 1 0 +28799 IGLV3-16 immunoglobulin lambda variable 3-16 22 other IGLV316|V2-11 - 11 0.001506 1 0 +28802 IGLV3-12 immunoglobulin lambda variable 3-12 22 other IGLV312|V2-8 - 17 0.002327 1 0 +28803 IGLV3-10 immunoglobulin lambda variable 3-10 22 other IGLV310|V2-7 - 10 0.001369 1 0 +28804 IGLV3-9 immunoglobulin lambda variable 3-9 (gene/pseudogene) 22 other IGLV39|V2-6 - 14 0.001916 1 0 +28809 IGLV3-1 immunoglobulin lambda variable 3-1 22 other IGLV31|V2-1 - 7 0.0009581 1 0 +28811 IGLV2-33 immunoglobulin lambda variable 2-33 (non-functional) 22 other IGLV233|V1-9 - 10 0.001369 1 0 +28813 IGLV2-23 immunoglobulin lambda variable 2-23 22 other IGLV223|V1-7 - 8 0.001095 1 0 +28814 IGLV2-18 immunoglobulin lambda variable 2-18 22 other IGLV218|V1-5 - 9 0.001232 1 0 +28815 IGLV2-14 immunoglobulin lambda variable 2-14 22 other IGLV214|V1-4 - 5 0.0006844 1 0 +28816 IGLV2-11 immunoglobulin lambda variable 2-11 22 other IGLV211|V1-3 - 9 0.001232 1 0 +28817 IGLV2-8 immunoglobulin lambda variable 2-8 22 other IGLV28|V1-2 - 14 0.001916 1 0 +28820 IGLV1-51 immunoglobulin lambda variable 1-51 22 other IGLV151|V1-19 Ig lambda chain V-I region 51|Ig lambda chain V-I region EPS|Ig lambda chain V-I region NEW|Ig lambda chain V-I region NIG-64 4 0.0005475 1 0 +28821 IGLV1-50 immunoglobulin lambda variable 1-50 (non-functional) 22 other IGLV150|V1-18 - 10 0.001369 1 0 +28822 IGLV1-47 immunoglobulin lambda variable 1-47 22 other IGLV147|V1-17 - 8 0.001095 1 0 +28823 IGLV1-44 immunoglobulin lambda variable 1-44 22 other IGLV144|V1-16 - 5 0.0006844 1 0 +28824 IGLV1-41 immunoglobulin lambda variable 1-41 (pseudogene) 22 pseudo IGLV141|V1-14P - 1 0.0001369 1 0 +28825 IGLV1-40 immunoglobulin lambda variable 1-40 22 other IGLV140|V1-13 - 9 0.001232 1 0 +28826 IGLV1-36 immunoglobulin lambda variable 1-36 22 other IGLV136|V1-11 - 6 0.0008212 1 0 +28827 IGLJ7 immunoglobulin lambda joining 7 22 other J7 - 1 0.0001369 1 0 +28829 IGLJ5 immunoglobulin lambda joining 5 (non-functional) 22 other - - 1 0.0001369 1 0 +28830 IGLJ4 immunoglobulin lambda joining 4 (non-functional) 22 other - - 0 0 1 0 +28831 IGLJ3 immunoglobulin lambda joining 3 22 other J3 - 4 0.0005475 1 0 +28832 IGLJ2 immunoglobulin lambda joining 2 22 other J2 - 5 0.0006844 1 0 +28834 IGLC7 immunoglobulin lambda constant 7 22 other C7 - 12 0.001642 1 0 +28869 IGKV6D-41 immunoglobulin kappa variable 6D-41 (non-functional) 2 other A14 - 22 0.003011 1 0 +28870 IGKV6D-21 immunoglobulin kappa variable 6D-21 (non-functional) 2 other A10|IGKV6D21 - 7 0.0009581 1 0 +28874 IGKV3D-20 immunoglobulin kappa variable 3D-20 2 other A11|A11a|IGKV3D20 - 27 0.003696 1 0 +28875 IGKV3D-15 immunoglobulin kappa variable 3D-15 (gene/pseudogene) 2 other IGKV3D15|L16|L16a|L16b|L16c immunoglobulin light chain variable region 6 0.0008212 1 0 +28876 IGKV3D-11 immunoglobulin kappa variable 3D-11 2 other IGKV3D11|L20 - 26 0.003559 1 0 +28878 IGKV2D-40 immunoglobulin kappa variable 2D-40 2 other IGKV2D40|O1 - 1 0.0001369 1 0 +28881 IGKV2D-30 immunoglobulin kappa variable 2D-30 2 other A1|IGKV2D30 - 14 0.001916 1 0 +28882 IGKV2D-29 immunoglobulin kappa variable 2D-29 2 other A2a|A2c|IGKV2D29 - 18 0.002464 1 0 +28883 IGKV2D-28 immunoglobulin kappa variable 2D-28 2 other A3|IGKV2D28 - 1 0.0001369 1 0 +28884 IGKV2D-26 immunoglobulin kappa variable 2D-26 2 pseudo A5|IGKV2D26 - 2 0.0002737 1 0 +28885 IGKV2D-24 immunoglobulin kappa variable 2D-24 (non-functional) 2 other A7|IGKV2D24 - 30 0.004106 1 0 +28891 IGKV1D-43 immunoglobulin kappa variable 1D-43 2 other IGKV1D43|L23|L23a - 37 0.005064 1 0 +28892 IGKV1D-42 immunoglobulin kappa variable 1D-42 (non-functional) 2 other IGKV1D42|L22 - 23 0.003148 1 0 +28896 IGKV1D-33 immunoglobulin kappa variable 1D-33 2 other IGKV1D33|O8 - 4 0.0005475 1 0 +28900 IGKV1D-17 immunoglobulin kappa variable 1D-17 2 other IGKV1D17|L14 - 30 0.004106 1 0 +28901 IGKV1D-16 immunoglobulin kappa variable 1D-16 2 other IGKV1D16|L15|L15a - 32 0.00438 1 0 +28902 IGKV1D-13 immunoglobulin kappa variable 1D-13 2 other IGKV1D13|L18 - 11 0.001506 1 0 +28903 IGKV1D-12 immunoglobulin kappa variable 1D-12 2 other IGKV1D12|L19 - 21 0.002874 1 0 +28904 IGKV1D-8 immunoglobulin kappa variable 1D-8 2 other IGKV1D8|L24|L24a immunoglobulin light chain variable region 28 0.003832 1 0 +28906 IGKV6-21 immunoglobulin kappa variable 6-21 (non-functional) 2 other A26|IGKV621 - 12 0.001642 1 0 +28907 IGKV5-2 immunoglobulin kappa variable 5-2 2 other B2|IGKV52 - 15 0.002053 1 0 +28908 IGKV4-1 immunoglobulin kappa variable 4-1 2 other B3|IGKV41 - 13 0.001779 1 0 +28912 IGKV3-20 immunoglobulin kappa variable 3-20 2 other 13K18|A27|IGKV320 Ig kappa chain V-III region HIC|anti-(ED-B) scFV|anti-FactorVIII scFv|anti-HCS scFv|anti-IFN-G scFv|anti-TeTox scFv|immunoglobulin light chain variable region 15 0.002053 1 0 +28913 IGKV3-15 immunoglobulin kappa variable 3-15 2 other IGKV315|L2 - 6 0.0008212 1 0 +28914 IGKV3-11 immunoglobulin kappa variable 3-11 2 other IGKV311|L6 - 19 0.002601 1 0 +28915 IGKV3-7 immunoglobulin kappa variable 3-7 (non-functional) 2 other IGKV37|L10|L10a|Vh - 18 0.002464 1 0 +28919 IGKV2-30 immunoglobulin kappa variable 2-30 2 other A17|IGKV230 - 20 0.002737 1 0 +28921 IGKV2-28 immunoglobulin kappa variable 2-28 2 other A19|IGKV228 - 1 0.0001369 1 0 +28923 IGKV2-24 immunoglobulin kappa variable 2-24 2 other A23|IGKV224 Ig kappa chain V-II region 19 0.002601 1 0 +28930 IGKV1-39 immunoglobulin kappa variable 1-39 (gene/pseudogene) 2 other IGKV139|O12|O12a - 3 0.0004106 1 0 +28931 IGKV1-37 immunoglobulin kappa variable 1-37 (non-functional) 2 other IGKV137|O14 - 0 0 1 0 +28933 IGKV1-33 immunoglobulin kappa variable 1-33 2 other IGKV133|O18 - 5 0.0006844 1 0 +28935 IGKV1-27 immunoglobulin kappa variable 1-27 2 other A20|IGKV127 - 17 0.002327 1 0 +28937 IGKV1-17 immunoglobulin kappa variable 1-17 2 other A30|IGKV117 - 25 0.003422 1 0 +28938 IGKV1-16 immunoglobulin kappa variable 1-16 2 other IGKV116|L1 - 35 0.004791 1 0 +28940 IGKV1-12 immunoglobulin kappa variable 1-12 2 other IGKV112|L19 - 15 0.002053 1 0 +28941 IGKV1-9 immunoglobulin kappa variable 1-9 2 other IGKV19|L8 - 22 0.003011 1 0 +28942 IGKV1-8 immunoglobulin kappa variable 1-8 2 other IGKV18|L9 - 15 0.002053 1 0 +28943 IGKV1-6 immunoglobulin kappa variable 1-6 2 other IGKV16|L11 - 22 0.003011 1 0 +28946 IGKJ5 immunoglobulin kappa joining 5 2 other J5 - 1 0.0001369 1 0 +28951 TRIB2 tribbles pseudokinase 2 2 protein-coding C5FW|GS3955|TRB2 tribbles homolog 2 31 0.004243 9.874 1 1 +28952 CCDC22 coiled-coil domain containing 22 X protein-coding CXorf37|JM1|RTSC2 coiled-coil domain-containing protein 22 24 0.003285 9.139 1 1 +28954 REM1 RRAD and GEM like GTPase 1 20 protein-coding GD:REM|GES GTP-binding protein REM 1|GTPase-regulating endothelial cell sprouting|RAS (RAD and GEM)-like GTP-binding 1 45 0.006159 4.294 1 1 +28955 DEXI Dexi homolog 16 protein-coding MYLE dexamethasone-induced protein|dexamethasone-induced transcript 2 0.0002737 9.407 1 1 +28956 LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 1 protein-coding ENDAP|HSPC003|MAPBPIP|MAPKSP1AP|ROBLD3|Ragulator2|p14 ragulator complex protein LAMTOR2|MAPBP-interacting protein|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)|roadblock domain containing 3|roadblock domain-containing protein 3 11 0.001506 9.821 1 1 +28957 MRPS28 mitochondrial ribosomal protein S28 8 protein-coding HSPC007|MRP-S28|MRP-S35|MRPS35 28S ribosomal protein S28, mitochondrial|28S ribosomal protein S35, mitochondrial|S28mt|S35mt|mitochondrial 28S ribosomal protein S35 13 0.001779 8.472 1 1 +28958 COA3 cytochrome c oxidase assembly factor 3 17 protein-coding CCDC56|COX25|HSPC009|MITRAC12 cytochrome c oxidase assembly factor 3 homolog, mitochondrial|coiled-coil domain-containing protein 56|cytochrome C oxidase assembly factor 3 homolog, mitochondrial|cytochrome c oxidase assembly protein 3 homolog, mitochondrial|mitochondrial translation regulation assembly intermediate of cytochrome c oxidase protein of 12 kDa 2 0.0002737 10.17 1 1 +28959 TMEM176B transmembrane protein 176B 7 protein-coding LR8|MS4B2 transmembrane protein 176B|LR8-like protein 33 0.004517 10.36 1 1 +28960 DCPS decapping enzyme, scavenger 11 protein-coding ARS|DCS1|HINT-5|HINT5|HSL1|HSPC015 m7GpppX diphosphatase|5'-(N(7)-methyl 5'-triphosphoguanosine)-[mRNA] diphosphatase|decapping scavenger enzyme|heat shock-like protein 1|hint-related 7meGMP-directed hydrolase|histidine triad nucleotide-binding protein 5|histidine triad protein member 5|homolog of C. elegans 7meGMP-directed hydrolase dcs-1|mRNA decapping enzyme|scavenger mRNA-decapping enzyme DcpS 26 0.003559 8.51 1 1 +28962 OSTM1 osteopetrosis associated transmembrane protein 1 6 protein-coding GIPN|GL|HSPC019|OPTB5 osteopetrosis-associated transmembrane protein 1|CLCN7 accessory beta subunit|GAIP-interacting protein N terminus|chloride channel 7 beta subunit|grey-lethal osteopetrosis 20 0.002737 9.449 1 1 +28964 GIT1 GIT ArfGAP 1 17 protein-coding - ARF GTPase-activating protein GIT1|ARF GAP GIT1|CAT-1|CAT1|G protein-coupled receptor kinase interacting ArfGAP 1|G protein-coupled receptor kinase-interactor 1|GRK-interacting protein 1|cool-associated and tyrosine-phosphorylated protein 1 32 0.00438 10.82 1 1 +28965 SLC27A6 solute carrier family 27 member 6 5 protein-coding ACSVL2|FACVL2|FATP6|VLCS-H1 long-chain fatty acid transport protein 6|acyl-CoA synthetase very long chain family, member 2|fatty-acid-Coenzyme A ligase, very long-chain 2|solute carrier family 27 (fatty acid transporter), member 6|very long-chain acyl-CoA synthetase homolog 1 72 0.009855 3.172 1 1 +28966 SNX24 sorting nexin 24 5 protein-coding PRO1284|SBBI31 sorting nexin-24|sorting nexing 24 16 0.00219 7.798 1 1 +28968 SLC6A16 solute carrier family 6 member 16 19 protein-coding NT5|NTT5 orphan sodium- and chloride-dependent neurotransmitter transporter NTT5|CTC-301O7.4|solute carrier family 6 (neurotransmitter transporter), member 16 46 0.006296 3.763 1 1 +28969 BZW2 basic leucine zipper and W2 domains 2 7 protein-coding HSPC028|MST017|MSTP017 basic leucine zipper and W2 domain-containing protein 2 27 0.003696 10.45 1 1 +28970 C11orf54 chromosome 11 open reading frame 54 11 protein-coding PTD012|PTOD012 ester hydrolase C11orf54 24 0.003285 9.039 1 1 +28971 AAMDC adipogenesis associated Mth938 domain containing 11 protein-coding C11orf67|CK067|PTD015 mth938 domain-containing protein|UPF0366 protein C11orf67|adipogenesis associated Mth938 domain-containing protein 2 0.0002737 7.849 1 1 +28972 SPCS1 signal peptidase complex subunit 1 3 protein-coding HSPC033|SPC1|SPC12|YJR010C-A signal peptidase complex subunit 1|SPase 12 kDa subunit|microsomal signal peptidase 12 kDa subunit|signal peptidase 12kDa|signal peptidase complex 12 kDa subunit|signal peptidase complex subunit 1 homolog 11 0.001506 10.93 1 1 +28973 MRPS18B mitochondrial ribosomal protein S18B 6 protein-coding C6orf14|HSPC183|HumanS18a|MRP-S18-2|MRPS18-2|PTD017|S18amt 28S ribosomal protein S18b, mitochondrial|28S ribosomal protein S18-2, mitochondrial|MRP-S18-b|S18mt-b|mitochondrial ribosomal protein S18-2|mrps18-b 16 0.00219 10.48 1 1 +28974 C19orf53 chromosome 19 open reading frame 53 19 protein-coding HSPC023|LYDG10 leydig cell tumor 10 kDa protein homolog 8 0.001095 10.71 1 1 +28976 ACAD9 acyl-CoA dehydrogenase family member 9 3 protein-coding NPD002 acyl-CoA dehydrogenase family member 9, mitochondrial|acyl-Coenzyme A dehydrogenase family, member 9|very-long-chain acyl-CoA dehydrogenase VLCAD 32 0.00438 9.898 1 1 +28977 MRPL42 mitochondrial ribosomal protein L42 12 protein-coding HSPC204|L31MT|L42MT|MRP-L31|MRP-L42|MRP-S32|MRPL31|MRPS32|PTD007|RPML31|S32MT 39S ribosomal protein L42, mitochondrial|28S ribosomal protein S32, mitochondrial|39S ribosomal protein L31, mitochondrial 7 0.0009581 9.536 1 1 +28978 TMEM14A transmembrane protein 14A 6 protein-coding C6orf73|PTD011 transmembrane protein 14A 4 0.0005475 9.013 1 1 +28981 IFT81 intraflagellar transport 81 12 protein-coding CDV-1|CDV-1R|CDV1|CDV1R|DV1 intraflagellar transport protein 81 homolog|carnitine deficiency-associated gene expressed in ventricle 1|carnitine deficiency-associated protein expressed in ventricle 1|intraflagellar transport 81 homolog 48 0.00657 8.105 1 1 +28982 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 1 protein-coding AXPC1|FLVCR|MFSD7B|PCA|PCARP feline leukemia virus subgroup C receptor-related protein 1 37 0.005064 7.101 1 1 +28983 TMPRSS11E transmembrane protease, serine 11E 4 protein-coding DESC1|TMPRSS11E2 transmembrane protease serine 11E|serine protease DESC1|transmembrane protease serine 11E2 46 0.006296 1 0 +28984 RGCC regulator of cell cycle 13 protein-coding C13orf15|RGC-32|RGC32|bA157L14.2 regulator of cell cycle RGCC|response gene to complement 32 protein 4 0.0005475 8.805 1 1 +28985 MCTS1 MCTS1, re-initiation and release factor X protein-coding MCT-1|MCT1 malignant T-cell-amplified sequence 1|malignant T-cell amplified sequence 1|multiple copies T-cell malignancies|multiple copies in T-cell lymphoma-1 16 0.00219 9.791 1 1 +28986 MAGEH1 MAGE family member H1 X protein-coding APR-1|APR1|MAGEH melanoma-associated antigen H1|apoptosis-related protein 1|melanoma antigen family H, 1|melanoma antigen family H1|restin 20 0.002737 8.684 1 1 +28987 NOB1 NIN1/PSMD8 binding protein 1 homolog 16 protein-coding ART-4|MST158|MSTP158|NOB1P|PSMD8BP1 RNA-binding protein NOB1|NIN1/RPN12 binding protein 1 homolog|PSMD8 binding protein 1|adenocarcinoma antigen recognized by T lymphocytes 4|nin one binding protein|phosphorylation regulatory protein HP-10|protein ART-4 33 0.004517 10.12 1 1 +28988 DBNL drebrin like 7 protein-coding ABP1|HIP-55|HIP55|SH3P7 drebrin-like protein|HPK1-interacting protein of 55 kDa|SH3 domain-containing protein 7|actin-binding protein 1|cervical SH3P7|cervical mucin-associated protein|drebrin-F|src homology 3 domain-containing protein HIP-55 36 0.004927 11.21 1 1 +28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 9 protein-coding AD-003|C9orf32|HOMT1A|METTL11A|NRMT|NTM1A N-terminal Xaa-Pro-Lys N-methyltransferase 1|N-terminal RCC1 methyltransferase|X-Pro-Lys N-terminal protein methyltransferase 1A|alpha N-terminal protein methyltransferase 1A|methyltransferase-like protein 11A 16 0.00219 8.951 1 1 +28990 ASTE1 asteroid homolog 1 (Drosophila) 3 protein-coding HT001 protein asteroid homolog 1 51 0.006981 7.494 1 1 +28991 COMMD5 COMM domain containing 5 8 protein-coding HCARG|HT002 COMM domain-containing protein 5|hypertension-related calcium-regulated gene protein 16 0.00219 9.333 1 1 +28992 MACROD1 MACRO domain containing 1 11 protein-coding LRP16 O-acetyl-ADP-ribose deacetylase MACROD1|MACRO domain-containing protein 1|[Protein ADP-ribosylglutamate] hydrolase 16 0.00219 7.846 1 1 +28996 HIPK2 homeodomain interacting protein kinase 2 7 protein-coding PRO0593 homeodomain-interacting protein kinase 2|hHIPk2 65 0.008897 10.94 1 1 +28997 PRO0611 PRO0611 protein 1 unknown - - 0.5201 0 1 +28998 MRPL13 mitochondrial ribosomal protein L13 8 protein-coding L13|L13A|L13mt|RPL13|RPML13 39S ribosomal protein L13, mitochondrial|MRP-L13 16 0.00219 9.45 1 1 +28999 KLF15 Kruppel like factor 15 3 protein-coding KKLF Krueppel-like factor 15|kidney-enriched Kruppel-like factor|kidney-enriched krueppel-like factor 39 0.005338 6.474 1 1 +29015 SLC43A3 solute carrier family 43 member 3 11 protein-coding EEG1|FOAP-13|PRO1659|SEEEG-1 solute carrier family 43 member 3|likely ortholog of mouse embryonic epithelial gene 1 44 0.006022 9.713 1 1 +29018 FOXN3-AS2 FOXN3 antisense RNA 2 14 ncRNA PRO1768 CTD-2303B20.1|FOXN3 antisense RNA 2 (non-protein coding) 0.1214 0 1 +29028 ATAD2 ATPase family, AAA domain containing 2 8 protein-coding ANCCA|CT137|PRO2000 ATPase family AAA domain-containing protein 2|AAA nuclear coregulator cancer-associated protein 136 0.01861 9.714 1 1 +29034 CPS1-IT1 CPS1 intronic transcript 1 2 ncRNA CPS1-IT|CPS1IT|CPS1IT1|PRO0132 CPS1 intronic transcript (non-protein coding)|CPS1 intronic transcript 1 (non-protein coding) 0.17 0 1 +29035 C16orf72 chromosome 16 open reading frame 72 16 protein-coding PRO0149 UPF0472 protein C16orf72 16 0.00219 10.08 1 1 +29053 PRO0628 uncharacterized LOC29053 20 unknown - - 0.7595 0 1 +29057 FAM156A family with sequence similarity 156 member A X protein-coding PRO0659|TMEM29 protein FAM156A/FAM156B|protein FAM156A|transmembrane protein 29|transmembrane protein 29/29B 9.175 0 1 +29058 TMEM230 transmembrane protein 230 20 protein-coding C20orf30|HSPC274|dJ1116H23.2.1 transmembrane protein 230|UPF0414 transmembrane protein C20orf30 5 0.0006844 11.23 1 1 +29062 WDR91 WD repeat domain 91 7 protein-coding HSPC049|SORF-1|SORF1 WD repeat-containing protein 91 45 0.006159 8.994 1 1 +29063 ZCCHC4 zinc finger CCHC-type containing 4 4 protein-coding HSPC052|ZGRF4 zinc finger CCHC domain-containing protein 4|DHHC domain-containing zinc finger protein|zinc finger, CCHC domain containing 4|zinc finger, GRF-type containing 4 26 0.003559 7.281 1 1 +29065 ASAP1-IT1 ASAP1 intronic transcript 1 8 ncRNA ASAP1-IT|ASAP1IT|ASAP1IT1|DDEF1IT1|HSPC054|NCRNA00050 ASAP1 intronic transcript (non-protein coding)|ASAP1 intronic transcript 1 (non-protein coding)|ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 intronic transcript 1 (non-protein coding)|DDEF1 intronic transcript 1 (non-protein coding) 0.1484 0 1 +29066 ZC3H7A zinc finger CCCH-type containing 7A 16 protein-coding HSPC055|ZC3H7|ZC3HDC7 zinc finger CCCH domain-containing protein 7A|zinc finger CCCH-type domain containing 7|zinc-finger protein AY163807 61 0.008349 9.813 1 1 +29068 ZBTB44 zinc finger and BTB domain containing 44 11 protein-coding BTBD15|HSPC063|ZNF851 zinc finger and BTB domain-containing protein 44|BTB (POZ) domain containing 15|BTB/POZ domain-containing protein 15|zinc finger protein 851 27 0.003696 10.09 1 1 +29070 CCDC113 coiled-coil domain containing 113 16 protein-coding HSPC065 coiled-coil domain-containing protein 113 31 0.004243 7.37 1 1 +29071 C1GALT1C1 C1GALT1 specific chaperone 1 X protein-coding C1GALT2|C38H2-L1|COSMC|HSPC067|MST143|TNPS C1GALT1-specific chaperone 1|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 28 0.003832 9.131 1 1 +29072 SETD2 SET domain containing 2 3 protein-coding HBP231|HIF-1|HIP-1|HSPC069|HYPB|KMT3A|LLS|SET2|p231HBP histone-lysine N-methyltransferase SETD2|huntingtin interacting protein 1|huntingtin yeast partner B|huntingtin-interacting protein B|lysine N-methyltransferase 3A 217 0.0297 10.62 1 1 +29074 MRPL18 mitochondrial ribosomal protein L18 6 protein-coding HSPC071|L18mt|MRP-L18 39S ribosomal protein L18, mitochondrial 15 0.002053 9.853 1 1 +29075 LINC00652 long intergenic non-protein coding RNA 652 20 ncRNA HSPC072 - 1 0.0001369 1.283 1 1 +29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 6 protein-coding C6orf66|HRPAP20|HSPC125|My013|bA22L21.1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 4|NADH dehydrogenase (ubiquinone) complex I, assembly factor 4|hormone-regulated proliferation-associated protein of 20 kDa|hormone-regulated proliferation-associated protein, 20 kDa 6 0.0008212 8.065 1 1 +29079 MED4 mediator complex subunit 4 13 protein-coding ARC36|DRIP36|HSPC126|TRAP36|VDRIP mediator of RNA polymerase II transcription subunit 4|TRAP/SMCC/PC2 subunit p36|activator-recruited cofactor 36 kDa component|mediator, 34-kD subunit, homolog|vitamin D receptor-interacting protein, 36-kD|vitamin D3 receptor-interacting protein complex 36 kDa component 13 0.001779 9.713 1 1 +29080 CCDC59 coiled-coil domain containing 59 12 protein-coding BR22|HSPC128|TAP26 thyroid transcription factor 1-associated protein 26|TTF-1-associated protein 26|TTF-1-associated protein BR2|coiled-coil domain-containing protein 59 17 0.002327 8.754 1 1 +29081 METTL5 methyltransferase like 5 2 protein-coding HSPC133 methyltransferase-like protein 5 17 0.002327 9.081 1 1 +29082 CHMP4A charged multivesicular body protein 4A 14 protein-coding C14orf123|CHMP4|CHMP4B|HSPC134|SHAX2|SNF7|SNF7-1|VPS32-1|VPS32A charged multivesicular body protein 4a|SNF7 homolog associated with Alix-2|Snf7 homologue associated with Alix 2|chromatin modifying protein 4A|vacuolar protein sorting-associated protein 32-1 7 0.0009581 9.926 1 1 +29083 GTPBP8 GTP binding protein 8 (putative) 3 protein-coding HSPC135 GTP-binding protein 8 27 0.003696 7.263 1 1 +29085 PHPT1 phosphohistidine phosphatase 1 9 protein-coding CGI-202|HEL-S-132P|HSPC141|PHP14 14 kDa phosphohistidine phosphatase|epididymis secretory sperm binding protein Li 132P|protein janus-A homolog|sex-regulated protein janus-a 14 0.001916 10.38 1 1 +29086 BABAM1 BRISC and BRCA1 A complex member 1 19 protein-coding C19orf62|HSPC142|MERIT40|NBA1 BRISC and BRCA1-A complex member 1|BRCA1-A complex subunit MERIT40|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 BRCAA1 A complex 16 0.00219 10.41 1 1 +29087 THYN1 thymocyte nuclear protein 1 11 protein-coding HSPC144|MDS012|MY105|THY28|THY28KD thymocyte nuclear protein 1|thymocyte protein thy28 20 0.002737 9.356 1 1 +29088 MRPL15 mitochondrial ribosomal protein L15 8 protein-coding HSPC145|L15mt|MRP-L15|MRP-L7|RPML7 39S ribosomal protein L15, mitochondrial 23 0.003148 9.969 1 1 +29089 UBE2T ubiquitin conjugating enzyme E2 T 1 protein-coding FANCT|HSPC150|PIG50 ubiquitin-conjugating enzyme E2 T|E2 ubiquitin-conjugating enzyme T|HSPC150 protein similar to ubiquitin-conjugating enzyme|cell proliferation-inducing gene 50 protein|ubiquitin carrier protein T|ubiquitin conjugating enzyme E2T|ubiquitin-conjugating enzyme E2T (putative)|ubiquitin-protein ligase T 15 0.002053 7.874 1 1 +29090 TIMM21 translocase of inner mitochondrial membrane 21 18 protein-coding C18orf55|HSPC154|TIM21 mitochondrial import inner membrane translocase subunit Tim21|TIM21-like protein, mitochondrial|translocase of inner mitochondrial membrane 21 homolog 14 0.001916 8.469 1 1 +29091 STXBP6 syntaxin binding protein 6 14 protein-coding HSPC156|amisyn syntaxin-binding protein 6|syntaxin binding protein 6 (amisyn) 17 0.002327 5.674 1 1 +29092 LINC00339 long intergenic non-protein coding RNA 339 1 ncRNA HSPC157|NCRNA00339 - 7.571 0 1 +29093 MRPL22 mitochondrial ribosomal protein L22 5 protein-coding HSPC158|L22mt|MRP-L22|MRP-L25|RPML25 39S ribosomal protein L22, mitochondrial|39S ribosomal protein L25, mitochondrial|L25mt 20 0.002737 8.783 1 1 +29094 LGALSL galectin like 2 protein-coding GRP|HSPC159 galectin-related protein|lectin galactoside-binding-like protein|lectin, galactoside binding like 10 0.001369 8.699 1 1 +29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 12 protein-coding HSPC160|MST095|MSTP095|adoplin-2 ORM1-like protein 2|expressed in normal aorta 8 0.001095 9.31 1 1 +29097 CNIH4 cornichon family AMPA receptor auxiliary protein 4 1 protein-coding CNIH-4|HSPC163 protein cornichon homolog 4|cornichon homolog 4 13 0.001779 9.733 1 1 +29098 RANGRF RAN guanine nucleotide release factor 17 protein-coding HSPC165|HSPC236|MOG1|RANGNRF ran guanine nucleotide release factor|MOG1 homolog|ran-binding protein MOG1 7 0.0009581 8.667 1 1 +29099 COMMD9 COMM domain containing 9 11 protein-coding HSPC166 COMM domain-containing protein 9 11 0.001506 9.608 1 1 +29100 TMEM208 transmembrane protein 208 16 protein-coding HSPC171 transmembrane protein 208 8 0.001095 9.634 1 1 +29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase 1 protein-coding HSPC182|PNAS-120 RNA polymerase II subunit A C-terminal domain phosphatase SSU72|CTD phosphatase SSU72 17 0.002327 11.32 1 1 +29102 DROSHA drosha ribonuclease III 5 protein-coding ETOHI2|HSA242976|RANSE3L|RN3|RNASE3L|RNASEN ribonuclease 3|RNase III|drosha, double-stranded RNA-specific endoribonuclease|nuclear RNase III Drosha|p241|putative protein p241 which interacts with transcription factor Sp1|putative ribonuclease III|ribonuclease type III, nuclear 92 0.01259 10.27 1 1 +29103 DNAJC15 DnaJ heat shock protein family (Hsp40) member C15 13 protein-coding DNAJD1|HSD18|MCJ dnaJ homolog subfamily C member 15|DNAJ domain-containing|DnaJ (Hsp40) homolog, subfamily C, member 15|DnaJ (Hsp40) homolog, subfamily D, member 1|cell growth-inhibiting gene 22 protein|methylation-controlled J protein 11 0.001506 9.176 1 1 +29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 (putative) 21 protein-coding C21orf127|HEMK2|MTQ2|N6AMT|PRED28|m.HsaHemK2P hemK methyltransferase family member 2|N6-DNA-methyltransferase|n(6)-adenine-specific DNA methyltransferase 1 20 0.002737 7.737 1 1 +29105 CFAP20 cilia and flagella associated protein 20 16 protein-coding C16orf80|EVORF|GTL3|fSAP23 cilia- and flagella-associated protein 20|UPF0468 protein C16orf80|basal body up-regulated protein 22|flagellar associated protein 20 homolog|functional spliceosome-associated protein 23|gene trap locus 3|transcription factor IIB 10 0.001369 9.298 1 1 +29106 SCG3 secretogranin III 15 protein-coding SGIII secretogranin-3 38 0.005201 3.615 1 1 +29107 NXT1 nuclear transport factor 2 like export factor 1 20 protein-coding MTR2|P15 NTF2-related export protein 1|NTF2-like export factor 1|NTX2-like export factor1|NUTF-like export factor 1|protein p15 9 0.001232 8.577 1 1 +29108 PYCARD PYD and CARD domain containing 16 protein-coding ASC|CARD5|TMS|TMS-1|TMS1 apoptosis-associated speck-like protein containing a CARD|caspase recruitment domain-containing protein 5|target of methylation-induced silencing 1 14 0.001916 8.745 1 1 +29109 FHOD1 formin homology 2 domain containing 1 16 protein-coding FHOS FH1/FH2 domain-containing protein 1|formin homolog overexpressed in spleen 1 70 0.009581 9.116 1 1 +29110 TBK1 TANK binding kinase 1 12 protein-coding FTDALS4|NAK|T2K serine/threonine-protein kinase TBK1|NF-kB-activating kinase|NF-kappa-B-activating kinase 44 0.006022 9.248 1 1 +29113 C6orf15 chromosome 6 open reading frame 15 6 protein-coding STG uncharacterized protein C6orf15|taste bud-specific protein 21 0.002874 1.71 1 1 +29114 TAGLN3 transgelin 3 3 protein-coding NP22|NP24|NP25 transgelin-3|neuronal protein 22|neuronal protein NP25 21 0.002874 2.842 1 1 +29115 SAP30BP SAP30 binding protein 17 protein-coding HCNGP|HTRG|HTRP SAP30-binding protein|HSV-1 binding|transcriptional regulator protein HCNGP 24 0.003285 10.25 1 1 +29116 MYLIP myosin regulatory light chain interacting protein 6 protein-coding IDOL|MIR E3 ubiquitin-protein ligase MYLIP|E3 ubiquitin ligase-inducible degrader of the low density lipoprotein receptor|band 4.1 superfamily member BZF1|cellular modulator of immune recognition (c-MIR)|inducible degrader of the LDL-receptor 28 0.003832 9.243 1 1 +29117 BRD7 bromodomain containing 7 16 protein-coding BP75|CELTIX1|NAG4 bromodomain-containing protein 7|75 kDa bromodomain protein|protein CELTIX-1 65 0.008897 10.11 1 1 +29118 DDX25 DEAD-box helicase 25 11 protein-coding GRTH ATP-dependent RNA helicase DDX25|DEAD (Asp-Glu-Ala-Asp) box helicase 25|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 14 0.001916 2.322 1 1 +29119 CTNNA3 catenin alpha 3 10 protein-coding ARVD13|VR22 catenin alpha-3|alpha-T-catenin|alpha-catenin-like protein|catenin (cadherin-associated protein), alpha 3 137 0.01875 1.526 1 1 +29121 CLEC2D C-type lectin domain family 2 member D 12 protein-coding CLAX|LLT1|OCIL 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 18 0.002464 8.877 1 1 +29122 PRSS50 protease, serine 50 3 protein-coding CT20|TSP50 probable threonine protease PRSS50|cancer/testis antigen 20|serine protease 50|testes-specific protease 50|testicular tissue protein Li 210|testis-specific protease-like protein 50 22 0.003011 2.918 1 1 +29123 ANKRD11 ankyrin repeat domain 11 16 protein-coding ANCO-1|ANCO1|LZ16|T13 ankyrin repeat domain-containing protein 11|ankyrin repeat-containing cofactor 1|nasopharyngeal carcinoma susceptibility protein|truncated ankyrin repeat domain 11 aberrant transcript 1|truncated ankyrin repeat domain 11 aberrant transcript 2 159 0.02176 11.22 1 1 +29124 LGALS13 galectin 13 19 protein-coding GAL13|PLAC8|PP13 galactoside-binding soluble lectin 13|beta-galactoside-binding lectin|gal-13|lectin, galactoside-binding, soluble, 13|placental protein 13|placental tissue protein 13 20 0.002737 0.07679 1 1 +29125 C11orf21 chromosome 11 open reading frame 21 11 protein-coding - uncharacterized protein C11orf21 6 0.0008212 3.036 1 1 +29126 CD274 CD274 molecule 9 protein-coding B7-H|B7H1|PD-L1|PDCD1L1|PDCD1LG1|PDL1 programmed cell death 1 ligand 1|B7 homolog 1|CD274 antigen|PDCD1 ligand 1 19 0.002601 4.814 1 1 +29127 RACGAP1 Rac GTPase activating protein 1 12 protein-coding CYK4|HsCYK-4|ID-GAP|MgcRacGAP rac GTPase-activating protein 1|male germ cell RacGap|protein CYK4 homolog 42 0.005749 9.304 1 1 +29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 19 protein-coding ICBP90|Np95|RNF106|TDRD22|hNP95|hUHRF1|huNp95 E3 ubiquitin-protein ligase UHRF1|RING finger protein 106|inverted CCAAT box-binding protein of 90 kDa|nuclear phosphoprotein 95|nuclear protein 95|nuclear zinc finger protein Np95|transcription factor ICBP90|ubiquitin-like PHD and RING finger domain-containing protein 1 78 0.01068 7.878 1 1 +29760 BLNK B-cell linker 10 protein-coding AGM4|BASH|BLNK-S|LY57|SLP-65|SLP65|bca B-cell linker protein|B cell adaptor containing SH2 domain|B-cell activation|B-cell adapter containing a SH2 domain protein|B-cell adapter containing a Src homology 2 domain protein|Src homology 2 domain-containing leukocyte protein of 65 kDa|Src homology [SH2] domain-containing leukocyte protein of 65 kD|cytoplasmic adapter protein 36 0.004927 7.514 1 1 +29761 USP25 ubiquitin specific peptidase 25 21 protein-coding USP21 ubiquitin carboxyl-terminal hydrolase 25|USP on chromosome 21|deubiquitinating enzyme 25|ubiquitin thioesterase 25|ubiquitin thiolesterase 25|ubiquitin-specific processing protease 25 65 0.008897 9.513 1 1 +29763 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 11 protein-coding SDPIII protein kinase C and casein kinase substrate in neurons protein 3|SH3 domain-containing protein 6511|syndapin III 29 0.003969 9.106 1 1 +29765 TMOD4 tropomodulin 4 1 protein-coding SK-TMOD tropomodulin-4|actin-capping protein|skeletal muscle tropomodulin|skeletal tropomodulin|tropomodulin 4 (muscle) 19 0.002601 1.461 1 1 +29766 TMOD3 tropomodulin 3 15 protein-coding UTMOD tropomodulin-3|tropomodulin 3 (ubiquitous)|ubiquitous tropomodulin 17 0.002327 10.37 1 1 +29767 TMOD2 tropomodulin 2 15 protein-coding N-TMOD|NTMOD tropomodulin-2|neuronal tropomodulin|tropomodulin 2 (neuronal) 18 0.002464 8.29 1 1 +29774 POM121L9P POM121 transmembrane nucleoporin like 9, pseudogene 22 pseudo DKFZP434P211|UNQ2565 POM121 membrane glycoprotein-like 1 pseudogene|POM121 membrane glycoprotein-like 9, pseudogene|POM121-like protein 126 0.01725 3.239 1 1 +29775 CARD10 caspase recruitment domain family member 10 22 protein-coding BIMP1|CARMA3 caspase recruitment domain-containing protein 10|Bcl10 binding protein and activator of NFKB|CARD-containing MAGUK 3 protein|CARD-containing MAGUK protein 3|carma 3 54 0.007391 8.657 1 1 +29777 ABT1 activator of basal transcription 1 6 protein-coding hABT1 activator of basal transcription 1|TATA-binding protein-binding protein|basal transcriptional activator 33 0.004517 9.405 1 1 +29780 PARVB parvin beta 22 protein-coding CGI-56 beta-parvin|affixin 28 0.003832 8.636 1 1 +29781 NCAPH2 non-SMC condensin II complex subunit H2 22 protein-coding CAPH2 condensin-2 complex subunit H2|CAP-H2 subunit of the condensin II complex|CTA-384D8.36|chromosome-associated protein H2|kleisin beta 44 0.006022 9.827 1 1 +29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 19 protein-coding CYPIIS1 cytochrome P450 2S1|cytochrome P450, family 2, subfamily S, polypeptide 1|cytochrome P540, subfamily IIS, polypeptide 1 37 0.005064 7.327 1 1 +29789 OLA1 Obg like ATPase 1 2 protein-coding DOC45|GBP45|GTBP9|GTPBP9|PTD004 obg-like ATPase 1|DNA damage-regulated overexpressed in cancer 45 protein|GTP-binding protein 9 (putative)|GTP-binding protein PTD004|homologous yeast-44.2 protein 22 0.003011 10.67 1 1 +29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X 22 protein-coding HSPC051|HSPC119|HSPC151|QCR9|UCCR7.2|UCRC cytochrome b-c1 complex subunit 9|cytochrome C1, nonheme 7kDa protein|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 10 0.001369 10.57 1 1 +29797 POM121L8P POM121 transmembrane nucleoporin like 8, pseudogene 22 pseudo DKFZp434K191 POM121 membrane glycoprotein-like 1 pseudogene|POM121 membrane glycoprotein-like 8 pseudogene 0.9932 0 1 +29798 C2orf27A chromosome 2 open reading frame 27A 2 protein-coding C2orf27|C2orf27B uncharacterized protein C2orf27 2 0.0002737 4.613 1 1 +29799 YPEL1 yippee like 1 22 protein-coding FKSG3 protein yippee-like 1|DiGeorge syndrome-related protein 13 0.001779 7.602 1 1 +29800 ZDHHC1 zinc finger DHHC-type containing 1 16 protein-coding C16orf1|HSU90653|ZNF377 probable palmitoyltransferase ZDHHC1|DHHC domain-containing cysteine-rich protein 1|DHHC-1|DHHC-domain-containing cysteine-rich protein|zinc finger DHHC domain-containing protein 1|zinc finger protein 377|zinc finger, DHHC domain containing 1 20 0.002737 7.443 1 1 +29801 ZDHHC8 zinc finger DHHC-type containing 8 22 protein-coding DHHC8|ZDHHCL1|ZNF378 probable palmitoyltransferase ZDHHC8|membrane-associated DHHC8 zinc finger protein|zinc finger protein 378|zinc finger, DHHC domain like containing 1 61 0.008349 9.513 1 1 +29802 VPREB3 pre-B lymphocyte 3 22 protein-coding 8HS20|N27C7-2 pre-B lymphocyte protein 3|pre-B lymphocyte gene 3 8 0.001095 3.113 1 1 +29803 REPIN1 replication initiator 1 7 protein-coding AP4|RIP60|ZNF464|Zfp464 replication initiator 1|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 39 0.005338 11.12 1 1 +29841 GRHL1 grainyhead like transcription factor 1 2 protein-coding LBP32|MGR|NH32|TFCP2L2 grainyhead-like protein 1 homolog|LBP protein 32|grainyhead-like 1|mammalian grainyhead|transcription factor CP2-like 2|transcription factor LBP-32 51 0.006981 7.704 1 1 +29842 TFCP2L1 transcription factor CP2 like 1 2 protein-coding CRTR1|LBP-9|LBP9 transcription factor CP2-like protein 1|CP2-related transcriptional repressor 1|CRTR-1|transcription factor LBP-9 32 0.00438 7.793 1 1 +29843 SENP1 SUMO1/sentrin specific peptidase 1 12 protein-coding SuPr-2 sentrin-specific protease 1|SUMO1/sentrin specific protease 1|sentrin/SUMO-specific protease SENP1 40 0.005475 8.745 1 1 +29844 TFPT TCF3 fusion partner 19 protein-coding FB1|INO80F|amida TCF3 fusion partner|INO80 complex subunit F|TCF3 (E2A) fusion partner (in childhood Leukemia)|amida, partner of the E2A 20 0.002737 8.449 1 1 +29850 TRPM5 transient receptor potential cation channel subfamily M member 5 11 protein-coding LTRPC5|MTR1 transient receptor potential cation channel subfamily M member 5|LTrpC-5|MLSN1 and TRP-related|MLSN1- and TRP-related gene 1 protein|long transient receptor potential channel 5 82 0.01122 1.599 1 1 +29851 ICOS inducible T-cell costimulator 2 protein-coding AILIM|CD278|CVID1 inducible T-cell costimulator|activation-inducible lymphocyte immunomediatory molecule|inducible T-cell co-stimulator|inducible costimulator 14 0.001916 3.999 1 1 +29855 UBN1 ubinuclein 1 16 protein-coding VT|VT4 ubinuclein-1|HIRA-binding protein|ubiquitously expressed nuclear protein 61 0.008349 10.36 1 1 +29880 ALG5 ALG5, dolichyl-phosphate beta-glucosyltransferase 13 protein-coding bA421P11.2 dolichyl-phosphate beta-glucosyltransferase|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 5, dolichyl-phosphate beta-glucosyltransferase homolog|asparagine-linked glycosylation protein 5 homolog|dolP-glucosyltransferase|dolichyl phosphate glucosyltransferase 29 0.003969 9.28 1 1 +29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 7 protein-coding NPC11L1 Niemann-Pick C1-like protein 1|NPC1 (Niemann-Pick disease, type C1, gene)-like 1|NPC1 like 1 99 0.01355 3.26 1 1 +29882 ANAPC2 anaphase promoting complex subunit 2 9 protein-coding APC2 anaphase-promoting complex subunit 2|cyclosome subunit 2 53 0.007254 9.619 1 1 +29883 CNOT7 CCR4-NOT transcription complex subunit 7 8 protein-coding CAF-1|CAF1|Caf1a|hCAF-1 CCR4-NOT transcription complex subunit 7|BTG1-binding factor 1|CCR4-associated factor 1|carbon catabolite repressor protein (CCR4)-associative factor 1 15 0.002053 10.44 1 1 +29886 SNX8 sorting nexin 8 7 protein-coding Mvp1 sorting nexin-8 32 0.00438 8.791 1 1 +29887 SNX10 sorting nexin 10 7 protein-coding OPTB8 sorting nexin-10 18 0.002464 8.589 1 1 +29888 STRN4 striatin 4 19 protein-coding PPP2R6C|ZIN|zinedin striatin-4|protein phosphatase 2 regulatory subunit B'''gamma|striatin, calmodulin binding protein 4 41 0.005612 10.96 1 1 +29889 GNL2 G protein nucleolar 2 1 protein-coding HUMAUANTIG|NGP1|Ngp-1|Nog2|Nug2 nucleolar GTP-binding protein 2|autoantigen NGP-1|guanine nucleotide binding protein-like 2 (nucleolar)|novel nucleolar guanosine 5'-triphosphate binding protein autoantigen|nucleolar G-protein gene 1|nucleolar GTPase|nucleostemin-2 55 0.007528 10.29 1 1 +29890 RBM15B RNA binding motif protein 15B 3 protein-coding HUMAGCGB|OTT3 putative RNA-binding protein 15B|chromosome 3p21.1 gene sequence|huOTT3|one twenty two protein 3 37 0.005064 10.82 1 1 +29893 PSMC3IP PSMC3 interacting protein 17 protein-coding GT198|HOP2|HUMGT198A|ODG3|TBPIP homologous-pairing protein 2 homolog|DBD-interacting|TBP-1-interacting protein|nuclear receptor coactivator GT198|proteasome 26S ATPase subunit 3-interacting protein|tat-binding protein 1-interacting protein 13 0.001779 6.748 1 1 +29894 CPSF1 cleavage and polyadenylation specific factor 1 8 protein-coding CPSF160|HSU37012|P/cl.18 cleavage and polyadenylation specificity factor subunit 1|CPSF 160 kDa subunit|cleavage and polyadenylation specific factor 1, 160kDa|cleavage and polyadenylation specificity factor 160 kDa subunit|polyadenylation specificity factor 104 0.01423 10.94 1 1 +29895 MYLPF myosin light chain, phosphorylatable, fast skeletal muscle 16 protein-coding HUMMLC2B|MLC2B|MRLC2|MYL11 myosin regulatory light chain 2, skeletal muscle isoform|fast skeletal myosin light chain 2|myosin light chain 2|myosin, light chain 11, regulatory 17 0.002327 1.595 1 1 +29896 TRA2A transformer 2 alpha homolog 7 protein-coding AWMS1|HSU53209 transformer-2 protein homolog alpha|TRA-2 alpha|TRA2-alpha|Tra2alpha|htra-2 alpha|putative MAPK activating protein PM24|transformer-2 alpha|transformer-2 protein homolog A 37 0.005064 10.16 1 1 +29899 GPSM2 G-protein signaling modulator 2 1 protein-coding CMCS|DFNB82|LGN|PINS G-protein-signaling modulator 2|G-protein signalling modulator 2 (AGS3-like, C. elegans)|mosaic protein LGN 53 0.007254 8.83 1 1 +29901 SAC3D1 SAC3 domain containing 1 11 protein-coding HSU79266|SHD1 SAC3 domain-containing protein 1|SAC3 homology domain-containing protein 1|Sac3 homology domain 1 10 0.001369 7.87 1 1 +29902 FAM216A family with sequence similarity 216 member A 12 protein-coding C12orf24|HSU79274 protein FAM216A|protein predicted by clone 23733|uncharacterized protein C12orf24 10 0.001369 6.609 1 1 +29903 CCDC106 coiled-coil domain containing 106 19 protein-coding HSU79303|ZNF581 coiled-coil domain-containing protein 106|protein predicted by clone 23882 22 0.003011 8.296 1 1 +29904 EEF2K eukaryotic elongation factor 2 kinase 16 protein-coding HSU93850|eEF-2K 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 57 0.007802 9.904 1 1 +29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 18 protein-coding SIAT8-E|SIAT8E|ST8SiaV alpha-2,8-sialyltransferase 8E|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 5|sialyltransferase 8E (alpha-2, 8-polysialytransferase)|sialyltransferase St8Sia V 42 0.005749 2.668 1 1 +29907 SNX15 sorting nexin 15 11 protein-coding HSAF001435 sorting nexin-15|clone iota unknown protein 31 0.004243 8.984 1 1 +29909 GPR171 G protein-coupled receptor 171 3 protein-coding H963 probable G-protein coupled receptor 171|F730001G15Rik|G-protein coupled receptor H963|platelet activating receptor homolog 23 0.003148 3.928 1 1 +29911 HOOK2 hook microtubule tethering protein 2 19 protein-coding HK2 protein Hook homolog 2|h-hook2|hHK2|hook homolog 2 57 0.007802 9.192 1 1 +29914 UBIAD1 UbiA prenyltransferase domain containing 1 1 protein-coding SCCD|TERE1 ubiA prenyltransferase domain-containing protein 1|transitional epithelia response protein|transitional epithelial response protein 1 22 0.003011 9.065 1 1 +29915 HCFC2 host cell factor C2 12 protein-coding HCF-2|HCF2 host cell factor 2|C2 factor 67 0.009171 8.217 1 1 +29916 SNX11 sorting nexin 11 17 protein-coding - sorting nexin-11 19 0.002601 9.136 1 1 +29919 C18orf8 chromosome 18 open reading frame 8 18 protein-coding HsT2591|MIC1|Mic-1 uncharacterized protein C18orf8|colon cancer-associated protein Mic1|macrophage inhibitory cytokine 1 39 0.005338 8.761 1 1 +29920 PYCR2 pyrroline-5-carboxylate reductase family member 2 1 protein-coding HLD10|P5CR2 pyrroline-5-carboxylate reductase 2|P5C reductase 2|pyrroline 5-carboxylate reductase isoform 15 0.002053 10.67 1 1 +29922 NME7 NME/NM23 family member 7 1 protein-coding CFAP67|MN23H7|NDK 7|NDK7|nm23-H7 nucleoside diphosphate kinase 7|NDP kinase 7|cilia and flagella associated protein 67|non-metastatic cells 7, protein expressed in (nucleoside-diphosphate kinase) 26 0.003559 7.888 1 1 +29923 HILPDA hypoxia inducible lipid droplet associated 7 protein-coding C7orf68|HIG-2|HIG2 hypoxia-inducible lipid droplet-associated protein|hypoxia inducible gene 2|hypoxia-inducible gene 2 protein|hypoxia-inducible protein 2 6 0.0008212 8.371 1 1 +29924 EPN1 epsin 1 19 protein-coding - epsin-1|EH domain-binding mitotic phosphoprotein|EPS-15-interacting protein 1 50 0.006844 11.61 1 1 +29925 GMPPB GDP-mannose pyrophosphorylase B 3 protein-coding MDDGA14|MDDGB14|MDDGC14 mannose-1-phosphate guanyltransferase beta|GTP-mannose-1-phosphate guanylyltransferase beta 16 0.00219 8.527 1 1 +29926 GMPPA GDP-mannose pyrophosphorylase A 2 protein-coding AAMR mannose-1-phosphate guanyltransferase alpha|GMPP-alpha|GTP-mannose-1-phosphate guanylyltransferase alpha|mannose-1-phosphate guanylyltransferase (GDP) 38 0.005201 9.671 1 1 +29927 SEC61A1 Sec61 translocon alpha 1 subunit 3 protein-coding HNFJ4|HSEC61|SEC61|SEC61A protein transport protein Sec61 subunit alpha isoform 1|Sec61 alpha 1 subunit|Sec61 alpha-1|protein transport protein SEC61 alpha subunit|protein transport protein Sec61 subunit alpha|sec61 homolog 38 0.005201 13.09 1 1 +29928 TIMM22 translocase of inner mitochondrial membrane 22 17 protein-coding TEX4|TIM22 mitochondrial import inner membrane translocase subunit Tim22|testis-expressed sequence 4|translocase of inner mitochondrial membrane 22 homolog 9 0.001232 8.848 1 1 +29929 ALG6 ALG6, alpha-1,3-glucosyltransferase 1 protein-coding CDG1C dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase|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 6, alpha-1,3-glucosyltransferase homolog|asparagine-linked glycosylation protein 6 homolog|dol-P-Glc:Man(9)GlcNAc(2)-PP-Dol alpha-1,3-glucosyltransferase|dolichyl-P-Glc:Man(9)GlcNAc(2)-PP-dolichol alpha- 1->3-glucosyltransferase|dolichyl-P-Glc:Man9GlcNAc2-PP-dolichyl glucosyltransferase|dolichyl-P-Glc:Man9GlcNAc2-PP-dolichylglucosyltransferase 34 0.004654 8.182 1 1 +29930 PCDHB1 protocadherin beta 1 5 protein-coding PCDH-BETA1 protocadherin beta-1|PCDH-beta-1 89 0.01218 0.6945 1 1 +29931 LINC00312 long intergenic non-protein coding RNA 312 3 ncRNA ERR-10|ERR10|LMCD1DN|LOH3CR2A|NAG-7|NAG7|NCRNA00312 LMCD1 downstream neighbor|estrogen receptor repressor 10|loss of heterozygosity, 3, chromosomal region 2, gene A|nasopharyngeal carcinoma candidate 7 4.462 0 1 +29933 GPR132 G protein-coupled receptor 132 14 protein-coding G2A probable G-protein coupled receptor 132|G2 accumulation protein 37 0.005064 6.154 1 1 +29934 SNX12 sorting nexin 12 X protein-coding - sorting nexin-12 12 0.001642 7.78 1 1 +29935 RPA4 replication protein A4 X protein-coding HSU24186 replication protein A 30 kDa subunit|RF-A protein 4|RP-A p30|replication factor A protein 4|replication protein A complex 34 kd subunit homolog Rpa4|replication protein A4, 30kDa|replication protein A4, 34kDa 32 0.00438 1.09 1 1 +29937 NENF neudesin neurotrophic factor 1 protein-coding CIR2|SCIRP10|SPUF neudesin|SCIRP10-related protein|Spinal cord injury related protein 10|cell growth-inhibiting protein 47|cell immortalization-related protein 2|neuron-derived neurotrophic factor|secreted protein of unknown function 5 0.0006844 10.24 1 1 +29940 DSE dermatan sulfate epimerase 6 protein-coding DS-epi1|DSEP|DSEPI|EDSMC2|SART-2|SART2 dermatan-sulfate epimerase|DS epimerase|chondroitin-glucuronate 5-epimerase|squamous cell carcinoma antigen recognized by T-cells 2 78 0.01068 9.181 1 1 +29941 PKN3 protein kinase N3 9 protein-coding UTDP4-1 serine/threonine-protein kinase N3|protein kinase PKN-beta|protein-kinase C-related kinase 3 47 0.006433 7.692 1 1 +29942 PURG purine rich element binding protein G 8 protein-coding PURG-A|PURG-B purine-rich element-binding protein gamma|Pur-gamma 33 0.004517 2.494 1 1 +29943 PADI1 peptidyl arginine deiminase 1 1 protein-coding HPAD10|PAD1|PDI|PDI1 protein-arginine deiminase type-1|hPAD-colony 10|peptidyl arginine deiminase, type I|peptidylarginine deiminase I|protein-arginine deiminase type I 56 0.007665 2.917 1 1 +29944 PNMA3 paraneoplastic Ma antigen 3 X protein-coding MA3|MA5 paraneoplastic antigen Ma3|paraneoplastic cancer-testis-brain antigen 49 0.006707 4.504 1 1 +29945 ANAPC4 anaphase promoting complex subunit 4 4 protein-coding APC4 anaphase-promoting complex subunit 4|cyclosome subunit 4 40 0.005475 8.775 1 1 +29946 SERTAD3 SERTA domain containing 3 19 protein-coding RBT1 SERTA domain-containing protein 3|RPA-binding trans-activator|replication protein-binding trans-activator 19 0.002601 9.126 1 1 +29947 DNMT3L DNA methyltransferase 3 like 21 protein-coding - DNA (cytosine-5)-methyltransferase 3-like|DNA (cytosine-5-)-methyltransferase 3-like|cytosine-5-methyltransferase 3-like protein|human cytosine-5-methyltransferase 3-like protein 43 0.005886 0.5728 1 1 +29948 OSGIN1 oxidative stress induced growth inhibitor 1 16 protein-coding BDGI|OKL38 oxidative stress-induced growth inhibitor 1|bone marrow stromal cell-derived growth inhibitor|ovary, kidney and liver protein 38|pregnancy-induced growth inhibitor OKL38 45 0.006159 7.359 1 1 +29949 IL19 interleukin 19 1 protein-coding IL-10C|MDA1|NG.1|ZMDA1 interleukin-19|melanoma differentiation associated protein-like protein 18 0.002464 1.059 1 1 +29950 SERTAD1 SERTA domain containing 1 19 protein-coding SEI1|TRIP-Br1 SERTA domain-containing protein 1|CDK4-binding protein p34SEI|CDK4-binding protein p34SEI1|SEI-1|transcriptional regulator interacting with the PHD-bromodomain 1 13 0.001779 8.741 1 1 +29951 PDZRN4 PDZ domain containing ring finger 4 12 protein-coding LNX4|SAMCAP3L PDZ domain-containing RING finger protein 4|IMAGE5767589|SEMACAP3-like protein|ligand of Numb protein X 4 126 0.01725 3.608 1 1 +29952 DPP7 dipeptidyl peptidase 7 9 protein-coding DPP2|DPPII|QPP dipeptidyl peptidase 2|DPP II|carboxytripeptidase|dipeptidyl aminopeptidase II|dipeptidyl arylamidase II|dipeptidyl-peptidase II|quiescent cell proline dipeptidase 29 0.003969 10.99 1 1 +29953 TRHDE thyrotropin releasing hormone degrading enzyme 12 protein-coding PAP-II|PGPEP2|TRH-DE thyrotropin-releasing hormone-degrading ectoenzyme|TRH-degrading ectoenzyme|TRH-specific aminopeptidase|pyroglutamyl aminopeptidase II|pyroglutamyl-peptidase II|thyroliberinase 158 0.02163 3.333 1 1 +29954 POMT2 protein O-mannosyltransferase 2 14 protein-coding LGMD2N|MDDGA2|MDDGB2|MDDGC2 protein O-mannosyl-transferase 2|Dolichyl-phosphate-mannose--protein mannosyltransferase|dolichyl-phosphate-mannose--protein mannosyltransferase 2 39 0.005338 8.902 1 1 +29956 CERS2 ceramide synthase 2 1 protein-coding L3|LASS2|SP260|TMSG1 ceramide synthase 2|LAG1 homolog, ceramide synthase 2|LAG1 longevity assurance 2|longevity assurance (LAG1, S. cerevisiae) homolog 2|tumor metastasis-suppressor gene 1 protein 21 0.002874 12.22 1 1 +29957 SLC25A24 solute carrier family 25 member 24 1 protein-coding APC1|SCAMC-1 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|solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 24 0.003285 9.305 1 1 +29958 DMGDH dimethylglycine dehydrogenase 5 protein-coding DMGDHD|ME2GLYDH dimethylglycine dehydrogenase, mitochondrial 58 0.007939 4.48 1 1 +29959 NRBP1 nuclear receptor binding protein 1 2 protein-coding BCON3|MADM|MUDPNP|NRBP nuclear receptor-binding protein|multiple domain putative nuclear protein|myeloid leukemia factor 1 adaptor molecule 44 0.006022 11.24 1 1 +29960 MRM2 mitochondrial rRNA methyltransferase 2 7 protein-coding FJH1|FTSJ2|HEL97|RRMJ2 rRNA methyltransferase 2, mitochondrial|16S rRNA (uridine(1369)-2'-O)-methyltransferase|16S rRNA [Um1369] 2'-O-methyltransferase|FtsJ RNA methyltransferase homolog 2|FtsJ homolog 2|MRM2 RNA methyltransferase homolog|cell division protein FtsJ|epididymis luminal protein 97|protein ftsJ homolog 2|putative ribosomal RNA methyltransferase 2|rRNA (uridine-2'-O-)-methyltransferase 23 0.003148 9.483 1 1 +29964 PRICKLE4 prickle planar cell polarity protein 4 6 protein-coding C6orf49|OBTP|OEBT|TOMM6 prickle-like protein 4|over-expressed breast tumor protein|overexpressed breast tumor protein|overexpressed breast tumour protein|prickle homolog 4|translocase of outer mitochondrial membrane 6 homolog 33 0.004517 5.945 1 1 +29965 CDIP1 cell death inducing p53 target 1 16 protein-coding C16orf5|CDIP|I1|LITAFL cell death-inducing p53-target protein 1|LITAF-like protein|cell death inducing protein|cell death involved p53-target|lipopolysaccharide-induced tumor necrosis factor-alpha-like protein|transmembrane protein I1 7 0.0009581 9.561 1 1 +29966 STRN3 striatin 3 14 protein-coding PPP2R6B|SG2NA striatin-3|cell cycle S/G2 nuclear autoantigen|cell cycle autoantigen SG2NA|nuclear autoantigen|protein phosphatase 2 regulatory subunit B'''beta|s/G2 antigen|striatin, calmodulin binding protein 3 54 0.007391 9.257 1 1 +29967 LRP12 LDL receptor related protein 12 8 protein-coding ST7 low-density lipoprotein receptor-related protein 12|suppressor of tumorigenicity 7 protein 119 0.01629 8.179 1 1 +29968 PSAT1 phosphoserine aminotransferase 1 9 protein-coding EPIP|NLS2|PSA|PSAT|PSATD phosphoserine aminotransferase|endometrial progesterone-induced protein|phosphohydroxythreonine aminotransferase 28 0.003832 9.171 1 1 +29969 MDFIC MyoD family inhibitor domain containing 7 protein-coding HIC myoD family inhibitor domain-containing protein|I-mfa domain-containing protein 27 0.003696 9.241 1 1 +29970 SCHIP1 schwannomin interacting protein 1 3 protein-coding SCHIP-1 schwannomin-interacting protein 1 11 0.001506 8.021 1 1 +29974 A1CF APOBEC1 complementation factor 10 protein-coding ACF|ACF64|ACF65|APOBEC1CF|ASP APOBEC1 complementation factor|APOBEC-1 stimulating protein|apo-B RNA editing protein|apobec-1 complementation factor (ACF) (ASP) 72 0.009855 1.639 1 1 +29978 UBQLN2 ubiquilin 2 X protein-coding ALS15|CHAP1|DSK2|HRIHFB2157|N4BP4|PLIC2 ubiquilin-2|Nedd4 binding protein 4|protein linking IAP with cytoskeleton 2|ubiquitin-like product Chap1/Dsk2 59 0.008076 10.44 1 1 +29979 UBQLN1 ubiquilin 1 9 protein-coding DA41|DSK2|PLIC-1|UBQN|XDRP1 ubiquilin-1|hPLIC-1|protein linking IAP with cytoskeleton 1|testicular tissue protein Li 219 42 0.005749 11.51 1 1 +29980 DONSON downstream neighbor of SON 21 protein-coding B17|C21orf60 protein downstream neighbor of Son 35 0.004791 8.002 1 1 +29982 NRBF2 nuclear receptor binding factor 2 10 protein-coding COPR|COPR1|COPR2|NRBF-2 nuclear receptor-binding factor 2|comodulator of PPAR and RXR 1|comodulator of PPAR and RXR 2 12 0.001642 8.721 1 1 +29984 RHOD ras homolog family member D 11 protein-coding ARHD|RHOHP1|RHOM|Rho rho-related GTP-binding protein RhoD|Rho-related protein HP1|ras homolog D|ras homolog gene family, member A|ras homolog gene family, member D 10 0.001369 8.148 1 1 +29985 SLC39A3 solute carrier family 39 member 3 19 protein-coding ZIP-3|ZIP3 zinc transporter ZIP3|solute carrier family 39 (zinc transporter), member 3|zrt- and Irt-like protein 3 26 0.003559 9.124 1 1 +29986 SLC39A2 solute carrier family 39 member 2 14 protein-coding 6A1|ETI-1|ZIP-2|ZIP2 zinc transporter ZIP2|Zrt- and Irt-like protein 2|solute carrier family 39 (zinc transporter), member 2|zinc uptake transporter 2 19 0.002601 2.522 1 1 +29988 SLC2A8 solute carrier family 2 member 8 9 protein-coding GLUT8|GLUTX1 solute carrier family 2, facilitated glucose transporter member 8|glucose transporter type 8|glucose transporter type X1|solute carrier family 2 (facilitated glucose transporter), member 8 19 0.002601 8.6 1 1 +29989 OBP2B odorant binding protein 2B 9 protein-coding LCN14|OBPIIb odorant-binding protein 2b|odorant-binding protein IIb 13 0.001779 0.9561 1 1 +29990 PILRB paired immunoglobin-like type 2 receptor beta 7 protein-coding FDFACT1|FDFACT2 paired immunoglobulin-like type 2 receptor beta|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 35 0.004791 9.774 1 1 +29991 OBP2A odorant binding protein 2A 9 protein-coding LCN13|OBP|OBP2C|OBPIIa|hOBPIIa odorant-binding protein 2a|odorant-binding protein IIa|putative odorant-binding protein 2c 29 0.003969 0.9287 1 1 +29992 PILRA paired immunoglobin like type 2 receptor alpha 7 protein-coding FDF03 paired immunoglobulin-like type 2 receptor alpha|cell surface receptor FDF03|inhibitory receptor PILR-alpha 23 0.003148 6.683 1 1 +29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 6 protein-coding SDPI protein kinase C and casein kinase substrate in neurons protein 1|syndapin I|syndapin-1 35 0.004791 5.229 1 1 +29994 BAZ2B bromodomain adjacent to zinc finger domain 2B 2 protein-coding WALp4 bromodomain adjacent to zinc finger domain protein 2B 169 0.02313 9.329 1 1 +29995 LMCD1 LIM and cysteine rich domains 1 3 protein-coding - LIM and cysteine-rich domains protein 1|dyxin 39 0.005338 8.631 1 1 +29997 GLTSCR2 glioma tumor suppressor candidate region gene 2 19 protein-coding PICT-1|PICT1 glioma tumor suppressor candidate region gene 2 protein|p60|protein interacting with carboxyl terminus 1 24 0.003285 12.31 1 1 +29998 GLTSCR1 glioma tumor suppressor candidate region gene 1 19 protein-coding - glioma tumor suppressor candidate region gene 1 protein 69 0.009444 8.443 1 1 +29999 FSCN3 fascin actin-bundling protein 3 7 protein-coding - fascin-3|fascin actin-bundling protein 3, testicular|fascin homolog 3, actin-bundling protein, testicular|testicular secretory protein Li 18|testis fascin 48 0.00657 1.28 1 1 +30000 TNPO2 transportin 2 19 protein-coding IPO3|KPNB2B|TRN2 transportin-2|importin 3|karyopherin beta 2b, transportin|karyopherin beta-2b|transportin 2 (importin 3, karyopherin beta 2b) 54 0.007391 10.96 1 1 +30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha 14 protein-coding ERO1-L|ERO1-L-alpha|ERO1-alpha|ERO1L|ERO1LA|Ero1alpha ERO1-like protein alpha|endoplasmic oxidoreductin-1-like protein|endoplasmic reticulum oxidoreductase alpha|oxidoreductin-1-L-alpha 26 0.003559 9.862 1 1 +30008 EFEMP2 EGF containing fibulin like extracellular matrix protein 2 11 protein-coding ARCL1B|FBLN4|MBP1|UPH1 EGF-containing fibulin-like extracellular matrix protein 2|FIBL-4|fibulin 4|mutant p53 binding protein 1 37 0.005064 9.565 1 1 +30009 TBX21 T-box 21 17 protein-coding T-PET|T-bet|TBET|TBLYM T-box transcription factor TBX21|T-box expressed in T cells|T-box protein 21|T-cell-specific T-box transcription factor T-bet|transcription factor TBLYM 33 0.004517 3.77 1 1 +30010 NXPH1 neurexophilin 1 7 protein-coding NPH1|Nbla00697 neurexophilin-1 38 0.005201 2.003 1 1 +30011 SH3KBP1 SH3 domain containing kinase binding protein 1 X protein-coding CD2BP3|CIN85|GIG10|HSB-1|HSB1|MIG18 SH3 domain-containing kinase-binding protein 1|CD2-binding protein 3|SH3-domain 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 66 0.009034 9.751 1 1 +30012 TLX3 T-cell leukemia homeobox 3 5 protein-coding HOX11L2|RNX T-cell leukemia homeobox protein 3|homeo box 11-like 2|homeobox protein Hox-11L2 24 0.003285 0.8603 1 1 +30014 SPANXA1 sperm protein associated with the nucleus, X-linked, family member A1 X protein-coding CT11.1|NAP-X|SPAN-X|SPAN-Xa|SPAN-Xb|SPANX|SPANX-A sperm protein associated with the nucleus on the X chromosome A|SPANX family member A|SPANX family, member A1|cancer/testis antigen 11.1|cancer/testis antigen family 11, member 1|nuclear-associated protein SPAN-Xa|sperm protein associated with the nucleus, X chromosome, family member A1 1 0.0001369 1 0 +30061 SLC40A1 solute carrier family 40 member 1 2 protein-coding FPN1|HFE4|IREG1|MST079|MSTP079|MTP1|SLC11A3 solute carrier family 40 member 1|iron regulated gene 1|solute carrier family 11 (proton-coupled divalent metal ion transporters), member 3|solute carrier family 40 (iron-regulated transporter), member 1 41 0.005612 10.98 1 1 +30062 RAX retina and anterior neural fold homeobox 18 protein-coding MCOP3|RX retinal homeobox protein Rx|retina and anterior neural fold homeobox protein 11 0.001506 0.5535 1 1 +30811 HUNK hormonally up-regulated Neu-associated kinase 21 protein-coding - hormonally up-regulated neu tumor-associated kinase|B19|hormonally upregulated Neu-associated kinase|hormonally upregulated neu tumor-associated kinase|serine/threonine protein kinase MAK-V 61 0.008349 6.547 1 1 +30812 SOX8 SRY-box 8 16 protein-coding - transcription factor SOX-8|SRY (sex determining region Y)-box 8 27 0.003696 5.161 1 1 +30813 VSX1 visual system homeobox 1 20 protein-coding CAASDS|KTCN|KTCN1|PPCD|PPCD1|PPD|RINX visual system homeobox 1|homeodomain protein RINX|retinal inner nuclear layer homeobox protein|transcription factor VSX1 18 0.002464 1.148 1 1 +30814 PLA2G2E phospholipase A2 group IIE 1 protein-coding GIIE sPLA2|sPLA2-IIE group IIE secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2E 17 0.002327 0.06698 1 1 +30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 9 protein-coding SIAT7-F|SIAT7F|ST6GALNACVI alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6|CMP-NeuAC:(beta)-N-acetylgalactosaminide (alpha)2,6-sialyltransferase member VI|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6|ST6 -N-acetylgalactosaminide alpha-26-sialyltransferase 6|ST6 GalNAc alpha-2,6-sialyltransferase 6|galNAc alpha-2,6-sialyltransferase VI|sialyltransferase 7F|sialytransferase 7 ((alpha-N-acetylneuraminyl 2,3-betagalactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialytransferase) F 27 0.003696 10.03 1 1 +30816 ERVW-1 endogenous retrovirus group W member 1 7 protein-coding ENV|ENVW|ERVWE1|HERV-7q|HERV-W-ENV|HERV7Q|HERVW|HERVWENV syncytin-1|HERV-7q envelope protein|HERV-W Env glycoprotein|HERV-W envelope protein|HERV-W_7q21.2 provirus ancestral Env polyprotein|HERV-tryptophan envelope protein|endogenous retroviral family W, env(C7), member 1|envelope glycoprotein|envelope polyprotein gPr73|enverin|human endogenous retrovirus W envC7-1 envelope protein|syncytin A 29 0.003969 1 0 +30817 ADGRE2 adhesion G protein-coupled receptor E2 19 protein-coding CD312|EMR2|VBU adhesion G protein-coupled receptor E2|EGF-like module-containing mucin-like hormone receptor-like 2|egf-like module containing, mucin-like, hormone receptor-like 2 71 0.009718 6.904 1 1 +30818 KCNIP3 potassium voltage-gated channel interacting protein 3 2 protein-coding CSEN|DREAM|KCHIP3 calsenilin|A-type potassium channel modulatory protein 3|DRE-antagonist modulator|Kv channel interacting protein 3|Kv channel interacting protein 3, calsenilin|calsenilin, presenilin-binding protein, EF hand transcription factor|kv channel-interacting protein 3|potassium channel interacting protein 3 20 0.002737 6.827 1 1 +30819 KCNIP2 potassium voltage-gated channel interacting protein 2 10 protein-coding KCHIP2 Kv channel-interacting protein 2|A-type potassium channel modulatory protein 2|Kv channel interacting protein 2|cardiac voltage-gated potassium channel modulatory subunit|potassium channel-interacting protein 2 18 0.002464 4.769 1 1 +30820 KCNIP1 potassium voltage-gated channel interacting protein 1 5 protein-coding KCHIP1|VABP Kv channel-interacting protein 1|A-type potassium channel modulatory protein 1|Kv channel interacting protein 1|potassium channel interacting protein 1|vesicle APC-binding protein 29 0.003969 2.75 1 1 +30827 CXXC1 CXXC finger protein 1 18 protein-coding 2410002I16Rik|5830420C16Rik|CFP1|CGBP|HsT2645|PCCX1|PHF18|SPP1|ZCGPC1|hCGBP CXXC-type zinc finger protein 1|CXXC finger 1 (PHD domain)|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 62 0.008486 9.799 1 1 +30832 ZNF354C zinc finger protein 354C 5 protein-coding KID3 zinc finger protein 354C|KRAB-zinc finger protein synten|kidney, ischemia, and developmentally-regulated protein 3 53 0.007254 4.572 1 1 +30833 NT5C 5', 3'-nucleotidase, cytosolic 17 protein-coding DNT|DNT1|HEL74|P5N2|PN-I|PN-II|UMPH2|cdN|dNT-1 5'(3')-deoxyribonucleotidase, cytosolic type|5' nucleotidase, deoxy (pyrimidine), cytosolic type C|cytosolic 5',3'-pyrimidine nucleotidase|deoxy-5'-nucleotidase 1|epididymis luminal protein 74|uridine 5'-monophosphate phosphohydrolase 2|uridine 5-prime monophosphate hydrolase 2 8 0.001095 8.89 1 1 +30834 ZNRD1 zinc ribbon domain containing 1 6 protein-coding HTEX-6|HTEX6|Rpa12|TCTEX6|TEX6|ZR14|hZR14|tctex-6 DNA-directed RNA polymerase I subunit RPA12|RNA polymerase I small specific subunit Rpa12|transcription-associated zinc ribbon protein 5 0.0006844 8.619 1 1 +30835 CD209 CD209 molecule 19 protein-coding CDSIGN|CLEC4L|DC-SIGN|DC-SIGN1 CD209 antigen|C-type lectin domain family 4 member L|HIV gpl20-binding protein|dendritic cell-specific ICAM-3-grabbing non-integrin 1|dendritic cell-specific intercellular adhesion molecule-3-grabbing non-integrin|dendritic cell-specific intracellular adhesion molecules (ICAM)-3 grabbing non-integrin 33 0.004517 6.037 1 1 +30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 1 protein-coding ERBP|FCF2|HSU15552|LPTS-RP2|TdIF2 deoxynucleotidyltransferase terminal-interacting protein 2|LPTS-interacting protein 2|acidic 82 kDa protein mRNA|estrogen receptor binding protein|tdT-interacting factor 2 42 0.005749 10.26 1 1 +30837 SOCS7 suppressor of cytokine signaling 7 17 protein-coding NAP4|NCKAP4 suppressor of cytokine signaling 7|NAP-4|NCK-associated protein 4|Nck, Ash and phospholipase C binding protein|SOCS-7|nck, Ash and phospholipase C gamma-binding protein 29 0.003969 5.743 1 1 +30844 EHD4 EH domain containing 4 15 protein-coding PAST4 EH domain-containing protein 4|PAST homolog 4|hepatocellular carcinoma-associated protein 10/11|hepatocellular carcinoma-associated protein HCA11|ortholog of rat pincher 33 0.004517 10.15 1 1 +30845 EHD3 EH domain containing 3 2 protein-coding PAST3 EH domain-containing protein 3|PAST homolog 3 44 0.006022 8.207 1 1 +30846 EHD2 EH domain containing 2 19 protein-coding PAST2 EH domain-containing protein 2|PAST homolog 2 41 0.005612 10.87 1 1 +30848 CTAG2 cancer/testis antigen 2 X protein-coding CAMEL|CT2|CT6.2|CT6.2a|CT6.2b|ESO2|LAGE-1|LAGE2B cancer/testis antigen 2|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 25 0.003422 1.003 1 1 +30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 3 protein-coding VPS15|p150 phosphoinositide 3-kinase regulatory subunit 4|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, p150 89 0.01218 9.59 1 1 +30850 CDR2L cerebellar degeneration related protein 2 like 17 protein-coding HUMPPA cerebellar degeneration-related protein 2-like|paraneoplastic 62 kDa antigen|paraneoplastic antigen 21 0.002874 8.998 1 1 +30851 TAX1BP3 Tax1 binding protein 3 17 protein-coding TIP-1|TIP1 tax1-binding protein 3|Tax interaction protein 1|Tax1 (human T-cell leukemia virus type I) binding protein 3|glutaminase-interacting protein 3|tax-interacting protein 1 3 0.0004106 11.12 1 1 +30968 STOML2 stomatin like 2 9 protein-coding HSPC108|SLP-2 stomatin-like protein 2, mitochondrial|EPB72-like 2|EPB72-like protein 2|paraprotein target 7|paratarg-7|stomatin (EPB72)-like 2 23 0.003148 10.78 1 1 +43847 KLK14 kallikrein related peptidase 14 19 protein-coding KLK-L6 kallikrein-14|kallikrein-like protein 6 19 0.002601 2.346 1 1 +43849 KLK12 kallikrein related peptidase 12 19 protein-coding KLK-L5|KLKL5 kallikrein-12|kallikrein-like protein 5 25 0.003422 2.135 1 1 +49854 ZBTB21 zinc finger and BTB domain containing 21 21 protein-coding ZNF295 zinc finger and BTB domain-containing protein 21|zinc finger protein 295 68 0.009307 8.692 1 1 +49855 SCAPER S-phase cyclin A associated protein in the ER 15 protein-coding MSTP063|ZNF291|Zfp291 S phase cyclin A-associated protein in the endoplasmic reticulum|zinc finger protein 291 89 0.01218 8.312 1 1 +49856 WRAP73 WD repeat containing, antisense to TP73 1 protein-coding WDR8 WD repeat-containing protein WRAP73|WD repeat domain 8 21 0.002874 8.809 1 1 +49860 CRNN cornulin 1 protein-coding C1orf10|DRC1|PDRC1|SEP53 cornulin|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 59 0.008076 1.043 1 1 +49861 CLDN20 claudin 20 6 protein-coding - claudin-20|testis secretory sperm-binding protein Li 229n 10 0.001369 1.374 1 1 +50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B 8 protein-coding MTDPS8A|MTDPS8B|P53R2 ribonucleoside-diphosphate reductase subunit M2 B|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|ribonucleotide reductase M2 B (TP53 inducible) 26 0.003559 9.893 1 1 +50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 2 protein-coding HARP|HHARP SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A-like protein 1|ATP-driven annealing helicase|HepA-related protein|SMARCA-like protein 1|sucrose nonfermenting protein 2-like 1 69 0.009444 9.107 1 1 +50486 G0S2 G0/G1 switch 2 1 protein-coding - G0/G1 switch protein 2|G0/G1 switch regulatory protein 2|G0/G1switch 2 4 0.0005475 7.036 1 1 +50487 PLA2G3 phospholipase A2 group III 22 protein-coding GIII-SPLA2|SPLA2III|sPLA2-III group 3 secretory phospholipase A2|group III secreted phospholipase A2|phosphatidylcholine 2-acylhydrolase 3|phosphatidylcholine 2-acylhydrolase GIII 42 0.005749 2.367 1 1 +50488 MINK1 misshapen like kinase 1 17 protein-coding B55|MAP4K6|MINK|YSK2|ZC3 misshapen-like kinase 1|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 69 0.009444 11.04 1 1 +50489 CD207 CD207 molecule 2 protein-coding CLEC4K C-type lectin domain family 4 member K|C-type lectin domain family 4, member K|CD207 antigen, langerin|CD207 molecule, langerin|Langerhans cell specific c-type lectin 37 0.005064 4.101 1 1 +50506 DUOX2 dual oxidase 2 15 protein-coding LNOX2|NOXEF2|P138-TOX|TDH6|THOX2 dual oxidase 2|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 99 0.01355 5.948 1 1 +50507 NOX4 NADPH oxidase 4 11 protein-coding KOX|KOX-1|RENOX NADPH oxidase 4|kidney oxidase-1|kidney superoxide-producing NADPH oxidase|renal NAD(P)H-oxidase 83 0.01136 5.934 1 1 +50508 NOX3 NADPH oxidase 3 6 protein-coding GP91-3|MOX-2 NADPH oxidase 3|NADPH oxidase catalytic subunit-like 3|gp91phox homolog 3|mitogenic oxidase 2 78 0.01068 0.1883 1 1 +50509 COL5A3 collagen type V alpha 3 chain 19 protein-coding - collagen alpha-3(V) chain|collagen, type V, alpha 3|pro-(alpha)3(V) collagen 152 0.0208 8.759 1 1 +50511 SYCP3 synaptonemal complex protein 3 12 protein-coding COR1|RPRGL4|SCP3|SPGF4 synaptonemal complex protein 3 21 0.002874 0.4026 1 1 +50512 PODXL2 podocalyxin like 2 3 protein-coding EG|PODLX2 podocalyxin-like protein 2|endoglycan 44 0.006022 8.978 1 1 +50514 DEC1 deleted in esophageal cancer 1 9 protein-coding CTS9 deleted in esophageal cancer 1|candidate tumor suppressor CTS9 6 0.0008212 0.3464 1 1 +50515 CHST11 carbohydrate sulfotransferase 11 12 protein-coding C4ST|C4ST-1|C4ST1|HSA269537 carbohydrate sulfotransferase 11|C4S-1|IgH/CHST11 fusion|carbohydrate (chondroitin 4) sulfotransferase 11|chondroitin 4-O-sulfotransferase 1 32 0.00438 7.579 1 1 +50604 IL20 interleukin 20 1 protein-coding IL-20|IL10D|ZCYTO10 interleukin-20|cytokine Zcyto10|four alpha helix cytokine 9 0.001232 1.396 1 1 +50613 UBQLN3 ubiquilin 3 11 protein-coding TUP-1 ubiquilin-3|testicular tissue protein Li 220 84 0.0115 0.0784 1 1 +50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 12 protein-coding GALNAC-T9|GALNACT9 polypeptide N-acetylgalactosaminyltransferase 9|GalNAc transferase 9|UDP-GalNAc: polypeptide N-acetylgalactosaminyltransferase 9|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 9 (GalNAc-T9)|polypeptide GalNAc transferase 9|pp-GaNTase 9|protein-UDP acetylgalactosaminyltransferase 9 36 0.004927 2.802 1 1 +50615 IL21R interleukin 21 receptor 16 protein-coding CD360|NILR interleukin-21 receptor|IL-21 receptor|novel interleukin receptor 75 0.01027 5.564 1 1 +50616 IL22 interleukin 22 12 protein-coding IL-21|IL-22|IL-D110|IL-TIF|ILTIF|TIFIL-23|TIFa|zcyto18 interleukin-22|IL-10-related T-cell-derived inducible factor|cytokine Zcyto18 21 0.002874 0.1394 1 1 +50617 ATP6V0A4 ATPase H+ transporting V0 subunit a4 7 protein-coding A4|ATP6N1B|ATP6N2|RDRTA2|RTA1C|RTADR|STV1|VPH1|VPP2 V-type proton ATPase 116 kDa subunit a isoform 4|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)|ATPase, H+ transporting, lysosomal V0 subunit a4|H(+)-transporting two-sector ATPase, noncatalytic accessory protein 1B|V-ATPase 116 kDa|V-type proton ATPase 116 kDa subunit a|vacuolar proton pump 116 kDa accessory subunit|vacuolar proton pump, subunit 2|vacuolar proton translocating ATPase 116 kDa subunit a kidney isoform 67 0.009171 3.092 1 1 +50618 ITSN2 intersectin 2 2 protein-coding PRO2015|SH3D1B|SH3P18|SWA|SWAP intersectin-2|SH3 domain-containing protein 1B|SH3P18-like WASP-associated protein 128 0.01752 9.988 1 1 +50619 DEF6 DEF6, guanine nucleotide exchange factor 6 protein-coding IBP|SLAT|SWAP70L differentially expressed in FDCP 6 homolog|DEF-6|IRF4-binding protein|SWAP-70-like adaptor protein of T cells 32 0.00438 8.395 1 1 +50624 CUZD1 CUB and zona pellucida like domains 1 10 protein-coding ERG-1|ERG1|ITMAP1|UO-44 CUB and zona pellucida-like domain-containing protein 1|CUB and ZP domain-containing protein 1|estrogen regulated gene 1|transmembrane protein UO-44 34 0.004654 3.83 1 1 +50626 CYHR1 cysteine and histidine rich 1 8 protein-coding CHRP cysteine and histidine-rich protein 1|cysteine and histidine rich protein|cysteine/histidine-rich 1 23 0.003148 9.78 1 1 +50628 GEMIN4 gem nuclear organelle associated protein 4 17 protein-coding HC56|HCAP1|HHRF-1|p97 gem-associated protein 4|HCC-associated protein 1|component of gems 4|gemin-4 39 0.005338 9.29 1 1 +50632 CALY calcyon neuron specific vesicular protein 10 protein-coding DRD1IP|NSG3 neuron-specific vesicular protein calcyon|D1 dopamine receptor-interacting protein|calcyon D1 dopamine receptor-interacting protein (CALCYON)|calcyon protein|dopamine receptor D1 interacting protein 9 0.001232 1.631 1 1 +50636 ANO7 anoctamin 7 2 protein-coding D-TMPP|DTMPP|IPCA-5|IPCA5|NGEP|PCANAP5|PCANAP5L|TMEM16G anoctamin-7|Dresden-transmembrane protein of the prostate|prostate cancer associated protein 5|transmembrane protein 16G 80 0.01095 4.986 1 1 +50639 MBL3P mannose-binding lectin family member 3, pseudogene 10 pseudo COLEC2|MBL collectin sub-family member 2 1 0.0001369 1 0 +50640 PNPLA8 patatin like phospholipase domain containing 8 7 protein-coding IPLA2-2|IPLA2G|MMLA|PNPLA-gamma|iPLA2gamma calcium-independent phospholipase A2-gamma|intracellular membrane-associated calcium-independent phospholipase A2 gamma|membrane-associated calcium-independent phospholipase A2 gamma 59 0.008076 9.709 1 1 +50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 2 protein-coding ASEF|ASEF1|GEF4|STM6 rho guanine nucleotide exchange factor 4|APC-stimulated guanine nucleotide exchange factor 1|Rho guanine nucleotide exchange factor (GEF) 4 66 0.009034 7.264 1 1 +50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 3 protein-coding GEF3|STA3|XPLN rho guanine nucleotide exchange factor 3|59.8 kDA protein|Rho guanine nucleotide exchange factor (GEF) 3|RhoGEF protein|exchange factor found in platelets and leukemic and neuronal tissues, XPLN 39 0.005338 9.421 1 1 +50651 SLC45A1 solute carrier family 45 member 1 1 protein-coding DNB5 proton-associated sugar transporter A|H+/sugar symporter|PAST-A|deleted in neuroblastoma 5 protein 64 0.00876 5.242 1 1 +50652 PCA3 prostate cancer associated 3 (non-protein coding) 9 ncRNA DD3|NCRNA00019|PCAT3 prostate cancer antigen 3 (non-protein coding)|prostate cancer associated transcript 3 (non-protein coding)|prostate-specific gene DD3 1.058 0 1 +50674 NEUROG3 neurogenin 3 10 protein-coding Atoh5|Math4B|NGN-3|bHLHa7|ngn3 neurogenin-3|class A basic helix-loop-helix protein 7|protein atonal homolog 5 33 0.004517 0.4479 1 1 +50700 RDH8 retinol dehydrogenase 8 (all-trans) 19 protein-coding PRRDH|SDR28C2 retinol dehydrogenase 8|photoreceptor outer segment all-trans retinol dehydrogenase|short chain dehydrogenase/reductase family 28C member 2 44 0.006022 0.4445 1 1 +50717 DCAF8 DDB1 and CUL4 associated factor 8 1 protein-coding GAN2|H326|WDR42A DDB1- and CUL4-associated factor 8|WD repeat domain 42A|WD repeat-containing protein 42A 42 0.005749 11.11 1 1 +50801 KCNK4 potassium two pore domain channel subfamily K member 4 11 protein-coding K2p4.1|TRAAK|TRAAK1 potassium channel subfamily K member 4|K2P4.1 potassium channel|TWIK-related arachidonic acid-stimulated potassium channel protein|potassium channel, subfamily K, member 4|potassium channel, two pore domain subfamily K, member 4|two pore K(+) channel KT4.1|two pore K+ channel KT4.1|two pore potassium channel KT4.1 33 0.004517 1.541 1 1 +50804 MYEF2 myelin expression factor 2 15 protein-coding HsT18564|MEF-2|MST156|MSTP156|myEF-2 myelin expression factor 2|myelin gene expression factor 2 59 0.008076 7.804 1 1 +50805 IRX4 iroquois homeobox 4 5 protein-coding IRXA3 iroquois-class homeodomain protein IRX-4|homeodomain protein IRXA3|iroquois homeobox protein 4 52 0.007117 2.429 1 1 +50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 8 protein-coding AMAP1|CENTB4|DDEF1|PAG2|PAP|ZG14P arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 1|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|centaurin, beta 4|development and differentiation-enhancing factor 1 101 0.01382 10.04 1 1 +50808 AK3 adenylate kinase 3 9 protein-coding AK3L1|AK6|AKL3L|AKL3L1|FIX GTP:AMP phosphotransferase AK3, mitochondrial|GTP:AMP phosphotransferase, mitochondrial|adenylate kinase 3 alpha-like 1|adenylate kinase 6, adenylate kinase 3 like 1 14 0.001916 10.56 1 1 +50809 HP1BP3 heterochromatin protein 1 binding protein 3 1 protein-coding HP1-BP74|HP1BP74 heterochromatin protein 1-binding protein 3|HP1-BP74 37 0.005064 11.78 1 1 +50810 HDGFRP3 hepatoma-derived growth factor, related protein 3 15 protein-coding CGI-142|HDGF-2|HDGF2|HRP-3 hepatoma-derived growth factor-related protein 3|hepatoma-derived growth factor 2 16 0.00219 9.061 1 1 +50813 COPS7A COP9 signalosome subunit 7A 12 protein-coding CSN7|CSN7A|SGN7a COP9 signalosome complex subunit 7a|COP9 complex subunit 7a|COP9 constitutive photomorphogenic homolog subunit 7A|JAB1-containing signalosome subunit 7a|dermal papilla-derived protein 10 10 0.001369 10.76 1 1 +50814 NSDHL NAD(P) dependent steroid dehydrogenase-like X protein-coding H105E3|SDR31E1|XAP104 sterol-4-alpha-carboxylate 3-dehydrogenase, decarboxylating|protein H105e3|short chain dehydrogenase/reductase family 31E, member 1 25 0.003422 9.302 1 1 +50831 TAS2R3 taste 2 receptor member 3 7 protein-coding T2R3 taste receptor type 2 member 3|candidate taste receptor T2R3|taste receptor, type 2, member 3 26 0.003559 0.4687 1 1 +50832 TAS2R4 taste 2 receptor member 4 7 protein-coding T2R4 taste receptor type 2 member 4|candidate taste receptor T2R4|taste receptor, type 2, member 4 20 0.002737 1.602 1 1 +50833 TAS2R16 taste 2 receptor member 16 7 protein-coding T2R16 taste receptor type 2 member 16|candidate taste receptor T2R16|taste receptor, type 2, member 16 57 0.007802 0.01094 1 1 +50834 TAS2R1 taste 2 receptor member 1 5 protein-coding T2R1|TRB7 taste receptor type 2 member 1|taste receptor, family B, member 7|taste receptor, type 2, member 1 53 0.007254 0.2143 1 1 +50835 TAS2R9 taste 2 receptor member 9 12 protein-coding T2R9|TRB6 taste receptor type 2 member 9|taste receptor, family B, member 6|taste receptor, type 2, member 9 28 0.003832 0.05501 1 1 +50836 TAS2R8 taste 2 receptor member 8 12 protein-coding T2R8|TRB5 taste receptor type 2 member 8|taste receptor, family B, member 5|taste receptor, type 2, member 8 24 0.003285 0.08135 1 1 +50837 TAS2R7 taste 2 receptor member 7 12 protein-coding T2R7|TRB4 taste receptor type 2 member 7|taste receptor, family B, member 4|taste receptor, type 2, member 7 23 0.003148 0.01932 1 1 +50838 TAS2R13 taste 2 receptor member 13 12 protein-coding T2R13|TRB3 taste receptor type 2 member 13|taste receptor, family B, member 3|taste receptor, type 2, member 13 20 0.002737 0.3633 1 1 +50839 TAS2R10 taste 2 receptor member 10 12 protein-coding T2R10|TRB2 taste receptor type 2 member 10|taste receptor, family B, member 2|taste receptor, type 2, member 10 23 0.003148 0.9104 1 1 +50840 TAS2R14 taste 2 receptor member 14 12 protein-coding T2R14|TRB1 taste receptor type 2 member 14|taste receptor, family B, member 1|taste receptor, type 2, member 14 29 0.003969 2.744 1 1 +50846 DHH desert hedgehog 12 protein-coding GDXYM|HHG-3|SRXY7 desert hedgehog protein 17 0.002327 2.448 1 1 +50848 F11R F11 receptor 1 protein-coding CD321|JAM|JAM1|JAMA|JCAM|KAT|PAM-1 junctional adhesion molecule A|junctional adhesion molecule 1|platelet F11 receptor|platelet adhesion molecule 1 30 0.004106 11.78 1 1 +50852 TRAT1 T cell receptor associated transmembrane adaptor 1 3 protein-coding HSPC062|TCRIM|TRIM|pp29/30 T-cell receptor-associated transmembrane adapter 1|T cell receptor interacting molecule 46 0.006296 3.275 1 1 +50853 VILL villin like 3 protein-coding - villin-like protein 51 0.006981 7.453 1 1 +50854 C6orf48 chromosome 6 open reading frame 48 6 protein-coding D6S57|G8 protein G8 3 0.0004106 10.75 1 1 +50855 PARD6A par-6 family cell polarity regulator alpha 16 protein-coding PAR-6A|PAR6|PAR6C|PAR6alpha|TAX40|TIP-40 partitioning defective 6 homolog alpha|PAR-6 alpha|Tax-interacting protein 40|par-6 partitioning defective 6 homolog alpha|partitioning-defective protein 6|tax interaction protein 40 19 0.002601 6.566 1 1 +50856 CLEC4A C-type lectin domain family 4 member A 12 protein-coding CD367|CLECSF6|DCIR|DDB27|HDCGC13P|LLIR C-type lectin domain family 4 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 6|C-type lectin DDB27|C-type lectin superfamily member 6|dendritic cell immunoreceptor|lectin-like immunoreceptor 25 0.003422 5.316 1 1 +50859 SPOCK3 SPARC/osteonectin, cwcv and kazal like domains proteoglycan 3 4 protein-coding HSAJ1454|TES-3|TICN3 testican-3|sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 3 51 0.006981 3.259 1 1 +50861 STMN3 stathmin 3 20 protein-coding SCLIP stathmin-3|SCG10-like protein|stathmin-like 3 12 0.001642 9.614 1 1 +50862 RNF141 ring finger protein 141 11 protein-coding ZFP26|ZNF230 RING finger protein 141|C3HC4-like zinc finger protein|zinc finger protein 230 16 0.00219 10.06 1 1 +50863 NTM neurotrimin 11 protein-coding HNT|IGLON2|NTRI neurotrimin|IgLON family member 2 76 0.0104 6.814 1 1 +50865 HEBP1 heme binding protein 1 12 protein-coding HBP|HEBP heme-binding protein 1|p22HBP 9 0.001232 9.821 1 1 +50937 CDON cell adhesion associated, oncogene regulated 11 protein-coding CDO|CDON1|HPE11|ORCAM cell adhesion molecule-related/down-regulated by oncogenes|Cdon homolog|surface glycoprotein, Ig superfamily member 74 0.01013 7.791 1 1 +50939 IMPG2 interphotoreceptor matrix proteoglycan 2 3 protein-coding IPM200|RP56|SPACRCAN|VMD5 interphotoreceptor matrix proteoglycan 2|IPM 200|interphotoreceptor matrix proteoglycan IPM 200|interphotoreceptor matrix proteoglycan of 200 kDa|sialoprotein associated with cones and rods proteoglycan 128 0.01752 1.649 1 1 +50940 PDE11A phosphodiesterase 11A 2 protein-coding PPNAD2 dual 3',5'-cyclic-AMP and -GMP phosphodiesterase 11A|cAMP and cGMP cyclic nucleotide phosphodiesterase 11A 103 0.0141 4.262 1 1 +50943 FOXP3 forkhead box P3 X protein-coding AIID|DIETER|IPEX|JM2|PIDX|XPID forkhead box protein P3|FOXP3delta7|immune dysregulation, polyendocrinopathy, enteropathy, X-linked|immunodeficiency, polyendocrinopathy, enteropathy, X-linked|scurfin 21 0.002874 5.256 1 1 +50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 19 protein-coding SPANK-1|SSTRIP|synamon SH3 and multiple ankyrin repeat domains protein 1|SSTR-interacting protein|somatostatin receptor-interacting protein 150 0.02053 3.242 1 1 +50945 TBX22 T-box 22 X protein-coding ABERS|CLPA|CPX|TBXX|dJ795G23.1 T-box transcription factor TBX22|T-box protein 22 83 0.01136 0.5248 1 1 +50964 SOST sclerostin 17 protein-coding CDD|DAND6|SOST1|VBCH sclerostin 13 0.001779 1.193 1 1 +50999 TMED5 transmembrane p24 trafficking protein 5 1 protein-coding CGI-100|p24g2|p28 transmembrane emp24 domain-containing protein 5|p24 family protein gamma-2|p24gamma2|transmembrane emp24 protein transport domain containing 5 7 0.0009581 10.44 1 1 +51000 SLC35B3 solute carrier family 35 member B3 6 protein-coding C6orf196|CGI-19|PAPST2 adenosine 3'-phospho 5'-phosphosulfate transporter 2|3' phosphoadenosine 5' phosphosulfate transporter 2|PAPS transporter 2|solute carrier family 35 (adenosine 3'-phospho 5'-phosphosulfate transporter), member B3 16 0.00219 8.881 1 1 +51001 MTERF3 mitochondrial transcription termination factor 3 8 protein-coding CGI-12|MTERFD1 transcription termination factor 3, mitochondrial|MTERF domain containing 1|mTERF domain-containing protein 1, mitochondrial 31 0.004243 8.508 1 1 +51002 TPRKB TP53RK binding protein 2 protein-coding CGI-121|CGI121 EKC/KEOPS complex subunit TPRKB|PRPK (p53-related protein kinase)-binding protein 14 0.001916 8.362 1 1 +51003 MED31 mediator complex subunit 31 17 protein-coding 3110004H13Rik|CGI-125|Soh1 mediator of RNA polymerase II transcription subunit 31|hSOH1|mediator complex subunit SOH1|mediator of RNA polymerase II transcription, subunit 31 homolog 8 0.001095 7.093 1 1 +51004 COQ6 coenzyme Q6, monooxygenase 14 protein-coding CGI-10|CGI10|COQ10D6 ubiquinone biosynthesis monooxygenase COQ6, mitochondrial|coenzyme Q10 monooxygenase 6|coenzyme Q6 homolog, monooxygenase 31 0.004243 8.413 1 1 +51005 AMDHD2 amidohydrolase domain containing 2 16 protein-coding CGI-14 N-acetylglucosamine-6-phosphate deacetylase|amidohydrolase domain-containing protein 2|glcNAc 6-P deacetylase|putative N-acetylglucosamine-6-phosphate deacetylase 47 0.006433 8.078 1 1 +51006 SLC35C2 solute carrier family 35 member C2 20 protein-coding BA394O2.1|C20orf5|CGI-15|OVCOV1 solute carrier family 35 member C2|ovarian cancer-overexpressed gene 1 protein|solute carrier family 35 (GDP-fucose transporter), member C2 30 0.004106 10.35 1 1 +51008 ASCC1 activating signal cointegrator 1 complex subunit 1 10 protein-coding ASC1p50|CGI-18|SMABF2|p50 activating signal cointegrator 1 complex subunit 1|ASC-1 complex subunit P50|trip4 complex subunit p50 20 0.002737 8.961 1 1 +51009 DERL2 derlin 2 17 protein-coding CGI-101|DERtrin-2|F-LAN-1|F-LANa|FLANa|derlin-2 derlin-2|Der1-like domain family, member 2|carcinoma related|degradation in endoplasmic reticulum protein 2 9 0.001232 9.194 1 1 +51010 EXOSC3 exosome component 3 9 protein-coding CGI-102|PCH1B|RRP40|Rrp40p|bA3J10.7|hRrp-40|p10 exosome complex component RRP40|exosome complex exonuclease RRP40|ribosomal RNA-processing protein 40 9 0.001232 8.356 1 1 +51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A 2 protein-coding CGI-105 fumarylacetoacetate hydrolase domain-containing protein 2A|fumarylacetoacetate hydrolase domain containing 1 26 0.003559 8.488 1 1 +51012 PRELID3B PRELI domain containing 3B 20 protein-coding C20orf45|SLMO2|dJ543J19.5 PRELI domain containing protein 3B|protein slowmo homolog 2|slowmo homolog 2 13 0.001779 10.55 1 1 +51013 EXOSC1 exosome component 1 10 protein-coding CGI-108|CSL4|Csl4p|SKI4|Ski4p|p13 exosome complex component CSL4|3'-5' exoribonuclease CSL4 homolog|exosomal core protein CSL4|homolog of yeast exosomal core protein CSL4 10 0.001369 8.641 1 1 +51014 TMED7 transmembrane p24 trafficking protein 7 5 protein-coding CGI-109|p24g3|p24gamma3|p27 transmembrane emp24 domain-containing protein 7|p24 family protein gamma-3|transmembrane emp24 protein transport domain containing 7 10 0.001369 11.11 1 1 +51015 ISOC1 isochorismatase domain containing 1 5 protein-coding CGI-111 isochorismatase domain-containing protein 1 19 0.002601 9.091 1 1 +51016 EMC9 ER membrane protein complex subunit 9 14 protein-coding C14orf122|CGI-112|FAM158A ER membrane protein complex subunit 9|UPF0172 protein FAM158A|family with sequence similarity 158, member A 16 0.00219 7.56 1 1 +51018 RRP15 ribosomal RNA processing 15 homolog 1 protein-coding CGI-115|KIAA0507 RRP15-like protein|ribosomal RNA-processing protein 15 29 0.003969 8.989 1 1 +51019 CCDC53 coiled-coil domain containing 53 12 protein-coding CGI-116 WASH complex subunit CCDC53|coiled-coil domain-containing protein 53 17 0.002327 8.735 1 1 +51020 HDDC2 HD domain containing 2 6 protein-coding C6orf74|CGI-130|NS5ATP2|dJ167O5.2 HD domain-containing protein 2|HCV NS5A-transactivated protein 2|hepatitis C virus NS5A-transactivated protein 2|testicular tissue protein Li 83 22 0.003011 9.681 1 1 +51021 MRPS16 mitochondrial ribosomal protein S16 10 protein-coding CGI-132|COXPD2|MRP-S16|RPMS16 28S ribosomal protein S16, mitochondrial|S16mt 5 0.0006844 10.78 1 1 +51022 GLRX2 glutaredoxin 2 1 protein-coding CGI-133|GRX2 glutaredoxin 2|bA101E13.1 (GRX2 glutaredoxin (thioltransferase) 2)|glutaredoxin (thioltransferase) 2 17 0.002327 7.026 1 1 +51023 MRPS18C mitochondrial ribosomal protein S18C 4 protein-coding CGI-134|MRP-S18-1|MRP-S18-c|MRPS18-1|S18mt-c|mrps18-c 28S ribosomal protein S18c, mitochondrial|28S ribosomal protein S18-1, mitochondrial|mitochondrial ribosomal protein S18-1 10 0.001369 8.262 1 1 +51024 FIS1 fission, mitochondrial 1 7 protein-coding CGI-135|TTC11 mitochondrial fission 1 protein|FIS1 homolog|H_NH0132A01.6|TPR repeat protein 11|fission 1 (mitochondrial outer membrane) homolog|hFis1|mitochondrial fission molecule|tetratricopeptide repeat domain 11|tetratricopeptide repeat protein 11 6 0.0008212 10.8 1 1 +51025 PAM16 presequence translocase associated motor 16 homolog 16 protein-coding CGI-136|MAGMAS|SMDMDM|TIM16|TIMM16 mitochondrial import inner membrane translocase subunit TIM16|magmas-like protein|mitochondria associated protein involved in granulocyte macrophage colony stimulating factor signal transduction|mitochondria-associated granulocyte macrophage CSF-signaling molecule 2 0.0002737 7.898 1 1 +51026 GOLT1B golgi transport 1B 12 protein-coding CGI-141|GCT2|GOT1|GOT1B|YMR292W vesicle transport protein GOT1B|germ cell tumor 2|hGOT1a|putative NF-kappa-B-activating protein 470 15 0.002053 9.903 1 1 +51027 BOLA1 bolA family member 1 1 protein-coding CGI-143 bolA-like protein 1|bolA homolog 1|bolA-like 1 13 0.001779 8.025 1 1 +51028 VPS36 vacuolar protein sorting 36 homolog 13 protein-coding C13orf9|CGI-145|EAP45 vacuolar protein-sorting-associated protein 36|ELL-associated protein of 45 kDa|ESCRT-II complex subunit VPS36 23 0.003148 9.851 1 1 +51029 DESI2 desumoylating isopeptidase 2 1 protein-coding C1orf121|CGI-146|DESI|DESI1|DeSI-2|FAM152A|PNAS-4|PPPDE1 desumoylating isopeptidase 2|PPPDE peptidase domain-containing protein 1|desumoylating isopeptidase 1|family with sequence similarity 152, member A 15 0.002053 10.16 1 1 +51030 TVP23B trans-golgi network vesicle protein 23 homolog B 17 protein-coding CGI-148|FAM18B|FAM18B1|NPD008|YDR084C Golgi apparatus membrane protein TVP23 homolog B|family with sequence similarity 18, member B|family with sequence similarity 18, member B1|protein FAM18B1 11 0.001506 9.153 1 1 +51031 GLOD4 glyoxalase domain containing 4 17 protein-coding C17orf25|CGI-150|HC71 glyoxalase domain-containing protein 4 18 0.002464 10.28 1 1 +51032 CELA2B chymotrypsin like elastase family member 2B 1 protein-coding ELA2B chymotrypsin-like elastase family member 2B|RP11-265F14.2|elastase 2B|pancreatic elastase IIB (ELA2B) 22 0.003011 0.1949 1 1 +51035 UBXN1 UBX domain protein 1 11 protein-coding 2B28|SAKS1|UBXD10 UBX domain-containing protein 1|SAPK substrate protein 1|UBA/UBX 33.3 kDa protein 27 0.003696 10.95 1 1 +51042 ZNF593 zinc finger protein 593 1 protein-coding ZT86 zinc finger protein 593|zinc finger protein T86 5 0.0006844 8.721 1 1 +51043 ZBTB7B zinc finger and BTB domain containing 7B 1 protein-coding CKROX|THPOK|ZBTB15|ZFP-67|ZFP67|ZNF857B|c-KROX|hcKROX zinc finger and BTB domain-containing protein 7B|T-helper-inducing POZ/Krueppel-like factor|krueppel-related zinc finger protein cKrox|zinc finger and BTB domain containing 15|zinc finger protein 67 homolog|zinc finger protein 857B|zinc finger protein Th-POK 61 0.008349 10.4 1 1 +51046 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 18 protein-coding SIAT8C|ST8SiaIII sia-alpha-2,3-Gal-beta-1,4-GlcNAc-R:alpha 2,8-sialyltransferase|SIAT8-C|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 3|alpha-2,8-sialyltransferase 8C|alpha-2,8-sialyltransferase III|sialyltransferase 8C (alpha2,3Galbeta1,4GlcNAcalpha 2,8-sialyltransferase)|sialyltransferase St8Sia III|sialytransferase St8Sia III 45 0.006159 1.729 1 1 +51050 PI15 peptidase inhibitor 15 8 protein-coding CRISP8|P24TI|P25TI peptidase inhibitor 15|25 kDa trypsin inhibitor|CRISP-8|PI-15|cysteine-rich secretory protein 8|protease inhibitor 15|sugarCrisp 47 0.006433 5.742 1 1 +51052 PRLH prolactin releasing hormone 2 protein-coding PRH|PRRP prolactin-releasing peptide|preproprolactin-releasing peptide 3 0.0004106 0.05614 1 1 +51053 GMNN geminin, DNA replication inhibitor 6 protein-coding Gem|MGORS6 geminin 14 0.001916 8.628 1 1 +51054 PLEKHA8P1 pleckstrin homology domain containing A8 pseudogene 1 12 pseudo PLEKHA9 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 9|pleckstrin homology domain containing, family A member 8 pseudogene 1|putative glycolipid transfer protein 52 0.007117 6.055 1 1 +51056 LAP3 leucine aminopeptidase 3 4 protein-coding HEL-S-106|LAP|LAPEP|PEPS cytosol aminopeptidase|LAP-3|epididymis secretory protein Li 106|leucyl aminopeptidase|peptidase S|proline aminopeptidase|prolyl aminopeptidase 33 0.004517 10.95 1 1 +51057 WDPCP WD repeat containing planar cell polarity effector 2 protein-coding BBS15|C2orf86|CHDTHP|FRITZ|FRTZ WD repeat-containing and planar cell polarity effector protein fritz homolog|Bardet-Biedl syndrome 15 protein|WD repeat-containing protein C2orf86 59 0.008076 5.95 1 1 +51058 ZNF691 zinc finger protein 691 1 protein-coding Zfp691 zinc finger protein 691 17 0.002327 7.794 1 1 +51059 FAM135B family with sequence similarity 135 member B 8 protein-coding C8ORFK32 protein FAM135B 314 0.04298 2.878 1 1 +51060 TXNDC12 thioredoxin domain containing 12 1 protein-coding AG1|AGR1|ERP16|ERP18|ERP19|PDIA16|TLP19|hAG-1|hTLP19 thioredoxin domain-containing protein 12|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 12 (endoplasmic reticulum)|thioredoxin-like protein p19 8 0.001095 10.68 1 1 +51061 TXNDC11 thioredoxin domain containing 11 16 protein-coding EFP1 thioredoxin domain-containing protein 11|EF-hand binding protein 1 40 0.005475 10.37 1 1 +51062 ATL1 atlastin GTPase 1 14 protein-coding AD-FSP|FSP1|GBP3|HSN1D|SPG3|SPG3A|atlastin1 atlastin-1|GBP-3|GTP-binding protein 3|brain-specific GTP-binding protein|guanine nucleotide-binding protein 3|guanylate-binding protein 3|hGBP3|spastic paraplegia 3 protein A 30 0.004106 7.313 1 1 +51063 CALHM2 calcium homeostasis modulator 2 10 protein-coding FAM26B calcium homeostasis modulator protein 2|family with sequence similarity 26, member B 24 0.003285 8.324 1 1 +51065 RPS27L ribosomal protein S27 like 15 protein-coding - 40S ribosomal protein S27-like 10 0.001369 10.06 1 1 +51066 SSUH2 ssu-2 homolog (C. elegans) 3 protein-coding C3orf32|SSU-2|fls485 protein SSUH2 homolog|protein ssu-2 homolog 33 0.004517 2.962 1 1 +51067 YARS2 tyrosyl-tRNA synthetase 2 12 protein-coding CGI-04|MLASA2|MT-TYRRS|TYRRS tyrosine--tRNA ligase, mitochondrial|tyrosine tRNA ligase 2, mitochondrial|tyrosyl-tRNA synthetase 2, mitochondrial 41 0.005612 8.477 1 1 +51068 NMD3 NMD3 ribosome export adaptor 3 protein-coding CGI-07 60S ribosomal export protein NMD3|NMD3 homolog|hNMD3 41 0.005612 9.948 1 1 +51069 MRPL2 mitochondrial ribosomal protein L2 6 protein-coding CGI-22|MRP-L14|RPML14 39S ribosomal protein L2, mitochondrial|L2mt|MRP-L2 28 0.003832 9.288 1 1 +51070 NOSIP nitric oxide synthase interacting protein 19 protein-coding CGI-25 nitric oxide synthase-interacting protein|E3 ubiquitin-protein ligase NOSIP|eNOS-interacting protein 19 0.002601 9.789 1 1 +51071 DERA deoxyribose-phosphate aldolase 12 protein-coding CGI-26|DEOC deoxyribose-phosphate aldolase|2-deoxy-D-ribose 5-phosphate aldolase|2-deoxyribose-5-phosphate aldolase homolog|deoxyriboaldolase|deoxyribose-phosphate aldolase (putative)|phosphodeoxyriboaldolase|putative deoxyribose-phosphate aldolase 21 0.002874 9.411 1 1 +51072 MEMO1 mediator of cell motility 1 2 protein-coding C2orf4|CGI-27|MEMO|NS5ATP7 protein MEMO1|C21orf19-like protein|HCV NS5A-transactivated protein 7|hepatitis C virus NS5A-transactivated protein 7|mediator of ErbB2-driven cell motility 1 25 0.003422 8.629 1 1 +51073 MRPL4 mitochondrial ribosomal protein L4 19 protein-coding CGI-28|L4mt 39S ribosomal protein L4, mitochondrial|MRP-L4 14 0.001916 10.18 1 1 +51074 APIP APAF1 interacting protein 11 protein-coding APIP2|CGI-29|CGI29|MMRP19|hAPIP methylthioribulose-1-phosphate dehydratase|MTRu-1-P dehydratase|probable methylthioribulose-1-phosphate dehydratase 12 0.001642 8.469 1 1 +51075 TMX2 thioredoxin related transmembrane protein 2 11 protein-coding CGI-31|PDIA12|PIG26|TXNDC14 thioredoxin-related transmembrane protein 2|cell proliferation-inducing gene 26 protein|growth-inhibiting gene 11|protein disulfide isomerase family A, member 12|thioredoxin domain-containing protein 14 21 0.002874 10.94 1 1 +51076 CUTC cutC copper transporter 10 protein-coding CGI-32 copper homeostasis protein cutC homolog|cutC copper transporter homolog 27 0.003696 8.015 1 1 +51077 FCF1 FCF1 rRNA-processing protein 14 protein-coding Bka|C14orf111|CGI-35|UTP24 rRNA-processing protein FCF1 homolog|FCF1 small subunit 11 0.001506 9.502 1 1 +51078 THAP4 THAP domain containing 4 2 protein-coding CGI-36|PP238 THAP domain-containing protein 4 37 0.005064 10.15 1 1 +51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 19 protein-coding B16.6|CDA016|CGI-39|GRIM-19|GRIM19 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13|CI-B16.6|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 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 17 0.002327 11.55 1 1 +51081 MRPS7 mitochondrial ribosomal protein S7 17 protein-coding MRP-S|MRP-S7|RP-S7|RPMS7|S7mt|bMRP27a 28S ribosomal protein S7, mitochondrial|30S ribosomal protein S7 homolog|bMRP-27a 26 0.003559 10.32 1 1 +51082 POLR1D RNA polymerase I subunit D 13 protein-coding AC19|POLR1C|RPA16|RPA9|RPAC2|RPC16|RPO1-3|TCS2 DNA-directed RNA polymerases I and III subunit RPAC2|DNA-directed RNA polymerase I subunit D|RNA polymerases I and III subunit AC2|polymerase (RNA) I polypeptide D|polymerase (RNA) I polypeptide D, 16kDa|polymerase (RNA) I subunit D 22 0.003011 10.63 1 1 +51083 GAL galanin and GMAP prepropeptide 11 protein-coding ETL8|GAL-GMAP|GALN|GLNN|GMAP galanin peptides|galanin prepropeptide|galanin-message-associated peptide|galanin-related peptide|galanin/GMAP prepropeptide 14 0.001916 3.301 1 1 +51084 CRYL1 crystallin lambda 1 13 protein-coding GDH|HEL30|lambda-CRY lambda-crystallin homolog|L-gulonate 3-dehydrogenase|crystallin, lamda 1|epididymis luminal protein 30|gul3DH|testicular tissue protein Li 44 22 0.003011 9.427 1 1 +51085 MLXIPL MLX interacting protein like 7 protein-coding CHREBP|MIO|MLX|MONDOB|WBSCR14|WS-bHLH|bHLHd14 carbohydrate-responsive element-binding protein|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|Williams-Beuren syndrome chromosome region 14 protein 3|carbohydrate response element binding protein|class D basic helix-loop-helix protein 14|williams-Beuren syndrome chromosomal region 14 protein 73 0.009992 5.942 1 1 +51086 TNNI3K TNNI3 interacting kinase 1 protein-coding CARK|CCDD serine/threonine-protein kinase TNNI3K|cardiac ankyrin repeat kinase|cardiac troponin I-interacting kinase 45 0.006159 3.259 1 1 +51087 YBX2 Y-box binding protein 2 17 protein-coding CONTRIN|CSDA3|DBPC|MSY2 Y-box-binding protein 2|DNA-binding protein C|MSY2 homolog|germ cell specific Y-box binding protein 26 0.003559 4.624 1 1 +51088 KLHL5 kelch like family member 5 4 protein-coding - kelch-like protein 5|lymphocyte activation-associated protein 48 0.00657 9.381 1 1 +51090 PLLP plasmolipin 16 protein-coding PMLP|TM4SF11 plasmolipin|plasma membrane proteolipid (plasmolipin)|transmembrane 4 superfamily member 11 (plasmolipin) 4 0.0005475 7.784 1 1 +51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase 4 protein-coding LP|PCH2D|SLA|SLA/LP 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 15 0.002053 8.167 1 1 +51092 SIDT2 SID1 transmembrane family member 2 11 protein-coding CGI-40 SID1 transmembrane family member 2 51 0.006981 9.986 1 1 +51093 RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 1 protein-coding C1orf66|CGI-41|METTL25B protein RRNAD1|ribosomal RNA adenine dimethylase domain-containing protein 1 36 0.004927 9.157 1 1 +51094 ADIPOR1 adiponectin receptor 1 1 protein-coding ACDCR1|CGI-45|CGI45|PAQR1|TESBP1A adiponectin receptor protein 1|progestin and adipoQ receptor family member I 32 0.00438 11.52 1 1 +51095 TRNT1 tRNA nucleotidyl transferase 1 3 protein-coding CCA1|CGI-47|MtCCA|RPEM|SIFD CCA tRNA nucleotidyltransferase 1, mitochondrial|ATP(CTP):tRNA nucleotidyltransferase|CCA-adding enzyme|mitochondrial CCA-adding tRNA-nucleotidyltransferase|mt CCA-adding enzyme|mt tRNA CCA-diphosphorylase|mt tRNA CCA-pyrophosphorylase|mt tRNA adenylyltransferase|tRNA CCA nucleotidyl transferase 1|tRNA nucleotidyl transferase, CCA-adding, 1|tRNA-nucleotidyltransferase 1, mitochondrial 24 0.003285 8.202 1 1 +51096 UTP18 UTP18, small subunit processome component 17 protein-coding CGI-48|WDR50 U3 small nucleolar RNA-associated protein 18 homolog|UTP18, small subunit (SSU) processome component, homolog|WD repeat domain 50|WD repeat-containing protein 50 29 0.003969 9.57 1 1 +51097 SCCPDH saccharopine dehydrogenase (putative) 1 protein-coding CGI-49|NET11 saccharopine dehydrogenase-like oxidoreductase|probable saccharopine dehydrogenase 31 0.004243 10.27 1 1 +51098 IFT52 intraflagellar transport 52 20 protein-coding C20orf9|CGI-53|NGD2|NGD5 intraflagellar transport protein 52 homolog|protein NGD5 homolog 33 0.004517 9.225 1 1 +51099 ABHD5 abhydrolase domain containing 5 3 protein-coding CDS|CGI58|IECN2|NCIE2 1-acylglycerol-3-phosphate O-acyltransferase ABHD5|abhydrolase domain-containing protein 5|lipid droplet-binding protein CGI-58|truncated abhydrolase domain-containing protein 5 15 0.002053 9.134 1 1 +51100 SH3GLB1 SH3 domain containing GRB2 like endophilin B1 1 protein-coding Bif-1|CGI-61|PPP1R70|dJ612B15.2 endophilin-B1|Bax-interacting factor 1|SH3 domain-containing GRB2-like protein B1|SH3-containing protein SH3GLB1|SH3-domain GRB2 like endophilin B1|protein phosphatase 1, regulatory subunit 70|testicular tissue protein Li 172 19 0.002601 11.13 1 1 +51101 ZC2HC1A zinc finger C2HC-type containing 1A 8 protein-coding C8orf70|CGI-62|FAM164A zinc finger C2HC domain-containing protein 1A|family with sequence similarity 164, member A|protein FAM164A 26 0.003559 7.732 1 1 +51102 MECR mitochondrial trans-2-enoyl-CoA reductase 1 protein-coding CGI-63|FASN2B|NRBF1 trans-2-enoyl-CoA reductase, mitochondrial|homolog of yeast 2-enoyl thioester reductase|mitochondrial 2-enoyl thioester reductase|nuclear receptor binding factor 1 26 0.003559 8.588 1 1 +51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 15 protein-coding CGI-65|CGI65|CIA30 complex I intermediate-associated protein 30, mitochondrial|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 1|NADH dehydrogenase (ubiquinone) complex I, assembly factor 1|NADH-ubiquinone oxidoreductase 1 alpha subcomplex, assembly factor 1 24 0.003285 8.308 1 1 +51104 ABHD17B abhydrolase domain containing 17B 9 protein-coding C9orf77|CGI-67|FAM108B1 protein ABHD17B|abhydrolase domain-containing protein 17B|abhydrolase domain-containing protein FAM108B1|alpha/beta hydrolase domain-containing protein 17B|family with sequence similarity 108, member B1 21 0.002874 8.531 1 1 +51105 PHF20L1 PHD finger protein 20-like 1 8 protein-coding CGI-72|TDRD20B|URLC1 PHD finger protein 20-like protein 1|tudor domain containing 20B|tudor domain-containing protein PHF20L1|up-regulated in lung cancer 1 98 0.01341 9.884 1 1 +51106 TFB1M transcription factor B1, mitochondrial 6 protein-coding CGI-75|CGI75|mtTFB|mtTFB1 dimethyladenosine transferase 1, mitochondrial|S-adenosylmethionine-6-N', N'-adenosyl(rRNA) dimethyltransferase 1|h-mtTFB1|hTFB1M|homolog of yeast mitochondrial transcription factor B|mitochondrial 12S rRNA dimethylase 1|mitochondrial dimethyladenosine transferase 1 30 0.004106 7.462 1 1 +51107 APH1A aph-1 homolog A, gamma-secretase subunit 1 protein-coding 6530402N02Rik|APH-1|APH-1A|CGI-78 gamma-secretase subunit APH-1A|APH1A gamma secretase subunit|anterior pharynx defective 1 homolog A|aph-1alpha|presenilin-stabilization factor 23 0.003148 12.18 1 1 +51108 METTL9 methyltransferase like 9 16 protein-coding CGI-81|DREV|DREV1|PAP1 methyltransferase-like protein 9|CTB-31N19.3|DORA reverse strand protein 1|p53 activated protein 1 15 0.002053 11.06 1 1 +51109 RDH11 retinol dehydrogenase 11 (all-trans/9-cis/11-cis) 14 protein-coding ARSDR1|CGI82|HCBP12|MDT1|PSDR1|RALR1|RDJCSS|SCALD|SDR7C1 retinol dehydrogenase 11|HCV core-binding protein HCBP12|androgen-regulated short-chain dehydrogenase/reductase 1|prostate short-chain dehydrogenase reductase 1|retinal reductase 1|short chain dehydrogenase/reductase family 7C, member 1 18 0.002464 11.03 1 1 +51110 LACTB2 lactamase beta 2 8 protein-coding CGI-83 endoribonuclease LACTB2|beta-lactamase-like protein 2|testicular secretory protein Li 23 22 0.003011 8.449 1 1 +51111 KMT5B lysine methyltransferase 5B 11 protein-coding CGI-85|CGI85|SUV420H1 histone-lysine N-methyltransferase KMT5B|C630029K18Rik|histone-lysine N-methyltransferase SUV420H1|lysine (K)-specific methyltransferase 5B|lysine N-methyltransferase 5B|lysine-specific methyltransferase 5B|su(var)4-20 homolog 1|suppressor of variegation 4-20 homolog 1|suv4-20h1 82 0.01122 9.852 1 1 +51112 TRAPPC12 trafficking protein particle complex 12 2 protein-coding CGI-87|TTC-15|TTC15 trafficking protein particle complex subunit 12|TPR repeat protein 15|tetratricopeptide repeat domain 15|tetratricopeptide repeat protein 15 51 0.006981 9.667 1 1 +51114 ZDHHC9 zinc finger DHHC-type containing 9 X protein-coding CGI89|CXorf11|DHHC9|MMSA1|MRXSZ|ZDHHC10|ZNF379|ZNF380 palmitoyltransferase ZDHHC9|Asp-His-His-Cys domain containing protein 9|antigen MMSA-1|zinc finger protein 379|zinc finger protein 380|zinc finger, DHHC domain containing 10 25 0.003422 10.48 1 1 +51115 RMDN1 regulator of microtubule dynamics 1 8 protein-coding CGI-90|FAM82B|RMD-1|RMD1 regulator of microtubule dynamics protein 1|family with sequence similarity 82, member B|microtubule-associated protein 31 0.004243 9.543 1 1 +51116 MRPS2 mitochondrial ribosomal protein S2 9 protein-coding CGI-91|MRP-S2|S2mt 28S ribosomal protein S2, mitochondrial 17 0.002327 9.966 1 1 +51117 COQ4 coenzyme Q4 9 protein-coding CGI-92|COQ10D7 ubiquinone biosynthesis protein COQ4 homolog, mitochondrial|coenzyme Q biosynthesis protein 4 homolog|coenzyme Q4 homolog 13 0.001779 9.745 1 1 +51118 UTP11 UTP11, small subunit processome component homolog (S. cerevisiae) 1 protein-coding CGI-94|CGI94|UTP11L probable U3 small nucleolar RNA-associated protein 11|U3 snoRNA-associated protein 11|UTP11-like protein|UTP11-like, U3 small nucleolar ribonucleoprotein 19 0.002601 9.3 1 1 +51119 SBDS SBDS ribosome assembly guanine nucleotide exchange factor 7 protein-coding CGI-97|SDS|SWDS ribosome maturation protein SBDS|Shwachman-Bodian-Diamond syndrome 21 0.002874 10.96 1 1 +51121 RPL26L1 ribosomal protein L26 like 1 5 protein-coding RPL26P1 60S ribosomal protein L26-like 1|ribosomal protein L26 homolog|ribosomal protein L26 pseudogene 1 17 0.002327 8.048 1 1 +51122 COMMD2 COMM domain containing 2 3 protein-coding HSPC042 COMM domain-containing protein 2 16 0.00219 9.469 1 1 +51123 ZNF706 zinc finger protein 706 8 protein-coding HSPC038|PNAS-106|PNAS-113 zinc finger protein 706 15 0.002053 10.37 1 1 +51124 IER3IP1 immediate early response 3 interacting protein 1 18 protein-coding HSPC039|MEDS|PRO2309 immediate early response 3-interacting protein 1 5 0.0006844 10.07 1 1 +51125 GOLGA7 golgin A7 8 protein-coding GCP16|GOLGA3AP1|GOLGA7A|HSPC041 golgin subfamily A member 7|Golgi complex-associated protein of 16kDa|golgi autoantigen, golgin subfamily a, 7|golgi complex-associated protein of 16 kDa 7 0.0009581 10.17 1 1 +51126 NAA20 N(alpha)-acetyltransferase 20, NatB catalytic subunit 20 protein-coding NAT3|NAT3P|NAT5|NAT5P|dJ1002M8.1 N-alpha-acetyltransferase 20|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-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 12 0.001642 10.25 1 1 +51127 TRIM17 tripartite motif containing 17 1 protein-coding RBCC|RNF16|terf E3 ubiquitin-protein ligase TRIM17|RING finger protein terf|ring finger protein 16|testis RING finger protein|tripartite motif-containing protein 17 44 0.006022 4.236 1 1 +51128 SAR1B secretion associated Ras related GTPase 1B 5 protein-coding ANDD|CMRD|GTBPB|SARA2 GTP-binding protein SAR1b|2310075M17Rik|GTP-binding protein B|GTP-binding protein Sara|SAR1 homolog B|SAR1a gene homolog 2 10 0.001369 9.142 1 1 +51129 ANGPTL4 angiopoietin like 4 19 protein-coding ARP4|FIAF|HARP|HFARP|NL2|PGAR|TGQTL|UNQ171|pp1158 angiopoietin-related protein 4|PPARG angiopoietin related protein|fasting-induced adipose factor|hepatic angiopoietin-related protein|hepatic fibrinogen/angiopoietin-related protein|peroxisome proliferator-activated receptor (PPAR) gamma induced angiopoietin-related protein 28 0.003832 8.49 1 1 +51130 ASB3 ankyrin repeat and SOCS box containing 3 2 protein-coding ASB-3 ankyrin repeat and SOCS box protein 3 13 0.001779 8.302 1 1 +51131 PHF11 PHD finger protein 11 13 protein-coding APY|BCAP|IGEL|IGER|IGHER|NY-REN-34|NYREN34 PHD finger protein 11|BRCA1 C-terminus-associated protein|IgE responsiveness (atopic)|renal carcinoma antigen NY-REN-34 21 0.002874 8.769 1 1 +51132 RLIM ring finger protein, LIM domain interacting X protein-coding MRX61|NY-REN-43|RNF12 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 53 0.007254 10.45 1 1 +51133 KCTD3 potassium channel tetramerization domain containing 3 1 protein-coding NY-REN-45 BTB/POZ domain-containing protein KCTD3|NY-REN-45 antigen|potassium channel tetramerisation domain containing 3|renal carcinoma antigen NY-REN-45 70 0.009581 10.59 1 1 +51134 CEP83 centrosomal protein 83 12 protein-coding CCDC41|NPHP18|NY-REN-58 centrosomal protein of 83 kDa|NY-REN-58 antigen|centrosomal protein 83kDa|coiled-coil domain containing 41|coiled-coil domain-containing protein 41|renal carcinoma antigen NY-REN-58 53 0.007254 7.599 1 1 +51135 IRAK4 interleukin 1 receptor associated kinase 4 12 protein-coding IPD1|IRAK-4|NY-REN-64|REN64 interleukin-1 receptor-associated kinase 4|renal carcinoma antigen NY-REN-64 38 0.005201 8.749 1 1 +51136 RNFT1 ring finger protein, transmembrane 1 17 protein-coding PTD016 RING finger and transmembrane domain-containing protein 1 18 0.002464 7.985 1 1 +51138 COPS4 COP9 signalosome subunit 4 4 protein-coding CSN4|SGN4 COP9 signalosome complex subunit 4|COP9 constitutive photomorphogenic homolog subunit 4|COP9 constitutive photomorphogenic-like protein subunit 4|JAB1-containing signalosome subunit 4|signalosome subunit 4|testis tissue sperm-binding protein Li 42a 34 0.004654 9.552 1 1 +51141 INSIG2 insulin induced gene 2 2 protein-coding INSIG-2 insulin-induced gene 2 protein|INSIG2 membrane protein|insulin induced protein 2 26 0.003559 9.077 1 1 +51142 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 7 protein-coding C7orf17|MNRR1|NS2TP|PARK22 coiled-coil-helix-coiled-coil-helix domain-containing protein 2|16.7kD protein|HCV NS2 trans-regulated protein|aging-associated gene 10 protein|coiled-coil-helix-coiled-coil-helix domain-containing protein 2, mitochondrial|mitochondria nuclear retrograde regulator 1 17 0.002327 12.11 1 1 +51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 3 protein-coding DLC-A|DNCLI1|LIC1 cytoplasmic dynein 1 light intermediate chain 1|dynein light chain A|dynein light intermediate chain 1, cytosolic|dynein, cytoplasmic, light intermediate polypeptide 1 35 0.004791 9.565 1 1 +51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 11 protein-coding KAR|SDR12C1 very-long-chain 3-oxoacyl-CoA reductase|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 19 0.002601 10.68 1 1 +51146 A4GNT alpha-1,4-N-acetylglucosaminyltransferase 3 protein-coding alpha4GnT alpha-1,4-N-acetylglucosaminyltransferase 34 0.004654 1.115 1 1 +51147 ING4 inhibitor of growth family member 4 12 protein-coding my036|p29ING4 inhibitor of growth protein 4|brain my036 protein|candidate tumor suppressor p33 ING1 homolog 14 0.001916 9.235 1 1 +51148 CERCAM cerebral endothelial cell adhesion molecule 9 protein-coding CEECAM1|GLT25D3 probable inactive glycosyltransferase 25 family member 3|cerebral cell adhesion molecule|cerebral endothelial cell adhesion molecule 1|glycosyltransferase 25 domain containing 3|glycosyltransferase 25 family member 3 39 0.005338 9.893 1 1 +51149 MRNIP MRN complex interacting protein 5 protein-coding C5orf45 UPF0544 protein C5orf45|MRN-interacting protein 27 0.003696 7.299 1 1 +51150 SDF4 stromal cell derived factor 4 1 protein-coding Cab45|SDF-4 45 kDa calcium-binding protein 25 0.003422 11.63 1 1 +51151 SLC45A2 solute carrier family 45 member 2 5 protein-coding 1A1|AIM1|MATP|OCA4|SHEP5 membrane-associated transporter protein|melanoma antigen AIM1|protein AIM-1|underwhite 56 0.007665 1.898 1 1 +51154 MRTO4 MRT4 homolog, ribosome maturation factor 1 protein-coding C1orf33|MRT4|dJ657E11.4 mRNA turnover protein 4 homolog|60S acidic ribosomal protein PO|MRT4, mRNA turnover 4, homolog|MRTO4 ribosome maturation factor|mRNA turnover 4 homolog|ribosome assembly factor MRTO4 17 0.002327 9.867 1 1 +51155 HN1 hematological and neurological expressed 1 17 protein-coding ARM2|HN1A hematological and neurological expressed 1 protein|androgen-regulated protein 2 13 0.001779 10.78 1 1 +51156 SERPINA10 serpin family A member 10 14 protein-coding PZI|ZPI protein Z-dependent protease inhibitor|PZ-dependent protease inhibitor|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10|serpin A10|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 41 0.005612 1.394 1 1 +51157 ZNF580 zinc finger protein 580 19 protein-coding - zinc finger protein 580|LDL-induced EC protein 8 0.001095 8.552 1 1 +51160 VPS28 VPS28, ESCRT-I subunit 8 protein-coding - vacuolar protein sorting-associated protein 28 homolog|ESCRT-I complex subunit VPS28|vacuolar protein sorting 28 homolog|vacuolar protein sorting 28-like protein|yeast class E protein Vps28p homolog 21 0.002874 11.09 1 1 +51161 C3orf18 chromosome 3 open reading frame 18 3 protein-coding G20 uncharacterized protein C3orf18 9 0.001232 7.083 1 1 +51162 EGFL7 EGF like domain multiple 7 9 protein-coding NEU1|VE-STATIN|ZNEU1 epidermal growth factor-like protein 7|EGF-like protein 7|NOTCH4-like protein|multiple EGF-like domains protein 7|multiple epidermal growth factor-like domains protein 7|vascular endothelial statin 14 0.001916 8.943 1 1 +51163 DBR1 debranching RNA lariats 1 3 protein-coding - lariat debranching enzyme|RNA lariat debranching enzyme|debranching enzyme homolog 1 51 0.006981 8.53 1 1 +51164 DCTN4 dynactin subunit 4 5 protein-coding DYN4|P62 dynactin subunit 4|dynactin 4 (p62)|dynactin p62 subunit|dynactin subunit p62 20 0.002737 10.7 1 1 +51166 AADAT aminoadipate aminotransferase 4 protein-coding KAT2|KATII|KYAT2 kynurenine/alpha-aminoadipate aminotransferase, mitochondrial|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 24 0.003285 6.422 1 1 +51167 CYB5R4 cytochrome b5 reductase 4 6 protein-coding NCB5OR|cb5/cb5R|dJ676J13.1 cytochrome b5 reductase 4|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 33 0.004517 8.122 1 1 +51168 MYO15A myosin XVA 17 protein-coding DFNB3|MYO15 unconventional myosin-XV|myosin-XV|unconventional myosin-15 214 0.02929 3.793 1 1 +51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 4 protein-coding 17-BETA-HSD11|17-BETA-HSDXI|17BHSD11|DHRS8|PAN1B|RETSDR2|SDR16C2 estradiol 17-beta-dehydrogenase 11|17-beta-hydroxysteroid dehydrogenase type XI|CTCL tumor antigen HD-CL-03|CTCL-associated antigen HD-CL-03|cutaneous T-cell lymphoma-associated antigen HD-CL-03|dehydrogenase/reductase SDR family member 8|retinal short-chain dehydrogenase/reductase 2|short chain dehydrogenase/reductase family 16C member 2 26 0.003559 9.686 1 1 +51171 HSD17B14 hydroxysteroid 17-beta dehydrogenase 14 19 protein-coding DHRS10|SDR47C1|retSDR3 17-beta-hydroxysteroid dehydrogenase 14|17-beta-HSD 14|17-beta-hydroxysteroid dehydrogenase DHRS10|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|testicular tissue protein Li 52 13 0.001779 7.532 1 1 +51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase 16 protein-coding APAA|UCE N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase|alpha-N-acetylglucosaminyl phosphodiesterase|lysosomal alpha-N-acetylglucosaminidase|mannose 6-phosphate-uncovering enzyme|phosphodiester alpha-GlcNAcase 33 0.004517 8.278 1 1 +51174 TUBD1 tubulin delta 1 17 protein-coding TUBD tubulin delta chain|delta-tubulin 38 0.005201 7.443 1 1 +51175 TUBE1 tubulin epsilon 1 6 protein-coding TUBE|dJ142L7.2 tubulin epsilon chain|epsilon-tubulin 25 0.003422 7.459 1 1 +51176 LEF1 lymphoid enhancer binding factor 1 4 protein-coding LEF-1|TCF10|TCF1ALPHA|TCF7L3 lymphoid enhancer-binding factor 1|T cell-specific transcription factor 1-alpha|TCF1-alpha 43 0.005886 7.782 1 1 +51177 PLEKHO1 pleckstrin homology domain containing O1 1 protein-coding CKIP-1|CKIP1|JBP|OC120 pleckstrin homology domain-containing family O member 1|C-Jun-binding protein|CK2 interacting protein 1; HQ0024c protein|CK2-interacting protein 1|PH domain-containing family O member 1|casein kinase 2-interacting protein 1|osteoclast maturation-associated gene 120 protein 39 0.005338 9.652 1 1 +51179 HAO2 hydroxyacid oxidase 2 1 protein-coding GIG16|HAOX2 hydroxyacid oxidase 2|(S)-2-hydroxy-acid oxidase, peroxisomal|cell growth-inhibiting gene 16 protein|glycolate oxidase|hydroxyacid oxidase 2 (long chain)|long chain alpha-hydroxy acid oxidase|long-chain L-2-hydroxy acid oxidase 39 0.005338 1.343 1 1 +51181 DCXR dicarbonyl and L-xylulose reductase 17 protein-coding DCR|HCR2|HCRII|KIDCR|P34H|PNTSU|SDR20C1|XR L-xylulose reductase|carbonyl reductase 2|carbonyl reductase II|dicarbonyl/L-xylulose reductase|kidney dicarbonyl reductase|short chain dehydrogenase/reductase family 20C member 1|sperm surface protein P34H 8 0.001095 10.14 1 1 +51182 HSPA14 heat shock protein family A (Hsp70) member 14 10 protein-coding HSP70-4|HSP70L1 heat shock 70 kDa protein 14|HSP70-like protein 1|heat shock 70kDa protein 14 isoform 1 variant 3|heat shock protein HSP60|heat shock protein hsp70-related protein 30 0.004106 8.914 1 1 +51184 GPN3 GPN-loop GTPase 3 12 protein-coding ATPBD1C GPN-loop GTPase 3|ATP-binding domain 1 family member C|protein x 0004 15 0.002053 8.686 1 1 +51185 CRBN cereblon 3 protein-coding MRT2|MRT2A protein cereblon|protein x 0001 22 0.003011 9.163 1 1 +51186 TCEAL9 transcription elongation factor A like 9 X protein-coding WBP5|WEX6 transcription elongation factor A protein-like 9|TCEA-like protein 9|WBP-5|WW domain binding protein 1|WW domain-binding protein 5|pp21 homolog|transcription elongation factor S-II protein-like 9 6 0.0008212 9.945 1 1 +51187 RSL24D1 ribosomal L24 domain containing 1 15 protein-coding C15orf15|HRP-L30-iso|L30|RLP24|RPL24|RPL24L|TVAS3 probable ribosome biogenesis protein RLP24|60S ribosomal protein L30 isolog|homolog of yeast ribosomal like protein 24|my024 protein|ribosomal L24 domain-containing protein 1 4 0.0005475 10.78 1 1 +51188 SS18L2 SS18 like 2 3 protein-coding KIAA-iso SS18-like protein 2|SYT homolog 2|synovial sarcoma translocation gene on chromosome 18-like 2 1 0.0001369 8.327 1 1 +51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 4 protein-coding CEB1|CEBP1 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 69 0.009444 7.782 1 1 +51192 CKLF chemokine like factor 16 protein-coding C32|CKLF1|CKLF2|CKLF3|CKLF4|HSPC224|UCK-1 chemokine-like factor|chemokine-like factor 1|chemokine-like factor 2|chemokine-like factor 3|chemokine-like factor 4|transmembrane proteolipid 9 0.001232 8.511 1 1 +51193 ZNF639 zinc finger protein 639 3 protein-coding ANC-2H01|ANC_2H01|ZASC1 zinc finger protein 639|zinc finger amplified in esophageal squamous cell carcinomas 1 41 0.005612 9.232 1 1 +51194 IPO11 importin 11 5 protein-coding RanBP11 importin-11|Ran binding protein 11|imp11|ran-binding protein 11 55 0.007528 8.946 1 1 +51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 17 protein-coding Link-GEFII rap guanine nucleotide exchange factor-like 1|Link guanine nucleotide exchange factor II|RAP guanine-nucleotide-exchange factor (GEF)-like 1|Rap guanine nucleotide exchange factor (GEF)-like 1|link GEFII 24 0.003285 8.335 1 1 +51196 PLCE1 phospholipase C epsilon 1 10 protein-coding NPHS3|PLCE|PPLC 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase epsilon-1|PLC-epsilon-1|pancreas-enriched phospholipase C|phosphoinositide phospholipase C|phosphoinositide phospholipase C-epsilon-1|phosphoinositide-specific phospholipase C epsilon-1 172 0.02354 7.628 1 1 +51198 CDKN2A-AS1 CDKN2A antisense RNA 1 (head to head) 9 ncRNA C9orf53|bA149I2.3 susceptibility protein NSG-x 1 0.0001369 0.6777 1 1 +51199 NIN ninein 14 protein-coding SCKL7 ninein|glycogen synthase kinase 3 beta-interacting protein|hNinein|ninein (GSK3B interacting protein)|ninein centrosomal protein 135 0.01848 9.847 1 1 +51200 CPA4 carboxypeptidase A4 7 protein-coding CPA3 carboxypeptidase A4|carboxypeptidase A3 43 0.005886 3.854 1 1 +51201 ZDHHC2 zinc finger DHHC-type containing 2 8 protein-coding DHHC2|ZNF372 palmitoyltransferase ZDHHC2|DHHC-2|ream|rec|reduced expression associated with metastasis protein|reduced expression in cancer protein|testis tissue sperm-binding protein Li 56e|zinc finger DHHC domain-containing protein 2|zinc finger protein 372|zinc finger, DHHC domain containing 2 15 0.002053 8.617 1 1 +51202 DDX47 DEAD-box helicase 47 12 protein-coding E4-DBP|HQ0256|MSTP162|RRP3 probable ATP-dependent RNA helicase DDX47|DEAD (Asp-Glu-Ala-Asp) box polypeptide 47|DEAD box polypeptide 47|DEAD box protein 47|E4-DEAD box protein 27 0.003696 10.1 1 1 +51203 NUSAP1 nucleolar and spindle associated protein 1 15 protein-coding ANKT|BM037|LNP|NUSAP|PRO0310p1|Q0310|SAPL nucleolar and spindle-associated protein 1|nucleolar protein ANKT 33 0.004517 9.041 1 1 +51204 TACO1 translational activator of cytochrome c oxidase I 17 protein-coding CCDC44 translational activator of cytochrome c oxidase 1|clone HQ0477 PRO0477p|coiled-coil domain-containing protein 44|translational activator of mitochondrially encoded cytochrome c oxidase I 7 0.0009581 8.933 1 1 +51205 ACP6 acid phosphatase 6, lysophosphatidic 1 protein-coding ACPL1|LPAP|PACPL1 lysophosphatidic acid phosphatase type 6|acid phosphatase-like protein 1 27 0.003696 8.145 1 1 +51206 GP6 glycoprotein VI platelet 19 protein-coding BDPLT11|GPIV|GPVI platelet glycoprotein VI|glycoprotein 6|platelet collagen receptor 45 0.006159 2.069 1 1 +51207 DUSP13 dual specificity phosphatase 13 10 protein-coding BEDP|DUSP13A|DUSP13B|MDSP|SKRP4|TMDP dual specificity protein phosphatase 13|branching-enzyme interacting DSP|branching-enzyme interacting dual-specificity protein phosphatase|muscle-restricted DSP|testis- and skeletal-muscle-specific DSP 34 0.004654 1.718 1 1 +51208 CLDN18 claudin 18 3 protein-coding SFTA5|SFTPJ claudin-18|surfactant associated 5|surfactant associated protein J|surfactant, pulmonary associated protein J 26 0.003559 2.765 1 1 +51209 RAB9B RAB9B, member RAS oncogene family X protein-coding RAB9L|Rab-9L ras-related protein Rab-9B|rab-9-like protein 19 0.002601 2.944 1 1 +51213 LUZP4 leucine zipper protein 4 X protein-coding CT-28|CT-8|CT28|HOM-TES-85 leucine zipper protein 4|HOM-TES-85 tumor antigen|cancer/testis antigen 28|tumor antigen HOM-TES-85 38 0.005201 0.3423 1 1 +51214 IGF2-AS IGF2 antisense RNA 11 ncRNA IGF2-AS1|IGF2AS|PEG8 IGF2 antisense RNA 1 (non-protein coding)|PEG8/IGF2AS, imprinting|insulin-like growth factor 2 antisense 1 (non-protein coding)|insulin-like growth factor II, antisense 4 0.0005475 1.842 1 1 +51218 GLRX5 glutaredoxin 5 14 protein-coding C14orf87|FLB4739|GRX5|PR01238|PRO1238|PRSA|SIDBA3|SPAHGC glutaredoxin-related protein 5, mitochondrial|glutaredoxin 5 homolog|monothiol glutaredoxin-5 4 0.0005475 9.886 1 1 +51222 ZNF219 zinc finger protein 219 14 protein-coding ZFP219 zinc finger protein 219 38 0.005201 9.337 1 1 +51224 TCEB3B transcription elongation factor B subunit 3B 18 protein-coding ELOA2|HsT832|TCEB3L RNA polymerase II transcription factor SIII subunit A2|transcription elongation factor (SIII) elongin A2 elongin A2|transcription elongation factor B polypeptide 3B 104 0.01423 0.4983 1 1 +51225 ABI3 ABI family member 3 17 protein-coding NESH|SSH3BP3 ABI gene family member 3|new molecule including SH3 23 0.003148 7.671 1 1 +51226 COPZ2 coatomer protein complex subunit zeta 2 17 protein-coding zeta2-COP coatomer subunit zeta-2|nonclathrin coat protein zeta-COP|zeta-2 COP|zeta-2-coat protein 9 0.001232 7.476 1 1 +51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P 21 protein-coding DCRC|DCRC-S|DSCR5|DSRC|PIG-P phosphatidylinositol N-acetylglucosaminyltransferase subunit P|Down syndrome critical region gene 5|Down syndrome critical region protein 5|Down syndrome critical region protein C|phosphatidylinositol glycan, class P|phosphatidylinositol-glycan biosynthesis class P protein|phosphatidylinositol-n-acetylglucosaminyltranferase subunit 8 0.001095 8.076 1 1 +51228 GLTP glycolipid transfer protein 12 protein-coding - glycolipid transfer protein|truncated glycolipid transfer protein 14 0.001916 10.4 1 1 +51230 PHF20 PHD finger protein 20 20 protein-coding C20orf104|GLEA2|HCA58|NZF|TDRD20A|TZP PHD finger protein 20|glioma-expressed antigen 2|hepatocellular carcinoma-associated antigen 58|novel zinc finger protein|transcription factor TZP|tudor domain containing 20A 71 0.009718 9.979 1 1 +51231 VRK3 vaccinia related kinase 3 19 protein-coding - inactive serine/threonine-protein kinase VRK3|serine/threonine-protein kinase VRK3|serine/threonine-protein pseudokinase VRK3 33 0.004517 9.373 1 1 +51232 CRIM1 cysteine rich transmembrane BMP regulator 1 2 protein-coding CRIM-1|S52 cysteine-rich motor neuron 1 protein|cysteine rich transmembrane BMP regulator 1 (chordin-like)|cysteine-rich repeat-containing protein S52 63 0.008623 10.55 1 1 +51233 DRICH1 aspartate rich 1 22 protein-coding C22orf43|KB-208E9.1 aspartate-rich protein 1 16 0.00219 1.193 1 1 +51234 EMC4 ER membrane protein complex subunit 4 15 protein-coding PIG17|TMEM85 ER membrane protein complex subunit 4|cell proliferation-inducing gene 17 protein|transmembrane protein 85 13 0.001779 10.5 1 1 +51236 HGH1 HGH1 homolog 8 protein-coding BRP16|BRP16L|C8orf30A|C8orf30B|FAM203A|FAM203B protein HGH1 homolog|brain protein 16|brain protein 16-like|family with sequence similarity 203, member A|family with sequence similarity 203, member B|protein FAM203A|protein FAM203B 1 0.0001369 9.52 1 1 +51237 MZB1 marginal zone B and B1 cell specific protein 5 protein-coding MEDA-7|PACAP|pERp1 marginal zone B- and B1-cell-specific protein|HSPC190|caspase-2 binding protein|mesenteric estrogen-dependent adipose 7|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 7 0.0009581 5.983 1 1 +51239 ANKRD39 ankyrin repeat domain 39 2 protein-coding - ankyrin repeat domain-containing protein 39 8 0.001095 7.605 1 1 +51241 COX16 COX16, cytochrome c oxidase assembly homolog 14 protein-coding C14orf112|HSPC203 cytochrome c oxidase assembly protein COX16 homolog, mitochondrial|cytochrome c oxidase assembly factor 7 0.0009581 9.765 1 1 +51244 CCDC174 coiled-coil domain containing 174 3 protein-coding C3orf19|HSPC212|IHPM|IHPMR coiled-coil domain-containing protein 174 26 0.003559 8.657 1 1 +51246 SHISA5 shisa family member 5 3 protein-coding SCOTIN protein shisa-5|putative NF-kappa-B-activating protein 120|shisa homolog 5 16 0.00219 12.05 1 1 +51247 PAIP2 poly(A) binding protein interacting protein 2 5 protein-coding PAIP-2|PAIP2A polyadenylate-binding protein-interacting protein 2|PABC1-interacting protein 2|PABP-interacting protein 2|polyA-binding protein-interacting protein 2 10 0.001369 10.79 1 1 +51248 PDZD11 PDZ domain containing 11 X protein-coding AIPP1|PDZK11|PISP PDZ domain-containing protein 11|ATPase-interacting PDZ protein|PMCA-interacting single-PDZ protein|plasma membrane calcium ATPase-interacting single-PDZ protein 10 0.001369 9.735 1 1 +51249 TMEM69 transmembrane protein 69 1 protein-coding C1orf154 transmembrane protein 69 11 0.001506 9.195 1 1 +51250 C6orf203 chromosome 6 open reading frame 203 6 protein-coding HSPC230|PRED31 uncharacterized protein C6orf203 14 0.001916 7.865 1 1 +51251 NT5C3A 5'-nucleotidase, cytosolic IIIA 7 protein-coding NT5C3|P5'N-1|P5N-1|PN-I|POMP|PSN1|UMPH|UMPH1|cN-III|hUMP1|p36 cytosolic 5'-nucleotidase 3A|5'-nucleotidase, cytosolic III|7-methylguanosine nucleotidase|7-methylguanosine phosphate-specific 5'-nucleotidase|cytosolic 5'-nucleotidase 3|lupin|pyrimidine 5'-nucleotidase 1|uridine 5'-monophosphate hydrolase 1 28 0.003832 9.019 1 1 +51252 FAM178B family with sequence similarity 178 member B 2 protein-coding - protein FAM178B 16 0.00219 3.473 1 1 +51253 MRPL37 mitochondrial ribosomal protein L37 1 protein-coding L2mt|L37mt|MRP-L2|MRP-L37|MRPL2|RPML2 39S ribosomal protein L37, mitochondrial|39S ribosomal protein L2, mitochondrial|ribosomal protein, mitochondrial, L2 25 0.003422 10.62 1 1 +51255 RNF181 ring finger protein 181 2 protein-coding HSPC238 E3 ubiquitin-protein ligase RNF181 9 0.001232 10.24 1 1 +51256 TBC1D7 TBC1 domain family member 7 6 protein-coding MGCPH|PIG51|TBC7 TBC1 domain family member 7|TS complex subunit 3|cell migration-inducing protein 23 22 0.003011 8.325 1 1 +51257 MARCH2 membrane associated ring-CH-type finger 2 19 protein-coding HSPC240|MARCH-II|RNF172 E3 ubiquitin-protein ligase MARCH2|RING finger protein 172|membrane associated ring finger 2|membrane-associated RING finger protein 2|membrane-associated RING-CH protein II|membrane-associated ring finger (C3HC4) 2, E3 ubiquitin protein ligase 13 0.001779 9.273 1 1 +51258 MRPL51 mitochondrial ribosomal protein L51 12 protein-coding CDA09|HSPC241|MRP64|bMRP64 39S ribosomal protein L51, mitochondrial|L51mt|MRP-L51|bMRP-64|mitochondrial ribosomal protein 64|mitochondrial ribosomal protein bMRP64 14 0.001916 10.78 1 1 +51259 TMEM216 transmembrane protein 216 11 protein-coding HSPC244 transmembrane protein 216 9 0.001232 7.906 1 1 +51260 PBDC1 polysaccharide biosynthesis domain containing 1 X protein-coding CXorf26 protein PBDC1|2610029G23Rik|UPF0368 protein Cxorf26|polysaccharide biosynthesis domain-containing protein 1 28 0.003832 8.963 1 1 +51263 MRPL30 mitochondrial ribosomal protein L30 2 protein-coding L28MT|L30MT|MRP-L28|MRP-L30|MRPL28|MRPL28M|RPML28 39S ribosomal protein L30, mitochondrial|39S ribosomal protein L28, mitochondrial 12 0.001642 9.719 1 1 +51264 MRPL27 mitochondrial ribosomal protein L27 17 protein-coding L27mt 39S ribosomal protein L27, mitochondrial|MRP-L27 5 0.0006844 9.793 1 1 +51265 CDKL3 cyclin dependent kinase like 3 5 protein-coding NKIAMRE cyclin-dependent kinase-like 3|serine-threonine protein kinase NKIAMRE 34 0.004654 4.89 1 1 +51266 CLEC1B C-type lectin domain family 1 member B 12 protein-coding 1810061I13Rik|CLEC2|CLEC2B|PRO1384|QDED721 C-type lectin domain family 1 member B|C-type lectin-like receptor 2|CLEC-2 33 0.004517 0.2001 1 1 +51267 CLEC1A C-type lectin domain family 1 member A 12 protein-coding CLEC-1|CLEC1 C-type lectin domain family 1 member A|C-type lectin-like receptor-1 32 0.00438 5.38 1 1 +51268 PIPOX pipecolic acid and sarcosine oxidase 17 protein-coding LPIPOX peroxisomal sarcosine oxidase|L-pipecolate oxidase|L-pipecolic acid oxidase|PSO|pipecolic acid oxidase 28 0.003832 5.549 1 1 +51270 TFDP3 transcription factor Dp family member 3 X protein-coding CT30|DP4|HCA661 transcription factor Dp family member 3|E2F-like protein|cancer/testis antigen 30|hepatocellular carcinoma-associated antigen 661 31 0.004243 0.7119 1 1 +51271 UBAP1 ubiquitin associated protein 1 9 protein-coding NAG20|UAP|UBAP|UBAP-1 ubiquitin-associated protein 1|nasopharyngeal carcinoma-associated gene 20 protein 34 0.004654 10.54 1 1 +51272 BET1L Bet1 golgi vesicular membrane trafficking protein like 11 protein-coding BET1L1|GOLIM3|GS15|HSPC197 BET1-like protein|GOS-15|blocked early in transport 1 homolog-like|golgi SNARE 15 kDa protein|golgi SNARE with a size of 15 kDa|golgi integral membrane protein 3|vesicle transport protein GOS15 5 0.0006844 10.72 1 1 +51274 KLF3 Kruppel like factor 3 4 protein-coding BKLF Krueppel-like factor 3|CACCC-box-binding protein BKLF|Kruppel-like factor 3 (basic)|TEF-2|basic Kruppel-like factor|basic krueppel-like factor|basic kruppel like factor|transcript ch138 50 0.006844 10.64 1 1 +51275 MAPKAPK5-AS1 MAPKAPK5 antisense RNA 1 12 ncRNA C12orf47 MAPKAPK5 antisense RNA 1 (non-protein coding)|apoptosis-related protein PNAS-1 1 0.0001369 8.369 1 1 +51276 ZNF571 zinc finger protein 571 19 protein-coding HSPC059 zinc finger protein 571 42 0.005749 6.269 1 1 +51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 2 protein-coding RBJ|RabJS dnaJ homolog subfamily C member 27|DnaJ (Hsp40) homolog, subfamily C, member 27|Ras-associated protein Rap1|rab and DnaJ domain-containing protein 25 0.003422 6.972 1 1 +51278 IER5 immediate early response 5 1 protein-coding SBBI48 immediate early response gene 5 protein 15 0.002053 9.592 1 1 +51279 C1RL complement C1r subcomponent like 12 protein-coding C1RL1|C1RLP|C1r-LP|CLSPa complement C1r subcomponent-like protein|C1r-like protein|C1r-like serine protease analog protein|complement C1r-like proteinase|complement component 1, r subcomponent-like 33 0.004517 9.63 1 1 +51280 GOLM1 golgi membrane protein 1 9 protein-coding C9orf155|GOLPH2|GP73|HEL46|PSEC0257|bA379P1.3 Golgi membrane protein 1|epididymis luminal protein 46|golgi membrane protein GP73|golgi phosphoprotein 2|golgi protein, 73-kD 21 0.002874 11.71 1 1 +51281 ANKMY1 ankyrin repeat and MYND domain containing 1 2 protein-coding ZMYND13 ankyrin repeat and MYND domain-containing protein 1|testis-specific ankyrin-like protein 1|zinc finger MYND domain-containing protein 13 74 0.01013 7.61 1 1 +51282 SCAND1 SCAN domain containing 1 20 protein-coding RAZ1|SDP1 SCAN domain-containing protein 1|SCAN-related protein RAZ1 7 0.0009581 9.963 1 1 +51283 BFAR bifunctional apoptosis regulator 16 protein-coding BAR|RNF47 bifunctional apoptosis regulator|RING finger protein 47|bifunctional apoptosis inhibitor 35 0.004791 10.41 1 1 +51284 TLR7 toll like receptor 7 X protein-coding TLR7-like toll-like receptor 7|toll-like receptor 7-like 85 0.01163 6.037 1 1 +51285 RASL12 RAS like family 12 15 protein-coding RIS ras-like protein family member 12|Ras family member Ris|ras-like protein Ris 18 0.002464 7.362 1 1 +51286 CEND1 cell cycle exit and neuronal differentiation 1 11 protein-coding BM88 cell cycle exit and neuronal differentiation protein 1|BM88 antigen 10 0.001369 3.745 1 1 +51287 COA4 cytochrome c oxidase assembly factor 4 homolog 11 protein-coding CHCHD8|CMC3|E2IG2 cytochrome c oxidase assembly factor 4 homolog, mitochondrial|E2-induced gene 2 protein|coiled-coil-helix-coiled-coil-helix domain containing 8|coiled-coil-helix-coiled-coil-helix domain-containing protein 8 8 0.001095 9.858 1 1 +51289 RXFP3 relaxin/insulin like family peptide receptor 3 5 protein-coding GPCR135|RLN3R1|RXFPR3|SALPR relaxin-3 receptor 1|G-protein coupled receptor GPCR135|G-protein coupled receptor SALPR|RLN3 receptor 1|g protein-coupled receptor SALPR|relaxin family peptide receptor 3|somatostatin and angiotensin-like peptide receptor 82 0.01122 0.4861 1 1 +51290 ERGIC2 ERGIC and golgi 2 12 protein-coding CDA14|Erv41|PTX1|cd002 endoplasmic reticulum-Golgi intermediate compartment protein 2|CD14 protein 17 0.002327 9.495 1 1 +51291 GMIP GEM interacting protein 19 protein-coding ARHGAP46 GEM-interacting protein 72 0.009855 8.805 1 1 +51292 GMPR2 guanosine monophosphate reductase 2 14 protein-coding GMPR 2 GMP reductase 2|guanosine 5'-monophosphate oxidoreductase 2|guanosine monophosphate reductase isolog 22 0.003011 10.19 1 1 +51293 CD320 CD320 molecule 19 protein-coding 8D6|8D6A|TCBLR CD320 antigen|8D6 antigen|FDC-SM-8D6|FDC-signaling molecule 8D6|transcobalamin receptor 19 0.002601 9.652 1 1 +51294 PCDH12 protocadherin 12 5 protein-coding VE-cadherin-2|VECAD2 protocadherin-12|VE-cad-2|VE-cadherin 2|vascular cadherin-2|vascular endothelial cadherin 2 97 0.01328 7.942 1 1 +51295 ECSIT ECSIT signalling integrator 19 protein-coding SITPEC evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial|ECSIT homolog|likely ortholog of mouse signaling intermediate in Toll pathway evolutionarily conserved 28 0.003832 9.672 1 1 +51296 SLC15A3 solute carrier family 15 member 3 11 protein-coding OCTP|PHT2|PTR3 solute carrier family 15 member 3|osteoclast transporter|peptide transporter 3|peptide/histidine transporter 2|solute carrier family 15 (oligopeptide transporter), member 3 28 0.003832 9.034 1 1 +51297 BPIFA1 BPI fold containing family A member 1 20 protein-coding LUNX|NASG|PLUNC|SPLUNC1|SPURT|bA49G10.5 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|short PLUNC1|tracheal epithelium enriched protein|von Ebner protein Hl 36 0.004927 1.04 1 1 +51298 THEG theg spermatid protein 19 protein-coding CT56|THEG1 testicular haploid expressed gene protein|Theg homolog|cancer/testis antigen 56|testis-specific 45 0.006159 0.8973 1 1 +51299 NRN1 neuritin 1 6 protein-coding NRN|dJ380B8.2 neuritin 17 0.002327 7.014 1 1 +51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 3 protein-coding C3orf1 complex I assembly factor TIMMDC1, mitochondrial|M5-14 protein|TIMM domain containing-protein 1|translocase of inner mitochondrial membrane domain-containing protein 1|transmembrane protein C3orf1 22 0.003011 10.35 1 1 +51301 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 5 protein-coding C2GNT3 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) 60 0.008212 4.421 1 1 +51302 CYP39A1 cytochrome P450 family 39 subfamily A member 1 6 protein-coding - 24-hydroxycholesterol 7-alpha-hydroxylase|cytochrome P450, family 39, subfamily A, polypeptide 1|cytochrome P450, subfamily XXXIX (oxysterol 7 alpha-hydroxylase), polypeptide 1 39 0.005338 5.544 1 1 +51303 FKBP11 FK506 binding protein 11 12 protein-coding FKBP19 peptidyl-prolyl cis-trans isomerase FKBP11|19 kDa FK506-binding protein|19 kDa FKBP|FK506 binding protein 11, 19 kDa|FKBP-11|FKBP-19|PPIase FKBP11|rotamase 16 0.00219 8.94 1 1 +51304 ZDHHC3 zinc finger DHHC-type containing 3 3 protein-coding DHHC-3|GODZ|ZNF373 palmitoyltransferase ZDHHC3|DHHC1 protein|Golgi apparatus-specific protein with DHHC zinc finger domain|golgi-specific DHHC Zinc Finger Protein|zinc finger DHHC domain-containing protein 3|zinc finger protein 373|zinc finger, DHHC domain containing 3 17 0.002327 10.6 1 1 +51305 KCNK9 potassium two pore domain channel subfamily K member 9 8 protein-coding K2p9.1|KT3.2|TASK-3|TASK3 potassium channel subfamily K member 9|TWIK-related acid-sensitive K(+) channel 3|acid-sensitive potassium channel protein TASK-3|potassium channel, two pore domain subfamily K, member 9|two pore K(+) channel KT3.2|two pore potassium channel KT3.2 64 0.00876 2.517 1 1 +51306 FAM13B family with sequence similarity 13 member B 5 protein-coding ARHGAP49|C5orf5|FAM13B1|KHCHP|N61 protein FAM13B|GAP-like protein N61|family with sequence similarity 13, member B1 54 0.007391 9.207 1 1 +51307 FAM53C family with sequence similarity 53 member C 5 protein-coding C5orf6 protein FAM53C|putative nuclear protein 40 0.005475 9.942 1 1 +51308 REEP2 receptor accessory protein 2 5 protein-coding C5orf19|SGC32445|SPG72|Yip2d receptor expression-enhancing protein 2 14 0.001916 6.217 1 1 +51309 ARMCX1 armadillo repeat containing, X-linked 1 X protein-coding ALEX1|GASP7 armadillo repeat-containing X-linked protein 1|ARM protein lost in epithelial cancers on chromosome X 1|arm protein lost in epithelial cancers, X chromosome, 1 38 0.005201 8.127 1 1 +51310 SLC22A17 solute carrier family 22 member 17 14 protein-coding 24p3R|BOCT|BOIT|NGALR|NGALR2|NGALR3|hBOIT solute carrier family 22 member 17|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 28 0.003832 8.756 1 1 +51311 TLR8 toll like receptor 8 X protein-coding CD288 toll-like receptor 8 99 0.01355 5.063 1 1 +51312 SLC25A37 solute carrier family 25 member 37 8 protein-coding HT015|MFRN|MFRN1|MSC|MSCP|PRO1278|PRO1584|PRO2217 mitoferrin-1|mitochondrial iron transporter 1|mitochondrial solute carrier protein|mitoferrin|predicted protein of HQ2217|solute carrier family 25 (mitochondrial iron transporter), member 37 24 0.003285 8.892 1 1 +51313 FAM198B family with sequence similarity 198 member B 4 protein-coding AD021|AD036|C4orf18 protein FAM198B|expressed in nerve and epithelium during development 53 0.007254 9.885 1 1 +51314 NME8 NME/NM23 family member 8 7 protein-coding CILD6|HEL-S-99|NM23-H8|SPTRX2|TXNDC3|sptrx-2 thioredoxin domain-containing protein 3|epididymis secretory protein Li 99|sperm-specific thioredoxin 2|spermatid-specific thioredoxin-2|thioredoxin domain containing 3 (spermatozoa) 75 0.01027 1.579 1 1 +51315 KRCC1 lysine rich coiled-coil 1 2 protein-coding CHBP2 lysine-rich coiled-coil protein 1|cryptogenic hepatitis-binding protein 2 15 0.002053 9.333 1 1 +51316 PLAC8 placenta specific 8 4 protein-coding C15|DGIC|PNAS-144|onzin placenta-specific gene 8 protein|down-regulated in gastrointestinal cancer protein 12 0.001642 5.443 1 1 +51317 PHF21A PHD finger protein 21A 11 protein-coding BHC80|BM-006 PHD finger protein 21A|BHC80a|BRAF35-HDAC complex protein BHC80|BRAF35/HDAC2 complex (80 kDa) 42 0.005749 9.626 1 1 +51318 MRPL35 mitochondrial ribosomal protein L35 2 protein-coding L35mt|MRP-L35 39S ribosomal protein L35, mitochondrial 14 0.001916 9.632 1 1 +51319 RSRC1 arginine and serine rich coiled-coil 1 3 protein-coding BM-011|SFRS21|SRrp53 serine/Arginine-related protein 53|arginine/serine-rich coiled-coil 1|arginine/serine-rich coiled-coil protein 1|splicing factor, arginine/serine-rich 21 35 0.004791 7.726 1 1 +51320 MEX3C mex-3 RNA binding family member C 18 protein-coding BM-013|MEX-3C|RKHD2|RNF194 RNA-binding E3 ubiquitin-protein ligase MEX3C|MEX3C variant 1|MEX3C variant 2|RING finger and KH domain-containing protein 2|RING finger protein 194|RNA-binding protein MEX3C|ring finger and KH domain containing 2 22 0.003011 9.685 1 1 +51321 AMZ2 archaelysin family metallopeptidase 2 17 protein-coding - archaemetzincin-2|archaemetzincins-2|archeobacterial metalloproteinase-like protein 2 32 0.00438 10.34 1 1 +51322 WAC WW domain containing adaptor with coiled-coil 10 protein-coding BM-016|DESSH|PRO1741|Wwp4 WW domain-containing adapter protein with coiled-coil 69 0.009444 11.35 1 1 +51324 SPG21 spastic paraplegia 21 (autosomal recessive, Mast syndrome) 15 protein-coding ACP33|BM-019|GL010|MAST maspardin|acid cluster protein 33 21 0.002874 10.95 1 1 +51326 ARL17A ADP ribosylation factor like GTPase 17A 17 protein-coding ARF1P2|ARL17P1 ADP-ribosylation factor-like 17-like|ADP-ribosylation factor 7|ADP-ribosylation factor-like protein 17 6.237 0 1 +51327 AHSP alpha hemoglobin stabilizing protein 16 protein-coding EDRF|ERAF alpha-hemoglobin-stabilizing protein|alpha hemoglobin stabilising protein|erythroid differentiation associated factor|erythroid differentiation-related factor 7 0.0009581 0.4604 1 1 +51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 12 protein-coding SFRS20|SR-25|SRp25|SRrp37 ADP-ribosylation factor-like protein 6-interacting protein 4|ADP-ribosylation factor GTPase 6 interacting protein 4|ADP-ribosylation factor-like 6 interacting protein 4|ADP-ribosylation-like factor 6 interacting protein 4|ARL-6-interacting protein 4|HSP-975|HSVI binding protein|SR-15|SRp25 nuclear protein|aip-4|splicing factor SRrp37|splicing factor, arginine/serine-rich 20|splicing regulator SRrp38 17 0.002327 11.25 1 1 +51330 TNFRSF12A TNF receptor superfamily member 12A 16 protein-coding CD266|FN14|TWEAKR tumor necrosis factor receptor superfamily member 12A|FGF-inducible 14|fibroblast growth factor-inducible immediate-early response protein 14|tweak-receptor|type I transmembrane protein Fn14 9 0.001232 9.789 1 1 +51332 SPTBN5 spectrin beta, non-erythrocytic 5 15 protein-coding BSPECV|HUBSPECV|HUSPECV spectrin beta chain, non-erythrocytic 5|beta V spectrin|spectrin beta chain, brain 4|spectrin, non-erythroid beta chain 4 151 0.02067 5.779 1 1 +51333 ZNF771 zinc finger protein 771 16 protein-coding DSC43 zinc finger protein 771|mesenchymal stem cell protein DSC43 3 0.0004106 6.283 1 1 +51334 PRR16 proline rich 16 5 protein-coding DSC54|LARGEN protein Largen|mesenchymal stem cell protein DSC54|proline-rich protein 16 51 0.006981 5.052 1 1 +51335 NGRN neugrin, neurite outgrowth associated 15 protein-coding DSC92 neugrin|mesenchymal stem cell protein DSC92|neurite outgrowth associated protein|spinal cord-derived protein FI58G 10 0.001369 11.53 1 1 +51337 THEM6 thioesterase superfamily member 6 8 protein-coding C8orf55|DSCD75 protein THEM6|UPF0670 protein C8orf55|UPF0670 protein THEM6|mesenchymal stem cell protein DSCD75 3 0.0004106 9.835 1 1 +51338 MS4A4A membrane spanning 4-domains A4A 11 protein-coding 4SPAN1|CD20-L1|CD20L1|HDCME31P|MS4A4|MS4A7 membrane-spanning 4-domains subfamily A member 4A|CD20 antigen-like 1|Fc epsilon receptor beta subunit homolog|four-span transmembrane protein 1|membrane-spanning 4-domains, subfamily A, member 4 26 0.003559 7.244 1 1 +51339 DACT1 dishevelled binding antagonist of beta catenin 1 14 protein-coding DAPPER|DAPPER1|DPR1|FRODO|HDPR1|THYEX3 dapper homolog 1|dapper antagonist of catenin 1|dapper, antagonist of beta-catenin, homolog 1|hepatocellular carcinoma novel gene 3 protein|heptacellular carcinoma novel gene 3 84 0.0115 7.284 1 1 +51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 20 protein-coding CLF|CRN|Clf1|HCRN|MSTP021|SYF3 crooked neck-like protein 1|Crn, crooked neck-like 1|SYF3 pre-mRNA-splicing factor|crooked neck homolog|crooked neck pre-mRNA splicing factor-like 1|crooked neck-like 1 82 0.01122 9.714 1 1 +51341 ZBTB7A zinc finger and BTB domain containing 7A 19 protein-coding FBI-1|FBI1|LRF|TIP21|ZBTB7|ZNF857A|pokemon zinc finger and BTB domain-containing protein 7A|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|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 protein 857A 27 0.003696 9.875 1 1 +51343 FZR1 fizzy/cell division cycle 20 related 1 19 protein-coding CDC20C|CDH1|FZR|FZR2|HCDH|HCDH1 fizzy-related protein homolog|CDC20 homolog 1|CDC20-like 1b|CDC20-like protein 1|cdh1/Hct1 homolog 42 0.005749 10.13 1 1 +51347 TAOK3 TAO kinase 3 12 protein-coding DPK|JIK|MAP3K18 serine/threonine-protein kinase TAO3|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|thousand and one amino acid protein 3 65 0.008897 9.975 1 1 +51348 KLRF1 killer cell lectin like receptor F1 12 protein-coding CLEC5C|NKp80 killer cell lectin-like receptor subfamily F member 1|C-type lectin domain family 5 member C|activating coreceptor NKp80|killer cell lectin-like receptor subfamily F, member 1|lectin-like receptor F1 18 0.002464 2.521 1 1 +51350 KRT76 keratin 76 12 protein-coding HUMCYT2A|KRT2B|KRT2P keratin, type II cytoskeletal 2 oral|CK-2P|K2P|K76|cytokeratin 2|cytokeratin-2P|keratin 2p|keratin 76, type II|type-II keratin Kb9 47 0.006433 0.2627 1 1 +51351 ZNF117 zinc finger protein 117 7 protein-coding H-plk|HPF9 zinc finger protein 117|Krueppel-related zinc finger protein|provirus-linked krueppel|zinc finger protein HPF9 38 0.005201 9.324 1 1 +51352 WT1-AS WT1 antisense RNA 11 ncRNA WIT-1|WIT1|WT1-AS1|WT1AS WT1 antisense RNA (non-protein coding)|Wilms tumor associated protein|Wilms tumor upstream neighbor 1 25 0.003422 1.703 1 1 +51360 MBTPS2 membrane bound transcription factor peptidase, site 2 X protein-coding BRESEK|IFAP|KFSD|KFSDX|OLMSX|S2P membrane-bound transcription factor site-2 protease|SREBPs intramembrane protease|endopeptidase S2P|keratosis follicularis spinulosa decalvans|membrane-bound transcription factor protease, site 2|site-2 protease|sterol regulatory element-binding proteins intramembrane protease 39 0.005338 9.097 1 1 +51361 HOOK1 hook microtubule tethering protein 1 1 protein-coding HK1 protein Hook homolog 1|h-hook1|hHK1|hook homolog 1 50 0.006844 8.584 1 1 +51362 CDC40 cell division cycle 40 6 protein-coding EHB3|PRP17|PRPF17 pre-mRNA-processing factor 17|EH-binding protein 3|PRP17 homolog|cell division cycle 40 homolog|hPRP17|pre-mRNA splicing factor 17 35 0.004791 9.129 1 1 +51363 CHST15 carbohydrate sulfotransferase 15 10 protein-coding BRAG|GALNAC4S-6ST carbohydrate sulfotransferase 15|B cell RAG associated protein (GALNAC4S-6ST)|B-cell RAG-associated gene protein|carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15|hBRAG 58 0.007939 9.548 1 1 +51364 ZMYND10 zinc finger MYND-type containing 10 3 protein-coding BLU|CILD22|FLU zinc finger MYND domain-containing protein 10|protein BLu 24 0.003285 4.874 1 1 +51365 PLA1A phospholipase A1 member A 3 protein-coding PS-PLA1|PSPLA1 phospholipase A1 member A|phosphatidylserine-specific phospholipase A1alpha 45 0.006159 5.999 1 1 +51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 8 protein-coding DD5|EDD|EDD1|HYD E3 ubiquitin-protein ligase UBR5|E3 identified by differential display|E3 ubiquitin-protein ligase, HECT domain-containing 1|hyperplastic discs protein homolog|progestin-induced protein 186 0.02546 11.1 1 1 +51367 POP5 POP5 homolog, ribonuclease P/MRP subunit 12 protein-coding HSPC004|RPP2|RPP20|hPop5 ribonuclease P/MRP protein subunit POP5|processing of precursor 5, ribonuclease P/MRP subunit 6 0.0008212 8.578 1 1 +51368 TEX264 testis expressed 264 3 protein-coding ZSIG11 testis-expressed sequence 264 protein|testis expressed gene 264 21 0.002874 10.27 1 1 +51371 POMP proteasome maturation protein 13 protein-coding C13orf12|HSPC014|PNAS-110|UMP1 proteasome maturation protein|2510048O06Rik|hUMP1|proteassemblin|protein UMP1 homolog|voltage-gated K channel beta subunit 4.1|voltage-gated potassium channel beta subunit 4.1 11 0.001506 10.8 1 1 +51372 TMA7 translation machinery associated 7 homolog 3 protein-coding CCDC72|HSPC016 translation machinery-associated protein 7|coiled-coil domain containing 72|coiled-coil domain-containing protein 72|translational machinery associated 7 homolog 1 0.0001369 10.22 1 1 +51373 MRPS17 mitochondrial ribosomal protein S17 7 protein-coding HSPC011|MRP-S17|RPMS17|S17mt 28S ribosomal protein S17, mitochondrial 9 0.001232 8.205 1 1 +51374 ATRAID all-trans retinoic acid induced differentiation factor 2 protein-coding APR--3|APR-3|APR3|C2orf28|HSPC013|PRO240|p18 all-trans retinoic acid-induced differentiation factor|apoptosis related protein APR-3|apoptosis-related protein 3 15 0.002053 11.09 1 1 +51375 SNX7 sorting nexin 7 1 protein-coding - sorting nexin-7 39 0.005338 8.626 1 1 +51377 UCHL5 ubiquitin C-terminal hydrolase L5 1 protein-coding CGI-70|INO80R|UCH-L5|UCH37 ubiquitin carboxyl-terminal hydrolase isozyme L5|INO80 complex subunit R|ubiquitin C-terminal hydrolase UCH37|ubiquitin carboxyl-terminal esterase L5|ubiquitin carboxyl-terminal hydrolase L5|ubiquitin thioesterase L5 26 0.003559 8.738 1 1 +51378 ANGPT4 angiopoietin 4 20 protein-coding ANG3|ANG4 angiopoietin-4 65 0.008897 1.19 1 1 +51379 CRLF3 cytokine receptor like factor 3 17 protein-coding CREME-9|CREME9|CRLM9|CYTOR4|FRWS|p48.2 cytokine receptor-like factor 3|cytokine receptor-like molecule 9|cytokine receptor-related protein 4|type I cytokine receptor-like factor p48 25 0.003422 8.231 1 1 +51380 CSAD cysteine sulfinic acid decarboxylase 12 protein-coding CSD|PCAP cysteine sulfinic acid decarboxylase|P-selectin cytoplasmic tail-associated protein|cysteine sulfinic acid decarboxylase-related protein|cysteine-sulfinate decarboxylase|sulfinoalanine decarboxylase 46 0.006296 8.064 1 1 +51382 ATP6V1D ATPase H+ transporting V1 subunit D 14 protein-coding ATP6M|VATD|VMA8 V-type proton ATPase subunit D|ATPase, H+ transporting lysosomal, member M|ATPase, H+ transporting, lysosomal (vacuolar proton pump)|ATPase, H+ transporting, lysosomal 34kDa, V1 subunit D|H(+)-transporting two-sector ATPase, subunit M|V-ATPase 28 kDa accessory protein|V-ATPase D subunit|V-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 21 0.002874 10.37 1 1 +51384 WNT16 Wnt family member 16 7 protein-coding - protein Wnt-16|wingless-type MMTV integration site family member 16b|wingless-type MMTV integration site family, member 16 46 0.006296 2.006 1 1 +51385 ZNF589 zinc finger protein 589 3 protein-coding SZF1 zinc finger protein 589|KRAB-zinc finger protein SZF1-1|stem cell zinc finger protein 1 20 0.002737 8.154 1 1 +51386 EIF3L eukaryotic translation initiation factor 3 subunit L 22 protein-coding EIF3EIP|EIF3S11|EIF3S6IP|HSPC021|HSPC025|MSTP005 eukaryotic translation initiation factor 3 subunit L|eIEF associated protein HSPC021|eukaryotic translation initiation factor 3 subunit 6-interacting protein|eukaryotic translation initiation factor 3 subunit E-interacting protein 44 0.006022 12.63 1 1 +51388 NIP7 NIP7, nucleolar pre-rRNA processing protein 16 protein-coding CGI-37|HSPC031|KD93 60S ribosome subunit biogenesis protein NIP7 homolog|nuclear import 7 homolog 12 0.001642 9.139 1 1 +51389 RWDD1 RWD domain containing 1 6 protein-coding CGI-24|PTD013 RWD domain-containing protein 1|DRG family-regulatory protein 2 10 0.001369 9.688 1 1 +51390 AIG1 androgen induced 1 6 protein-coding AIG-1|dJ95L4.1 androgen-induced gene 1 protein 10 0.001369 9.443 1 1 +51393 TRPV2 transient receptor potential cation channel subfamily V member 2 17 protein-coding VRL|VRL-1|VRL1 transient receptor potential cation channel subfamily V member 2|OTRPC2|osm-9-like TRP channel 2|vanilloid receptor-like protein 1 62 0.008486 7.916 1 1 +51397 COMMD10 COMM domain containing 10 5 protein-coding PTD002 COMM domain-containing protein 10 12 0.001642 8.453 1 1 +51398 WDR83OS WD repeat domain 83 opposite strand 19 protein-coding C19orf56|PTD008 protein Asterix|UPF0139 membrane protein C19orf56|WDR83 opposite strand 8 0.001095 10.95 1 1 +51399 TRAPPC4 trafficking protein particle complex 4 11 protein-coding CGI-104|HSPC172|PTD009|SBDN|SYNBINDIN|TRS23 trafficking protein particle complex subunit 4|TRS23 homolog|hematopoietic stem/progenitor cell protein 172 17 0.002327 9.648 1 1 +51400 PPME1 protein phosphatase methylesterase 1 11 protein-coding PME-1 protein phosphatase methylesterase 1|testicular secretory protein Li 39 16 0.00219 10.32 1 1 +51402 0.0006221 0 1 +51406 NOL7 nucleolar protein 7 6 protein-coding C6orf90|PQBP3|RARG-1|dJ223E5.2 nucleolar protein 7|nucleolar protein 7, 27kDa|nucleolar protein of 27 kDa|polyglutamine binding protein 3|retinoic acid repressible protein 14 0.001916 9.631 1 1 +51409 HEMK1 HemK methyltransferase family member 1 3 protein-coding HEMK|MTQ1 hemK methyltransferase family member 1|HEMK homolog 7kb|m.HsaHemKP|testis secretory sperm-binding protein Li 225n 17 0.002327 8.584 1 1 +51411 BIN2 bridging integrator 2 12 protein-coding BRAP-1 bridging integrator 2|breast cancer associated protein BRAP1|breast cancer-associated protein 1 42 0.005749 7.042 1 1 +51412 ACTL6B actin like 6B 7 protein-coding ACTL6|BAF53B|arpNalpha actin-like protein 6B|53 kDa BRG1-associated factor B|BRG1-associated factor 53B|actin-related protein Baf53b|hArpN alpha 42 0.005749 1.177 1 1 +51421 AMOTL2 angiomotin like 2 3 protein-coding LCCP angiomotin-like protein 2|Leman coiled-coil protein 48 0.00657 10.26 1 1 +51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 7 protein-coding AAKG|AAKG2|CMH6|H91620p|WPWS 5'-AMP-activated protein kinase subunit gamma-2|AMPK subunit gamma-2|protein kinase, AMP-activated, gamma 2 non-catalytic subunit 37 0.005064 8.924 1 1 +51426 POLK DNA polymerase kappa 5 protein-coding DINB1|DINP|POLQ DNA polymerase kappa|polymerase (DNA directed) kappa 60 0.008212 8.535 1 1 +51427 ZNF107 zinc finger protein 107 7 protein-coding Y8|ZFD25|ZNF588|smap-7 zinc finger protein 107|C2H2 type zinc-finger protein|zinc finger protein (ZFD25)|zinc finger protein 588 84 0.0115 7.861 1 1 +51428 DDX41 DEAD-box helicase 41 5 protein-coding ABS|MPLPF probable ATP-dependent RNA helicase DDX41|2900024F02Rik|DEAD (Asp-Glu-Ala-Asp) box polypeptide 41|DEAD box protein 41|DEAD box protein abstrakt homolog|DEAD-box protein abstrakt|putative RNA helicase 48 0.00657 10.57 1 1 +51429 SNX9 sorting nexin 9 6 protein-coding SDP1|SH3PX1|SH3PXD3A|WISP sorting nexin-9|SH3 and PX domain-containing protein 1|SH3 and PX domain-containing protein 3A|Wiskott-Aldrich syndrome protein (WASP) interactor protein 30 0.004106 10.49 1 1 +51430 SUCO SUN domain containing ossification factor 1 protein-coding C1orf9|CH1|OPT|SLP1 SUN domain-containing ossification factor|SUN-like protein 1|membrane protein CH1|osteopotentia 92 0.01259 10.24 1 1 +51433 ANAPC5 anaphase promoting complex subunit 5 12 protein-coding APC5 anaphase-promoting complex subunit 5|cyclosome subunit 5 49 0.006707 11.26 1 1 +51434 ANAPC7 anaphase promoting complex subunit 7 12 protein-coding APC7 anaphase-promoting complex subunit 7|cyclosome subunit 7 39 0.005338 10.14 1 1 +51435 SCARA3 scavenger receptor class A member 3 8 protein-coding APC7|CSR|CSR1|MSLR1|MSRL1 scavenger receptor class A member 3|cellular stress response gene protein|cellular stress response protein|macrophage scavenger receptor-like 1 35 0.004791 9.378 1 1 +51438 MAGEC2 MAGE family member C2 X protein-coding CT10|HCA587|MAGEE1 melanoma-associated antigen C2|MAGE-C2 antigen|MAGE-E1 antigen|cancer/testis antigen 10|hepatocellular cancer antigen 587|hepatocellular carcinoma-associated antigen 587|melanoma antigen family C, 2|melanoma antigen family C2|melanoma antigen, family E, 1, cancer/testis specific 77 0.01054 1.184 1 1 +51439 FAM8A1 family with sequence similarity 8 member A1 6 protein-coding AHCP protein FAM8A1|Autosomal Highly Conserved Protein 25 0.003422 9.982 1 1 +51440 HPCAL4 hippocalcin like 4 1 protein-coding HLP4 hippocalcin-like protein 4 18 0.002464 3.599 1 1 +51441 YTHDF2 YTH N6-methyladenosine RNA binding protein 2 1 protein-coding CAHL|HGRG8|NY-REN-2 YTH domain-containing family protein 2|9430020E02Rik|CLL-associated antigen KW-14|YTH N(6)-methyladenosine RNA binding protein 2|YTH domain family, member 2|high-glucose-regulated protein 8|renal carcinoma antigen NY-REN-2 47 0.006433 10.8 1 1 +51442 VGLL1 vestigial like family member 1 X protein-coding TDU|VGL1 transcription cofactor vestigial-like protein 1|TONDU|WUGSC:H_GS188P18.1b|vestigial like 1|vgl-1 30 0.004106 2.976 1 1 +51444 RNF138 ring finger protein 138 18 protein-coding HSD-4|NARF|STRIN|hNARF E3 ubiquitin-protein ligase RNF138|NLK-associated RING finger protein|Nemo-like kinase-associated RING finger protein|nemo-like kinase associated ring finger protein|ring finger protein 138, E3 ubiquitin protein ligase|testicular tissue protein Li 165 24 0.003285 8.911 1 1 +51447 IP6K2 inositol hexakisphosphate kinase 2 3 protein-coding IHPK2|PIUS inositol hexakisphosphate kinase 2|ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|inositol hexaphosphate kinase 2|insp6 kinase 2|pi uptake stimulator 38 0.005201 10.45 1 1 +51449 PCYOX1 prenylcysteine oxidase 1 2 protein-coding PCL1 prenylcysteine oxidase 1|prenylcysteine lyase 26 0.003559 11.16 1 1 +51450 PRRX2 paired related homeobox 2 9 protein-coding PMX2|PRX2 paired mesoderm homeobox protein 2|PRX-2|paired-like homeodomain protein PRX2|paired-related homeobox protein 2|testicular tissue protein Li 148|testicular tissue protein Li 160 10 0.001369 5.497 1 1 +51451 LCMT1 leucine carboxyl methyltransferase 1 16 protein-coding CGI-68|LCMT|PPMT1 leucine carboxyl methyltransferase 1|[Phosphatase 2A protein]-leucine-carboxy methyltransferase 1|[phosphatase 2A protein]-leucine-carboxy methyltransferase|protein phosphatase methyltransferase 1|protein-leucine O-methyltransferase 26 0.003559 9.425 1 1 +51454 GULP1 GULP, engulfment adaptor PTB domain containing 1 2 protein-coding CED-6|CED6|GULP PTB domain-containing engulfment adapter protein 1|PTB domain adapter protein CED-6|PTB domain adaptor protein CED-6|cell death protein 6 homolog|engulfment adapter protein 33 0.004517 7.184 1 1 +51455 REV1 REV1, DNA directed polymerase 2 protein-coding AIBP80|REV1L DNA repair protein REV1|REV1 homolog|REV1, polymerase (DNA directed)|REV1- like|alpha integrin-binding protein 80|rev1-like terminal deoxycytidyl transferase 72 0.009855 9.369 1 1 +51458 RHCG Rh family C glycoprotein 15 protein-coding C15orf6|PDRC2|RHGK|SLC42A3 ammonium transporter Rh type C|Rh type C glycoprotein|Rhesus blood group, C glycoprotein|rh family type C glycoprotein|rh glycoprotein kidney|rhesus blood group family type C glycoprotein|tumor-related protein DRC2 42 0.005749 4.042 1 1 +51460 SFMBT1 Scm-like with four mbt domains 1 3 protein-coding RU1|SFMBT|hSFMBT scm-like with four MBT domains protein 1|Scm-related gene containing four mbt domains|Scm-related gene product containing four mbt domains|renal ubiquitous protein 1 45 0.006159 7.948 1 1 +51463 GPR89B G protein-coupled receptor 89B 1 protein-coding GPHR|GPR89|GPR89C|SH120|UNQ192 Golgi pH regulator B|G protein-coupled receptor 89C|Golgi pH regulator A|protein GPR89|putative Golgi pH regulator C|putative MAPK-activating protein PM01|putative NF-kappa-B-activating protein 90|putative protein GPR89C 7 0.0009581 4.227 1 1 +51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 6 protein-coding CGI-76|HSPC153|HSPC205|HSU93243|NCUBE-1|NCUBE1|UBC6|UBC6E|Ubc6p ubiquitin-conjugating enzyme E2 J1|E2 ubiquitin-conjugating enzyme J1|HSUBC6e|non-canonical ubiquitin-conjugating enzyme 1|ubiquitin-conjugating enzyme E2, J1 (UBC6 homolog, yeast)|ubiquitin-conjugating enzyme E2, J1, U|yeast ubiquitin-conjugating enzyme UBC6 homolog E 22 0.003011 10.71 1 1 +51466 EVL Enah/Vasp-like 14 protein-coding RNB6 ena/VASP-like protein|ena/vasodilator-stimulated phosphoprotein-like 34 0.004654 10.4 1 1 +51471 NAT8B N-acetyltransferase 8B (putative, gene/pseudogene) 2 protein-coding CML2|Hcml2|NAT8BP putative N-acetyltransferase 8B|ATase1|N-acetyltransferase 8B (GCN5-related, putative, gene/pseudogene)|N-acetyltransferase Camello 2|acetyltransferase 1|camello-like protein 2|probable N-acetyltransferase 8B 2 0.0002737 1.89 1 1 +51473 DCDC2 doublecortin domain containing 2 6 protein-coding DCDC2A|DFNB66|NPHP19|RU2|RU2S doublecortin domain-containing protein 2 41 0.005612 5.397 1 1 +51474 LIMA1 LIM domain and actin binding 1 12 protein-coding EPLIN|SREBP3 LIM domain and actin-binding protein 1|1110021C24Rik|epithelial protein lost in neoplasm beta|sterol regulatory element binding protein 3 53 0.007254 11.09 1 1 +51475 CABP2 calcium binding protein 2 11 protein-coding DFNB93 calcium-binding protein 2 18 0.002464 0.02459 1 1 +51477 ISYNA1 inositol-3-phosphate synthase 1 19 protein-coding INO1|INOS|IPS|IPS 1|IPS-1 inositol-3-phosphate synthase 1|MI-1-P synthase|MIP synthase|myo-inositol 1-phosphate synthase A1|testis secretory sperm-binding protein Li 200a 27 0.003696 9.623 1 1 +51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 1 protein-coding PRAP|SDR37C1 3-keto-steroid reductase|17 beta-hydroxysteroid dehydrogenase type VII|17-beta-HSD 7|17-beta-hydroxysteroid dehydrogenase 7|17beta hydroxysteroid dehydrogenase|estradiol 17-beta-dehydrogenase 7|short chain dehydrogenase/reductase family 37C member 1 22 0.003011 7.99 1 1 +51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 17 protein-coding ANKHZN|BTBD23|ZFYVE14 rabankyrin-5|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|rank-5 63 0.008623 10.67 1 1 +51480 VCX2 variable charge, X-linked 2 X protein-coding VCX-2r|VCX2R|VCXB variable charge X-linked protein 2|variable charge protein on X with two repeats|variably charged protein X-B|variably charged, X chromosome 2|variably charged, X chromosome B|variably charged, X chromosome, with 2 repeats 5 0.0006844 0.1214 1 1 +51481 VCX3A variable charge, X-linked 3A X protein-coding VCX-8r|VCX-A|VCX3|VCX8R|VCXA variable charge X-linked protein 3|variable charge protein on X with eight repeats|variably charged X-A|variably charged protein X-A 5 0.0006844 1.486 1 1 +51490 SPOUT1 SPOUT domain containing methyltransferase 1 9 protein-coding C9orf114|CENP-32|HSPC109 putative methyltransferase C9orf114|centromere protein 32 28 0.003832 9.137 1 1 +51491 NOP16 NOP16 nucleolar protein 5 protein-coding HSPC111|HSPC185 nucleolar protein 16|HBV pre-S2 trans-regulated protein 3|NOP16 nucleolar protein homolog|hypothetical protein HSPC111|nucleolar protein 16 homolog 13 0.001779 8.161 1 1 +51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase 22 protein-coding C22orf28|DJ149A16.6|FAAP|HSPC117 tRNA-splicing ligase RtcB homolog|ankyrin repeat domain 54|focal adhesion-associated protein 36 0.004927 10.81 1 1 +51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 15 protein-coding B-IND1|BIND1|HSPC121|PTPLAD1 very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 3|butyrate-induced protein 1|butyrate-induced transcript 1|protein tyrosine phosphatase-like A domain containing 1|protein tyrosine phosphatase-like protein PTPLAD1|protein-tyrosine phosphatase-like A domain-containing protein 1|very-long-chain (3R)-3-hydroxyacyl-[acyl-carrier protein] dehydratase 3 17 0.002327 11.51 1 1 +51496 CTDSPL2 CTD small phosphatase like 2 15 protein-coding HSPC058|HSPC129 CTD small phosphatase-like protein 2|CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2|CTDSP-like 2 35 0.004791 9.124 1 1 +51497 NELFCD negative elongation factor complex member C/D 20 protein-coding HSPC130|NELF-C|NELF-D|TH1|TH1L negative elongation factor C/D|NELF-C/D|TH1 drosophila homolog|TH1-like protein|negative elongation factor proteins C and D|trihydrophobin 1 38 0.005201 10.84 1 1 +51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 12 protein-coding HSPC132|MDM35|P53CSV|WF-1 TP53-regulated inhibitor of apoptosis 1|mitochondrial distribution and morphology 35 homolog|p53-inducible cell-survival factor|protein 15E1.1 7 0.0009581 9.03 1 1 +51501 HIKESHI Hikeshi, heat shock protein nuclear import factor 11 protein-coding C11orf73|HLD13|HSPC138|HSPC179|L7RN6|OPI10 protein Hikeshi|lethal, Chr 7, Rinchik 6 9 0.001232 8.872 1 1 +51503 CWC15 CWC15 spliceosome associated protein homolog 11 protein-coding AD002|C11orf5|Cwf15|HSPC148|ORF5 spliceosome-associated protein CWC15 homolog|CWC15 spliceosome-associated protein 10 0.001369 9.695 1 1 +51504 TRMT112 tRNA methyltransferase 11-2 homolog (S. cerevisiae) 11 protein-coding HSPC152|HSPC170|TRM112|TRMT11-2|hTrm112 multifunctional methyltransferase subunit TRM112-like protein|TRM112-like protein|tRNA methyltransferase 112 homolog 11 0.001506 11.15 1 1 +51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 1 protein-coding HSPC155 ubiquitin-fold modifier-conjugating enzyme 1|Ufm1-conjugating enzyme 1 13 0.001779 11.06 1 1 +51507 RTFDC1 replication termination factor 2 domain containing 1 20 protein-coding C20orf43|CDAO5|HSPC164|SHUJUN-3 protein RTF2 homolog|UPF0549 protein C20orf43|replication termination factor 2 domain-containing protein 1 18 0.002464 11.14 1 1 +51510 CHMP5 charged multivesicular body protein 5 9 protein-coding C9orf83|CGI-34|HSPC177|PNAS-2|SNF7DC2|Vps60 charged multivesicular body protein 5|SNF7 domain containing 2|SNF7 domain-containing protein 2|apoptosis-related protein PNAS-2|chromatin-modifying protein 5|hVps60|vacuolar protein sorting-associated protein 60 12 0.001642 10.64 1 1 +51512 GTSE1 G2 and S-phase expressed 1 22 protein-coding B99 G2 and S phase-expressed protein 1|G-2 and S-phase expressed 1|protein B99 homolog 60 0.008212 7.242 1 1 +51513 ETV7 ETS variant 7 6 protein-coding TEL-2|TEL2|TELB transcription factor ETV7|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 25 0.003422 6.419 1 1 +51514 DTL denticleless E3 ubiquitin protein ligase homolog 1 protein-coding CDT2|DCAF2|L2DTL|RAMP denticleless protein homolog|DDB1- and CUL4-associated factor 2|RA-regulated nuclear matrix-associated protein|lethal(2) denticleless protein homolog|retinoic acid-regulated nuclear matrix-associated protein 37 0.005064 7.955 1 1 +51517 NCKIPSD NCK interacting protein with SH3 domain 3 protein-coding AF3P21|DIP|DIP1|ORF1|SPIN90|VIP54|WASLBP|WISH NCK-interacting protein with SH3 domain|54 kDa VacA-interacting protein|54 kDa vimentin-interacting protein|90 kDa SH3 protein interacting with Nck|SH3 adapter protein SPIN90|SH3 protein interacting with Nck, 90 kDa|WASP-interacting SH3-domain protein|dia interacting protein|dia-interacting protein 1|diaphanous protein interacting protein|wiskott-Aldrich syndrome protein-interacting protein 38 0.005201 9.32 1 1 +51520 LARS leucyl-tRNA synthetase 5 protein-coding HSPC192|ILFS1|LARS1|LEURS|LEUS|LFIS|LRS|PIG44|RNTLS|hr025Cl leucine--tRNA ligase, cytoplasmic|cytoplasmic leucyl-tRNA synthetase|cytosolic leucyl-tRNA synthetase|leucine tRNA ligase 1, cytoplasmic|leucine translase|proliferation-inducing gene 44 64 0.00876 11.18 1 1 +51522 TMEM14C transmembrane protein 14C 6 protein-coding C6orf53|HSPC194|MSTP073|NET26|bA421M1.6 transmembrane protein 14C 6 0.0008212 10.86 1 1 +51523 CXXC5 CXXC finger protein 5 5 protein-coding CF5|HSPC195|RINF|WID CXXC-type zinc finger protein 5|CXXC finger 5 protein|WT1-induced Inhibitor of Dishevelled|putative MAPK-activating protein PM08|putative NF-kappa-B-activating protein 102|retinoid-inducible nuclear factor 19 0.002601 9.33 1 1 +51524 TMEM138 transmembrane protein 138 11 protein-coding HSPC196 transmembrane protein 138 15 0.002053 9.014 1 1 +51526 OSER1 oxidative stress responsive serine rich 1 20 protein-coding C20orf111|HSPC207|Osr1|Perit1|dJ1183I21.1 oxidative stress-responsive serine-rich protein 1|oxidative stress-responsive 1|oxidative stress-responsive protein 1|peroxide-inducible transcript 1 protein 17 0.002327 9.588 1 1 +51527 GSKIP GSK3B interacting protein 14 protein-coding C14orf129|HSPC210 GSK3-beta interaction protein 6 0.0008212 9.027 1 1 +51528 JKAMP JNK1/MAPK8-associated membrane protein 14 protein-coding C14orf100|CDA06|HSPC213|HSPC327|JAMP JNK1/MAPK8-associated membrane protein|JNK-associated membrane protein|Jun N-terminal kinase 1-associated membrane protein|medulloblastoma antigen MU-MB-50.4 21 0.002874 9.672 1 1 +51529 ANAPC11 anaphase promoting complex subunit 11 17 protein-coding APC11|Apc11p|HSPC214 anaphase-promoting complex subunit 11|APC11 anaphase promoting complex subunit 11 homolog|anaphase promoting complex subunit 11 (yeast APC11 homolog)|cyclosome subunit 11|hepatocellular carcinoma-associated RING finger protein 8 0.001095 10.49 1 1 +51530 ZC3HC1 zinc finger C3HC-type containing 1 7 protein-coding HSPC216|NIPA nuclear-interacting partner of ALK|hematopoietic stem/progenitor cell protein 216|nuclear interacting partner of anaplastic lymphoma kinase (ALK) 34 0.004654 8.631 1 1 +51531 TRMO tRNA methyltransferase O 9 protein-coding C9orf156|HSPC219|NAP1 tRNA (adenine(37)-N6)-methyltransferase|Nef (lentivirus myristoylated factor) associated protein 1|Nef associated protein 1|nef-associated protein 1|thioesterase NAP1 29 0.003969 7.872 1 1 +51533 PHF7 PHD finger protein 7 3 protein-coding HSPC045|HSPC226|NYD-SP6 PHD finger protein 7|testicular secretory protein Li 34|testis development protein NYD-SP6 22 0.003011 5.735 1 1 +51534 VTA1 vesicle trafficking 1 6 protein-coding C6orf55|DRG-1|DRG1|HSPC228|LIP5|My012|SBP1 vacuolar protein sorting-associated protein VTA1 homolog|LYST-interacting protein 5|SKD1-binding protein 1|Vps20-associated 1 homolog|dopamine-responsive gene 1 protein|homolog of mouse SKD1-binding protein 1|vesicle (multivesicular body) trafficking 1 32 0.00438 9.909 1 1 +51535 PPHLN1 periphilin 1 12 protein-coding CR|HSPC206|HSPC232 periphilin-1|CDC7 expression repressor|gastric cancer antigen Ga50 43 0.005886 9.829 1 1 +51537 MTFP1 mitochondrial fission process 1 22 protein-coding HSPC242|MTP18 mitochondrial fission process protein 1|mitochondrial 18 kDa protein|mitochondrial fission protein MTP18|mitochondrial protein 18 kDa 10 0.001369 8.504 1 1 +51538 ZCCHC17 zinc finger CCHC-type containing 17 1 protein-coding HSPC251|PS1D|pNO40 nucleolar protein of 40 kDa|nucleolar protein 40|pnn-interacting nucleolar protein|putative S1 RNA binding domain protein|zinc finger CCHC domain-containing protein 17|zinc finger, CCHC domain containing 17 13 0.001779 9.517 1 1 +51540 SCLY selenocysteine lyase 2 protein-coding SCL|hSCL selenocysteine lyase 32 0.00438 8.161 1 1 +51542 VPS54 VPS54, GARP complex subunit 2 protein-coding HCC8|PPP1R164|SLP-8p|VPS54L|WR|hVps54L vacuolar protein sorting-associated protein 54|hepatocellular carcinoma protein 8|protein phosphatase 1, regulatory subunit 164|tumor antigen HOM-HCC-8|tumor antigen SLP-8p|vacuolar protein sorting 54 homolog 41 0.005612 9.334 1 1 +51545 ZNF581 zinc finger protein 581 19 protein-coding HSPC189 zinc finger protein 581 21 0.002874 8.678 1 1 +51547 SIRT7 sirtuin 7 17 protein-coding SIR2L7 NAD-dependent protein deacetylase sirtuin-7|NAD-dependent 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 26 0.003559 8.618 1 1 +51548 SIRT6 sirtuin 6 19 protein-coding SIR2L6 NAD-dependent protein deacetylase sirtuin-6|SIR2-like protein 6|regulatory protein SIR2 homolog 6|sir2-related protein type 6|sirtuin type 6 21 0.002874 8.543 1 1 +51550 CINP cyclin dependent kinase 2 interacting protein 14 protein-coding - cyclin-dependent kinase 2-interacting protein|CDK2-interacting protein 13 0.001779 8.855 1 1 +51552 RAB14 RAB14, member RAS oncogene family 9 protein-coding FBP|RAB-14 ras-related protein Rab-14|F protein-binding protein 1|bA165P4.3 (member RAS oncogene family)|small GTP binding protein RAB14 16 0.00219 11.39 1 1 +51554 ACKR4 atypical chemokine receptor 4 3 protein-coding CC-CKR-11|CCBP2|CCR-11|CCR10|CCR11|CCRL1|CCX CKR|CCX-CKR|CKR-11|PPR1|VSHK1 atypical chemokine receptor 4|C-C CKR-11|C-C chemokine receptor type 11|CC chemokine receptor-like 1|chemocentryx chemokine receptor|chemokine (C-C motif) receptor-like 1|chemokine, cc motif, receptor-like protein 1|orphan seven-transmembrane receptor, chemokine related 13 0.001779 4.79 1 1 +51555 PEX5L peroxisomal biogenesis factor 5 like 3 protein-coding PEX5R|PEX5RP|PXR2|PXR2B|TRIP8b PEX5-related protein|HCN channel auxiliary subunit|PEX2-related protein|PEX5-like protein|Pex5p-related protein|peroxin-5-related protein|peroxisome biogenesis factor 5-like|tetratricopeptide repeat-containing Rab8b-interacting protein 86 0.01177 2.118 1 1 +51557 LGSN lengsin, lens protein with glutamine synthetase domain 6 protein-coding GLULD1|LGS lengsin|glutamate-ammonia ligase (glutamine synthase) domain containing 1|glutamate-ammonia ligase domain-containing protein 1 69 0.009444 1.746 1 1 +51559 NT5DC3 5'-nucleotidase domain containing 3 12 protein-coding TU12B1-TY|TU12B1TY 5'-nucleotidase domain-containing protein 3 45 0.006159 8.385 1 1 +51560 RAB6B RAB6B, member RAS oncogene family 3 protein-coding - ras-related protein Rab-6B|small GTP-binding protein|small GTPase RAB6B 20 0.002737 8.083 1 1 +51561 IL23A interleukin 23 subunit alpha 12 protein-coding IL-23|IL-23A|IL23P19|P19|SGRF interleukin-23 subunit alpha|IL-23 subunit alpha|IL-23-A|IL-23p19|JKA3 induced upon T-cell activation|interleukin 23 p19 subunit|interleukin 23, alpha subunit p19|interleukin-23 subunit p19|interleukin-six, G-CSF related factor 12 0.001642 4.065 1 1 +51562 MBIP MAP3K12 binding inhibitory protein 1 14 protein-coding - MAP3K12-binding inhibitory protein 1|MAPK upstream kinase-binding inhibitory protein|MUK-binding inhibitory protein 28 0.003832 8.67 1 1 +51564 HDAC7 histone deacetylase 7 12 protein-coding HD7|HD7A|HDAC7A histone deacetylase 7|histone deacetylase 7A 42 0.005749 10.7 1 1 +51566 ARMCX3 armadillo repeat containing, X-linked 3 X protein-coding ALEX3|GASP6|dJ545K15.2 armadillo repeat-containing X-linked protein 3|1200004E24Rik|ARM protein lost in epithelial cancers on chromosome X 3|arm protein lost in epithelial cancers, X chromosome, 3 24 0.003285 10.38 1 1 +51567 TDP2 tyrosyl-DNA phosphodiesterase 2 6 protein-coding AD022|EAP2|EAPII|TTRAP|dJ30M3.3|hTDP2 tyrosyl-DNA phosphodiesterase 2|5'-Tyr-DNA phosphodiesterase|5'-tyrosyl-DNA phosphodiesterase|ETS1-associated protein 2|ETS1-associated protein II|TRAF and TNF receptor-associated protein|VPg unlinkase|tyr-DNA phosphodiesterase 2|tyrosyl-RNA phosphodiesterase 32 0.00438 9.859 1 1 +51569 UFM1 ubiquitin fold modifier 1 13 protein-coding BM-002|C13orf20 ubiquitin-fold modifier 1 4 0.0005475 10.54 1 1 +51571 FAM49B family with sequence similarity 49 member B 8 protein-coding BM-009|L1 protein FAM49B 27 0.003696 10.19 1 1 +51573 GDE1 glycerophosphodiester phosphodiesterase 1 16 protein-coding 363E6.2|MIR16 glycerophosphodiester phosphodiesterase 1|RGS16-interacting membrane protein|membrane interacting protein of RGS16 20 0.002737 10.9 1 1 +51574 LARP7 La ribonucleoprotein domain family member 7 4 protein-coding ALAZS|HDCMA18P|PIP7S la-related protein 7|P-TEFb-interaction protein for 7SK stability 43 0.005886 9.738 1 1 +51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog 20 protein-coding ABTAP|C20orf6|HDCMC28P|bA526K24.1 ESF1 homolog|ABT1-associated protein 70 0.009581 8.741 1 1 +51582 AZIN1 antizyme inhibitor 1 8 protein-coding AZI|AZIA1|OAZI|OAZIN|ODC1L antizyme inhibitor 1|ornithine decarboxylase antizyme inhibitor 28 0.003832 11.82 1 1 +51585 PCF11 PCF11 cleavage and polyadenylation factor subunit 11 protein-coding - pre-mRNA cleavage complex 2 protein Pcf11|PCF11, cleavage and polyadenylation factor II subunit, homolog|PCF11, cleavage and polyadenylation factor subunit, homolog|PCF11p homolog|pre-mRNA cleavage complex II protein Pcf11 104 0.01423 9.954 1 1 +51586 MED15 mediator complex subunit 15 22 protein-coding ARC105|CAG7A|CTG7A|PCQAP|TIG-1|TIG1|TNRC7 mediator of RNA polymerase II transcription subunit 15|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|positive cofactor 2, glutamine/Q-rich-associated protein|trinucleotide repeat containing 7|trinucleotide repeat-containing gene 7 protein 71 0.009718 11.03 1 1 +51588 PIAS4 protein inhibitor of activated STAT 4 19 protein-coding PIAS-gamma|PIASY|Piasg|ZMIZ6 E3 SUMO-protein ligase PIAS4|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 26 0.003559 8.274 1 1 +51592 TRIM33 tripartite motif containing 33 1 protein-coding ECTO|PTC7|RFG7|TF1G|TIF1G|TIF1GAMMA|TIFGAMMA E3 ubiquitin-protein ligase TRIM33|RET-fused gene 7 protein|TIF1-gamma|ectodermin homolog|protein Rfg7|transcriptional intermediary factor 1 gamma 58 0.007939 9.973 1 1 +51593 SRRT serrate, RNA effector molecule 7 protein-coding ARS2|ASR2|serrate serrate RNA effector molecule homolog|arsenate resistance protein 2|arsenate resistance protein ARS2|arsenite resistance protein|arsenite-resistance protein 2 92 0.01259 10.96 1 1 +51594 NBAS neuroblastoma amplified sequence 2 protein-coding ILFS2|NAG|SOPH neuroblastoma-amplified sequence|NAG/BC035112 fusion|NAG/FAM49A fusion|neuroblastoma-amplified gene protein 176 0.02409 10.1 1 1 +51596 CUTA cutA divalent cation tolerance homolog 6 protein-coding ACHAP|C6orf82 protein CutA|acetylcholinesterase-associated protein|brain acetylcholinesterase putative membrane anchor|divalent cation tolerant protein CUTA 15 0.002053 11.31 1 1 +51599 LSR lipolysis stimulated lipoprotein receptor 19 protein-coding ILDR3|LISCH7 lipolysis-stimulated lipoprotein receptor|LISCH protein|immunoglobulin-like domain containing receptor 3|lipolysis-stimulated remnant|liver-specific bHLH-Zip transcription factor 44 0.006022 10.98 1 1 +51601 LIPT1 lipoyltransferase 1 2 protein-coding LIPT1D lipoyltransferase 1, mitochondrial|lipoate biosynthesis protein|lipoyl ligase 20 0.002737 6.776 1 1 +51602 NOP58 NOP58 ribonucleoprotein 2 protein-coding HSPC120|NOP5|NOP5/NOP58 nucleolar protein 58|NOP58 ribonucleoprotein homolog|nucleolar protein 5|nucleolar protein NOP5/NOP58 35 0.004791 10.37 1 1 +51603 METTL13 methyltransferase like 13 1 protein-coding 5630401D24Rik|CGI-01|KIAA0859|feat methyltransferase-like protein 13|antiapoptotic protein FEAT 48 0.00657 9.846 1 1 +51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T 20 protein-coding CGI-06|MCAHS3|NDAP|PNH2 GPI transamidase component PIG-T|GPI transamidase subunit|neurotrophin-regulated neuronal development-associated protein|phosphatidylinositol-glycan biosynthesis class T protein 39 0.005338 11.77 1 1 +51605 TRMT6 tRNA methyltransferase 6 20 protein-coding CGI-09|GCD10|Gcd10p tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6|tRNA methyltransferase 6 homolog|tRNA(m1A58)MTase subunit TRM6 31 0.004243 8.753 1 1 +51606 ATP6V1H ATPase H+ transporting V1 subunit H 8 protein-coding CGI-11|MSTP042|NBP1|SFD|SFDalpha|SFDbeta|VMA13 V-type proton ATPase subunit H|ATPase, H+ transporting, lysosomal 50/57kDa, V1 subunit H|V-ATPase 50/57 kDa subunits|V-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 36 0.004927 10.27 1 1 +51608 GET4 golgi to ER traffic protein 4 7 protein-coding C7orf20|CEE|CGI-20|TRC35 Golgi to ER traffic protein 4 homolog|H_NH1244M04.5|conserved edge expressed protein|conserved edge protein|transmembrane domain recognition complex 35 kDa subunit|transmembrane domain recognition complex, 35kDa 26 0.003559 9.964 1 1 +51611 DPH5 diphthamide biosynthesis 5 1 protein-coding AD-018|CGI-30|HSPC143|NPD015 diphthine methyl ester synthase|DPH5 homolog|diphthamide biosynthesis methyltransferase|diphthine synthase|protein x 0011 11 0.001506 8.66 1 1 +51614 ERGIC3 ERGIC and golgi 3 20 protein-coding C20orf47|CGI-54|Erv46|NY-BR-84|PRO0989|SDBCAG84|dJ477O4.2 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 25 0.003422 12.22 1 1 +51616 TAF9B TATA-box binding protein associated factor 9b X protein-coding DN-7|DN7|TAF9L|TAFII31L|TFIID-31 transcription initiation factor TFIID subunit 9B|TAF9-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa|TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa|TBP-associated factor 9L|neuronal cell death-related protein 7|transcription initiation factor IID, 31kD subunit|transcription-associated factor TAFII31L 16 0.00219 9.286 1 1 +51617 HMP19 HMP19 protein 5 protein-coding - neuron-specific protein family member 2|NSG2|hypothalamus golgi apparatus expressed 19 kDa protein|p19 protein|protein p19 10 0.001369 2.612 1 1 +51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) 7 protein-coding HBUCE1 ubiquitin-conjugating enzyme E2 D4|E2 ubiquitin-conjugating enzyme D4|ubiquitin carrier protein D4|ubiquitin conjugating enzyme E2D 4 (putative)|ubiquitin-conjugating enzyme HBUCE1|ubiquitin-protein ligase D4 5 0.0006844 8.102 1 1 +51621 KLF13 Kruppel like factor 13 15 protein-coding BTEB3|FKLF2|NSLP1|RFLAT-1|RFLAT1 Krueppel-like factor 13|BTE-binding protein 3|RANTES factor of late activated T lymphocytes-1|basic transcription element binding protein 3|novel Sp1-like zinc finger transcription factor 1|transcription factor BTEB3|transcription factor NSLP1 10 0.001369 10.93 1 1 +51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated 7 protein-coding C7orf28A|CCZ1A|CGI-43|H_DJ1163J12.2 vacuolar fusion protein CCZ1 homolog|CCZ1 vacuolar protein trafficking and biogenesis associated homolog|H_NH0577018.2 14 0.001916 9.914 1 1 +51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 2 protein-coding CGI-60|D2LIC|LIC3|SRTD15 cytoplasmic dynein 2 light intermediate chain 1 29 0.003969 8.353 1 1 +51629 SLC25A39 solute carrier family 25 member 39 17 protein-coding CGI-69|CGI69 solute carrier family 25 member 39 30 0.004106 11.64 1 1 +51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor 7 protein-coding CGI-59|CGI-74|LUC7B2 putative RNA-binding protein Luc7-like 2|LUC7-like 2 25 0.003422 10.9 1 1 +51633 OTUD6B OTU domain containing 6B 8 protein-coding CGI-77|DUBA-5|DUBA5 OTU domain-containing protein 6B 27 0.003696 8.127 1 1 +51634 RBMX2 RNA binding motif protein, X-linked 2 X protein-coding CGI-79|Snu17 RNA-binding motif protein, X-linked 2 24 0.003285 8.781 1 1 +51635 DHRS7 dehydrogenase/reductase 7 14 protein-coding CGI-86|SDR34C1|retDSR4|retSDR4 dehydrogenase/reductase SDR family member 7|dehydrogenase/reductase (SDR family) member 7|retinal short-chain dehydrogenase/reductase 4|short chain dehydrogenase/reductase family 34C member 1 26 0.003559 10.56 1 1 +51637 C14orf166 chromosome 14 open reading frame 166 14 protein-coding CGI-99|CGI99|CLE|CLE7|LCRP369|RLLM1|hCLE1 UPF0568 protein C14orf166|CLE7 homolog|RLL motif containing 1 14 0.001916 11.09 1 1 +51639 SF3B6 splicing factor 3b subunit 6 2 protein-coding CGI-110|HSPC175|Ht006|P14|SAP14|SAP14a|SF3B14|SF3B14a splicing factor 3B subunit 6|SF3b 14 kDa subunit|pre-mRNA branch site protein p14|spliceosome-associated protein, 14 kDa subunit|spliceosome-associated protein, 14-kDa|splicing factor 3B, 14 kDa subunit|splicing factor 3b, subunit 6, 14kDa 7 0.0009581 10.35 1 1 +51642 MRPL48 mitochondrial ribosomal protein L48 11 protein-coding CGI-118|HSPC290|L48MT|MRP-L48 39S ribosomal protein L48, mitochondrial 8 0.001095 8.791 1 1 +51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 12 protein-coding CGI-119|GAAP|LFG4|S1R|ZPRO protein lifeguard 4|Golgi anti-apoptotic protein|Z-protein|transmembrane BAX inhibitor motif-containing protein 4 29 0.003969 10.29 1 1 +51645 PPIL1 peptidylprolyl isomerase like 1 6 protein-coding CGI-124|CYPL1|PPIase|hCyPX peptidyl-prolyl cis-trans isomerase-like 1|cyclophilin like 1|cyclophilin-related gene 1|peptidyl-prolyl cis-trans isomerase|peptidylprolyl isomerase (cyclophilin)-like 1|rotamase PPIL1 14 0.001916 9.501 1 1 +51646 YPEL5 yippee like 5 2 protein-coding CGI-127 protein yippee-like 5 15 0.002053 10.94 1 1 +51647 FAM96B family with sequence similarity 96 member B 16 protein-coding CGI-128|CIA2B|MIP18 mitotic spindle-associated MMXD complex subunit MIP18|MSS19-interacting protein of 18 kDa 5 0.0006844 9.869 1 1 +51649 MRPS23 mitochondrial ribosomal protein S23 17 protein-coding CGI-138|HSPC329|MRP-S23 28S ribosomal protein S23, mitochondrial|S23mt 12 0.001642 9.71 1 1 +51650 MRPS33 mitochondrial ribosomal protein S33 7 protein-coding CGI-139|MRP-S33|PTD003|S33mt 28S ribosomal protein S33, mitochondrial 9 0.001232 9.387 1 1 +51651 PTRH2 peptidyl-tRNA hydrolase 2 17 protein-coding BIT1|CFAP37|CGI-147|IMNEPD|PTH|PTH 2|PTH2 peptidyl-tRNA hydrolase 2, mitochondrial|bcl-2 inhibitor of transcription 1|cilia and flagella associated protein 37 8 0.001095 8.716 1 1 +51652 CHMP3 charged multivesicular body protein 3 2 protein-coding CGI-149|NEDF|VPS24 charged multivesicular body protein 3|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 10 0.001369 11.29 1 1 +51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 20 protein-coding C20orf34|C42|CGI-05|HSPC167 CDK5 regulatory subunit-associated protein 1|CDK5 activator-binding protein C42 38 0.005201 9.054 1 1 +51655 RASD1 ras related dexamethasone induced 1 17 protein-coding AGS1|DEXRAS1|MGC:26290 dexamethasone-induced Ras-related protein 1|RAS, dexamethasone-induced 1|activator of G-protein signaling 1|ras-related protein 11 0.001506 8.408 1 1 +51657 STYXL1 serine/threonine/tyrosine interacting like 1 7 protein-coding DUSP24|MK-STYX|MKSTYX serine/threonine/tyrosine-interacting-like protein 1|dual specificity phosphatase 24 (putative)|dual specificity phosphatase inhibitor MK-STYX|dual specificity protein phosphatase 24|map kinase phosphatase-like protein MK-STYX 35 0.004791 9.271 1 1 +51659 GINS2 GINS complex subunit 2 16 protein-coding HSPC037|PSF2|Pfs2 DNA replication complex GINS protein PSF2|GINS complex subunit 2 (Psf2 homolog) 12 0.001642 7.857 1 1 +51660 MPC1 mitochondrial pyruvate carrier 1 6 protein-coding BRP44L|CGI-129|MPYCD|dJ68L15.3 mitochondrial pyruvate carrier 1|HSPC040 protein|brain protein 44-like protein 9 0.001232 9.136 1 1 +51661 FKBP7 FK506 binding protein 7 2 protein-coding FKBP23|PPIase peptidyl-prolyl cis-trans isomerase FKBP7|23 kDa FK506-binding protein|23 kDa FKBP|FK506-binding protein 23|FKBP-23|FKBP-7|PPIase FKBP7|rotamase 15 0.002053 7.58 1 1 +51663 ZFR zinc finger RNA binding protein 5 protein-coding SPG71|ZFR1 zinc finger RNA-binding protein|M-phase phosphoprotein homolog 71 0.009718 10.98 1 1 +51665 ASB1 ankyrin repeat and SOCS box containing 1 2 protein-coding ASB-1 ankyrin repeat and SOCS box protein 1 18 0.002464 8.774 1 1 +51666 ASB4 ankyrin repeat and SOCS box containing 4 7 protein-coding ASB-4 ankyrin repeat and SOCS box protein 4 43 0.005886 1.204 1 1 +51667 NUB1 negative regulator of ubiquitin like proteins 1 7 protein-coding BS4|NUB1L|NYREN18 NEDD8 ultimate buster 1|NEDD8 ultimate buster-1|renal carcinoma antigen NY-REN-18 28 0.003832 10.72 1 1 +51668 HSPB11 heat shock protein family B (small) member 11 1 protein-coding C1orf41|HSPCO34|IFT25|PP25 intraflagellar transport protein 25 homolog|heat shock protein beta-11|heat shock protein family B (small), member 11|intraflagellar transport 25 homolog|placental protein 25 15 0.002053 8.519 1 1 +51669 SARAF store-operated calcium entry associated regulatory factor 8 protein-coding FOAP-7|HSPC035|TMEM66|XTP3 store-operated calcium entry-associated regulatory factor|HBV X-transactivated gene 3 protein|HBV XAg-transactivated protein 3|SARAF long isoform|SARAF short isoform|SOCE-associated regulatory factor|testicular secretory protein Li 59|transmembrane protein 66 23 0.003148 12.42 1 1 +51673 TPPP3 tubulin polymerization promoting protein family member 3 16 protein-coding CGI-38|TPPP/p20|p20|p25gamma tubulin polymerization-promoting protein family member 3|brain specific protein 15 0.002053 8.229 1 1 +51676 ASB2 ankyrin repeat and SOCS box containing 2 14 protein-coding ASB-2 ankyrin repeat and SOCS box protein 2|ankyrin repeat and SOCS box-containing protein 2a 49 0.006707 5.447 1 1 +51678 MPP6 membrane palmitoylated protein 6 7 protein-coding PALS2|VAM-1|VAM1|p55T MAGUK p55 subfamily member 6|MAGUK protein p55T|VELI-associated MAGUK 1|membrane protein, palmitoylated 6 (MAGUK p55 subfamily member 6)|protein associated with Lin7 2 43 0.005886 6.307 1 1 +51684 SUFU SUFU negative regulator of hedgehog signaling 10 protein-coding PRO1280|SUFUH|SUFUXL suppressor of fused homolog 35 0.004791 9.117 1 1 +51686 OAZ3 ornithine decarboxylase antizyme 3 1 protein-coding AZ3|OAZ-t|TISP15 ornithine decarboxylase antizyme 3|ODC-Az 3|antizyme 3|testicular secretory protein Li 31 13 0.001779 4.655 1 1 +51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated 19 protein-coding YNL147W U6 snRNA-associated Sm-like protein LSm7|LSM7 U6 small nuclear RNA and mRNA degradation associated|LSM7 homolog, U6 small nuclear RNA associated 4 0.0005475 9.366 1 1 +51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated 7 protein-coding NAA38 LSM8 homolog, U6 small nuclear RNA associated|LSM8 U6 small nuclear RNA associated|MAK31-like protein|N-alpha-acetyltransferase 38, NatC auxiliary subunit|U6 snRNA-associated Sm-like protein LSm8 11 0.001506 8.752 1 1 +51692 CPSF3 cleavage and polyadenylation specific factor 3 2 protein-coding CPSF-73|CPSF73 cleavage and polyadenylation specificity factor subunit 3|cleavage and polyadenylation specific factor 3, 73kDa|mRNA 3'-end-processing endonuclease CPSF-73 41 0.005612 9.777 1 1 +51693 TRAPPC2L trafficking protein particle complex 2 like 16 protein-coding HSPC176 trafficking protein particle complex subunit 2-like protein|hematopoietic stem/progenitor cells 176 10 0.001369 9.296 1 1 +51696 HECA hdc homolog, cell cycle regulator 6 protein-coding HDC|HDCL|HHDC|dJ225E12.1 headcase protein homolog|headcase homolog 45 0.006159 9.769 1 1 +51699 VPS29 VPS29, retromer complex component 12 protein-coding DC15|DC7|PEP11 vacuolar protein sorting-associated protein 29|PEP11 homolog|hVPS29|retromer protein|vacuolar protein sorting 29 homolog|vacuolar sorting protein VPS29/PEP11|vesicle protein sorting 29|x 007 protein 17 0.002327 10.19 1 1 +51700 CYB5R2 cytochrome b5 reductase 2 11 protein-coding B5R.2 NADH-cytochrome b5 reductase 2|cytochrome b5 reductase b5R.2 19 0.002601 7.053 1 1 +51701 NLK nemo like kinase 17 protein-coding - serine/threonine-protein kinase NLK 44 0.006022 8.868 1 1 +51702 PADI3 peptidyl arginine deiminase 3 1 protein-coding PAD3|PDI3 protein-arginine deiminase type-3|peptidyl arginine deiminase, type III|peptidylarginine deiminase III|protein-arginine deiminase type III 65 0.008897 2.764 1 1 +51703 ACSL5 acyl-CoA synthetase long-chain family member 5 10 protein-coding ACS2|ACS5|FACL5 long-chain-fatty-acid--CoA ligase 5|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 44 0.006022 9.317 1 1 +51704 GPRC5B G protein-coupled receptor class C group 5 member B 16 protein-coding RAIG-2|RAIG2 G-protein coupled receptor family C group 5 member B|G protein-coupled receptor, family C, group 1, member B|retinoic acid responsive gene protein|retinoic acid-induced gene 2 protein 33 0.004517 9.318 1 1 +51705 EMCN endomucin 4 protein-coding EMCN2|MUC14 endomucin|MUC-14|endomucin-2|gastric cancer antigen Ga34|mucin-14 27 0.003696 7.473 1 1 +51706 CYB5R1 cytochrome b5 reductase 1 1 protein-coding B5R.1|B5R1|B5R2|NQO3A2|humb5R2 NADH-cytochrome b5 reductase 1|NAD(P)H:quinone oxidoreductase type 3, polypeptide A2 27 0.003696 10.36 1 1 +51710 ZNF44 zinc finger protein 44 19 protein-coding GIOT-2|KOX7|ZNF|ZNF504|ZNF55|ZNF58 zinc finger protein 44|gonadotropin inducible transcription repressor-2|gonadotropin-inducible ovary transcription repressor 2|zinc finger protein 55|zinc finger protein 58|zinc finger protein KOX7|zinc finger protein ZnFP12 51 0.006981 7.624 1 1 +51714 SELENOT selenoprotein T 3 protein-coding SELT selenoprotein T 10 0.001369 11 1 1 +51715 RAB23 RAB23, member RAS oncogene family 6 protein-coding HSPC137 ras-related protein Rab-23|RAB family small GTP binding protein RAB 23 15 0.002053 8.649 1 1 +51716 CES1P1 carboxylesterase 1 pseudogene 1 16 pseudo CES1A2|CES1A3|CES4|CESR|PCE-3 carboxylesterase 4, pseudogene|carboxylesterase-related protein 28 0.003832 2.199 1 1 +51719 CAB39 calcium binding protein 39 2 protein-coding CGI-66|MO25 calcium-binding protein 39|MO25alpha 17 0.002327 10.98 1 1 +51720 UIMC1 ubiquitin interaction motif containing 1 5 protein-coding RAP80|X2HRIP110 BRCA1-A complex subunit RAP80|receptor-associated protein 80|retinoid X receptor-interacting protein 110 35 0.004791 8.71 1 1 +51725 FBXO40 F-box protein 40 3 protein-coding FBX40 F-box only protein 40|muscle disease-related protein 74 0.01013 0.9242 1 1 +51726 DNAJB11 DnaJ heat shock protein family (Hsp40) member B11 3 protein-coding ABBP-2|ABBP2|DJ9|Dj-9|EDJ|ERdj3|ERj3|ERj3p|PRO1080|UNQ537 dnaJ homolog subfamily B member 11|APOBEC1-binding protein 2|DnaJ (Hsp40) homolog, subfamily B, member 11|DnaJ protein 9|ER-associated DNAJ protein 3|ER-associated Hsp40 co-chaperone|ER-resident protein ERdj3|PWP1-interacting protein 4|endoplasmic reticulum DNA J domain-containing protein 3 30 0.004106 10.56 1 1 +51727 CMPK1 cytidine/uridine monophosphate kinase 1 1 protein-coding CK|CMK|CMPK|UMK|UMP-CMPK|UMPK UMP-CMP kinase|CK|UMP/CMP kinase|cytidine monophosphate (UMP-CMP) kinase 1, cytosolic|cytidylate kinase|dCMP kinase|deoxycytidylate kinase|nucleoside-diphosphate kinase|uridine monophosphate kinase|uridine monophosphate/cytidine monophosphate kinase 12 0.001642 11.6 1 1 +51728 POLR3K RNA polymerase III subunit K 16 protein-coding C11|C11-RNP3|My010|RPC10|RPC11|RPC12.5 DNA-directed RNA polymerase III subunit RPC10|DNA-directed RNA polymerase III subunit K|DNA-directed RNA polymerases III 12.5 kDa polypeptide|RNA polymerase III 12.5 kDa subunit|RNA polymerase III subunit C10|RNA polymerase III subunit C11|RNA polymerase III subunit CII|polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa|polymerase (RNA) III subunit K 7 0.0009581 8.452 1 1 +51729 WBP11 WW domain binding protein 11 12 protein-coding NPWBP|PPP1R165|SIPP1|WBP-11 WW domain-binding protein 11|Npw38-binding protein NpwBP|SH3 domain-binding protein SNP70|protein phosphatase 1, regulatory subunit 165|splicing factor that interacts with PQBP-1 and PP1|splicing factor, PQBP1 and PP1 interacting 51 0.006981 10.97 1 1 +51733 UPB1 beta-ureidopropionase 1 22 protein-coding BUP1 beta-ureidopropionase|beta-alanine synthase|n-carbamoyl-beta-alanine amidohydrolase|ureidopropionase, beta 24 0.003285 2.829 1 1 +51734 MSRB1 methionine sulfoxide reductase B1 16 protein-coding HSPC270|SELR|SELX|SEPX1|SepR methionine-R-sulfoxide reductase B1|selenoprotein R|selenoprotein X, 1 10 0.001369 9.46 1 1 +51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 5 protein-coding KIA001LB|PDZ-GEF2|PDZGEF2|RA-GEF-2|RAGEF2 rap guanine nucleotide exchange factor 6|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 (GEF) 6 108 0.01478 7.497 1 1 +51738 GHRL ghrelin and obestatin prepropeptide 3 protein-coding MTLRP appetite-regulating hormone|In2c-preproghrelin|ghrelin, growth hormone secretagogue receptor ligand|ghrelin/obestatin preprohormone|ghrelin/obestatin prepropeptide|growth hormone-releasing peptide|motilin-related peptide|prepro-appetite regulatory hormone|preproghrelin 13 0.001779 2.47 1 1 +51741 WWOX WW domain containing oxidoreductase 16 protein-coding D16S432E|EIEE28|FOR|FRA16D|HHCMA56|PRO0128|SCAR12|SDR41C1|WOX1 WW domain-containing oxidoreductase|WW domain-containing protein WWOX|fragile site FRA16D oxidoreductase|short chain dehydrogenase/reductase family 41C member 1 45 0.006159 7.857 1 1 +51742 ARID4B AT-rich interaction domain 4B 1 protein-coding BCAA|BRCAA1|RBBP1L1|RBP1L1|SAP180 AT-rich interactive domain-containing protein 4B|180 kDa Sin3-associated polypeptide|ARID domain-containing protein 4B|AT rich interactive domain 4B (RBP1-like)|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 92 0.01259 9.943 1 1 +51744 CD244 CD244 molecule 1 protein-coding 2B4|NAIL|NKR2B4|Nmrk|SLAMF4 natural killer cell receptor 2B4|CD244 molecule, natural killer cell receptor 2B4|NK cell activation inducing ligand NAIL|NK cell activation-inducing ligand|NK cell type I receptor protein 2B4|SLAM family member 4|h2B4|signaling lymphocytic activation molecule 4 43 0.005886 3.884 1 1 +51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor 17 protein-coding CRA|CREAP-1|CROP|LUC7A|OA48-18|hLuc7A luc7-like protein 3|CRE-associated protein 1|LUC7-like 3|cAMP regulatory element-associated protein 1|cisplatin resistance-associated-overexpressed protein|okadaic acid-inducible phosphoprotein OA48-18 46 0.006296 11.03 1 1 +51750 RTEL1 regulator of telomere elongation helicase 1 20 protein-coding C20orf41|DKCA4|DKCB5|NHL|PFBMFT3|RTEL regulator of telomere elongation helicase 1|regulator of telomere length 75 0.01027 8.975 1 1 +51751 HIGD1B HIG1 hypoxia inducible domain family member 1B 17 protein-coding CLST11240|CLST11240-15 HIG1 domain family member 1B 4 0.0005475 4.173 1 1 +51752 ERAP1 endoplasmic reticulum aminopeptidase 1 5 protein-coding A-LAP|ALAP|APPILS|ARTS-1|ARTS1|ERAAP|ERAAP1|PILS-AP|PILSAP endoplasmic reticulum aminopeptidase 1|CTD-2260A17.2|adipocyte-derived leucine aminopeptidase|aminopeptidase PILS|aminopeptidase regulator of TNFR1 shedding|endoplasmic reticulum aminopeptidase 1 delta-Exon-11 isoform|endoplasmic reticulum aminopeptidase 1 delta-Exon-13 isoform|endoplasmic reticulum aminopeptidase 1 delta-Exon-14 isoform|endoplasmic reticulum aminopeptidase 1 delta-Exon-15 isoform|endoplasmic reticulum aminopeptidase associated with antigen processing|puromycin-insensitive leucyl-specific aminopeptidase|type 1 tumor necrosis factor receptor shedding aminopeptidase regulator 44 0.006022 10.32 1 1 +51754 TMEM8B transmembrane protein 8B 9 protein-coding C9orf127|NAG-5|NAG5|NGX6 transmembrane protein 8B|Protein NGX6|nasopharyngeal carcinoma expressed 6|nasopharyngeal carcinoma related protein|nasopharyngeal carcinoma-associated gene 6 protein|protein NAG-5 32 0.00438 8.761 1 1 +51755 CDK12 cyclin dependent kinase 12 17 protein-coding CRK7|CRKR|CRKRS cyclin-dependent kinase 12|CDC2-related protein kinase 7|Cdc2-related kinase, arginine/serine-rich|cell division cycle 2-related protein kinase 7|cell division protein kinase 12 156 0.02135 10.16 1 1 +51759 C9orf78 chromosome 9 open reading frame 78 9 protein-coding HCA59|HSPC220|bA409K20.3 uncharacterized protein C9orf78|hepatocellular carcinoma-associated antigen 59 19 0.002601 10.48 1 1 +51760 SYT17 synaptotagmin 17 16 protein-coding sytXVII synaptotagmin-17|B/K protein|synaptotagmin XVII 35 0.004791 7.002 1 1 +51761 ATP8A2 ATPase phospholipid transporting 8A2 13 protein-coding ATP|ATPIB|CAMRQ4|IB|ML-1 phospholipid-transporting ATPase IB|ATPase, aminophospholipid transporter, class I, type 8A, member 2|ATPase, aminophospholipid transporter-like, class I, type 8A, member 2|P4-ATPase flippase complex alpha subunit ATP8A2|probable phospholipid-transporting ATPase IB 119 0.01629 3.459 1 1 +51762 RAB8B RAB8B, member RAS oncogene family 15 protein-coding - ras-related protein Rab-8B|RAB-8b protein 14 0.001916 9.28 1 1 +51763 INPP5K inositol polyphosphate-5-phosphatase K 17 protein-coding PPS|SKIP inositol polyphosphate 5-phosphatase K|skeletal muscle and kidney-enriched inositol phosphatase 17 0.002327 9.759 1 1 +51764 GNG13 G protein subunit gamma 13 16 protein-coding G(gamma)13|h2-35 guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-13|G gamma subunit, clone:h2-35|guanine nucleotide binding protein (G protein), gamma 13|guanine nucleotide binding protein 13, gamma 8 0.001095 1.207 1 1 +51765 STK26 serine/threonine protein kinase 26 X protein-coding MASK|MST4 serine/threonine-protein kinase 26|Mst3 and SOK1-related kinase|STE20-like kinase 4|STE20-like kinase MST4|mammalian Ste20-like protein kinase 4|mammalian sterile 20-like 4|serine/threonine protein kinase MST4|serine/threonine-protein kinase MASK 21 0.002874 7.977 1 1 +51768 TM7SF3 transmembrane 7 superfamily member 3 12 protein-coding - transmembrane 7 superfamily member 3|seven span transmembrane protein|seven transmembrane protein TM7SF3 48 0.00657 10.77 1 1 +51773 RSF1 remodeling and spacing factor 1 11 protein-coding HBXAP|RSF-1|XAP8|p325 remodeling and spacing factor 1|HBV pX-associated protein 8|hepatitis B virus x-associated protein|p325 subunit of RSF chromatin-remodeling complex 87 0.01191 9.329 1 1 +51776 ZAK sterile alpha motif and leucine zipper containing kinase AZK 2 protein-coding AZK|MLK7|MLT|MLTK|MRK|SFMMP|mlklak|pk mitogen-activated protein kinase kinase kinase MLT|HCCS-4|MLK-like mitogen-activated protein triple kinase|human cervical cancer suppressor gene 4 protein|mixed lineage kinase 7|mixed lineage kinase with a leucine zipper and a sterile alpha motif|mixed lineage kinase-related kinase MRK-beta 60 0.008212 10.04 1 1 +51778 MYOZ2 myozenin 2 4 protein-coding C4orf5|CMH16|CS-1 myozenin-2|FATZ-related protein 2|calcineurin-binding protein calsarcin-1|muscle-specific protein 26 0.003559 1.511 1 1 +51780 KDM3B lysine demethylase 3B 5 protein-coding 5qNCA|C5orf7|JMJD1B|NET22 lysine-specific demethylase 3B|jmjC domain-containing histone demethylation protein 2B|jumonji domain containing 1B|jumonji domain-containing protein 1B|lysine (K)-specific demethylase 3B|nuclear protein 5qNCA 119 0.01629 11 1 1 +51802 ASIC5 acid sensing ion channel subunit family member 5 4 protein-coding ACCN5|HINAC|INAC acid-sensing ion channel 5|acid sensing (proton gated) ion channel family member 5|acid sensing ion channel family member 5|amiloride-sensitive cation channel 5, intestinal|amiloride-sensitive sodium channel|human intestine Na(+) channel 53 0.007254 0.1344 1 1 +51804 SIX4 SIX homeobox 4 14 protein-coding AREC3 homeobox protein SIX4|sine oculis homeobox homolog 4 53 0.007254 6.924 1 1 +51805 COQ3 coenzyme Q3, methyltransferase 6 protein-coding DHHBMT|DHHBMTASE|UG0215E05|bA9819.1 ubiquinone biosynthesis O-methyltransferase, mitochondrial|2-polyprenyl-6-hydroxyphenol methylase|2-polyprenyl-6-hydroxyphenyl methylase|3,4-dihydroxy-5-hexaprenylbenzoate methyltransferase|3-demethylubiquinol 3-O-methyltransferase|3-demethylubiquinone-10 3-methyltransferase|DHHB methyltransferase|DHHB-MT|DHHB-MTase|coenzyme Q3 homolog, methyltransferase|dihydroxyhexaprenylbenzoate methyltransferase|hexaprenyldihydroxybenzoate methyltransferase, mitochondrial|methyltransferase COQ3|polyprenyldihydroxybenzoate methyltransferase 27 0.003696 7.234 1 1 +51806 CALML5 calmodulin like 5 10 protein-coding CLSP calmodulin-like protein 5|calmodulin-like skin protein 11 0.001506 2.999 1 1 +51807 TUBA8 tubulin alpha 8 22 protein-coding TUBAL2 tubulin alpha-8 chain|tubulin alpha chain-like 2 27 0.003696 5.717 1 1 +51808 PHAX phosphorylated adaptor for RNA export 5 protein-coding RNUXA phosphorylated adapter RNA export protein|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) 20 0.002737 8.711 1 1 +51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 4 protein-coding GALNAC-T7|GalNAcT7 N-acetylgalactosaminyltransferase 7|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 7|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7 (GalNAc-T7)|polypeptide GalNAc transferase 7|pp-GaNTase 7|protein-UDP acetylgalactosaminyltransferase 7 39 0.005338 9.716 1 1 +51816 CECR1 cat eye syndrome chromosome region, candidate 1 22 protein-coding ADA2|ADGF|IDGFL|PAN|SNEDS adenosine deaminase CECR1|adenosine deaminase 2|cat eye syndrome critical region protein 1 56 0.007665 9.709 1 1 +53335 BCL11A B-cell CLL/lymphoma 11A 2 protein-coding BCL11A-L|BCL11A-S|BCL11A-XL|BCL11a-M|CTIP1|DILOS|EVI9|HBFQTL5|ZNF856 B-cell lymphoma/leukemia 11A|B-cell CLL/lymphoma 11A (zinc finger protein) isoform 2|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 119 0.01629 6.404 1 1 +53336 CPXCR1 CPX chromosome region, candidate 1 X protein-coding CT77 CPX chromosomal region candidate gene 1 protein|cancer/testis antigen 77 63 0.008623 0.1849 1 1 +53339 BTBD1 BTB domain containing 1 15 protein-coding C15orf1|NS5ATP8 BTB/POZ domain-containing protein 1|BTB (POZ) domain containing 1|HCV NS5A-transactivated protein 8|hepatitis C virus NS5A-transactivated protein 8 28 0.003832 10.49 1 1 +53340 SPA17 sperm autoantigenic protein 17 11 protein-coding CT22|SP17|SP17-1 sperm surface protein Sp17|cancer/testis antigen 22|sperm protein 17 19 0.002601 6.88 1 1 +53342 IL17D interleukin 17D 13 protein-coding IL-17D interleukin-17D 5 0.0006844 4.664 1 1 +53343 NUDT9 nudix hydrolase 9 4 protein-coding NUDT10 ADP-ribose pyrophosphatase, mitochondrial|ADP-ribose diphosphatase|ADP-ribose phosphohydrolase|ADP-ribose pyrosphosphatase NUDT9|ADPR-PPase|adenosine diphosphoribose pyrophosphatase|nucleoside diphosphate linked moiety X-type motif 9|nudix (nucleoside diphosphate linked moiety X)-type motif 9 17 0.002327 9.307 1 1 +53344 CHIC1 cysteine rich hydrophobic domain 1 X protein-coding BRX cysteine-rich hydrophobic domain-containing protein 1|brain X-linked protein|cystein-rich hydrophobic domain 1|cysteine-rich hydrophobic domain 1 protein 15 0.002053 7.876 1 1 +53345 TM6SF2 transmembrane 6 superfamily member 2 19 protein-coding - transmembrane 6 superfamily member 2 32 0.00438 3.483 1 1 +53346 TM6SF1 transmembrane 6 superfamily member 1 15 protein-coding - transmembrane 6 superfamily member 1 36 0.004927 6.532 1 1 +53347 UBASH3A ubiquitin associated and SH3 domain containing A 21 protein-coding CLIP4|STS-2|TULA|TULA-1 ubiquitin-associated and SH3 domain-containing protein A|T-cell ubiquitin ligand 1|T-cell ubiquitin ligand protein|cbl-interacting protein 4|suppressor of T-cell receptor signaling 2 53 0.007254 3.815 1 1 +53349 ZFYVE1 zinc finger FYVE-type containing 1 14 protein-coding DFCP1|PPP1R172|SR3|TAFF1|ZNFN2A1 zinc finger FYVE domain-containing protein 1|double FYVE-containing protein 1|phosphoinositide-binding protein SR3|protein phosphatase 1, regulatory subunit 172|tandem FYVE fingers-1 protein|zinc finger protein, subfamily 2A, member 1|zinc finger, FYVE domain containing 1 42 0.005749 9.227 1 1 +53353 LRP1B LDL receptor related protein 1B 2 protein-coding LRP-1B|LRP-DIT|LRPDIT low-density lipoprotein receptor-related protein 1B|LRP-deleted in tumors|low density lipoprotein receptor related protein-deleted in tumor|low density lipoprotein receptor-related protein 1B|low density lipoprotein-related protein 1B (deleted in tumors) 703 0.09622 3.325 1 1 +53354 PANK1 pantothenate kinase 1 10 protein-coding PANK pantothenate kinase 1|pantothenic acid kinase 1 33 0.004517 7.382 1 1 +53358 SHC3 SHC adaptor protein 3 9 protein-coding N-Shc|NSHC|RAI|SHCC SHC-transforming protein 3|SH2 domain protein C3|SHC (Src homology 2 domain containing) transforming protein 3|SHC-transforming protein C|Shc3 p51|neuronal Shc|protein Rai|src homology 2 domain-containing transforming protein C3 39 0.005338 3.741 1 1 +53371 NUP54 nucleoporin 54 4 protein-coding - nucleoporin p54|54 kDa nucleoporin|nucleoporin 54kD|nucleoporin 54kDa 26 0.003559 9.338 1 1 +53373 TPCN1 two pore segment channel 1 12 protein-coding TPC1 two pore calcium channel protein 1|two-pore channel 1|two-pore channel 1, homolog|voltage-dependent calcium channel protein TPC1 55 0.007528 10.33 1 1 +53405 CLIC5 chloride intracellular channel 5 6 protein-coding DFNB102|DFNB103|MST130|MSTP130 chloride intracellular channel protein 5 34 0.004654 6.767 1 1 +53407 STX18 syntaxin 18 4 protein-coding Ufe1 syntaxin-18|cell growth-inhibiting gene 9 protein 18 0.002464 9.07 1 1 +53615 MBD3 methyl-CpG binding domain protein 3 19 protein-coding - methyl-CpG-binding domain protein 3 27 0.003696 10.89 1 1 +53616 ADAM22 ADAM metallopeptidase domain 22 7 protein-coding ADAM 22|MDC2 disintegrin and metalloproteinase domain-containing protein 22|a disintegrin and metalloproteinase domain 22|metalloproteinase-disintegrin ADAM22-3|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 2 88 0.01204 4.833 1 1 +53630 BCO1 beta-carotene oxygenase 1 16 protein-coding BCDO|BCDO1|BCMO|BCMO1|BCO beta,beta-carotene 15,15'-dioxygenase|beta,beta-carotene 15,15'-monooxygenase|beta-carotene 15, 15'-dioxygenase 1|beta-carotene 15,15'-monooxygenase 1|beta-carotene dioxygenase 1 34 0.004654 3.365 1 1 +53632 PRKAG3 protein kinase AMP-activated non-catalytic subunit gamma 3 2 protein-coding AMPKG3 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|protein kinase, AMP-activated, gamma 3 non-catalytic subunit 33 0.004517 0.5801 1 1 +53635 PTOV1 prostate tumor overexpressed 1 19 protein-coding ACID2|PTOV-1 prostate tumor-overexpressed gene 1 protein|activator interaction domain-containing protein 2 32 0.00438 11.27 1 1 +53637 S1PR5 sphingosine-1-phosphate receptor 5 19 protein-coding EDG8|Edg-8|S1P5|SPPR-1|SPPR-2 sphingosine 1-phosphate receptor 5|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 EDG8|sphingosine 1-phosphate receptor Edg-8 25 0.003422 5.302 1 1 +53820 RIPPLY3 ripply transcriptional repressor 3 21 protein-coding DSCR6 protein ripply3|Down syndrome critical region gene 6|down syndrome critical region protein 6|ripply3 homolog 25 0.003422 3.55 1 1 +53822 FXYD7 FXYD domain containing ion transport regulator 7 19 protein-coding - FXYD domain-containing ion transport regulator 7 8 0.001095 2.277 1 1 +53826 FXYD6 FXYD domain containing ion transport regulator 6 11 protein-coding - FXYD domain-containing ion transport regulator 6|phosphohippolin 5 0.0006844 9.336 1 1 +53827 FXYD5 FXYD domain containing ion transport regulator 5 19 protein-coding DYSAD|HSPC113|IWU1|KCT1|OIT2|PRO6241|RIC FXYD domain-containing ion transport regulator 5|dysadherin|keratinocytes associated transmembrane protein 1 24 0.003285 10.41 1 1 +53828 FXYD4 FXYD domain containing ion transport regulator 4 10 protein-coding CHIF FXYD domain-containing ion transport regulator 4|channel-inducing factor 4 0.0005475 0.9953 1 1 +53829 P2RY13 purinergic receptor P2Y13 3 protein-coding FKSG77|GPCR1|GPR86|GPR94|P2Y13|SP174 P2Y purinoceptor 13|G protein-coupled receptor 86|G-protein coupled receptor 94|purinergic receptor P2Y, G-protein coupled, 13 36 0.004927 5.844 1 1 +53831 GPR84 G protein-coupled receptor 84 12 protein-coding EX33|GPCR4 G-protein coupled receptor 84|inflammation-related G protein-coupled receptor EX33 37 0.005064 4.278 1 1 +53832 IL20RA interleukin 20 receptor subunit alpha 6 protein-coding CRF2-8|IL-20R-alpha|IL-20R1|IL-20RA interleukin-20 receptor subunit alpha|class II cytokine receptor ZCYTOR7|cytokine receptor family 2 member 8|interleukin 20 receptor alpha subunit|interleukin 20 receptor, alpha|interleukin-20 receptor I 38 0.005201 6.294 1 1 +53833 IL20RB interleukin 20 receptor subunit beta 3 protein-coding DIRS1|FNDC6|IL-20R2 interleukin-20 receptor subunit beta|IL-20 receptor subunit beta|IL-20R-beta|IL-20RB|fibronectin type III domain containing 6|interleukin 20 receptor beta subunit|interleukin-20 receptor II 19 0.002601 5.182 1 1 +53834 FGFRL1 fibroblast growth factor receptor-like 1 4 protein-coding FGFR5|FHFR fibroblast growth factor receptor-like 1|FGF homologous factor receptor|FGF receptor-like protein 1|FGFR-5|FGFR-like protein|fibroblast growth factor receptor 5 45 0.006159 9.414 1 1 +53836 GPR87 G protein-coupled receptor 87 3 protein-coding FKSG78|GPR95|KPG_002 G-protein coupled receptor 87|G-protein coupled receptor 95|orphan GPCR 87 34 0.004654 3.827 1 1 +53838 C11orf24 chromosome 11 open reading frame 24 11 protein-coding DM4E3 uncharacterized protein C11orf24 28 0.003832 9.757 1 1 +53840 TRIM34 tripartite motif containing 34 11 protein-coding IFP1|RNF21 tripartite motif-containing protein 34|interferon-responsive finger protein 1|ring finger protein 21, interferon-responsive 13 0.001779 7.146 1 1 +53841 CDHR5 cadherin related family member 5 11 protein-coding MLPCDH|MU-PCDH|MUCDHL|MUPCDH cadherin-related family member 5|differentiation-associated catenin regulator|mu-protocadherin|mucin and cadherin-like protein 63 0.008623 3.497 1 1 +53842 CLDN22 claudin 22 4 protein-coding CLDN21 claudin-22 14 0.001916 0.2431 1 1 +53904 MYO3A myosin IIIA 10 protein-coding DFNB30 myosin-IIIa 211 0.02888 2.873 1 1 +53905 DUOX1 dual oxidase 1 15 protein-coding LNOX1|NOXEF1|THOX1 dual oxidase 1|NADPH thyroid oxidase 1|flavoprotein NADPH oxidase|large NOX 1|long NOX 1|nicotinamide adenine dinucleotide phosphate oxidase|thyroid oxidase 1 89 0.01218 7.46 1 1 +53916 RAB4B RAB4B, member RAS oncogene family 19 protein-coding - ras-related protein Rab-4B|ras-related GTP-binding protein 4b|small GTP binding protein RAB4B 9 0.001232 9.051 1 1 +53917 RAB24 RAB24, member RAS oncogene family 5 protein-coding - ras-related protein Rab-24 13 0.001779 9.057 1 1 +53918 PELO pelota homolog (Drosophila) 5 protein-coding CGI-17|PRO1770 protein pelota homolog 17 0.002327 9.046 1 1 +53919 SLCO1C1 solute carrier organic anion transporter family member 1C1 12 protein-coding OATP-F|OATP1|OATP14|OATP1C1|OATPF|OATPRP5|SLC21A14 solute carrier organic anion transporter family member 1C1|OAT-RP-5|OATP-14|organic anion transporter F|organic anion transporter polypeptide-related protein 5|organic anion transporting polypeptide 14|solute carrier family 21 (organic anion transporter), member 14|solute carrier family 21 member 14|thyroxine transporter 108 0.01478 2.444 1 1 +53938 PPIL3 peptidylprolyl isomerase like 3 2 protein-coding CYPJ peptidyl-prolyl cis-trans isomerase-like 3|PPIase|PPIase-like protein 3|cyclophilin J|cyclophilin-like protein 3|cyclophilin-like protein PPIL3|peptidylprolyl cis-trans isomerase-like protein 3|peptidylprolyl isomerase (cyclophilin)-like 3|rotamase PPIL3 10 0.001369 8.167 1 1 +53940 FTHL17 ferritin heavy chain like 17 X protein-coding CT38 ferritin heavy polypeptide-like 17|cancer/testis antigen 38|ferritin, heavy polypeptide-like 17 25 0.003422 0.2538 1 1 +53942 CNTN5 contactin 5 11 protein-coding HNB-2s|NB-2 contactin-5|neural adhesion molecule|neural recognition molecule NB-2 166 0.02272 1.466 1 1 +53944 CSNK1G1 casein kinase 1 gamma 1 15 protein-coding CK1gamma1 casein kinase I isoform gamma-1 28 0.003832 9.062 1 1 +53947 A4GALT alpha 1,4-galactosyltransferase 22 protein-coding A14GALT|A4GALT1|Gb3S|P(k)|P1|P1PK|PK lactosylceramide 4-alpha-galactosyltransferase|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 14-galactosyltransferase|alpha-1,4-N-acetylglucosaminyltransferase|alpha4Gal-T1|globotriaosylceramide synthase|truncated alpha 1,4-galactosyltransferase 23 0.003148 8.392 1 1 +53981 CPSF2 cleavage and polyadenylation specific factor 2 14 protein-coding CPSF100 cleavage and polyadenylation specificity factor subunit 2|CPSF 100 kDa subunit|CPSF 100kDa subunit|cleavage and polyadenylation specific factor 2, 100kDa|cleavage and polyadenylation specificity factor 100 kDa subunit 46 0.006296 10.25 1 1 +54014 BRWD1 bromodomain and WD repeat domain containing 1 21 protein-coding C21orf107|DCAF19|N143|WDR9 bromodomain and WD repeat-containing protein 1|WD repeat protein WDR9-form2|WD repeat-containing protein 9|transcriptional unit N143 148 0.02026 10.17 1 1 +54019 SLC6A6P1 solute carrier family 6 member 6 pseudogene 1 21 pseudo SLC6A6P solute carrier family 6, member 6 pseudogene|taurine transporter processed pseudogene 1 0.0001369 1 0 +54020 SLC37A1 solute carrier family 37 member 1 21 protein-coding G3PP glucose-6-phosphate exchanger SLC37A1|G-3-P permease|G-3-P transporter|glycerol-3-phosphate permease|glycerol-3-phosphate transporter|solute carrier family 37 (glucose-6-phosphate transporter), member 1|solute carrier family 37 (glycerol-3-phosphate transporter), member 1 42 0.005749 8.933 1 1 +54033 RBM11 RNA binding motif protein 11 21 protein-coding - splicing regulator RBM11|putative RNA-binding protein 11 30 0.004106 4.1 1 1 +54039 PCBP3 poly(rC) binding protein 3 21 protein-coding ALPHA-CP3 poly(rC)-binding protein 3 42 0.005749 4.85 1 1 +54053 EIF3FP1 eukaryotic translation initiation factor 3 subunit F pseudogene 1 21 pseudo EIF3FP|EIF3S5P eucaryotic initiation factor-3, subunit 5 pseudogene|eukaryotic translation initiation factor 3, subunit 5 (epsilon, 47kD) pseudogene|eukaryotic translation initiation factor 3, subunit 5 epsilon, 47kDa pseudogene|eukaryotic translation initiation factor 3, subunit F pseudogene 8 0.001095 1 0 +54055 CYP4F29P cytochrome P450 family 4 subfamily F member 29, pseudogene 21 pseudo 4F-se4[6:7:8]|C21orf15|CYP4F-se4[6:7:8]|CYP4F3LP cytochrome P450 pseudogene|cytochrome P450, family 4, subfamily F, polypeptide 29, pseudogene|cytochrome P450, family 4, subfamily F, polypeptide 3-like pseudogene|cytochrome P450, subfamily IVF, polypeptide 3-like pseudogene 4 0.0005475 1 0 +54058 C21orf58 chromosome 21 open reading frame 58 21 protein-coding - uncharacterized protein C21orf58 39 0.005338 6.587 1 1 +54059 YBEY ybeY metallopeptidase (putative) 21 protein-coding C21orf57 putative ribonuclease|putative metalloprotease C21orf57|rRNA maturation factor homolog 12 0.001642 7.479 1 1 +54064 LINC00160 long intergenic non-protein coding RNA 160 21 ncRNA C21orf52|NCRNA00160 - 0.5836 0 1 +54065 SMIM11A small integral membrane protein 11A 21 protein-coding C21orf51|FAM165B|SMIM11|SMIM11B small integral membrane protein 11A|family with sequence similarity 165, member B|protein FAM165B|small integral membrane protein 11 7 0.0009581 8.197 1 1 +54067 C21orf62-AS1 C21orf62 antisense RNA 1 21 ncRNA C21orf49 - 2 0.0002737 2.822 1 1 +54069 MIS18A MIS18 kinetochore protein A 21 protein-coding B28|C21orf45|C21orf46|FASP1|MIS18alpha|hMis18alpha protein Mis18-alpha|FAPP1-associated protein 1|MIS18 kinetochore protein homolog A 10 0.001369 7.944 1 1 +54070 0.08202 0 1 +54072 LINC00158 long intergenic non-protein coding RNA 158 21 ncRNA C21orf42|NCRNA00158 - 3 0.0004106 0.8886 1 1 +54075 CHODL-AS1 CHODL antisense RNA 1 21 ncRNA C21orf39|NCRNA00157 CHODL antisense RNA 1 (non-protein coding) 0 0 0.02774 1 1 +54084 TSPEAR thrombospondin type laminin G domain and EAR repeats 21 protein-coding C21orf29|DFNB98|TSP-EAR thrombospondin-type laminin G domain and EAR repeat-containing protein|thrombospondin-type laminin G domain and EAR repeats-containing protein 69 0.009444 2.036 1 1 +54088 LINC00113 long intergenic non-protein coding RNA 113 21 ncRNA C21orf23|NCRNA00113 - 0 0 0.2788 1 1 +54089 LINC00112 long intergenic non-protein coding RNA 112 21 ncRNA C21orf22|NCRNA00112 - 0 0 0.04075 1 1 +54090 LINC00111 long intergenic non-protein coding RNA 111 21 ncRNA C21orf21|NCRNA00111 - 1 0.0001369 0.05109 1 1 +54093 SETD4 SET domain containing 4 21 protein-coding C21orf18|C21orf27 SET domain-containing protein 4 29 0.003969 8.217 1 1 +54094 2.332 0 1 +54097 FAM3B family with sequence similarity 3 member B 21 protein-coding 2-21|C21orf11|C21orf76|ORF9|PANDER|PRED44 protein FAM3B|D21M16SJHU19e|cytokine-like protein 2-21|pancreatic derived factor 13 0.001779 5.48 1 1 +54101 RIPK4 receptor interacting serine/threonine kinase 4 21 protein-coding ANKK2|ANKRD3|DIK|NKRD3|PKK|PPS2|RIP4 receptor-interacting serine/threonine-protein kinase 4|PKC-delta-interacting protein kinase|ankyrin repeat domain-containing protein 3|protein kinase C-associated kinase|serine/threonine-protein kinase ANKRD3 66 0.009034 8.019 1 1 +54102 CLIC6 chloride intracellular channel 6 21 protein-coding CLIC1L chloride intracellular channel protein 6|chloride channel form A|parchorin 25 0.003422 6.726 1 1 +54103 GSAP gamma-secretase activating protein 7 protein-coding PION gamma-secretase-activating protein|pigeon homolog|protein pigeon homolog 43 0.005886 8.174 1 1 +54106 TLR9 toll like receptor 9 3 protein-coding CD289 toll-like receptor 9 79 0.01081 4.597 1 1 +54107 POLE3 DNA polymerase epsilon 3, accessory subunit 9 protein-coding CHARAC17|CHRAC17|YBL1|p17 DNA polymerase epsilon subunit 3|CHRAC-17|DNA polymerase II subunit 3|DNA polymerase epsilon p17 subunit|DNA polymerase epsilon subunit p17|arsenic transactivated protein|asTP|chromatin accessibility complex 17 kDa protein|histone fold protein CHRAC17|huCHRAC17|polymerase (DNA directed), epsilon 3 (p17 subunit)|polymerase (DNA directed), epsilon 3, accessory subunit|polymerase (DNA) epsilon 3, accessory subunit 11 0.001506 10.53 1 1 +54108 CHRAC1 chromatin accessibility complex 1 8 protein-coding CHARC1|CHARC15|CHRAC-1|CHRAC-15|CHRAC15|YCL1 chromatin accessibility complex protein 1|DNA polymerase epsilon subunit p15|chromatin accessibility complex 15 kDa protein|histone-fold protein CHRAC15 10 0.001369 9.588 1 1 +54112 GPR88 G protein-coupled receptor 88 1 protein-coding COCPMR|STRG probable G-protein coupled receptor 88|striatum-specific G-protein coupled receptor 12 0.001642 2.659 1 1 +54148 MRPL39 mitochondrial ribosomal protein L39 21 protein-coding C21orf92|L39mt|MRP-L5|MRPL5|MSTP003|PRED22|PRED66|RPML5 39S ribosomal protein L39, mitochondrial|39S ribosomal protein L5, mitochondrial|L5mt|MRP-L39 19 0.002601 8.526 1 1 +54149 C21orf91 chromosome 21 open reading frame 91 21 protein-coding C21orf14|C21orf38|CSSG1|EURL|YG81 protein EURL homolog|cold sore susceptibility gene 1|early undifferentiated retina and lens 19 0.002601 8.417 1 1 +54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 3 protein-coding DCNL1|DCUN1L1|RP42|SCCRO|SCRO|Tes3 DCN1-like protein 1|DCN1, defective in cullin neddylation 1, domain containing 1|DCUN1 domain-containing protein 1|RP42 homolog|defective in cullin neddylation protein 1-like protein 1|squamous cell carcinoma-related oncogene 25 0.003422 8.928 1 1 +54187 NANS N-acetylneuraminate synthase 9 protein-coding HEL-S-100|SAS|SEMDCG|SEMDG sialic acid synthase|N-acetylneuraminate-9-phosphate synthase|N-acetylneuraminic acid phosphate synthase|N-acetylneuraminic acid synthase|epididymis secretory protein Li 100|sialic acid phosphate synthase 14 0.001916 10.06 1 1 +54205 CYCS cytochrome c, somatic 7 protein-coding CYC|HCS|THC4 cytochrome c 3 0.0004106 11.48 1 1 +54206 ERRFI1 ERBB receptor feedback inhibitor 1 1 protein-coding GENE-33|MIG-6|MIG6|RALT ERBB receptor feedback inhibitor 1|mitogen-inducible gene 6 protein|receptor-associated late transducer 30 0.004106 10.46 1 1 +54207 KCNK10 potassium two pore domain channel subfamily K member 10 14 protein-coding K2p10.1|PPP1R97|TREK-2|TREK2 potassium channel subfamily K member 10|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|potassium channel, two pore domain subfamily K, member 10|protein phosphatase 1, regulatory subunit 97 75 0.01027 2.921 1 1 +54209 TREM2 triggering receptor expressed on myeloid cells 2 6 protein-coding TREM-2|Trem2a|Trem2b|Trem2c triggering receptor expressed on myeloid cells 2|triggering receptor expressed on monocytes 2|triggering receptor expressed on myeloid cells 2a 25 0.003422 7.599 1 1 +54210 TREM1 triggering receptor expressed on myeloid cells 1 6 protein-coding CD354|TREM-1 triggering receptor expressed on myeloid cells 1|triggering receptor expressed on monocytes 1 19 0.002601 4.983 1 1 +54212 SNTG1 syntrophin gamma 1 8 protein-coding G1SYN|SYN4 gamma-1-syntrophin|gamma1-syntrophin|syntrophin 4 130 0.01779 0.8903 1 1 +54221 SNTG2 syntrophin gamma 2 2 protein-coding G2SYN|SYN5 gamma-2-syntrophin|syntrophin-5 97 0.01328 1.127 1 1 +54328 GPR173 G protein-coupled receptor 173 X protein-coding SREB3 probable G-protein coupled receptor 173|super conserved receptor expressed in brain 3 25 0.003422 4.238 1 1 +54329 GPR85 G protein-coupled receptor 85 7 protein-coding SREB|SREB2 probable G-protein coupled receptor 85|seven transmembrane helix receptor|super conserved receptor expressed in brain 2 38 0.005201 4.785 1 1 +54331 GNG2 G protein subunit gamma 2 14 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-2|g gamma-I|guanine nucleotide binding protein (G protein), gamma 2|guanine nucleotide binding protein gamma 2|guanine nucleotide-binding protein G(I)/G(O) gamma-2 subunit 13 0.001779 8.374 1 1 +54332 GDAP1 ganglioside induced differentiation associated protein 1 8 protein-coding CMT4|CMT4A|CMTRIA ganglioside-induced differentiation-associated protein 1|Charcot-Marie-Tooth neuropathy 4A 27 0.003696 7.993 1 1 +54344 DPM3 dolichyl-phosphate mannosyltransferase subunit 3 1 protein-coding CDG1O dolichol-phosphate mannosyltransferase subunit 3|DPM synthase complex subunit 3|DPM synthase subunit 3|MPD synthase subunit 3|dolichol-phosphate mannose synthase subunit 3|dolichyl-phosphate beta-D-mannosyltransferase subunit 3|dolichyl-phosphate mannosyltransferase polypeptide 3|mannose-P-dolichol synthase subunit 3|prostin 1|testicular tissue protein Li 58 8 0.001095 8.691 1 1 +54345 SOX18 SRY-box 18 20 protein-coding HLTRS|HLTS transcription factor SOX-18|SRY (sex determining region Y)-box 18 6 0.0008212 7.319 1 1 +54346 UNC93A unc-93 homolog A (C. elegans) 6 protein-coding Unc-93A|dJ366N23.1|dJ366N23.2 protein unc-93 homolog A|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)|unc93 homolog A 52 0.007117 1.814 1 1 +54360 CYTL1 cytokine like 1 4 protein-coding C17|C4orf4 cytokine-like protein 1|cytokine-like protein C17 20 0.002737 4.231 1 1 +54361 WNT4 Wnt family member 4 1 protein-coding SERKAL|WNT-4 protein Wnt-4|wingless-type MMTV integration site family, member 4 17 0.002327 6.173 1 1 +54363 HAO1 hydroxyacid oxidase 1 20 protein-coding GOX|GOX1|HAOX1 hydroxyacid oxidase 1|(S)-2-hydroxy-acid oxidase|glycolate oxidase 1|hydroxyacid oxidase (glycolate oxidase) 1 54 0.007391 0.9296 1 1 +54386 TERF2IP TERF2 interacting protein 16 protein-coding DRIP5|RAP1 telomeric repeat-binding factor 2-interacting protein 1|RAP1 homolog|TERF2-interacting telomeric protein 1|TRF2-interacting telomeric RAP1 protein|dopamine receptor-interacting protein 5|hRap1|repressor/activator protein 1 homolog 28 0.003832 10.68 1 1 +54407 SLC38A2 solute carrier family 38 member 2 12 protein-coding ATA2|PRO1068|SAT2|SNAT2 sodium-coupled neutral amino acid transporter 2|amino acid transporter 2|amino acid transporter A2|protein 40-9-1|system A amino acid transporter 2|system A transporter 1|system N amino acid transporter 2 37 0.005064 11.93 1 1 +54413 NLGN3 neuroligin 3 X protein-coding HNL3 neuroligin-3|gliotactin homolog 87 0.01191 5.281 1 1 +54414 SIAE sialic acid acetylesterase 11 protein-coding AIS6|CSE-C|CSEC|LSE|YSG2 sialate O-acetylesterase|H-Lse|cytosolic sialic acid 9-O-acetylesterase homolog|sialic acid-specific acetylesterase II 19 0.002601 9.621 1 1 +54429 TAS2R5 taste 2 receptor member 5 7 protein-coding T2R5 taste receptor type 2 member 5|taste receptor, type 2, member 5 19 0.002601 2.731 1 1 +54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 2 protein-coding ERdj5|JPDI|MTHr|PDIA19 dnaJ homolog subfamily C member 10|DnaJ (Hsp40) homolog, subfamily C, member 10|ER-resident protein ERdj5|J-domain-containing protein disulfide isomerase-like protein|endoplasmic reticulum DNA J domain-containing protein 5|macrothioredoxin|protein disulfide isomerase family A, member 19 55 0.007528 11.02 1 1 +54432 YIPF1 Yip1 domain family member 1 1 protein-coding DJ167A19.1|FinGER1 protein YIPF1|YIP1 family member 1 28 0.003832 9.481 1 1 +54433 GAR1 GAR1 ribonucleoprotein 4 protein-coding NOLA1 H/ACA ribonucleoprotein complex subunit 1|GAR1 homolog, ribonucleoprotein|GAR1 ribonucleoprotein homolog|nucleolar protein family A member 1|nucleolar protein family A, member 1 (H/ACA small nucleolar RNPs)|snoRNP protein GAR1 17 0.002327 8.581 1 1 +54434 SSH1 slingshot protein phosphatase 1 12 protein-coding SSH1L protein phosphatase Slingshot homolog 1|SSH-like protein 1|hSSH-1L|slingshot homolog 1 63 0.008623 10.09 1 1 +54435 HCG4 HLA complex group 4 (non-protein coding) 6 ncRNA HCG4P10|HCGIV-10|HCGIV.9 HCGIV-10 pseudogene|HLA complex group 4 pseudogene 10 1 0.0001369 4.73 1 1 +54436 SH3TC1 SH3 domain and tetratricopeptide repeats 1 4 protein-coding - SH3 domain and tetratricopeptide repeat-containing protein 1|SH3 domain and tetratricopeptide repeats-containing protein 1 84 0.0115 8.746 1 1 +54437 SEMA5B semaphorin 5B 3 protein-coding SEMAG|SemG semaphorin-5B|sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B 124 0.01697 5.991 1 1 +54438 GFOD1 glucose-fructose oxidoreductase domain containing 1 6 protein-coding ADG-90|C6orf114 glucose-fructose oxidoreductase domain-containing protein 1 37 0.005064 5.684 1 1 +54439 RBM27 RNA binding motif protein 27 5 protein-coding ARRS1|Psc1|ZC3H18|ZC3H20 RNA-binding protein 27|acidic rich RS domain containing 1 94 0.01287 9.575 1 1 +54440 SASH3 SAM and SH3 domain containing 3 X protein-coding 753P9|CXorf9|HACS2|SH3D6C|SLY SAM and SH3 domain-containing protein 3|SH3 protein expressed in lymphocytes homolog 31 0.004243 7.88 1 1 +54441 STAG3L1 stromal antigen 3-like 1 (pseudogene) 7 pseudo STAG3L1P|STAG3L2|STAG3L3 STAG3-like protein 1 18 0.002464 5.889 1 1 +54442 KCTD5 potassium channel tetramerization domain containing 5 16 protein-coding - BTB/POZ domain-containing protein KCTD5|potassium channel tetramerisation domain containing 5 7 0.0009581 9.763 1 1 +54443 ANLN anillin actin binding protein 7 protein-coding FSGS8|Scraps|scra actin-binding protein anillin 78 0.01068 8.996 1 1 +54453 RIN2 Ras and Rab interactor 2 20 protein-coding MACS|RASSF4 ras and Rab interactor 2|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 58 0.007939 10.13 1 1 +54454 ATAD2B ATPase family, AAA domain containing 2B 2 protein-coding - ATPase family AAA domain-containing protein 2B 74 0.01013 8.214 1 1 +54455 FBXO42 F-box protein 42 1 protein-coding Fbx42|JFK F-box only protein 42|just one F-box and Kelch domain-containing protein 53 0.007254 9.008 1 1 +54456 MOV10L1 Mov10 RISC complex RNA helicase like 1 22 protein-coding CHAMP|DJ402G11.8 RNA helicase Mov10l1|MOV10-like protein 1|Mov10-like 1|Mov10l1, Moloney leukemia virus 10-like 1, homolog|cardiac helicase activated by MEF2C protein|moloney leukemia virus 10-like protein 1|putative helicase Mov10l1 82 0.01122 2.87 1 1 +54457 TAF7L TATA-box binding protein associated factor 7 like X protein-coding CT40|TAF2Q transcription initiation factor TFIID subunit 7-like|RNA polymerase II TBP-associated factor subunit Q|TAF7-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 50kDa|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 46 0.006296 2.002 1 1 +54458 PRR13 proline rich 13 12 protein-coding TXR1 proline-rich protein 13|taxane-resistance protein 6 0.0008212 11.04 1 1 +54460 MRPS21 mitochondrial ribosomal protein S21 1 protein-coding MDS016|MRP-S21|RPMS21 28S ribosomal protein S21, mitochondrial|S21mt|mitochondrial 28S ribosomal protein S21 10 0.001369 10.24 1 1 +54461 FBXW5 F-box and WD repeat domain containing 5 9 protein-coding Fbw5 F-box/WD repeat-containing protein 5|F-box and WD-40 domain-containing protein 5|WD repeat-containing F-box protein FBW5 35 0.004791 11.16 1 1 +54462 CCSER2 coiled-coil serine rich protein 2 10 protein-coding FAM190B|Gcap14|KIAA1128|bA486O22.1 serine-rich coiled-coil domain-containing protein 2|family with sequence similarity 190, member B|protein FAM190B|protein GCAP14 homolog 44 0.006022 9.988 1 1 +54463 FAM134B family with sequence similarity 134 member B 5 protein-coding JK-1|JK1 reticulophagy receptor FAM134B|protein FAM134B 23 0.003148 8.162 1 1 +54464 XRN1 5'-3' exoribonuclease 1 3 protein-coding SEP1 5'-3' exoribonuclease 1|strand-exchange protein 1 homolog 117 0.01601 9.685 1 1 +54465 ETAA1 Ewing tumor associated antigen 1 2 protein-coding ETAA16 ewing's tumor-associated antigen 1|ETAA16|ewing's tumor-associated antigen 16 63 0.008623 8.279 1 1 +54466 SPIN2A spindlin family member 2A X protein-coding DXF34|SPIN2|TDRD25|dJ323P24.1 spindlin-2A|centromeric spin2 copy|spindlin homolog 2|spindlin-like protein 2|spindlin-like protein 2A 6 0.0008212 1.207 1 1 +54467 ANKIB1 ankyrin repeat and IBR domain containing 1 7 protein-coding - ankyrin repeat and IBR domain-containing protein 1 64 0.00876 10.27 1 1 +54468 MIOS meiosis regulator for oocyte development 7 protein-coding MIO|Sea4 WD repeat-containing protein mio|H_DJ1159O04.1|WUGSC:H_DJ1159O04.1|missing oocyte, meiosis regulator, homolog 57 0.007802 9.076 1 1 +54469 ZFAND6 zinc finger AN1-type containing 6 15 protein-coding AWP1|ZA20D3|ZFAND5B AN1-type zinc finger protein 6|protein associated with PRK1|zinc finger, A20 domain containing 3|zinc finger, AN1-type domain 6 17 0.002327 10.37 1 1 +54470 ARMCX6 armadillo repeat containing, X-linked 6 X protein-coding GASP10 protein ARMCX6 22 0.003011 7.549 1 1 +54471 MIEF1 mitochondrial elongation factor 1 22 protein-coding HSU79252|MID51|SMCR7L|dJ1104E15.3 mitochondrial dynamics protein MID51|SMCR7-like protein|Smith-Magenis syndrome chromosome region, candidate 7-like|mitochondrial dynamic protein MID51|mitochondrial dynamic protein of 51 kDa|mitochondrial dynamics protein of 51 kDa|smith-Magenis syndrome chromosomal region candidate gene 7 protein-like 35 0.004791 10.04 1 1 +54472 TOLLIP toll interacting protein 11 protein-coding IL-1RAcPIP toll-interacting protein|adapter protein 19 0.002601 10.75 1 1 +54474 KRT20 keratin 20 17 protein-coding CD20|CK-20|CK20|K20|KRT21 keratin, type I cytoskeletal 20|cytokeratin 20|keratin 20, type I|protein IT 35 0.004791 1.921 1 1 +54475 NLE1 notchless homolog 1 17 protein-coding Nle notchless protein homolog 1|Notchless gene homolog 31 0.004243 8.472 1 1 +54476 RNF216 ring finger protein 216 7 protein-coding CAHH|TRIAD3|U7I1|UBCE7IP1|ZIN E3 ubiquitin-protein ligase RNF216|triad domain-containing protein 3|ubiquitin-conjugating enzyme 7-interacting protein 1|zinc finger protein inhibiting NF-kappa-B 67 0.009171 10.34 1 1 +54477 PLEKHA5 pleckstrin homology domain containing A5 12 protein-coding PEPP-2|PEPP2 pleckstrin homology domain-containing family A member 5|PH domain-containing family A member 5|phosphoinositol 3-phosphate-binding protein-2|pleckstrin homology domain containing, family A member 5 101 0.01382 9.383 1 1 +54478 FAM64A family with sequence similarity 64 member A 17 protein-coding CATS|RCS1 protein FAM64A|CALM interacting protein expressed in thymus and spleen|CALM-interactor expressed in thymus and spleen|regulator of chromosome segregation 1|regulator of chromosome segregation protein 1 13 0.001779 6.377 1 1 +54480 CHPF2 chondroitin polymerizing factor 2 7 protein-coding CSGLCA-T|CSGlcAT|ChSy-3|chPF-2 chondroitin sulfate glucuronyltransferase|N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase|chondroitin synthase-3 53 0.007254 10.58 1 1 +54482 TRMT13 tRNA methyltransferase 13 homolog 1 protein-coding CCDC76 tRNA:m(4)X modification enzyme TRM13 homolog|coiled-coil domain containing 76|coiled-coil domain-containing protein 76|tRNA [Gm4] methyltransferase|tRNA guanosine-2'-O-methyltransferase TRM13 homolog 36 0.004927 7.795 1 1 +54487 DGCR8 DGCR8, microprocessor complex subunit 22 protein-coding C22orf12|DGCRK6|Gy1|pasha microprocessor complex subunit DGCR8|DiGeorge syndrome critical region 8|DiGeorge syndrome critical region gene 8 67 0.009171 9.57 1 1 +54490 UGT2B28 UDP glucuronosyltransferase family 2 member B28 4 protein-coding - UDP-glucuronosyltransferase 2B28|UDP glucuronosyltransferase 2 family, polypeptide B28|UDP glycosyltransferase 2 family, polypeptide B28|UDPGT 2B28 71 0.009718 0.7029 1 1 +54491 FAM105A family with sequence similarity 105 member A 5 protein-coding NET20 inactive ubiquitin thioesterase FAM105A|protein FAM105A 26 0.003559 8.091 1 1 +54492 NEURL1B neuralized E3 ubiquitin protein ligase 1B 5 protein-coding NEURL3|hNeur2|neur2 E3 ubiquitin-protein ligase NEURL1B|E3 ubiquitin-protein ligase NEURL3|neuralized 2 alternative protein|neuralized homolog 1B|neuralized-2|neuralized-like protein 1B|neuralized-like protein 3 3 0.0004106 9.537 1 1 +54494 C11orf71 chromosome 11 open reading frame 71 11 protein-coding URLC7 uncharacterized protein C11orf71|up-regulated in lung cancer 7 10 0.001369 7.855 1 1 +54495 TMX3 thioredoxin related transmembrane protein 3 18 protein-coding PDIA13|TXNDC10 protein disulfide-isomerase TMX3|protein disulfide isomerase family A, member 13|thioredoxin domain containing 10|thioredoxin domain-containing protein 10 41 0.005612 9.777 1 1 +54496 PRMT7 protein arginine methyltransferase 7 16 protein-coding - protein arginine N-methyltransferase 7|[Myelin basic protein]-arginine N-methyltransferase PRMT7|histone-arginine N-methyltransferase PRMT7|myelin basic protein-arginine N-methyltransferase 41 0.005612 9.123 1 1 +54497 HEATR5B HEAT repeat containing 5B 2 protein-coding - HEAT repeat-containing protein 5B 123 0.01684 9.477 1 1 +54498 SMOX spermine oxidase 20 protein-coding C20orf16|PAO|PAO-1|PAO1|PAOH|PAOH1|SMO spermine oxidase|flavin containing amine oxidase|flavin-containing spermine oxidase|polyamine oxidase 1|putative cyclin G1 interacting protein 46 0.006296 8.51 1 1 +54499 TMCO1 transmembrane and coiled-coil domains 1 1 protein-coding HP10122|PCIA3|PNAS-136|TMCC4 calcium load-activated calcium channel|CLAC channel|putative membrane protein|transmembrane and coiled-coil domain-containing protein 1|transmembrane and coiled-coil domains 4|xenogeneic cross-immune protein PCIA3 21 0.002874 11.2 1 1 +54502 RBM47 RNA binding motif protein 47 4 protein-coding NET18 RNA-binding protein 47 75 0.01027 10.3 1 1 +54503 ZDHHC13 zinc finger DHHC-type containing 13 11 protein-coding HIP14L|HIP3RP palmitoyltransferase ZDHHC13|DHHC-13|HIP14-related protein|huntingtin interacting protein HIP3RP|huntingtin-interacting protein 14-related protein|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 26 0.003559 8.533 1 1 +54504 CPVL carboxypeptidase, vitellogenic like 7 protein-coding HVLP probable serine carboxypeptidase CPVL|CP-Mac carboxypeptidase|VCP-like protein|carboxypeptidase WUG|vitellogenic carboxypeptidase-like protein 41 0.005612 8.91 1 1 +54505 DHX29 DExH-box helicase 29 5 protein-coding DDX29 ATP-dependent RNA helicase DHX29|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 29|DEAH (Asp-Glu-Ala-His) box polypeptide 29|DEAH box protein 29|DEAH-box helicase 29|nucleic acid helicase DDXx 57 0.007802 9.659 1 1 +54507 ADAMTSL4 ADAMTS like 4 1 protein-coding ADAMTSL-4|ECTOL2|TSRC1 ADAMTS-like protein 4|thrombospondin repeat-containing protein 1 100 0.01369 7.958 1 1 +54508 EPB41L4A-AS2 EPB41L4A antisense RNA 2 (head to head) 5 ncRNA - - 4.153 0 1 +54509 RHOF ras homolog family member F, filopodia associated 12 protein-coding ARHF|RIF rho-related GTP-binding protein RhoF|ras homolog family member F (in filopodia)|ras homolog gene family, member F (in filopodia)|rho family GTPase Rif|rho in filopodia 10 0.001369 7.709 1 1 +54510 PCDH18 protocadherin 18 4 protein-coding PCDH68L protocadherin-18|protocadherin 68-like protein 149 0.02039 7.643 1 1 +54511 HMGCLL1 3-hydroxymethyl-3-methylglutaryl-CoA lyase like 1 6 protein-coding bA418P12.1|er-cHL 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 48 0.00657 2.68 1 1 +54512 EXOSC4 exosome component 4 8 protein-coding RRP41|RRP41A|Rrp41p|SKI6|Ski6p|hRrp41p|p12A exosome complex component RRP41|exosome complex exonuclease RRP41|exosome component Rrp41|ribosomal RNA-processing protein 41 18 0.002464 9.008 1 1 +54514 DDX4 DEAD-box helicase 4 5 protein-coding VASA probable ATP-dependent RNA helicase DDX4|DEAD (Asp-Glu-Ala-Asp) box polypeptide 4|DEAD box protein 4|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 4|vasa homolog 68 0.009307 0.5273 1 1 +54516 MTRF1L mitochondrial translational release factor 1 like 6 protein-coding HMRF1L|MRF1L|mtRF1a peptide chain release factor 1-like, mitochondrial|mitochondrial release factor 1 like 27 0.003696 7.918 1 1 +54517 PUS7 pseudouridylate synthase 7 (putative) 7 protein-coding - pseudouridylate synthase 7 homolog 56 0.007665 8.549 1 1 +54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein 10 protein-coding INAG1|PREL1|RARP1|RIAM amyloid beta A4 precursor protein-binding family B member 1-interacting protein|APBB1-interacting protein 1|PREL-1|RARP-1|Rap1-GTP-interacting adaptor molecule|Rap1-interacting adaptor molecule|proline rich EVH1 ligand 1|proline-rich protein 73|rap1-GTP-interacting adapter molecule|retinoic acid-responsive proline-rich protein 1 74 0.01013 7.726 1 1 +54520 CCDC93 coiled-coil domain containing 93 2 protein-coding - coiled-coil domain-containing protein 93 57 0.007802 9.499 1 1 +54521 WDR44 WD repeat domain 44 X protein-coding RAB11BP|RPH11 WD repeat-containing protein 44|rabphilin-11 76 0.0104 8.552 1 1 +54522 ANKRD16 ankyrin repeat domain 16 10 protein-coding - ankyrin repeat domain-containing protein 16 20 0.002737 7.309 1 1 +54529 ASNSD1 asparagine synthetase domain containing 1 2 protein-coding NBLA00058|NS3TP1 asparagine synthetase domain-containing protein 1|HCV NS3-transactivated protein 1 40 0.005475 9.777 1 1 +54531 MIER2 MIER family member 2 19 protein-coding KIAA1193|Mi-er2 mesoderm induction early response protein 2|mesoderm induction early response 1, family member 2 37 0.005064 8.891 1 1 +54532 USP53 ubiquitin specific peptidase 53 4 protein-coding - inactive ubiquitin carboxyl-terminal hydrolase 53|inactive ubiquitin-specific peptidase 53|ubiquitin specific protease 53|ubiquitin specific proteinase 53 64 0.00876 8.949 1 1 +54534 MRPL50 mitochondrial ribosomal protein L50 9 protein-coding MRP-L50 39S ribosomal protein L50, mitochondrial|L50mt|mitochondrial 39S ribosomal protein L50 20 0.002737 8.752 1 1 +54535 CCHCR1 coiled-coil alpha-helical rod protein 1 6 protein-coding C6orf18|HCR|SBP coiled-coil alpha-helical rod protein 1|HCR (a-helix coiled-coil rod homologue)|StAR-binding protein|alpha-helical coiled-coil rod protein|pg8|putative gene 8 protein 54 0.007391 9.029 1 1 +54536 EXOC6 exocyst complex component 6 10 protein-coding EXOC6A|SEC15|SEC15L|SEC15L1|SEC15L3|Sec15p exocyst complex component 6|SEC15-like 1|SEC15-like protein 3|exocyst complex component Sec15A|rsec15-like protein 49 0.006707 8.625 1 1 +54537 FAM35A family with sequence similarity 35 member A 10 protein-coding FAM35A1|bA163M19.1 protein FAM35A 31 0.004243 9.069 1 1 +54538 ROBO4 roundabout guidance receptor 4 11 protein-coding ECSM4|MRB roundabout homolog 4|roundabout homolog 4, magic roundabout|roundabout, axon guidance receptor, homolog 4 92 0.01259 8.527 1 1 +54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 X protein-coding CI-ESSS|ESSS|LSDMCA3|NP17.3|Np15|P17.3 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial|NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, 17.3kDa|NADH-ubiquinone oxidoreductase ESSS subunit|complex I NP17.3 subunit|complex I-ESSS|neuronal protein 17.3 13 0.001779 10.85 1 1 +54540 FAM193B family with sequence similarity 193 member B 5 protein-coding IRIZIO protein FAM193B 35 0.004791 9.33 1 1 +54541 DDIT4 DNA damage inducible transcript 4 10 protein-coding Dig2|REDD-1|REDD1 DNA damage-inducible transcript 4 protein|HIF-1 responsive protein RTP801|protein regulated in development and DNA damage response 1 18 0.002464 11.47 1 1 +54542 RC3H2 ring finger and CCCH-type domains 2 9 protein-coding MNAB|RNF164 roquin-2|RING finger protein 164|membrane associated DNA binding protein|membrane-associated nucleic acid-binding protein|ring finger and CCCH-type zinc finger domain-containing protein 2|ring finger and CCCH-type zinc finger domains 2 68 0.009307 8.306 1 1 +54543 TOMM7 translocase of outer mitochondrial membrane 7 7 protein-coding TOM7 mitochondrial import receptor subunit TOM7 homolog|6.2 kd protein|translocase of outer membrane 7 kDa subunit homolog|translocase of outer mitochondrial membrane 7 homolog 7 0.0009581 10.9 1 1 +54544 CRCT1 cysteine rich C-terminal 1 1 protein-coding C1orf42|NICE-1 cysteine-rich C-terminal protein 1|protein NICE-1 8 0.001095 1.328 1 1 +54545 MTMR12 myotubularin related protein 12 5 protein-coding 3-PAP|PIP3AP myotubularin-related protein 12|3-phosphatase adapter protein|3-phosphatase adapter subunit|phosphatidylinositol 3 phosphate 3-phosphatase adapter subunit|phosphatidylinositol-3 phosphate 3-phosphatase adaptor subunit|phosphatidylinositol-3-phosphate associated protein 57 0.007802 9.778 1 1 +54546 RNF186 ring finger protein 186 1 protein-coding - RING finger protein 186 11 0.001506 1.946 1 1 +54549 SDK2 sidekick cell adhesion molecule 2 17 protein-coding - protein sidekick-2|sidekick homolog 2 146 0.01998 6.449 1 1 +54550 NECAB2 N-terminal EF-hand calcium binding protein 2 16 protein-coding EFCBP2|stip-2 N-terminal EF-hand calcium-binding protein 2|EF-hand calcium-binding protein 2|neuronal calcium binding 2|neuronal calcium-binding protein 2|synaptotagmin-interacting protein 2 20 0.002737 3.07 1 1 +54551 MAGEL2 MAGE family member L2 15 protein-coding NDNL1|PWLS|SHFYNG|nM15 MAGE-like protein 2|melanoma antigen family L2|necdin-like protein 1|protein nM15 110 0.01506 3.613 1 1 +54552 GNL3L G protein nucleolar 3 like X protein-coding GNL3B guanine nucleotide-binding protein-like 3-like protein|G protein nucleolar 3B|guanine nucleotide binding protein-like 3 (nucleolar)-like|novel GTPase 46 0.006296 9.42 1 1 +54554 WDR5B WD repeat domain 5B 3 protein-coding - WD repeat-containing protein 5B 19 0.002601 8.082 1 1 +54555 DDX49 DEAD-box helicase 49 19 protein-coding R27090_2 probable ATP-dependent RNA helicase DDX49|DEAD (Asp-Glu-Ala-Asp) box polypeptide 49|DEAD box protein 49 20 0.002737 10.01 1 1 +54556 ING3 inhibitor of growth family member 3 7 protein-coding Eaf4|ING2|MEAF4|p47ING3 inhibitor of growth protein 3 25 0.003422 7.799 1 1 +54557 SGTB small glutamine rich tetratricopeptide repeat containing beta 5 protein-coding SGT2 small glutamine-rich tetratricopeptide repeat-containing protein beta|beta-SGT|small glutamine rich protein with tetratricopeptide repeats 2|small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta 20 0.002737 7.704 1 1 +54558 SPATA6 spermatogenesis associated 6 1 protein-coding HASH|SRF-1|SRF1 spermatogenesis-associated protein 6|spermatogenesis-related factor-1|testicular tissue protein Li 178 36 0.004927 5.746 1 1 +54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B 9 protein-coding CG1|EHM2 band 4.1-like protein 4B|FERM-containing protein CG1 61 0.008349 8.421 1 1 +54567 DLL4 delta like canonical Notch ligand 4 15 protein-coding AOS6|hdelta2 delta-like protein 4|delta 4|delta ligand 4|delta-like 4 homolog|delta-like 4 protein|delta4|drosophila Delta homolog 4|notch ligand DLL4|notch ligand delta-2 30 0.004106 8.017 1 1 +54575 UGT1A10 UDP glucuronosyltransferase family 1 member A10 2 protein-coding UDPGT|UGT-1J|UGT1-10|UGT1.10|UGT1J UDP-glucuronosyltransferase 1-10|UDP glucuronosyltransferase 1 family, polypeptide A10|UDP glycosyltransferase 1 family, polypeptide A10|UDP-glucuronosyltransferase 1-J|UDP-glucuronosyltransferase 1A10|UDPGT 1-10 24 0.003285 2.054 1 1 +54576 UGT1A8 UDP glucuronosyltransferase family 1 member A8 2 protein-coding UDPGT|UDPGT 1-8|UGT-1H|UGT1-08|UGT1.8|UGT1A8S|UGT1H UDP-glucuronosyltransferase 1-8|UDP glucuronosyltransferase 1 family, polypeptide A8|UDP glycosyltransferase 1 family, polypeptide A8|UDP-glucuronosyltransferase 1 family polypeptide A8s|UDP-glucuronosyltransferase 1-H|UDP-glucuronosyltransferase 1A8 20 0.002737 1.348 1 1 +54577 UGT1A7 UDP glucuronosyltransferase family 1 member A7 2 protein-coding UDPGT|UDPGT 1-7|UGT-1G|UGT1-07|UGT1.7|UGT1G UDP-glucuronosyltransferase 1-7|UDP glucuronosyltransferase 1 family, polypeptide A7|UDP glycosyltransferase 1 family, polypeptide A7|UDP-glucuronosyltransferase 1 family polypeptide A7s|UDP-glucuronosyltransferase 1-G|UDP-glucuronosyltransferase 1A7 19 0.002601 1.166 1 1 +54578 UGT1A6 UDP glucuronosyltransferase family 1 member A6 2 protein-coding GNT1|HLUGP|HLUGP1|UDPGT|UDPGT 1-6|UGT1|UGT1A6S|UGT1F UDP-glucuronosyltransferase 1-6|UDP glucuronosyltransferase 1 family, polypeptide A6|UDP glycosyltransferase 1 family, polypeptide A6|UDP-glucuronosyltransferase 1 family polypeptide A6s|UDP-glucuronosyltransferase 1-F|UDP-glucuronosyltransferase 1A6|UGT-1F|UGT1*6|UGT1-06|UGT1.6|phenol-metabolizing UDP-glucuronosyltransferase 31 0.004243 4.671 1 1 +54579 UGT1A5 UDP glucuronosyltransferase family 1 member A5 2 protein-coding UDPGT|UDPGT 1-5|UGT1E UDP-glucuronosyltransferase 1-5|UDP glucuronosyltransferase 1 family, polypeptide A5|UDP glycosyltransferase 1 family, polypeptide A5|UDP-glucuronosyltransferase 1 family polypeptide A5s|UDP-glucuronosyltransferase 1-E|UDP-glucuronosyltransferase 1A5|UGT-1E|UGT1*5 25 0.003422 0.4887 1 1 +54581 SCAND2P SCAN domain containing 2 pseudogene 15 pseudo SCAND2 SCAN domain-containing 2|egl nine homolog 1 pseudogene 10 0.001369 7.945 1 1 +54583 EGLN1 egl-9 family hypoxia inducible factor 1 1 protein-coding C1orf12|ECYT3|HALAH|HIF-PH2|HIFPH2|HPH-2|HPH2|PHD2|SM20|ZMYND6 egl nine homolog 1|HIF-prolyl hydroxylase 2|egl nine-like protein 1|hypoxia-inducible factor prolyl hydroxylase 2|prolyl hydroxylase domain-containing protein 2|zinc finger MYND domain-containing protein 6 20 0.002737 10.39 1 1 +54584 GNB1L G protein subunit beta 1 like 22 protein-coding DGCRK3|FKSG1|GY2|WDR14|WDVCF guanine nucleotide-binding protein subunit beta-like protein 1|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 (G protein), beta polypeptide 1-like|guanine nucleotide binding protein beta-subunit-like polypeptide 31 0.004243 6.941 1 1 +54585 LZTFL1 leucine zipper transcription factor like 1 3 protein-coding BBS17 leucine zipper transcription factor-like protein 1 21 0.002874 8.77 1 1 +54586 EQTN equatorin 9 protein-coding AFAF|C9orf11|SPACA8 equatorin|Acrosome formation associated factor|acrosome formation-associated factor|equatorin, sperm acrosome associated|sperm acrosome associated 8 26 0.003559 0.4978 1 1 +54587 MXRA8 matrix remodeling associated 8 1 protein-coding - matrix-remodeling-associated protein 8|limitrin|matrix-remodelling associated 8 38 0.005201 9.888 1 1 +54596 L1TD1 LINE1 type transposase domain containing 1 1 protein-coding ECAT11 LINE-1 type transposase domain-containing protein 1|ES cell-associated protein 11|LINE-1 type transposase domain containing 1 52 0.007117 2.379 1 1 +54600 UGT1A9 UDP glucuronosyltransferase family 1 member A9 2 protein-coding HLUGP4|LUGP4|UDPGT|UDPGT 1-9|UGT-1I|UGT1-09|UGT1-9|UGT1.9|UGT1A9S|UGT1AI|UGT1I UDP-glucuronosyltransferase 1-9|UDP glucuronosyltransferase 1 family, polypeptide A9|UDP glycosyltransferase 1 family, polypeptide A9|UDP-glucuronosyltransferase 1 family polypeptide A9s|UDP-glucuronosyltransferase 1-I|UDP-glucuronosyltransferase 1A9 24 0.003285 2.902 1 1 +54602 NDFIP2 Nedd4 family interacting protein 2 13 protein-coding N4WBP5A NEDD4 family-interacting protein 2|MAPK-activating protein PM04 PM05 PM06 PM07|NEDD4 WW domain-binding protein 5A|NF-kappa-B-activating protein 413|putative MAPK-activating protein PM04/PM05/PM06/PM07|putative NF-kappa-B-activating protein 413 15 0.002053 9.929 1 1 +54606 DDX56 DEAD-box helicase 56 7 protein-coding DDX21|DDX26|NOH61 probable ATP-dependent RNA helicase DDX56|61-kd nucleolar helicase|ATP-dependent 61 kDa nucleolar RNA helicase|DEAD (Asp-Glu-Ala-Asp) box helicase 56|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|putative nucleolar RNA helicase 29 0.003969 10.67 1 1 +54617 INO80 INO80 complex subunit 15 protein-coding INO80A|INOC1|hINO80 DNA helicase INO80|INO80 complex subunit A|INO80 homolog|homolog of yeast INO80|putative DNA helicase INO80 complex homolog 1 97 0.01328 9.597 1 1 +54619 CCNJ cyclin J 10 protein-coding bA690P14.1 cyclin-J 18 0.002464 7.401 1 1 +54620 FBXL19 F-box and leucine rich repeat protein 19 16 protein-coding CXXC11|Fbl19|JHDM1C F-box/LRR-repeat protein 19|jumonji C domain-containing histone demethylase 1C 32 0.00438 9.156 1 1 +54621 VSIG10 V-set and immunoglobulin domain containing 10 12 protein-coding - V-set and immunoglobulin domain-containing protein 10 36 0.004927 8.912 1 1 +54622 ARL15 ADP ribosylation factor like GTPase 15 5 protein-coding ARFRP2 ADP-ribosylation factor-like protein 15|ADP-ribosylation factor-like 15|ADP-ribosylation factor-related protein 2|ARF-related protein 2 17 0.002327 7.796 1 1 +54623 PAF1 PAF1 homolog, Paf1/RNA polymerase II complex component 19 protein-coding F23149_1|PD2 RNA polymerase II-associated factor 1 homolog|Paf1, RNA polymerase II associated factor, homolog|pancreatic differentiation protein 2 37 0.005064 10.6 1 1 +54625 PARP14 poly(ADP-ribose) polymerase family member 14 3 protein-coding ARTD8|BAL2|PARP-14|pART8 poly [ADP-ribose] polymerase 14|ADP-ribosyltransferase diphtheria toxin-like 8|B-aggressive lymphoma 2|b aggressive lymphoma protein 2|collaborator of STAT6 115 0.01574 11 1 1 +54626 HES2 hes family bHLH transcription factor 2 1 protein-coding bHLHb40 transcription factor HES-2|class B basic helix-loop-helix protein 40|hairy and enhancer of split 2 2 0.0002737 5.352 1 1 +54627 MAP10 microtubule associated protein 10 1 protein-coding KIAA1383|MTR120 microtubule-associated protein 10|microtubule regulator 120 KDa|microtubule regulator of 120 KDa 65 0.008897 5.959 1 1 +54629 FAM63B family with sequence similarity 63 member B 15 protein-coding - protein FAM63B 28 0.003832 7.378 1 1 +54657 UGT1A4 UDP glucuronosyltransferase family 1 member A4 2 protein-coding HUG-BR2|UDPGT|UDPGT 1-4|UGT-1D|UGT1-04|UGT1.4|UGT1A4S|UGT1D UDP-glucuronosyltransferase 1-4|UDP glucuronosyltransferase 1 family, polypeptide A4|UDP glycosyltransferase 1 family, polypeptide A4|UDP-glucuronosyltransferase 1 family polypeptide A4s|UDP-glucuronosyltransferase 1-D|UDP-glucuronosyltransferase 1A4|bilirubin UDP-glucuronosyltransferase isozyme 2|bilirubin-specific UDPGT isozyme 2 29 0.003969 0.8686 1 1 +54658 UGT1A1 UDP glucuronosyltransferase family 1 member A1 2 protein-coding BILIQTL1|GNT1|HUG-BR1|UDPGT|UDPGT 1-1|UGT1|UGT1A UDP-glucuronosyltransferase 1-1|UDP glucuronosyltransferase 1 family, polypeptide A1|UDP glycosyltransferase 1 family, polypeptide A1|UDP-glucuronosyltransferase 1-A|UDP-glucuronosyltransferase 1A1|UGT-1A|UGT1*1|UGT1-01|UGT1.1|bilirubin UDP-glucuronosyltranserase|bilirubin UDP-glucuronosyltransferase 1-1|bilirubin UDP-glucuronosyltransferase isozyme 1|bilirubin-specific UDPGT isozyme 1 73 0.009992 2.052 1 1 +54659 UGT1A3 UDP glucuronosyltransferase family 1 member A3 2 protein-coding UDPGT|UDPGT 1-3|UGT-1C|UGT1-03|UGT1.3|UGT1A3S|UGT1C UDP-glucuronosyltransferase 1-3|UDP glucuronosyltransferase 1 family, polypeptide A3|UDP glycosyltransferase 1 family, polypeptide A3|UDP-glucuronosyltransferase 1 family polypeptide A3s|UDP-glucuronosyltransferase 1-C|UDP-glucuronosyltransferase 1A3|UGT1*3 25 0.003422 1.228 1 1 +54660 PCDHB18P protocadherin beta 18 pseudogene 5 pseudo PCDH-psi2|PCDHB18 protocadherin beta pseudogene 80 0.01095 3.022 1 1 +54661 PCDHB17P protocadherin beta 17 pseudogene 5 pseudo ME4|PCDH-psi1|PCDHB17 - 18 0.002464 2.293 1 1 +54662 TBC1D13 TBC1 domain family member 13 9 protein-coding - TBC1 domain family member 13 24 0.003285 9.785 1 1 +54663 WDR74 WD repeat domain 74 11 protein-coding - WD repeat-containing protein 74|NOP seven-associated protein 1 17 0.002327 9.472 1 1 +54664 TMEM106B transmembrane protein 106B 7 protein-coding - transmembrane protein 106B 17 0.002327 10.53 1 1 +54665 RSBN1 round spermatid basic protein 1 1 protein-coding ROSBIN round spermatid basic protein 1 54 0.007391 8.892 1 1 +54674 LRRN3 leucine rich repeat neuronal 3 7 protein-coding FIGLER5|NLRR-3|NLRR3 leucine-rich repeat neuronal protein 3|fibronectin type III, immunoglobulin and leucine rich repeat domains 5|leucine-rich repeat protein, neuronal 3|neuronal leucine-rich repeat protein 3 92 0.01259 5.021 1 1 +54675 CRLS1 cardiolipin synthase 1 20 protein-coding C20orf155|CLS|CLS1|GCD10|dJ967N21.6 cardiolipin synthase (CMP-forming) 13 0.001779 10.03 1 1 +54676 GTPBP2 GTP binding protein 2 6 protein-coding - GTP-binding protein 2 23 0.003148 9.959 1 1 +54677 CROT carnitine O-octanoyltransferase 7 protein-coding COT peroxisomal carnitine O-octanoyltransferase|peroxisomal carnitine acyltransferase 76 0.0104 8.837 1 1 +54680 ZNHIT6 zinc finger HIT-type containing 6 1 protein-coding BCD1|C1orf181|NY-BR-75 box C/D snoRNA protein 1|box C/D snoRNA essential 1 homolog|serologically defined breast cancer antigen NY-BR-75|zinc finger HIT domain-containing protein 6|zinc finger, HIT type 6 28 0.003832 8.654 1 1 +54681 P4HTM prolyl 4-hydroxylase, transmembrane 3 protein-coding EGLN4|HIFPH4|P4H-TM|PH-4|PH4|PHD4 transmembrane prolyl 4-hydroxylase|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 hydroxylase 4|proline 4-hydroxylase|prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) 50 0.006844 9.358 1 1 +54682 MANSC1 MANSC domain containing 1 12 protein-coding 9130403P13Rik|LOH12CR3 MANSC domain-containing protein 1|loss of heterozygosity 12 chromosomal region 3 protein 28 0.003832 9.226 1 1 +54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor 16 protein-coding A-270G1.2|TIFIA RNA polymerase I-specific transcription initiation factor RRN3|RRN3 RNA polymerase I transcription factor homolog|TIF-IA|transcription initiation factor IA|transcription initiation factor TIF-IA 43 0.005886 10.17 1 1 +54704 PDP1 pyruvate dehyrogenase phosphatase catalytic subunit 1 8 protein-coding PDH|PDP|PDPC|PPM2A|PPM2C pyruvate dehyrogenase phosphatase catalytic subunit 1|PDP 1|PDPC 1|[Pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 1, mitochondrial|protein phosphatase 2C, magnesium-dependent, catalytic subunit|protein phosphatase, Mg2+/Mn2+ dependent 2A|pyruvate dehydrogenase (Lipoamide) phosphatase-phosphatase|pyruvate dehydrogenase phosphatase catalytic subunit 1 36 0.004927 9.498 1 1 +54707 GPN2 GPN-loop GTPase 2 1 protein-coding ATPBD1B GPN-loop GTPase 2|ATP-binding domain 1 family member B 21 0.002874 8.202 1 1 +54708 MARCH5 membrane associated ring-CH-type finger 5 10 protein-coding MARCH-V|MITOL|RNF153 E3 ubiquitin-protein ligase MARCH5|membrane associated ring finger 5|membrane-associated RING finger protein 5|membrane-associated RING-CH protein V|membrane-associated ring finger (C3HC4) 5|mitochondrial ubiquitin ligase|ring finger protein 153 16 0.00219 9.817 1 1 +54714 CNGB3 cyclic nucleotide gated channel beta 3 8 protein-coding ACHM1 cyclic nucleotide-gated cation channel beta-3|CNG channel beta-3|cone photoreceptor cGMP-gated cation channel beta-subunit|cyclic nucleotide-gated cation channel modulatory subunit 129 0.01766 1.205 1 1 +54715 RBFOX1 RNA binding protein, fox-1 homolog 1 16 protein-coding 2BP1|A2BP1|FOX-1|FOX1|HRNBP1 RNA binding protein fox-1 homolog 1|RNA binding protein, fox-1 homolog (C. elegans) 1|ataxin 2-binding protein 1|fox-1 homolog A|fox-1-like RNA-binding protein 1|hexaribonucleotide binding protein 1 isoform alpha|hexaribonucleotide binding protein 1 isoform beta|hexaribonucleotide-binding protein 1 104 0.01423 2.079 1 1 +54716 SLC6A20 solute carrier family 6 member 20 3 protein-coding SIT1|XT3|Xtrp3 sodium- and chloride-dependent transporter XTRP3|X transporter protein 3|neurotransmitter transporter RB21A|orphan transporter XT3|sodium/imino-acid transporter 1|solute carrier family 6 (neurotransmitter transporter), member 20|solute carrier family 6 (proline IMINO transporter), member 20|transporter rB21A homolog 30 0.004106 3.979 1 1 +54718 BTN2A3P butyrophilin subfamily 2 member A3, pseudogene 6 pseudo BTN2.3|BTN2A3 butyrophilin, subfamily 2, member A pseudogene 110 0.01506 4.329 1 1 +54726 OTUD4 OTU deubiquitinase 4 4 protein-coding DUBA6|HIN1|HSHIN1 OTU domain-containing protein 4|HIV-1 induced protein HIN-1 73 0.009992 9.893 1 1 +54732 TMED9 transmembrane p24 trafficking protein 9 5 protein-coding GMP25|HSGP25L2G|p24a2|p24alpha2|p25 transmembrane emp24 domain-containing protein 9|glycoprotein 25L2|p24 family protein alpha-2|transmembrane emp24 protein transport domain containing 9 9 0.001232 11.97 1 1 +54733 SLC35F2 solute carrier family 35 member F2 11 protein-coding HSNOV1 solute carrier family 35 member F2|lung squamous cell cancer related protein LSCC-3 28 0.003832 8.598 1 1 +54734 RAB39A RAB39A, member RAS oncogene family 11 protein-coding RAB39 ras-related protein Rab-39A|RAB39, member RAS oncogene family|rab-39|rab-related GTP-binding protein 15 0.002053 2.98 1 1 +54737 MPHOSPH8 M-phase phosphoprotein 8 13 protein-coding HSMPP8|TWA3|mpp8 M-phase phosphoprotein 8|M-phase phosphoprotein, mpp|M-phase phosphoprotein, mpp8|two hybrid-associated protein 3 with RanBPM 61 0.008349 9.51 1 1 +54738 FEV FEV, ETS transcription factor 2 protein-coding HSRNAFEV|PET-1 protein FEV|FEV (ETS oncogene family)|PC12 ETS domain-containing transcription factor 1|fifth Ewing variant protein 10 0.001369 1.284 1 1 +54739 XAF1 XIAP associated factor 1 17 protein-coding BIRC4BP|HSXIAPAF1|XIAPAF1 XIAP-associated factor 1|BIRC4-binding protein 15 0.002053 9.291 1 1 +54741 LEPROT leptin receptor overlapping transcript 1 protein-coding LEPR|OB-RGRP|OBRGRP|VPS55 leptin receptor gene-related protein|DnaJ (Hsp40) homolog, subfamily C, member 6|OB-R gene-related protein|endospanin-1|leptin receptor overlapping transcript protein 13 0.001779 8.796 1 1 +54742 LY6K lymphocyte antigen 6 complex, locus K 8 protein-coding CT97|HSJ001348|URLC10|ly-6K lymphocyte antigen 6K|cancer/testis antigen 97|up-regulated in lung cancer 10 13 0.001779 5.271 1 1 +54749 EPDR1 ependymin related 1 7 protein-coding EPDR|MERP-1|MERP1|UCC1 mammalian ependymin-related protein 1|ependymin related protein 1|mammalian ependymin related protein 1|upregulated in colorectal cancer gene 1 protein 43 0.005886 8.534 1 1 +54751 FBLIM1 filamin binding LIM protein 1 1 protein-coding CAL|FBLP-1|FBLP1 filamin-binding LIM protein 1|CSX-associated LIM|MIG2-interacting protein|migfilin|mitogen-inducible 2 interacting protein 25 0.003422 9.886 1 1 +54752 FNDC8 fibronectin type III domain containing 8 17 protein-coding - fibronectin type III domain-containing protein 8 23 0.003148 3.216 1 1 +54753 ZNF853 zinc finger protein 853 7 protein-coding - zinc finger protein 853 18 0.002464 7.565 1 1 +54754 NUTM2F NUT family member 2F 9 protein-coding FAM22F|NUTMF NUT family member 2F|family with sequence similarity 22, member F|protein FAM22F 40 0.005475 1.908 1 1 +54756 IL17RD interleukin 17 receptor D 3 protein-coding HH18|IL-17RD|IL17RLM|SEF interleukin-17 receptor D|IL-17 receptor D|IL17Rhom|interleukin-17 receptor-like protein|sef homolog 37 0.005064 7.868 1 1 +54757 FAM20A FAM20A, golgi associated secretory pathway pseudokinase 17 protein-coding AI1G|AIGFS|FP2747 pseudokinase FAM20A|family with sequence similarity 20, member A|protein FAM20A 23 0.003148 7.6 1 1 +54758 KLHDC4 kelch domain containing 4 16 protein-coding - kelch domain-containing protein 4 35 0.004791 8.371 1 1 +54760 PCSK4 proprotein convertase subtilisin/kexin type 4 19 protein-coding PC4|SPC5 proprotein convertase subtilisin/kexin type 4|testicular tissue protein Li 135 51 0.006981 5.612 1 1 +54762 GRAMD1C GRAM domain containing 1C 3 protein-coding - GRAM domain-containing protein 1C 52 0.007117 7.084 1 1 +54763 ROPN1 rhophilin associated tail protein 1 3 protein-coding CT91|ODF6|RHPNAP1|ROPN1A|ropporin ropporin-1A|cancer/testis antigen 91|outer dense fiber of sperm tails 6|rhophilin-associated protein 1A|ropporin, rhophilin associated protein 1|testis secretory sperm-binding protein Li 239w 14 0.001916 1.744 1 1 +54764 ZRANB1 zinc finger RANBP2-type containing 1 10 protein-coding TRABID ubiquitin thioesterase ZRANB1|TRAF-binding domain-containing protein|TRAF-binding protein domain|hTrabid|zinc finger Ran-binding domain-containing protein 1|zinc finger, RAN-binding domain containing 1 44 0.006022 9.81 1 1 +54765 TRIM44 tripartite motif containing 44 11 protein-coding DIPB|HSA249128|MC7 tripartite motif-containing protein 44 14 0.001916 9.825 1 1 +54766 BTG4 BTG anti-proliferation factor 4 11 protein-coding APRO3|PC3B protein BTG4|B-cell translocation gene 4|BTG family member 4|protein PC3b 16 0.00219 0.3578 1 1 +54768 HYDIN HYDIN, axonemal central pair apparatus protein 16 protein-coding CILD5|HYDIN1|HYDIN2|PPP1R31 hydrocephalus-inducing protein homolog|protein phosphatase 1, regulatory subunit 31 285 0.03901 5.4 1 1 +54769 DIRAS2 DIRAS family GTPase 2 9 protein-coding Di-Ras2 GTP-binding protein Di-Ras2|DIRAS family, GTP-binding RAS-like 2|distinct subgroup of the Ras family member 2 19 0.002601 3.829 1 1 +54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C 19 protein-coding LENG3|MBS85|p84|p85 protein phosphatase 1 regulatory subunit 12C|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 (inhibitor) subunit 12C 33 0.004517 10.28 1 1 +54777 CFAP46 cilia and flagella associated protein 46 10 protein-coding C10orf123|C10orf124|C10orf92|C10orf93|TTC40|bA288G11.4|bA288G11.5|bB137A17.2|bB137A17.3 cilia- and flagella-associated protein 46|TPR repeat-containing protein C10orf93|protein CFAP46|tetratricopeptide repeat domain 40|tetratricopeptide repeat protein 40 140 0.01916 1 0 +54778 RNF111 ring finger protein 111 15 protein-coding ARK E3 ubiquitin-protein ligase Arkadia|Arkadia 88 0.01204 9.202 1 1 +54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component 10 protein-coding C10orf86|NS4EA|NSE4A non-structural maintenance of chromosomes element 4 homolog A|NSE4 homolog, SMC5-SMC6 complex component A|non-SMC element 4 homolog A 14 0.001916 8.901 1 1 +54784 ALKBH4 alkB homolog 4, lysine demethylase 7 protein-coding ABH4 alpha-ketoglutarate-dependent dioxygenase alkB homolog 4|alkB homolog 4, lysine demthylase|alkB, alkylation repair homolog 4|alkylated DNA repair protein alkB homolog 4|probable alpha-ketoglutarate-dependent dioxygenase ABH4 22 0.003011 8.311 1 1 +54785 BORCS6 BLOC-1 related complex subunit 6 17 protein-coding C17orf59|PRO2472 uncharacterized protein C17orf59|lyspersin 13 0.001779 7.934 1 1 +54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 10 protein-coding DJ10 dnaJ homolog subfamily B member 12|DnaJ (Hsp40) homolog, subfamily B, member 12 23 0.003148 10.25 1 1 +54790 TET2 tet methylcytosine dioxygenase 2 4 protein-coding KIAA1546|MDS methylcytosine dioxygenase TET2|probable methylcytosine dioxygenase TET2|tet oncogene family member 2 107 0.01465 8.998 1 1 +54793 KCTD9 potassium channel tetramerization domain containing 9 8 protein-coding BTBD27 BTB/POZ domain-containing protein KCTD9|potassium channel tetramerisation domain containing 9 26 0.003559 8.858 1 1 +54795 TRPM4 transient receptor potential cation channel subfamily M member 4 19 protein-coding LTrpC4|PFHB1B|TRPM4B|hTRPM4 transient receptor potential cation channel subfamily M member 4|calcium-activated non-selective cation channel 1|long transient receptor potential channel 4|melastatin-4 80 0.01095 9.526 1 1 +54796 BNC2 basonuclin 2 9 protein-coding BSN2 zinc finger protein basonuclin-2 128 0.01752 6.998 1 1 +54797 MED18 mediator complex subunit 18 1 protein-coding p28b mediator of RNA polymerase II transcription subunit 18|TRAP/mediator complex subunit p28b|mediator of RNA polymerase II transcription, subunit 18 homolog 15 0.002053 8.215 1 1 +54798 DCHS2 dachsous cadherin-related 2 4 protein-coding CDH27|CDHJ|CDHR7|PCDH23|PCDHJ protocadherin-23|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 297 0.04065 3.947 1 1 +54799 MBTD1 mbt domain containing 1 17 protein-coding SA49P01 MBT domain-containing protein 1 39 0.005338 8.884 1 1 +54800 KLHL24 kelch like family member 24 3 protein-coding DRE1|KRIP6 kelch-like protein 24|kainate receptor interacting protein for GluR6|kelch-like 24 44 0.006022 10.17 1 1 +54801 HAUS6 HAUS augmin like complex subunit 6 9 protein-coding Dgt6|FAM29A HAUS augmin-like complex subunit 6|dim gamma-tubulin homolog|family with sequence similarity 29, member A 67 0.009171 8.704 1 1 +54802 TRIT1 tRNA isopentenyltransferase 1 1 protein-coding GRO1|IPPT|IPT|IPTase|MOD5|hGRO1 tRNA dimethylallyltransferase, mitochondrial|IPP transferase|isopentenyl-diphosphate:tRNA isopentenyltransferase|tRNA isopentenylpyrophosphate transferase 34 0.004654 8.599 1 1 +54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 10 protein-coding ACDP2|HOMG6|HOMGSMR metal transporter CNNM2|ancient conserved domain-containing protein 2|cyclin M2 56 0.007665 7.739 1 1 +54806 AHI1 Abelson helper integration site 1 6 protein-coding AHI-1|JBTS3|ORF1|dJ71N10.1 jouberin|abelson helper integration site 1 protein homolog|contatins SH3 and WD40 domains 86 0.01177 8.145 1 1 +54807 ZNF586 zinc finger protein 586 19 protein-coding - zinc finger protein 586 29 0.003969 7.146 1 1 +54808 DYM dymeclin 18 protein-coding DMC|SMC dymeclin|dyggve-Melchior-Clausen syndrome protein 41 0.005612 9.132 1 1 +54809 SAMD9 sterile alpha motif domain containing 9 7 protein-coding C7orf5|DRIF1|MIRAGE|NFTC|OEF1|OEF2 sterile alpha motif domain-containing protein 9|SAM domain-containing protein 9|expressed in aggressive fibromatosis 144 0.01971 8.97 1 1 +54810 GIPC2 GIPC PDZ domain containing family member 2 1 protein-coding SEMCAP-2|SEMCAP2 PDZ domain-containing protein GIPC2|PDZ domain protein GIPC2|semaF cytoplasmic domain associated protein 2|semaphorin cytoplasmic domain associated protein 2 18 0.002464 5.187 1 1 +54811 ZNF562 zinc finger protein 562 19 protein-coding - zinc finger protein 562 32 0.00438 8.759 1 1 +54812 AFTPH aftiphilin 2 protein-coding Nbla10388 aftiphilin|aftiphilin protein 58 0.007939 10.29 1 1 +54813 KLHL28 kelch like family member 28 14 protein-coding BTBD5 kelch-like protein 28|BTB (POZ) domain containing 5|BTB/POZ domain-containing protein 5|kelch-like 28 46 0.006296 8.32 1 1 +54814 QPCTL glutaminyl-peptide cyclotransferase like 19 protein-coding gQC glutaminyl-peptide cyclotransferase-like protein|glutaminyl cyclase-like|golgi-resident glutaminyl-peptide cyclotransferase|isoQC 19 0.002601 8.088 1 1 +54815 GATAD2A GATA zinc finger domain containing 2A 19 protein-coding p66alpha transcriptional repressor p66-alpha|GATA zinc finger domain-containing protein 2A 45 0.006159 10.88 1 1 +54816 ZNF280D zinc finger protein 280D 15 protein-coding SUHW4|ZNF634 zinc finger protein 280D|suppressor of hairy wing homolog 4|zinc finger protein 634 51 0.006981 9.029 1 1 +54819 ZCCHC10 zinc finger CCHC-type containing 10 5 protein-coding - zinc finger CCHC domain-containing protein 10|zinc finger, CCHC domain containing 10 11 0.001506 8.165 1 1 +54820 NDE1 nudE neurodevelopment protein 1 16 protein-coding HOM-TES-87|LIS4|MHAC|NDE|NUDE|NUDE1 nuclear distribution protein nudE homolog 1|LIS1-interacting protein NUDE1, rat homolog|nudE nuclear distribution E homolog 1|nudE nuclear distribution gene E homolog 1 39 0.005338 8.973 1 1 +54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase X protein-coding PICH|RAD26L DNA excision repair protein ERCC-6-like|ATP-dependent helicase ERCC6-like|Plk1-interacting checkpoint helicase|SNF2/RAD54 family protein|excision repair cross-complementation group 6 like|excision repair cross-complementing rodent repair deficiency complementation group 6 - like|excision repair cross-complementing rodent repair deficiency, complementation group 6-like|excision repair protein ERCC6-like|tumor antigen BJ-HCC-15 57 0.007802 6.037 1 1 +54822 TRPM7 transient receptor potential cation channel subfamily M member 7 15 protein-coding ALSPDC|CHAK|CHAK1|LTRPC7|LTrpC-7|TRP-PLIK transient receptor potential cation channel subfamily M member 7|LTRPC ion channel family member 7|channel-kinase 1|long transient receptor potential channel 7|transient receptor potential-phospholipase C-interacting kinase 97 0.01328 9.612 1 1 +54823 SWT1 SWT1, RNA endoribonuclease homolog 1 protein-coding C1orf26|HsSwt1 transcriptional protein SWT1 62 0.008486 7.062 1 1 +54825 CDHR2 cadherin related family member 2 5 protein-coding PCDH24|PCLKC cadherin-related family member 2|protocadherin-24 129 0.01766 2.781 1 1 +54826 GIN1 gypsy retrotransposon integrase 1 5 protein-coding GIN-1|TGIN1|ZH2C2 gypsy retrotransposon integrase-like protein 1|Ty3/Gypsy integrase 1|zinc finger H2C2 domain-containing protein 37 0.005064 6.8 1 1 +54827 NXPE4 neurexophilin and PC-esterase domain family member 4 11 protein-coding C11orf33|FAM55D NXPE family member 4|family with sequence similarity 55, member D|protein FAM55D 51 0.006981 0.9724 1 1 +54828 BCAS3 BCAS3, microtubule associated cell migration factor 17 protein-coding GAOB1|MAAB breast carcinoma-amplified sequence 3|BCAS4/BCAS3 fusion|Rudhira|breast carcinoma amplified sequence 4/3 fusion protein|metastasis associated antigen of breast cancer|protein Maab1 90 0.01232 9.099 1 1 +54829 ASPN asporin 9 protein-coding OS3|PLAP-1|PLAP1|SLRR1C asporin|asporin (LRR class 1)|asporin proteoglycan|periodontal ligament associated protein 1|small leucine-rich protein 1C 36 0.004927 7.731 1 1 +54830 NUP62CL nucleoporin 62 C-terminal like X protein-coding - nucleoporin-62 C-terminal-like protein|nucleoporin 62kDa C-terminal like 10 0.001369 4.679 1 1 +54831 BEST2 bestrophin 2 19 protein-coding VMD2L1 bestrophin-2|VMD2-like gene 1|vitelliform macular dystrophy 2-like 1|vitelliform macular dystrophy 2-like protein 1 32 0.00438 0.7579 1 1 +54832 VPS13C vacuolar protein sorting 13 homolog C 15 protein-coding PARK23 vacuolar protein sorting-associated protein 13C 230 0.03148 10.17 1 1 +54834 GDAP2 ganglioside induced differentiation associated protein 2 1 protein-coding MACROD3 ganglioside-induced differentiation-associated protein 2 32 0.00438 8.334 1 1 +54836 BSPRY B-box and SPRY domain containing 9 protein-coding - B box and SPRY domain-containing protein|B-box and SPRY-domain containing protein|zetin 1 26 0.003559 7.522 1 1 +54838 WBP1L WW domain binding protein 1-like 10 protein-coding C10orf26|OPA1L|OPAL1 WW domain binding protein 1-like|outcome predictor in acute leukemia 1 17 0.002327 10.65 1 1 +54839 LRRC49 leucine rich repeat containing 49 15 protein-coding PGs4 leucine-rich repeat-containing protein 49|tubulin polyglutamylase complex subunit 4 62 0.008486 6.595 1 1 +54840 APTX aprataxin 9 protein-coding AOA|AOA1|AXA1|EAOH|EOAHA|FHA-HIT aprataxin|forkhead-associated domain histidine triad-like protein 24 0.003285 9.06 1 1 +54841 BIVM basic, immunoglobulin-like variable motif containing 13 protein-coding - basic immunoglobulin-like variable motif-containing protein 14 0.001916 8.764 1 1 +54842 MFSD6 major facilitator superfamily domain containing 6 2 protein-coding MMR2|hMMR2 major facilitator superfamily domain-containing protein 6|macrophage MHC class I receptor 2 homolog|macrophage MHC receptor 2 51 0.006981 10.09 1 1 +54843 SYTL2 synaptotagmin like 2 11 protein-coding CHR11SYT|EXO4|PPP1R151|SGA72M|SLP2|SLP2A synaptotagmin-like protein 2|breast cancer-associated antigen SGA-72M|chromosome 11 synaptotagmin|exophilin-4|protein phosphatase 1, regulatory subunit 151 121 0.01656 8.708 1 1 +54845 ESRP1 epithelial splicing regulatory protein 1 8 protein-coding RBM35A|RMB35A epithelial splicing regulatory protein 1|RNA-binding motif protein 35A|RNA-binding protein 35A 74 0.01013 8.684 1 1 +54847 SIDT1 SID1 transmembrane family member 1 3 protein-coding SID-1|SID1 SID1 transmembrane family member 1 58 0.007939 6.729 1 1 +54848 ARHGEF38 Rho guanine nucleotide exchange factor 38 4 protein-coding - rho guanine nucleotide exchange factor 38|Rho guanine nucleotide exchange factor (GEF) 38 14 0.001916 2.582 1 1 +54849 DEF8 differentially expressed in FDCP 8 homolog 16 protein-coding - differentially expressed in FDCP 8 homolog|DEF-8 25 0.003422 9.815 1 1 +54850 FBXL12 F-box and leucine rich repeat protein 12 19 protein-coding Fbl12 F-box/LRR-repeat protein 12|F-box protein FBL12 20 0.002737 8.5 1 1 +54851 ANKRD49 ankyrin repeat domain 49 11 protein-coding FGIF|GBIF ankyrin repeat domain-containing protein 49|fetal globin-inducing factor 23 0.003148 7.959 1 1 +54852 PAQR5 progestin and adipoQ receptor family member 5 15 protein-coding MPRG membrane progestin receptor gamma|mPR gamma|progestin and adipoQ receptor family member V 22 0.003011 6.679 1 1 +54853 WDR55 WD repeat domain 55 5 protein-coding - WD repeat-containing protein 55 35 0.004791 8.993 1 1 +54854 FAM83E family with sequence similarity 83 member E 19 protein-coding - protein FAM83E 48 0.00657 4.579 1 1 +54855 FAM46C family with sequence similarity 46 member C 1 protein-coding - protein FAM46C 29 0.003969 8.253 1 1 +54856 GON4L gon-4 like 1 protein-coding GON-4|GON4|YARP GON-4-like protein|2610100B20Rik|YY1AP related protein|YY1AP-related protein1|gon-4 homolog 148 0.02026 9.892 1 1 +54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 X protein-coding GDE3|OBDPF glycerophosphoinositol inositolphosphodiesterase GDPD2|glycerophosphodiester phosphodiesterase 3|glycerophosphodiester phosphodiesterase domain-containing protein 2|osteoblast differentiation promoting factor 37 0.005064 2.928 1 1 +54858 PGPEP1 pyroglutamyl-peptidase I 19 protein-coding PAP-I|PGI|PGP|PGP-I|PGPI|Pcp pyroglutamyl-peptidase 1|5-oxoprolyl-peptidase|pGlu-peptidase I|pyroglutamyl aminopeptidase I|pyrrolidone-carboxylate peptidase 12 0.001642 9.59 1 1 +54859 ELP6 elongator acetyltransferase complex subunit 6 3 protein-coding C3orf75|TMEM103 elongator complex protein 6|UPF0405 protein C3orf75|angiotonin-transactivated protein 1|elongator complex protein 6 homolog|transmembrane protein 103 18 0.002464 8.73 1 1 +54860 MS4A12 membrane spanning 4-domains A12 11 protein-coding Ms4a10 membrane-spanning 4-domains subfamily A member 12 32 0.00438 0.4012 1 1 +54861 SNRK SNF related kinase 3 protein-coding HSNFRK SNF-related serine/threonine-protein kinase|SNF-1 related kinase|SNF1-related kinase 46 0.006296 9.787 1 1 +54862 CC2D1A coiled-coil and C2 domain containing 1A 19 protein-coding FREUD-1|Freud-1/Aki1|MRT3 coiled-coil and C2 domain-containing protein 1A|Akt kinase-interacting protein 1|FRE under dual repression-binding protein 1|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 83 0.01136 10.04 1 1 +54863 TOR4A torsin family 4 member A 9 protein-coding C9orf167 torsin-4A|torsin family protein C9orf167 12 0.001642 8.309 1 1 +54865 GPATCH4 G-patch domain containing 4 1 protein-coding GPATC4 G patch domain-containing protein 4 38 0.005201 9.437 1 1 +54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D 15 protein-coding CPI17-like|GBPI-1|GBPI1 protein phosphatase 1 regulatory subunit 14D|PKC-dependent PP1 inhibitory protein|gastrointestinal and brain-specific PP1-inhibitory protein 1|gut and brain phosphatase inhibitor 1 10 0.001369 2.682 1 1 +54867 TMEM214 transmembrane protein 214 2 protein-coding - transmembrane protein 214 28 0.003832 11.23 1 1 +54868 TMEM104 transmembrane protein 104 17 protein-coding - transmembrane protein 104 41 0.005612 9.239 1 1 +54869 EPS8L1 EPS8 like 1 19 protein-coding DRC3|EPS8R1|PP10566 epidermal growth factor receptor kinase substrate 8-like protein 1|EPS8-like protein 1|EPS8-related protein 1|epidermal growth factor receptor pathway substrate 8-related protein 1 62 0.008486 7.996 1 1 +54870 QRICH1 glutamine rich 1 3 protein-coding - glutamine-rich protein 1 42 0.005749 10.4 1 1 +54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G 4 protein-coding GPI7|LAS21|MRT53|PRO4405|RLGS1930 GPI ethanolamine phosphate transferase 2|phosphatidylinositol-glycan biosynthesis class G protein 62 0.008486 9.38 1 1 +54873 PALMD palmdelphin 1 protein-coding C1orf11|PALML palmdelphin|paralemmin-like protein|paralemnin-like protein 37 0.005064 8.098 1 1 +54874 FNBP1L formin binding protein 1 like 1 protein-coding C1orf39|TOCA1 formin-binding protein 1-like|toca-1|transducer of Cdc42-dependent actin assembly 1|transducer of Cdc42-dependent actin assembly protein 1 28 0.003832 10.26 1 1 +54875 CNTLN centlein 9 protein-coding C9orf101|C9orf39|bA340N12.1 centlein|centlein, centrosomal protein|centrosomal protein 131 0.01793 7.377 1 1 +54876 DCAF16 DDB1 and CUL4 associated factor 16 4 protein-coding C4orf30 DDB1- and CUL4-associated factor 16 19 0.002601 9.389 1 1 +54877 ZCCHC2 zinc finger CCHC-type containing 2 18 protein-coding C18orf49 zinc finger CCHC domain-containing protein 2|zinc finger, CCHC domain containing 2 55 0.007528 8.558 1 1 +54878 DPP8 dipeptidyl peptidase 8 15 protein-coding DP8|DPRP-1|DPRP1|MST097|MSTP097|MSTP135|MSTP141 dipeptidyl peptidase 8|DPP VIII|dipeptidyl peptidase IV-related protein 1|dipeptidyl peptidase VIII|prolyl dipeptidase DPP8 58 0.007939 8.25 1 1 +54879 ST7L suppression of tumorigenicity 7 like 1 protein-coding FAM4B|ST7R|STLR suppressor of tumorigenicity 7 protein-like|ST7-related protein|tumor suppressor ST7 like 27 0.003696 7.94 1 1 +54880 BCOR BCL6 corepressor X protein-coding ANOP2|MAA2|MCOPS2 BCL-6 corepressor|BCL-6 interacting corepressor 146 0.01998 9.78 1 1 +54881 TEX10 testis expressed 10 9 protein-coding Ipi1|bA208F1.2 testis-expressed sequence 10 protein|testis expressed gene 10 52 0.007117 8.883 1 1 +54882 ANKHD1 ankyrin repeat and KH domain containing 1 5 protein-coding MASK|MASK1|PP2500|VBARP ankyrin repeat and KH domain-containing protein 1|HIV-1 Vpr-binding ankyrin repeat protein|multiple ankyrin repeats, single KH-domain homolog 135 0.01848 10.8 1 1 +54883 CWC25 CWC25 spliceosome associated protein homolog 17 protein-coding CCDC49 pre-mRNA-splicing factor CWC25 homolog|coiled-coil domain-containing protein 49 25 0.003422 8.57 1 1 +54884 RETSAT retinol saturase 2 protein-coding - all-trans-retinol 13,14-reductase|PPAR-alpha-regulated and starvation-induced gene protein|all-trans-13,14-dihydroretinol saturase|retinol saturase (all-trans-retinol 13,14-reductase) 51 0.006981 10.62 1 1 +54885 TBC1D8B TBC1 domain family member 8B X protein-coding GRAMD8B TBC1 domain family member 8B|RP11-321G1.1|TBC1 domain family, member 8B (with GRAM domain) 84 0.0115 7.519 1 1 +54886 PLPPR1 phospholipid phosphatase related 1 9 protein-coding LPPR1|PRG-3 phospholipid phosphatase-related protein type 1|lipid phosphate phosphatase-related protein type 1|plasticity related gene 3|plasticity-related gene 3 protein 31 0.004243 3.529 1 1 +54887 UHRF1BP1 UHRF1 binding protein 1 6 protein-coding C6orf107|ICBP90|dJ349A12.1 UHRF1-binding protein 1|ICBP90 binding protein 1|UHRF1 (ICBP90) binding protein 1|ubiquitin-like containing PHD and RING finger domains 1-binding protein 1 92 0.01259 9.288 1 1 +54888 NSUN2 NOP2/Sun RNA methyltransferase family member 2 5 protein-coding MISU|MRT5|SAKI|TRM4 tRNA (cytosine(34)-C(5))-methyltransferase|5-methycytoisine methyltransferase|Myc-induced SUN-domain-containing protein|NOL1/NOP2/Sun domain family, member 2|NOP2/Sun domain family, member 2|myc-induced SUN domain-containing protein|substrate of AIM1/Aurora kinase B|tRNA (cytosine-5-)-methyltransferase NSUN2|tRNA methyltransferase 4 homolog 55 0.007528 10.55 1 1 +54890 ALKBH5 alkB homolog 5, RNA demethylase 17 protein-coding ABH5|OFOXD|OFOXD1 RNA demethylase ALKBH5|AlkB family member 5, RNA demethylase|alkB, alkylation repair homolog 5|alkylated DNA repair protein alkB homolog 5|alpha-ketoglutarate-dependent dioxygenase alkB homolog 5|oxoglutarate and iron-dependent oxygenase domain containing|probable alpha-ketoglutarate-dependent dioxygenase ABH5 29 0.003969 11.11 1 1 +54891 INO80D INO80 complex subunit D 2 protein-coding - INO80 complex subunit D 66 0.009034 8.93 1 1 +54892 NCAPG2 non-SMC condensin II complex subunit G2 7 protein-coding CAP-G2|CAPG2|LUZP5|MTB|hCAP-G2 condensin-2 complex subunit G2|chromosome-associated protein G2|leucine zipper protein 5|more than blood homolog 59 0.008076 8.933 1 1 +54893 MTMR10 myotubularin related protein 10 15 protein-coding - myotubularin-related protein 10 35 0.004791 9.634 1 1 +54894 RNF43 ring finger protein 43 17 protein-coding RNF124|SSPCS|URCC E3 ubiquitin-protein ligase RNF43 142 0.01944 8.058 1 1 +54896 PQLC2 PQ loop repeat containing 2 1 protein-coding - lysosomal amino acid transporter 1 homolog|PQ-loop repeat-containing protein 2 25 0.003422 8.493 1 1 +54897 CASZ1 castor zinc finger 1 1 protein-coding CAS11|CST|SRG|ZNF693|dJ734G22.1 zinc finger protein castor homolog 1|castor homolog 1, zinc finger|castor-related protein|survival-related|zinc finger protein 693 129 0.01766 8.584 1 1 +54898 ELOVL2 ELOVL fatty acid elongase 2 6 protein-coding SSC2 elongation of very long chain fatty acids protein 2|3-keto acyl-CoA synthase ELOVL2|ELOVL FA elongase 2|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 2|very long chain 3-ketoacyl-CoA synthase 2|very long chain 3-oxoacyl-CoA synthase 2 29 0.003969 6.06 1 1 +54899 PXK PX domain containing serine/threonine kinase like 3 protein-coding MONaKA PX domain-containing protein kinase-like protein|PX ser/thr kinase v2|PX serine/threonine kinase|modulator of Na,K-ATPase long form 44 0.006022 7.64 1 1 +54900 LAX1 lymphocyte transmembrane adaptor 1 1 protein-coding LAX lymphocyte transmembrane adapter 1|LAT-like membrane associated protein|linker for activation of x cells|membrane-associated adapter protein LAX 38 0.005201 4.194 1 1 +54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 6 protein-coding - threonylcarbamoyladenosine tRNA methylthiotransferase|tRNA-t(6)A37 methylthiotransferase 40 0.005475 8.282 1 1 +54902 TTC19 tetratricopeptide repeat domain 19 17 protein-coding 2010204O13Rik|MC3DN2 tetratricopeptide repeat protein 19, mitochondrial|TPR repeat protein 19 25 0.003422 9.894 1 1 +54903 MKS1 Meckel syndrome, type 1 17 protein-coding BBS13|JBTS28|MES|MKS|POC12 Meckel syndrome type 1 protein|POC12 centriolar protein homolog 50 0.006844 8.123 1 1 +54904 WHSC1L1 Wolf-Hirschhorn syndrome candidate 1-like 1 8 protein-coding NSD3|WHISTLE|pp14328 histone-lysine N-methyltransferase NSD3|WHSC1-like 1 isoform 9 with methyltransferase activity to lysine|nuclear SET domain-containing protein 3|nuclear receptor binding SET domain protein 3|protein whistle 93 0.01273 9.965 1 1 +54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 7 protein-coding - cytochrome P450 2W1|CYPIIW1|cytochrome P450, family 2, subfamily W, polypeptide 1 29 0.003969 2.607 1 1 +54906 FAM208B family with sequence similarity 208 member B 10 protein-coding C10orf18|bA318E3.2 protein FAM208B 125 0.01711 10.3 1 1 +54908 SPDL1 spindle apparatus coiled-coil protein 1 5 protein-coding CCDC99 protein Spindly|arsenite-related gene 1 protein|coiled-coil domain-containing protein 99|rhabdomyosarcoma antigen MU-RMS-40.4A|rrhabdomyosarcoma antigen protein MU-RMS-40.4A 40 0.005475 7.88 1 1 +54910 SEMA4C semaphorin 4C 2 protein-coding M-SEMA-F|SEMACL1|SEMAF|SEMAI semaphorin-4C|M-Sema F|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C 44 0.006022 10 1 1 +54913 RPP25 ribonuclease P/MRP subunit p25 15 protein-coding - ribonuclease P protein subunit p25|RNase P protein subunit p25|ribonuclease P 25kDa subunit|ribonuclease P/MRP 25kDa subunit 4 0.0005475 8.208 1 1 +54914 FOCAD focadhesin 9 protein-coding KIAA1797 focadhesin 102 0.01396 9.494 1 1 +54915 YTHDF1 YTH N6-methyladenosine RNA binding protein 1 20 protein-coding C20orf21 YTH domain-containing family protein 1|DACA-1|YTH N(6)-methyladenosine RNA binding protein 1|YTH domain family 1|YTH domain family protein 1|YTH domain family, member 1|dermatomyositis associated with cancer putative autoantigen 1 43 0.005886 10.64 1 1 +54916 TMEM260 transmembrane protein 260 14 protein-coding C14orf101 transmembrane protein 260|UPF0679 protein C14orf101 45 0.006159 8.641 1 1 +54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 3 protein-coding CKLFSF6|PRO2219 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 4 0.0005475 11.09 1 1 +54919 DNAAF5 dynein axonemal assembly factor 5 7 protein-coding CILD18|HEATR2 dynein assembly factor 5, axonemal|HEAT repeat containing 2|HEAT repeat-containing protein 2 40 0.005475 9.703 1 1 +54920 DUS2 dihydrouridine synthase 2 16 protein-coding DUS2L|SMM1|URLC8 tRNA-dihydrouridine(20) synthase [NAD(P)+]-like|SMM1 homolog|dihydrouridine synthase 2-like, SMM1 homolog|tRNA-dihydrouridine(20) synthase (NAD(P)(+))|up-regulated in lung cancer protein 8 27 0.003696 7.905 1 1 +54921 CHTF8 chromosome transmission fidelity factor 8 16 protein-coding CTF8|DERPC chromosome transmission fidelity protein 8 homolog|CTF8, chromosome transmission fidelity factor 8 homolog|decreased expression in renal and prostate cancer protein 8 0.001095 10.97 1 1 +54922 RASIP1 Ras interacting protein 1 19 protein-coding RAIN ras-interacting protein 1 47 0.006433 7.807 1 1 +54923 LIME1 Lck interacting transmembrane adaptor 1 20 protein-coding LIME|dJ583P15.4 lck-interacting transmembrane adapter 1|lck-interacting membrane protein|lck-interacting molecule 5 0.0006844 7.201 1 1 +54925 ZSCAN32 zinc finger and SCAN domain containing 32 16 protein-coding HCCS-5|ZNF434 zinc finger and SCAN domain-containing protein 32|human cervical cancer suppressor gene 5 protein|zinc finger protein 434 35 0.004791 8.365 1 1 +54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 9 protein-coding CDC34B|E2-CDC34B|UBC3B ubiquitin-conjugating enzyme E2 R2|E2 ubiquitin-conjugating enzyme R2|ubiquitin carrier protein R2|ubiquitin conjugating enzyme E2R 2|ubiquitin-conjugating enzyme E2-CDC34B|ubiquitin-conjugating enzyme UBC3B|ubiquitin-protein ligase R2 10 0.001369 10.97 1 1 +54927 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 7 protein-coding MINOS3|Mic19|PPP1R22 MICOS complex subunit MIC19|coiled-coil-helix-coiled-coil-helix domain-containing protein 3, mitochondrial|mitochondrial inner membrane organizing system 3|protein phosphatase 1, regulatory subunit 22 23 0.003148 9.776 1 1 +54928 IMPAD1 inositol monophosphatase domain containing 1 8 protein-coding GPAPP|IMP 3|IMP-3|IMPA3 inositol monophosphatase 3|Golgi 3-prime phosphoadenosine 5-prime phosphate 3-prime phosphatase|IMPase 3|golgi-resident PAP phosphatase|golgi-resident nucleotide phosphatase|inositol monophosphatase domain-containing protein 1|inositol-1(or 4)-monophosphatase 3|myo-inositol monophosphatase A3 24 0.003285 11.38 1 1 +54929 TMEM161A transmembrane protein 161A 19 protein-coding AROS-29 transmembrane protein 161A|adaptive response to oxidative stress protein 29 22 0.003011 9.375 1 1 +54930 HAUS4 HAUS augmin like complex subunit 4 14 protein-coding C14orf94 HAUS augmin-like complex subunit 4|homologous to Augmin subunits 22 0.003011 9.606 1 1 +54931 TRMT10C tRNA methyltransferase 10C, mitochondrial RNase P subunit 3 protein-coding COXPD30|HNYA|MRPP1|RG9MTD1 mitochondrial ribonuclease P protein 1|HBV pre-S2 trans-regulated protein 2|RNA (guanine-9-) methyltransferase domain containing 1|mitochondrial RNase P subunit 1|renal carcinoma antigen NY-REN-49|tRNA methyltransferase 10 homolog C 38 0.005201 9.037 1 1 +54932 EXD3 exonuclease 3'-5' domain containing 3 9 protein-coding mut-7 exonuclease mut-7 homolog|exonuclease 3'-5' domain-containing protein 3|probable exonuclease mut-7 homolog|testicular tissue protein Li 125 54 0.007391 7.751 1 1 +54933 RHBDL2 rhomboid like 2 1 protein-coding RRP2 rhomboid-related protein 2|rhomboid (veinlet, Drosophila)-like 2|rhomboid protease 2|rhomboid, veinlet-like 2|rhomboid-like protein 2 18 0.002464 5.713 1 1 +54934 KANSL2 KAT8 regulatory NSL complex subunit 2 12 protein-coding C12orf41|NSL2 KAT8 regulatory NSL complex subunit 2|NSL complex protein NSL2|non-specific lethal 2 homolog 26 0.003559 9.061 1 1 +54935 DUSP23 dual specificity phosphatase 23 1 protein-coding DUSP25|LDP-3|MOSP|VHZ dual specificity protein phosphatase 23|VH1-like member Z|VH1-like phosphatase Z|low-molecular-mass dual-specificity phosphatase 3|testicular tissue protein Li 59 3 0.0004106 9.21 1 1 +54936 ADPRHL2 ADP-ribosylhydrolase like 2 1 protein-coding ARH3 poly(ADP-ribose) glycohydrolase ARH3|ADP-ribosylarginine hydrolase like 2|ADP-ribosylhydrolase 3|[Protein ADP-ribosylarginine] hydrolase-like protein 2|protein ADP-ribosylarginine hydrolase-like protein 2 17 0.002327 9.655 1 1 +54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 13 protein-coding SOSF2|SPATA28|TEB1|bHLHe81 spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 2|spermatogenesis associated 28|testicular secretory protein Li 50|testicular secretory protein Li 51 44 0.006022 3.056 1 1 +54938 SARS2 seryl-tRNA synthetase 2, mitochondrial 19 protein-coding SARS|SARSM|SERS|SYS|SerRS|SerRSmt|mtSerRS serine--tRNA ligase, mitochondrial|mitochondrial seryl-tRNA synthetase|serine tRNA ligase 2, mitochondrial|seryl-tRNA synthetase, mitochondrial|seryl-tRNA(Ser/Sec) synthetase 29 0.003969 8.753 1 1 +54939 COMMD4 COMM domain containing 4 15 protein-coding - COMM domain-containing protein 4 12 0.001642 10.14 1 1 +54940 OCIAD1 OCIA domain containing 1 4 protein-coding ASRIJ|OCIA|TPA018 OCIA domain-containing protein 1|ovarian carcinoma immunoreactive antigen 26 0.003559 11.26 1 1 +54941 RNF125 ring finger protein 125 18 protein-coding TNORS|TRAC-1|TRAC1 E3 ubiquitin-protein ligase RNF125|T-cell RING activation protein 1|T-cell ring protein identified in activation screen|ring finger protein 125, E3 ubiquitin protein ligase 20 0.002737 7.111 1 1 +54942 FAM206A family with sequence similarity 206 member A 9 protein-coding C9orf6|CG-8|Simiate protein Simiate|protein FAM206A 5 0.0006844 8.583 1 1 +54943 DNAJC28 DnaJ heat shock protein family (Hsp40) member C28 21 protein-coding C21orf55|C21orf78 dnaJ homolog subfamily C member 28|DnaJ (Hsp40) homolog, subfamily C, member 28 33 0.004517 4.8 1 1 +54946 SLC41A3 solute carrier family 41 member 3 3 protein-coding SLC41A1-L2 solute carrier family 41 member 3|SLC41A1-like 2 33 0.004517 10.02 1 1 +54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 16 protein-coding AGPAT11|AYTL1|LysoPAFAT lysophosphatidylcholine acyltransferase 2|1-AGP acyltransferase 11|1-AGPAT 11|1-acylglycerol-3-phosphate O-acyltransferase 11|1-acylglycerophosphocholine O-acyltransferase|1-alkylglycerophosphocholine O-acetyltransferase|LPAAT-alpha|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|lyso-PAF acetyltransferase|lyso-platelet-activating factor (PAF) acetyltransferase|lysoPC acyltransferase 2|lysophosphatidic acid acyltransferase alpha 43 0.005886 8.955 1 1 +54948 MRPL16 mitochondrial ribosomal protein L16 11 protein-coding L16mt|MRP-L16|PNAS-111 39S ribosomal protein L16, mitochondrial 16 0.00219 9.524 1 1 +54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 11 protein-coding C11orf79|PGL2|SDH5 succinate dehydrogenase assembly factor 2, mitochondrial|SDH assembly factor 2|hSDH5|succinate dehydrogenase subunit 5, mitochondrial 21 0.002874 9.471 1 1 +54951 COMMD8 COMM domain containing 8 4 protein-coding - COMM domain-containing protein 8 13 0.001779 8.211 1 1 +54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 1 protein-coding PRO1902|SECP43|TRSPAP1 tRNA selenocysteine 1-associated protein 1|tRNA selenocysteine associated protein (SECP43)|tRNA selenocysteine-associated protein 1 15 0.002053 8.24 1 1 +54953 C1orf27 chromosome 1 open reading frame 27 1 protein-coding ODR4|TTG1|odr-4 protein odr-4 homolog|LAG1-interacting protein|odorant response abnormal 4|transactivated by recombinant transforming growth factor beta|transactivated by transforming growth factor beta protein 1 22 0.003011 9.391 1 1 +54954 FAM120C family with sequence similarity 120C X protein-coding CXorf17|ORF34 constitutive coactivator of PPAR-gamma-like protein 2|tumor antigen BJ-HCC-21 78 0.01068 8.288 1 1 +54955 C1orf109 chromosome 1 open reading frame 109 1 protein-coding - uncharacterized protein C1orf109 9 0.001232 8.319 1 1 +54956 PARP16 poly(ADP-ribose) polymerase family member 16 15 protein-coding ARTD15|C15orf30|pART15 mono [ADP-ribose] polymerase PARP16|ADP-ribosyltransferase diphtheria toxin-like 15|PARP-16|poly [ADP-ribose] polymerase 16 17 0.002327 8.046 1 1 +54957 TXNL4B thioredoxin like 4B 16 protein-coding DLP|Dim2 thioredoxin-like protein 4B|Dim1-like protein 12 0.001642 8.143 1 1 +54958 TMEM160 transmembrane protein 160 19 protein-coding - transmembrane protein 160 4 0.0005475 6.734 1 1 +54959 ODAM odontogenic, ameloblast asssociated 4 protein-coding APIN odontogenic ameloblast-associated protein 37 0.005064 1.699 1 1 +54960 GEMIN8 gem nuclear organelle associated protein 8 X protein-coding FAM51A1 gem-associated protein 8|family with sequence similarity 51, member A1|gemin-8 24 0.003285 8.562 1 1 +54961 SSH3 slingshot protein phosphatase 3 11 protein-coding SSH3L protein phosphatase Slingshot homolog 3|SSH-3L|SSH-like protein 3|hSSH-3L|slingshot 3|slingshot homolog 3 54 0.007391 9.729 1 1 +54962 TIPIN TIMELESS interacting protein 15 protein-coding - TIMELESS-interacting protein|CSM3 homolog 22 0.003011 6.72 1 1 +54963 UCKL1 uridine-cytidine kinase 1 like 1 20 protein-coding UCK1L|URKL1 uridine-cytidine kinase-like 1|UCK1-LIKE 39 0.005338 9.409 1 1 +54964 C1orf56 chromosome 1 open reading frame 56 1 protein-coding MENT protein MENT|methylated in normal thymocytes protein 22 0.003011 7.637 1 1 +54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X 3 protein-coding PIG-X phosphatidylinositol-glycan biosynthesis class X protein|GPI-mannosyltransferase subunit 9 0.001232 9.23 1 1 +54967 CT55 cancer/testis antigen 55 X protein-coding BJHCC20A|CXorf48 cancer/testis antigen 55|BRCA2-interacting protein|tumor antigen BJ-HCC-20 23 0.003148 0.8422 1 1 +54968 TMEM70 transmembrane protein 70 8 protein-coding MC5DN2 transmembrane protein 70, mitochondrial 17 0.002327 9.005 1 1 +54969 HPF1 histone PARylation factor 1 4 protein-coding C4orf27 histone PARylation factor 1|UPF0609 protein C4orf27 16 0.00219 8.505 1 1 +54970 TTC12 tetratricopeptide repeat domain 12 11 protein-coding TPARM tetratricopeptide repeat protein 12|TPR repeat protein 12 46 0.006296 7.347 1 1 +54971 BANP BTG3 associated nuclear protein 16 protein-coding BEND1|SMAR1|SMARBP1 protein BANP|BEN domain-containing protein 1|scaffold/matrix-associated region-1-binding protein 40 0.005475 7.97 1 1 +54972 TMEM132A transmembrane protein 132A 11 protein-coding GBP|HSPA5BP1 transmembrane protein 132A|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 85 0.01163 10.02 1 1 +54973 CPSF3L cleavage and polyadenylation specific factor 3-like 1 protein-coding CPSF73L|INT11|INTS11|RC-68|RC68 integrator complex subunit 11|CPSF3-like protein|cleavage and polyadenylation-specific factor 3-like protein|protein related to CPSF subunits of 68 kDa|related to CPSF subunits 68 kDa 44 0.006022 10.69 1 1 +54974 THG1L tRNA-histidine guanylyltransferase 1 like 5 protein-coding ICF45|IHG-1|hTHG1 probable tRNA(His) guanylyltransferase|induced by high glucose-1|interphase cytoplasmic foci protein 45 22 0.003011 7.579 1 1 +54976 C20orf27 chromosome 20 open reading frame 27 20 protein-coding - UPF0687 protein C20orf27 25 0.003422 9.596 1 1 +54977 SLC25A38 solute carrier family 25 member 38 3 protein-coding SIDBA2 solute carrier family 25 member 38|appoptosin 21 0.002874 9.603 1 1 +54978 SLC35F6 solute carrier family 35 member F6 2 protein-coding ANT2BP|C2orf18|TANGO9 solute carrier family 35 member F6|ANT2-binding protein|transmembrane protein C2orf18|transport and golgi organization 9 homolog 10 0.001369 10.59 1 1 +54979 HRASLS2 HRAS like suppressor 2 11 protein-coding PLA1/2-2 HRAS-like suppressor 2 10 0.001369 3.009 1 1 +54980 C2orf42 chromosome 2 open reading frame 42 2 protein-coding - uncharacterized protein C2orf42 40 0.005475 7.748 1 1 +54981 NMRK1 nicotinamide riboside kinase 1 9 protein-coding C9orf95|NRK1|bA235O14.2 nicotinamide riboside kinase 1|NRK 1|RNK 1|nicotinic acid riboside kinase 1|nmR-K 1|ribosylnicotinamide kinase 1|ribosylnicotinic acid kinase 1 15 0.002053 8.347 1 1 +54982 CLN6 ceroid-lipofuscinosis, neuronal 6, late infantile, variant 15 protein-coding CLN4A|HsT18960|nclf ceroid-lipofuscinosis neuronal protein 6|ceroid-lipofuscinosis neuronal 6 late infantile 15 0.002053 9.947 1 1 +54984 PINX1 PIN2/TERF1 interacting, telomerase inhibitor 1 8 protein-coding LPTL|LPTS PIN2/TERF1-interacting telomerase inhibitor 1|67-11-3 protein|PIN2-interacting protein 1|TRF1-interacting protein 1|hepatocellular carcinoma-related putative tumor suppressor|liver-related putative tumor suppressor|pin2-interacting protein X1|protein 67-11-3 15 0.002053 6.907 1 1 +54985 HCFC1R1 host cell factor C1 regulator 1 16 protein-coding HPIP host cell factor C1 regulator 1|HCF-1 beta-propeller-interacting protein|host cell factor C1 regulator 1 (XPO1 dependent) 20 0.002737 9.909 1 1 +54986 ULK4 unc-51 like kinase 4 3 protein-coding FAM7C1|REC01035 serine/threonine-protein kinase ULK4 84 0.0115 5.83 1 1 +54987 C1orf123 chromosome 1 open reading frame 123 1 protein-coding - UPF0587 protein C1orf123 14 0.001916 9.268 1 1 +54988 ACSM5 acyl-CoA synthetase medium-chain family member 5 16 protein-coding - acyl-coenzyme A synthetase ACSM5, mitochondrial 77 0.01054 4.016 1 1 +54989 ZNF770 zinc finger protein 770 15 protein-coding PRO1914 zinc finger protein 770 50 0.006844 9.878 1 1 +54991 C1orf159 chromosome 1 open reading frame 159 1 protein-coding - uncharacterized protein C1orf159 22 0.003011 7.611 1 1 +54993 ZSCAN2 zinc finger and SCAN domain containing 2 15 protein-coding ZFP29|ZNF854 zinc finger and SCAN domain-containing protein 2|zfp-29|zinc finger protein 29 homolog|zinc finger protein 854 30 0.004106 7.73 1 1 +54994 GID8 GID complex subunit 8 homolog 20 protein-coding C20orf11|TWA1 glucose-induced degradation protein 8 homolog|protein C20orf11|two hybrid associated protein No. 1 with RanBPM|two hybrid-associated protein 1 with RanBPM 17 0.002327 10.93 1 1 +54995 OXSM 3-oxoacyl-ACP synthase, mitochondrial 3 protein-coding FASN2D|KASI|KS 3-oxoacyl-[acyl-carrier-protein] synthase, mitochondrial|3-ketoacyl-acyl carrier protein synthase|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 37 0.005064 7.677 1 1 +54996 MARC2 mitochondrial amidoxime reducing component 2 1 protein-coding MOSC2 mitochondrial amidoxime reducing component 2|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 20 0.002737 7.418 1 1 +54997 TESC tescalcin 12 protein-coding CHP3|TSC calcineurin B homologous protein 3|calcineurin-like EF hand protein 3 17 0.002327 6.983 1 1 +54998 AURKAIP1 aurora kinase A interacting protein 1 1 protein-coding AIP|AKIP|MRP-S38 aurora kinase A-interacting protein|28S ribosomal protein S38, mitochondrial|AURKA-interacting protein|aurora-A kinase interacting protein 14 0.001916 10.58 1 1 +55000 TUG1 taurine up-regulated 1 (non-protein coding) 22 ncRNA LINC00080|NCRNA00080|TI-227H TUG1 noncoding RNA|long intergenic non-protein coding RNA 80|taurine upregulated gene 1 1 0.0001369 11.79 1 1 +55001 TTC22 tetratricopeptide repeat domain 22 1 protein-coding - tetratricopeptide repeat protein 22|TPR repeat protein 22 26 0.003559 5.427 1 1 +55002 TMCO3 transmembrane and coiled-coil domains 3 13 protein-coding C13orf11 transmembrane and coiled-coil domain-containing protein 3|B230339H12Rik|putative LAG1-interacting protein|testis tissue sperm-binding protein Li 36a 54 0.007391 9.888 1 1 +55003 PAK1IP1 PAK1 interacting protein 1 6 protein-coding MAK11|PIP1|WDR84|bA421M1.5|hPIP1 p21-activated protein kinase-interacting protein 1|PAK/PLC-interacting protein 1|WD repeat-containing protein 84 21 0.002874 8.63 1 1 +55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 11 protein-coding C11orf59|PDRO|Ragulator1|p18|p27RF-Rho ragulator complex protein LAMTOR1|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 PDRO 7 0.0009581 10.97 1 1 +55005 RMND1 required for meiotic nuclear division 1 homolog 6 protein-coding C6orf96|COXPD11|RMD1|bA351K16|bA351K16.3 required for meiotic nuclear division protein 1 homolog 30 0.004106 8.683 1 1 +55006 TRMT61B tRNA methyltransferase 61B 2 protein-coding - tRNA (adenine(58)-N(1))-methyltransferase, mitochondrial|potential tRNA (adenine(58)-N(1))-methyltransferase catalytic subunit TRMT61B|potential tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRMT61B|tRNA methyltransferase 61 homolog B 25 0.003422 8.082 1 1 +55007 FAM118A family with sequence similarity 118 member A 22 protein-coding C22orf8 protein FAM118A|bK268H5.C22.4 21 0.002874 8.438 1 1 +55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 4 protein-coding - probable E3 ubiquitin-protein ligase HERC6|HECT domain and RCC1-like domain-containing protein 6|hect domain and RLD 6|potential ubiquitin ligase 62 0.008486 8.684 1 1 +55009 C19orf24 chromosome 19 open reading frame 24 19 protein-coding - uncharacterized membrane protein C19orf24 3 0.0004106 9.454 1 1 +55010 PARPBP PARP1 binding protein 12 protein-coding AROM|C12orf48|PARI PCNA-interacting partner 43 0.005886 6.744 1 1 +55011 PIH1D1 PIH1 domain containing 1 19 protein-coding NOP17 PIH1 domain-containing protein 1|nucleolar protein 17 homolog 28 0.003832 10.05 1 1 +55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma 14 protein-coding C14orf10|G4-1|G5pr serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit gamma|protein phosphatase 2 (formerly 2A), regulatory subunit B''|protein phosphatase 2, regulatory subunit B'', gamma|protein phosphatase subunit G5PR|rhabdomyosarcoma antigen MU-RMS-40.6A|rhabdomyosarcoma antigen Mu-RMS-40.6C 28 0.003832 8.57 1 1 +55013 MCUB mitochondrial calcium uniporter dominant negative beta subunit 4 protein-coding CCDC109B calcium uniporter regulatory subunit MCUb, mitochondrial|coiled-coil domain containing 109B|coiled-coil domain-containing protein 109B|mitochondrial calcium uniporter regulatory subunit MCUb 17 0.002327 7.716 1 1 +55014 STX17 syntaxin 17 9 protein-coding - syntaxin-17 17 0.002327 9.536 1 1 +55015 PRPF39 pre-mRNA processing factor 39 14 protein-coding - pre-mRNA-processing factor 39|PRP39 homolog|PRP39 pre-mRNA processing factor 39 homolog 33 0.004517 8.873 1 1 +55016 MARCH1 membrane associated ring-CH-type finger 1 4 protein-coding MARCH-I|RNF171 E3 ubiquitin-protein ligase MARCH1|RING finger protein 171|membrane associated ring finger 1|membrane-associated RING finger protein 1|membrane-associated RING-CH protein I|membrane-associated ring finger (C3HC4) 1, E3 ubiquitin protein ligase 37 0.005064 5.739 1 1 +55017 C14orf119 chromosome 14 open reading frame 119 14 protein-coding - uncharacterized protein C14orf119|My028 protein 5 0.0006844 9.979 1 1 +55018 LINC00483 long intergenic non-protein coding RNA 483 17 ncRNA C17orf73 - 0.8076 0 1 +55020 TTC38 tetratricopeptide repeat domain 38 22 protein-coding LL22NC03-5H6.5 tetratricopeptide repeat protein 38|TPR repeat protein 38 26 0.003559 9.23 1 1 +55022 PID1 phosphotyrosine interaction domain containing 1 2 protein-coding HMFN2073|NYGGF4|P-CLI1|PCLI1 PTB-containing, cubilin and LRP1-interacting protein|phosphotyrosine interaction domain-containing protein 1 28 0.003832 7.013 1 1 +55023 PHIP pleckstrin homology domain interacting protein 6 protein-coding BRWD2|DCAF14|WDR11|ndrp PH-interacting protein|DDB1 and CUL4 associated factor 14|IRS-1 PH domain-binding protein|WD repeat-containing protein 11 118 0.01615 10.15 1 1 +55024 BANK1 B-cell scaffold protein with ankyrin repeats 1 4 protein-coding BANK B-cell scaffold protein with ankyrin repeats 71 0.009718 5.456 1 1 +55026 TMEM255A transmembrane protein 255A X protein-coding FAM70A transmembrane protein 255A|family with sequence similarity 70, member A|protein FAM70A 27 0.003696 5.644 1 1 +55027 HEATR3 HEAT repeat containing 3 16 protein-coding SYO1 HEAT repeat-containing protein 3|symportin 1 46 0.006296 8.058 1 1 +55028 C17orf80 chromosome 17 open reading frame 80 17 protein-coding HLC-8|MIG3|SPEP1 uncharacterized protein C17orf80|cell migration-inducing gene 3 protein|human lung cancer oncogene 8 protein|lung cancer-related protein 8|sperm-expressed protein 1 29 0.003969 9.024 1 1 +55030 FBXO34 F-box protein 34 14 protein-coding CGI-301|Fbx34 F-box only protein 34|protein CGI-301 57 0.007802 9.535 1 1 +55031 USP47 ubiquitin specific peptidase 47 11 protein-coding TRFP ubiquitin carboxyl-terminal hydrolase 47|Trf (TATA binding protein-related factor)-proximal homolog|deubiquitinating enzyme 47|ubiquitin thioesterase 47|ubiquitin thiolesterase 47|ubiquitin-specific-processing protease 47 69 0.009444 10.65 1 1 +55032 SLC35A5 solute carrier family 35 member A5 3 protein-coding - probable UDP-sugar transporter protein SLC35A5 31 0.004243 9.396 1 1 +55033 FKBP14 FK506 binding protein 14 7 protein-coding EDSKMH|FKBP22|IPBP12 peptidyl-prolyl cis-trans isomerase FKBP14|22 kDa FK506-binding protein|22 kDa FKBP|FK506 binding protein 14, 22 kDa|FKBP-22|PPIase FKBP14|rotamase 12 0.001642 7.315 1 1 +55034 MOCOS molybdenum cofactor sulfurase 18 protein-coding HMCS|MCS|MOS|XAN2 molybdenum cofactor sulfurase|MCS|MOS 63 0.008623 6.555 1 1 +55035 NOL8 nucleolar protein 8 9 protein-coding C9orf34|NOP132|bA62C3.3|bA62C3.4 nucleolar protein 8|nucleolar protein Nop132 64 0.00876 9.373 1 1 +55036 CCDC40 coiled-coil domain containing 40 17 protein-coding CILD15|FAP172 coiled-coil domain-containing protein 40 107 0.01465 6.25 1 1 +55037 PTCD3 pentatricopeptide repeat domain 3 2 protein-coding MRP-S39 pentatricopeptide repeat domain-containing protein 3, mitochondrial|28S ribosomal protein S39, mitochondrial|TRG-15|pentatricopeptide repeat-containing protein 3, mitochondrial|transformation-related gene 15 protein 38 0.005201 10.11 1 1 +55038 CDCA4 cell division cycle associated 4 14 protein-coding HEPP|SEI-3/HEPP cell division cycle-associated protein 4|hematopoietic progenitor protein 23 0.003148 8.597 1 1 +55039 TRMT12 tRNA methyltransferase 12 homolog 8 protein-coding TRM12|TYW2 tRNA wybutosine-synthesizing protein 2 homolog|alpha-amino-alpha-carboxypropyl transferase TYW2|homolog of yeast tRNA methyltransferase|tRNA methyltranferase 12 homolog|tRNA(Phe) (4-demethylwyosine(37)-C(7)) aminocarboxypropyltransferase|tRNA-yW-synthesizing protein 2 31 0.004243 8.226 1 1 +55040 EPN3 epsin 3 17 protein-coding - epsin-3|EPS-15-interacting protein 3 43 0.005886 6.881 1 1 +55041 PLEKHB2 pleckstrin homology domain containing B2 2 protein-coding EVT2 pleckstrin homology domain-containing family B member 2|PH domain-containing family B member 2|evectin-2|pleckstrin homology domain containing, family B (evectins) member 2 29 0.003969 11.41 1 1 +55048 VPS37C VPS37C, ESCRT-I subunit 11 protein-coding - vacuolar protein sorting-associated protein 37C|ESCRT-I complex subunit VPS37C|hVps37C|vacuolar protein sorting 37 homolog C|vacuolar protein sorting 37C 21 0.002874 9.557 1 1 +55049 C19orf60 chromosome 19 open reading frame 60 19 protein-coding - uncharacterized protein C19orf60 3 0.0004106 8.891 1 1 +55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing 14 protein-coding C14orf102 protein NRDE2 homolog|UPF0614 protein C14orf102 74 0.01013 8.093 1 1 +55052 MRPL20 mitochondrial ribosomal protein L20 1 protein-coding L20mt|MRP-L20 39S ribosomal protein L20, mitochondrial 9 0.001232 10.39 1 1 +55054 ATG16L1 autophagy related 16 like 1 2 protein-coding APG16L|ATG16A|ATG16L|IBD10|WDR30 autophagy-related protein 16-1|APG16L beta|ATG16 autophagy related 16-like 1|WD repeat domain 30 33 0.004517 9.39 1 1 +55055 ZWILCH zwilch kinetochore protein 15 protein-coding KNTC1AP|hZwilch protein zwilch homolog|Zwilch, kinetochore associated, homolog|homolog of Drosophila Zwilch 36 0.004927 8.406 1 1 +55056 FLJ10038 uncharacterized protein FLJ10038 15 ncRNA - - 7.891 0 1 +55057 AIM1L absent in melanoma 1-like 1 protein-coding CRYBG2 absent in melanoma 1-like protein|beta-gamma crystallin domain containing 2|beta/gamma crystallin domain-containing protein 2 43 0.005886 4.779 1 1 +55061 SUSD4 sushi domain containing 4 1 protein-coding PRO222 sushi domain-containing protein 4|YHGM196|testicular secretory protein Li 55 54 0.007391 7.312 1 1 +55062 WIPI1 WD repeat domain, phosphoinositide interacting 1 17 protein-coding ATG18|ATG18A|WIPI49 WD repeat domain phosphoinositide-interacting protein 1|WIPI-1 alpha|atg18 protein homolog 27 0.003696 9.086 1 1 +55063 ZCWPW1 zinc finger CW-type and PWWP domain containing 1 7 protein-coding ZCW1 zinc finger CW-type PWWP domain protein 1|zinc finger CW-type and PWWP domain 1|zinc finger, CW-type with PWWP domain 1 42 0.005749 6.557 1 1 +55064 SPATA6L spermatogenesis associated 6 like 9 protein-coding C9orf68|bA6J24.2 spermatogenesis associated 6-like protein 18 0.002464 5.179 1 1 +55065 SLC52A1 solute carrier family 52 member 1 17 protein-coding GPCR42|GPR172B|PAR2|RBFVD|RFT1|RFVT1|hRFT1 solute carrier family 52, riboflavin transporter, member 1|G protein-coupled receptor 172B|G-protein coupled receptor GPCR42|PERV-A receptor 2|porcine endogenous retrovirus A receptor 2|solute carrier family 52 (riboflavin transporter), member 1 24 0.003285 4.004 1 1 +55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit 16 protein-coding PDP3 pyruvate dehydrogenase phosphatase regulatory subunit, mitochondrial 68 0.009307 9.379 1 1 +55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 13 protein-coding CNOX|PIG38|bA64J21.1|cCNOX ecto-NOX disulfide-thiol exchanger 1|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|ecto-NADPH oxidase disulfide-thiol exchanger 1 72 0.009855 5.142 1 1 +55069 TMEM248 transmembrane protein 248 7 protein-coding C7orf42 transmembrane protein 248|UPF0458 protein C7orf42 28 0.003832 11.68 1 1 +55070 DET1 de-etiolated homolog 1 (Arabidopsis) 15 protein-coding - DET1 homolog 47 0.006433 6.951 1 1 +55071 C9orf40 chromosome 9 open reading frame 40 9 protein-coding - uncharacterized protein C9orf40 8 0.001095 6.972 1 1 +55072 RNF31 ring finger protein 31 14 protein-coding HOIP|ZIBRA E3 ubiquitin-protein ligase RNF31|HOIL-1-interacting protein|zinc in-between-RING-finger ubiquitin-associated domain protein 55 0.007528 9.98 1 1 +55073 LRRC37A4P leucine rich repeat containing 37 member A4, pseudogene 17 pseudo LRRC37|LRRC37A4 - 9 0.001232 7.261 1 1 +55074 OXR1 oxidation resistance 1 8 protein-coding Nbla00307|TLDC3 oxidation resistance protein 1|TBC/LysM-associated domain containing 3|putative protein product of Nbla00307 66 0.009034 9.711 1 1 +55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats 15 protein-coding NUCLING uveal autoantigen with coiled-coil domains and ankyrin repeats|nuclear membrane binding protein 95 0.013 10.12 1 1 +55076 TMEM45A transmembrane protein 45A 3 protein-coding DERP7|DNAPTP4 transmembrane protein 45A|DNA polymerase-transactivated protein 4|dermal papilla derived protein 7 21 0.002874 8.175 1 1 +55079 FEZF2 FEZ family zinc finger 2 3 protein-coding FEZ|FEZL|FKSG36|TOF|ZFP312|ZNF312 fez family zinc finger protein 2|forebrain embryonic zinc finger-like protein 2|testis tissue sperm-binding protein Li 80P|zinc finger protein 312 38 0.005201 0.6282 1 1 +55080 TAPBPL TAP binding protein like 12 protein-coding TAPBP-R|TAPBPR tapasin-related protein|TAP binding protein related|TAP-binding protein-related protein|TAPASIN-R|tapasin-like 25 0.003422 9.213 1 1 +55081 IFT57 intraflagellar transport 57 3 protein-coding ESRRBL1|HIPPI|MHS4R2 intraflagellar transport protein 57 homolog|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 57 homolog 22 0.003011 9.482 1 1 +55082 ARGLU1 arginine and glutamate rich 1 13 protein-coding - arginine and glutamate-rich protein 1 20 0.002737 10.5 1 1 +55083 KIF26B kinesin family member 26B 1 protein-coding - kinesin-like protein KIF26B 154 0.02108 7.142 1 1 +55084 SOBP sine oculis binding protein homolog 6 protein-coding JXC1|MRAMS sine oculis-binding protein homolog|jackson circler protein 1 58 0.007939 7.044 1 1 +55086 CXorf57 chromosome X open reading frame 57 X protein-coding - uncharacterized protein CXorf57 63 0.008623 5.641 1 1 +55088 CCDC186 coiled-coil domain containing 186 10 protein-coding C10orf118 coiled-coil domain-containing protein 186|CTCL tumor antigen HD-CL-01/L14-2|CTCL tumor antigen L14-2 45 0.006159 8.449 1 1 +55089 SLC38A4 solute carrier family 38 member 4 12 protein-coding ATA3|NAT3|PAAT|SNAT4 sodium-coupled neutral amino acid transporter 4|N amino acid transporter 3|Na(+)-coupled neutral amino acid transporter 4|amino acid transporter A3|amino acid transporter system A3|system A amino acid transporter 3|system N amino acid transporter 3 46 0.006296 4.176 1 1 +55090 MED9 mediator complex subunit 9 17 protein-coding MED25 mediator of RNA polymerase II transcription subunit 9|mediator of RNA polymerase II transcription, subunit 9 homolog|mediator subunit 25 7 0.0009581 8.725 1 1 +55092 TMEM51 transmembrane protein 51 1 protein-coding C1orf72 transmembrane protein 51 31 0.004243 8.735 1 1 +55093 WDYHV1 WDYHV motif containing 1 8 protein-coding C8orf32 protein N-terminal glutamine amidohydrolase|N-terminal Gln amidase|WDYHV motif-containing protein 1|nt(Q)-amidase|protein NH2-terminal glutamine deamidase 21 0.002874 7.857 1 1 +55094 GPATCH1 G-patch domain containing 1 19 protein-coding ECGP|GPATC1 G patch domain-containing protein 1|evolutionarily conserved G patch domain containing|evolutionarily conserved G-patch domain-containing protein 55 0.007528 8.056 1 1 +55095 SAMD4B sterile alpha motif domain containing 4B 19 protein-coding SMGB|Smaug2 protein Smaug homolog 2|SAM domain-containing protein 4B|smaug 2|smaug homolog B|sterile alpha motif domain-containing protein 4B 39 0.005338 10.77 1 1 +55096 EBLN2 endogenous Bornavirus-like nucleoprotein 2 3 protein-coding EBLN-2 endogenous Bornavirus-like nucleoprotein 2|EBLN-1|endogenous Borna-like N element-1|endogenous Borna-like N element-2 12 0.001642 3.263 1 1 +55100 WDR70 WD repeat domain 70 5 protein-coding - WD repeat-containing protein 70 64 0.00876 8.91 1 1 +55101 ATP5SL ATP5S like 19 protein-coding - ATP synthase subunit s-like protein 18 0.002464 9.739 1 1 +55102 ATG2B autophagy related 2B 14 protein-coding C14orf103 autophagy-related protein 2 homolog B|ATG2 autophagy related 2 homolog B 155 0.02122 9.537 1 1 +55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 1 protein-coding dJ595C2.1 ras-specific guanine nucleotide-releasing factor RalGPS2|Ral-A exchange factor RalGPS2|ral GEF with PH domain and SH3-binding motif 2|ralA exchange factor RalGPS2 50 0.006844 8.76 1 1 +55105 GPATCH2 G-patch domain containing 2 1 protein-coding CT110|GPATC2|PPP1R30 G patch domain-containing protein 2|cancer/testis antigen 110|protein phosphatase 1, regulatory subunit 30 48 0.00657 8.142 1 1 +55106 SLFN12 schlafen family member 12 17 protein-coding SLFN3 schlafen family member 12 41 0.005612 6.06 1 1 +55107 ANO1 anoctamin 1 11 protein-coding DOG1|ORAOV2|TAOS2|TMEM16A anoctamin-1|Ca2+-activated Cl- channel|anoctamin 1, calcium activated chloride channel|calcium activated chloride channel|discovered on gastrointestinal stromal tumors protein 1|oral cancer overexpressed 2|transmembrane protein 16A (eight membrane-spanning domains)|tumor-amplified and overexpressed sequence 2 75 0.01027 9.183 1 1 +55108 BSDC1 BSD domain containing 1 1 protein-coding - BSD domain-containing protein 1 35 0.004791 10.95 1 1 +55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 5 protein-coding GPATC7|GPATCH7|HSU84971|HUS84971|VG5Q angiogenic factor with G patch and FHA domains 1|G patch domain-containing protein 7|angiogenic factor VG5Q|vasculogenesis gene on 5q protein 49 0.006707 9.611 1 1 +55110 MAGOHB mago homolog B, exon junction complex core component 12 protein-coding MGN2|mago|magoh protein mago nashi homolog 2|mago-nashi homolog B 11 0.001506 8.11 1 1 +55111 PLEKHJ1 pleckstrin homology domain containing J1 19 protein-coding GNRPX pleckstrin homology domain-containing family J member 1|PH domain-containing family J member 1|guanine nucleotide releasing protein x 5 0.0006844 9.799 1 1 +55112 WDR60 WD repeat domain 60 7 protein-coding FAP163|SRPS6|SRTD8 WD repeat-containing protein 60|testicular secretory protein Li 66 69 0.009444 8.514 1 1 +55113 XKR8 XK related 8 1 protein-coding XRG8|hXkr8 XK-related protein 8|X Kell blood group precursor-related family, member 8|X-linked Kx blood group related 8|XK, Kell blood group complex subunit-related family, member 8 17 0.002327 7.708 1 1 +55114 ARHGAP17 Rho GTPase activating protein 17 16 protein-coding MST066|MST110|MSTP038|MSTP066|MSTP110|NADRIN|PP367|PP4534|RICH-1|RICH1|WBP15 rho GTPase-activating protein 17|RhoGAP interacting with CIP4 homologs 1|neuron-associated developmentally regulated protein|rho-type GTPase-activating protein 17 75 0.01027 10.06 1 1 +55116 TMEM39B transmembrane protein 39B 1 protein-coding - transmembrane protein 39B 33 0.004517 8.392 1 1 +55117 SLC6A15 solute carrier family 6 member 15 12 protein-coding NTT73|SBAT1|V7-3|hv7-3 sodium-dependent neutral amino acid transporter B(0)AT2|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/chloride dependent neurotransmitter transporter Homo sapiens orphan neurotransmitter transporter NTT7|solute carrier family 6 (neurotransmitter transporter), member 15|solute carrier family 6 (neutral amino acid transporter), member 15|transporter v7-3 85 0.01163 3.139 1 1 +55118 CRTAC1 cartilage acidic protein 1 10 protein-coding ASPIC|ASPIC1|CEP-68 cartilage acidic protein 1|acidic secreted protein in cartilage|chondrocyte expressed protein 68 kDa CEP-68 55 0.007528 5.485 1 1 +55119 PRPF38B pre-mRNA processing factor 38B 1 protein-coding NET1 pre-mRNA-splicing factor 38B|PRP38 pre-mRNA processing factor 38 domain containing B|sarcoma antigen NY-SAR-27 35 0.004791 10.01 1 1 +55120 FANCL Fanconi anemia complementation group L 2 protein-coding FAAP43|PHF9|POG E3 ubiquitin-protein ligase FANCL|PHD finger protein 9|fanconi anemia group L protein|fanconi anemia-associated polypeptide of 43 kDa 30 0.004106 8.38 1 1 +55122 AKIRIN2 akirin 2 6 protein-coding C6orf166|FBI1|dJ486L4.2 akirin-2|fourteen-three-three beta interactant 1 11 0.001506 9.644 1 1 +55124 PIWIL2 piwi like RNA-mediated gene silencing 2 8 protein-coding CT80|HILI|PIWIL1L|mili piwi-like protein 2|80kDa PIWIL2 short isoform|Miwi like|cancer/testis antigen 80|piwi-like 2|piwil2-like protein|testicular tissue protein Li 141 65 0.008897 2.663 1 1 +55125 CEP192 centrosomal protein 192 18 protein-coding PPP1R62 centrosomal protein of 192 kDa|192 kDa centrosomal protein|centrosomal protein 192kDa|protein phosphatase 1, regulatory subunit 62 156 0.02135 8.989 1 1 +55127 HEATR1 HEAT repeat containing 1 1 protein-coding BAP28|UTP10 HEAT repeat-containing protein 1|UTP10, small subunit (SSU) processome component, homolog|protein BAP28 127 0.01738 9.916 1 1 +55128 TRIM68 tripartite motif containing 68 11 protein-coding GC109|RNF137|SS-56|SS56 E3 ubiquitin-protein ligase TRIM68|Ro/SSA1 related protein|SSA protein SS-56|ring finger protein 137|tripartite motif-containing protein 68 45 0.006159 8.148 1 1 +55129 ANO10 anoctamin 10 3 protein-coding SCAR10|TMEM16K anoctamin-10|transmembrane protein 16K 48 0.00657 9.283 1 1 +55130 ARMC4 armadillo repeat containing 4 10 protein-coding CILD23 armadillo repeat-containing protein 4|testis tissue sperm-binding protein Li 74n 113 0.01547 2.846 1 1 +55131 RBM28 RNA binding motif protein 28 7 protein-coding ANES RNA-binding protein 28|2810480G15Rik 51 0.006981 8.728 1 1 +55132 LARP1B La ribonucleoprotein domain family member 1B 4 protein-coding LARP2 la-related protein 1B|La ribonucleoprotein domain family, member 2|la-related protein 2 56 0.007665 8.547 1 1 +55133 SRBD1 S1 RNA binding domain 1 2 protein-coding - S1 RNA-binding domain-containing protein 1|H_NH0576F01.1|WUGSC:H_NH0576F01.1 57 0.007802 8.407 1 1 +55135 WRAP53 WD repeat containing antisense to TP53 17 protein-coding DKCB3|TCAB1|WDR79 telomerase Cajal body protein 1|WD repeat-containing protein 79|WD repeat-containing protein WRAP53|WD40 protein Wrap53|WD40 repeat-containing protein antisense to TP53|WD40 repeat-containing protein encoding RNA antisense to p53 43 0.005886 7.887 1 1 +55137 FIGN fidgetin, microtubule severing factor 2 protein-coding - fidgetin 117 0.01601 4.949 1 1 +55138 FAM90A1 family with sequence similarity 90 member A1 12 protein-coding - protein FAM90A1 51 0.006981 3.718 1 1 +55139 ANKZF1 ankyrin repeat and zinc finger domain containing 1 2 protein-coding ZNF744 ankyrin repeat and zinc finger domain-containing protein 1|zinc finger protein 744 44 0.006022 9.326 1 1 +55140 ELP3 elongator acetyltransferase complex subunit 3 8 protein-coding KAT9 elongator complex protein 3|elongation protein 3 homolog 25 0.003422 9.458 1 1 +55142 HAUS2 HAUS augmin like complex subunit 2 15 protein-coding C15orf25|CEP27|HsT17025 HAUS augmin-like complex subunit 2|centrosomal protein 27kDa|centrosomal protein of 27 kDa 14 0.001916 8.954 1 1 +55143 CDCA8 cell division cycle associated 8 1 protein-coding BOR|BOREALIN|DasraB|MESRGP borealin|Dasra B|cell division cycle-associated protein 8|dasra-B|hDasra-B|pluripotent embryonic stem cell-related gene 3 protein 16 0.00219 8 1 1 +55144 LRRC8D leucine rich repeat containing 8 family member D 1 protein-coding LRRC5 volume-regulated anion channel subunit LRRC8D|leucine rich repeat containing 5|leucine-rich repeat-containing protein 5|leucine-rich repeat-containing protein 8D 42 0.005749 9.555 1 1 +55145 THAP1 THAP domain containing 1 8 protein-coding DYT6 THAP domain-containing protein 1|4833431A01Rik|THAP domain containing, apoptosis associated protein 1|THAP domain protein 1|nuclear proapoptotic factor 13 0.001779 7.673 1 1 +55146 ZDHHC4 zinc finger DHHC-type containing 4 7 protein-coding ZNF374 probable palmitoyltransferase ZDHHC4|DHHC-4|zinc finger DHHC domain-containing protein 4|zinc finger protein 374|zinc finger, DHHC domain containing 4 24 0.003285 9.841 1 1 +55147 RBM23 RNA binding motif protein 23 14 protein-coding CAPERbeta|PP239|RNPC4 probable RNA-binding protein 23|RNA-binding region (RNP1, RRM) containing 4|RNA-binding region-containing protein 4|coactivator of activating protein-1 and estrogen recep- tors beta|splicing factor SF2 22 0.003011 10.38 1 1 +55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) 14 protein-coding C14orf130 putative E3 ubiquitin-protein ligase UBR7|N-recognin-7 28 0.003832 10.01 1 1 +55149 MTPAP mitochondrial poly(A) polymerase 10 protein-coding PAPD1|SPAX4 poly(A) RNA polymerase, mitochondrial|PAP-associated domain-containing protein 1|TUTase 1|polynucleotide adenylyltransferase|terminal uridylyltransferase 1 49 0.006707 8.961 1 1 +55150 C19orf73 chromosome 19 open reading frame 73 19 protein-coding - putative uncharacterized protein C19orf73 9 0.001232 4.311 1 1 +55151 TMEM38B transmembrane protein 38B 9 protein-coding C9orf87|D4Ertd89e|OI14|TRIC-B|TRICB|bA219P18.1 trimeric intracellular cation channel type B 35 0.004791 7.614 1 1 +55152 DALRD3 DALR anticodon binding domain containing 3 3 protein-coding - DALR anticodon-binding domain-containing protein 3 39 0.005338 9.301 1 1 +55153 SDAD1 SDA1 domain containing 1 4 protein-coding - protein SDA1 homolog|SDA1 domain-containing protein 1|nucleolar protein 130 43 0.005886 9.78 1 1 +55154 MSTO1 misato 1, mitochondrial distribution and morphology regulator 1 protein-coding LST005|MST protein misato homolog 1|misato homolog 1 25 0.003422 9.311 1 1 +55156 ARMC1 armadillo repeat containing 1 8 protein-coding Arcp armadillo repeat-containing protein 1 22 0.003011 9.411 1 1 +55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial 1 protein-coding ASPRS|LBSL|MT-ASPRS aspartate--tRNA ligase, mitochondrial|aspartate tRNA ligase 2, mitochondrial|aspartyl-tRNA synthetase, mitochondrial 39 0.005338 9.178 1 1 +55159 RFWD3 ring finger and WD repeat domain 3 16 protein-coding RNF201 E3 ubiquitin-protein ligase RFWD3|RING finger and WD repeat domain-containing protein 3|RING finger protein 201 45 0.006159 9.505 1 1 +55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like 1 protein-coding GrinchGEF rho guanine nucleotide exchange factor 10-like protein|Rho guanine nucleotide exchange factor (GEF) 10-like 91 0.01246 9.891 1 1 +55161 TMEM33 transmembrane protein 33 4 protein-coding 1600019D15Rik|SHINC-3|SHINC3 transmembrane protein 33 13 0.001779 10.69 1 1 +55163 PNPO pyridoxamine 5'-phosphate oxidase 17 protein-coding HEL-S-302|PDXPO pyridoxine-5'-phosphate oxidase|epididymis secretory protein Li 302|pyridoxal 5'-phosphate synthase|pyridoxamine-phosphate oxidase|pyridoxine 5'-phosphate oxidase 14 0.001916 10.14 1 1 +55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor 3 protein-coding GRIM-1|Shq1p protein SHQ1 homolog|SHQ1 homolog|gene associated with retinoid and interferon-induced mortality 1 28 0.003832 8.477 1 1 +55165 CEP55 centrosomal protein 55 10 protein-coding C10orf3|CT111|URCC6 centrosomal protein of 55 kDa|cancer/testis antigen 111|centrosomal protein 55kDa|up-regulated in colon cancer 6 30 0.004106 7.744 1 1 +55166 CENPQ centromere protein Q 6 protein-coding C6orf139|CENP-Q centromere protein Q 18 0.002464 7.016 1 1 +55167 MSL2 male-specific lethal 2 homolog (Drosophila) 3 protein-coding MSL-2|MSL2L1|RNF184 E3 ubiquitin-protein ligase MSL2|MSL2-like 1|male-specific lethal 2-like 1|male-specific lethal-2 homolog 1|ring finger protein 184 41 0.005612 9.595 1 1 +55168 MRPS18A mitochondrial ribosomal protein S18A 6 protein-coding HumanS18b|MRP-S18-3|MRPS18-3|S18bmt 28S ribosomal protein S18a, mitochondrial|28S ribosomal protein S18-3, mitochondrial|MRP-S18-a|S18mt-a|mitochondrial ribosomal protein S18-3 5 0.0006844 9.63 1 1 +55170 PRMT6 protein arginine methyltransferase 6 1 protein-coding HRMT1L6 protein arginine N-methyltransferase 6|HMT1 hnRNP methyltransferase-like 6|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 6|histone-arginine N-methyltransferase PRMT6 28 0.003832 8.583 1 1 +55171 TBCCD1 TBCC domain containing 1 3 protein-coding - TBCC domain-containing protein 1 30 0.004106 8.215 1 1 +55172 DNAAF2 dynein axonemal assembly factor 2 14 protein-coding C14orf104|CILD10|KTU|PF13 protein kintoun|dynein assembly factor 2, axonemal|kintoun 37 0.005064 8.163 1 1 +55173 MRPS10 mitochondrial ribosomal protein S10 6 protein-coding MRP-S10|PNAS-122 28S ribosomal protein S10, mitochondrial|S10mt|mitochondrial 28S ribosomal protein S10 11 0.001506 9.863 1 1 +55174 INTS10 integrator complex subunit 10 8 protein-coding C8orf35|INT10 integrator complex subunit 10 39 0.005338 9.973 1 1 +55175 KLHL11 kelch like family member 11 17 protein-coding - kelch-like protein 11 44 0.006022 5.241 1 1 +55176 SEC61A2 Sec61 translocon alpha 2 subunit 10 protein-coding - protein transport protein Sec61 subunit alpha isoform 2|Sec61 alpha 2 subunit|Sec61 alpha form 2|protein transport protein Sec61 subunit alpha|sec61 alpha-2 35 0.004791 7.162 1 1 +55177 RMDN3 regulator of microtubule dynamics 3 15 protein-coding FAM82A2|FAM82C|RMD-3|RMD3|ptpip51 regulator of microtubule dynamics protein 3|TCPTP-interacting protein 51|cerebral protein 10|family with sequence similarity 82, member A2|family with sequence similarity 82, member C|microtubule-associated protein|protein tyrosine phosphatase-interacting protein 51 20 0.002737 9.915 1 1 +55178 MRM3 mitochondrial rRNA methyltransferase 3 17 protein-coding RMTL1|RNMTL1 rRNA methyltransferase 3, mitochondrial|16S rRNA (guanosine(1370)-2'-O)-methyltransferase|16S rRNA [Gm1370] 2'-O-methyltransferase|RNA methyltransferase like 1|RNA methyltransferase-like protein 1|putative RNA methyltransferase 21 0.002874 8.289 1 1 +55179 FAIM Fas apoptotic inhibitory molecule 3 protein-coding FAIM1 fas apoptotic inhibitory molecule 1 13 0.001779 7.883 1 1 +55180 LINS1 lines homolog 1 15 protein-coding LINS|MRT27|WINS1 protein Lines homolog 1|WINS1 protein with Drosophila Lines (Lin) homologous domain|wnt-signaling molecule Lines homolog 1 46 0.006296 7.847 1 1 +55181 SMG8 SMG8, nonsense mediated mRNA decay factor 17 protein-coding C17orf71 protein SMG8|amplified in breast cancer gene 2 protein|protein smg-8 homolog|smg-8 homolog, nonsense mediated mRNA decay factor 86 0.01177 8.834 1 1 +55182 RNF220 ring finger protein 220 1 protein-coding C1orf164 E3 ubiquitin-protein ligase RNF220 56 0.007665 10.42 1 1 +55183 RIF1 replication timing regulatory factor 1 2 protein-coding - telomere-associated protein RIF1|RAP1 interacting factor homolog|rap1-interacting factor 1 homolog 160 0.0219 9.14 1 1 +55184 DZANK1 double zinc ribbon and ankyrin repeat domains 1 20 protein-coding ANKRD64|C20orf12|C20orf84|bA189K21.1|bA189K21.8|dJ568F9.2 double zinc ribbon and ankyrin repeat-containing protein 1|ankyrin repeat domain 64|ankyrin repeat-containing protein C20orf12 56 0.007665 6.116 1 1 +55186 SLC25A36 solute carrier family 25 member 36 3 protein-coding PNC2 solute carrier family 25 member 36|solute carrier family 25 (pyrimidine nucleotide carrier ), member 36 23 0.003148 10.15 1 1 +55187 VPS13D vacuolar protein sorting 13 homolog D 1 protein-coding - vacuolar protein sorting-associated protein 13D|vacuolar protein sorting 13D 242 0.03312 10.62 1 1 +55188 RIC8B RIC8 guanine nucleotide exchange factor B 12 protein-coding RIC8|hSyn synembryn-B|brain synembrin|brain synembryn|resistance to inhibitors of cholinesterase 8 homolog B 33 0.004517 8.448 1 1 +55190 NUDT11 nudix hydrolase 11 X protein-coding APS1|ASP1|DIPP3b|DIPP3beta|hDIPP3beta diphosphoinositol polyphosphate phosphohydrolase 3-beta|DIPP-3-beta|DIPP3-beta|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 3-beta|diadenosine hexaphosphate hydrolase (AMP-forming)|diphosphoinositol polyphosphate phosphohydrolase 3, beta|hAps1|nucleoside diphosphate-linked moiety X motif 11|nudix (nucleoside diphosphate linked moiety X)-type motif 11|nudix motif 11 62 0.008486 5.392 1 1 +55191 NADSYN1 NAD synthetase 1 11 protein-coding - glutamine-dependent NAD(+) synthetase|NAD(+) synthase|NAD(+) synthetase|glutamine-dependent NAD synthetase 47 0.006433 9.964 1 1 +55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 15 protein-coding - dnaJ homolog subfamily C member 17|DnaJ (Hsp40) homolog, subfamily C, member 17 25 0.003422 7.899 1 1 +55193 PBRM1 polybromo 1 3 protein-coding BAF180|PB1 protein polybromo-1|BRG1-associated factor 180|polybromo-1D 235 0.03217 10.1 1 1 +55194 EVA1B eva-1 homolog B 1 protein-coding C1orf78|FAM176B protein eva-1 homolog B|family with sequence similarity 176, member B|protein FAM176B 7 0.0009581 7.73 1 1 +55195 C14orf105 chromosome 14 open reading frame 105 14 protein-coding - uncharacterized protein C14orf105 30 0.004106 1.902 1 1 +55196 KIAA1551 KIAA1551 12 protein-coding C12orf35|UTA2-1 uncharacterized protein KIAA1551|uncharacterized protein C12orf35 114 0.0156 9.813 1 1 +55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A 18 protein-coding HsT3101|P15RS regulation of nuclear pre-mRNA domain-containing protein 1A|CDKN2B-related protein|Cyclin-dependent kinase inhibitor 2B-related protein (p15INK4B-related protein)|cyclin-dependent kinase 2B-inhibitor-related protein|p15INK4B-related protein 20 0.002737 10.19 1 1 +55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 12 protein-coding DIP13B DCC-interacting protein 13-beta|DIP13 beta|adapter protein containing PH domain, PTB domain and leucine zipper motif 2|adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 48 0.00657 9.787 1 1 +55199 FAM86C1 family with sequence similarity 86 member C1 11 protein-coding FAM86C protein FAM86C1|family with sequence similarity 86, member C 19 0.002601 7.38 1 1 +55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 12 protein-coding MyoGEF pleckstrin homology domain-containing family G member 6|PH domain-containing family G member 6|myosin II interacting GEF|myosin interacting guanine nucleotide exchange factor|pleckstrin homology domain containing, family G (with RhoGef domain) member 6 44 0.006022 6.64 1 1 +55201 MAP1S microtubule associated protein 1S 19 protein-coding BPY2IP1|C19orf5|MAP8|VCY2IP-1|VCY2IP1 microtubule-associated protein 1S|BPY2-interacting protein 1|MAP-1S|VCY2-interacting protein 1|microtubule-associated protein 8|variable charge Y chromosome 2-interacting protein 1 92 0.01259 9.915 1 1 +55203 LGI2 leucine rich repeat LGI family member 2 4 protein-coding LGIL2 leucine-rich repeat LGI family member 2|LGI1-like protein 2|leucine-rich glioma-inactivated protein 2|leucine-rich, glioma inactivated 2 47 0.006433 6.051 1 1 +55204 GOLPH3L golgi phosphoprotein 3 like 1 protein-coding GPP34R Golgi phosphoprotein 3-like|GPP34-related protein 14 0.001916 9.741 1 1 +55205 ZNF532 zinc finger protein 532 18 protein-coding - zinc finger protein 532 69 0.009444 10.2 1 1 +55206 SBNO1 strawberry notch homolog 1 12 protein-coding MOP3|Sno protein strawberry notch homolog 1|monocyte protein 3 102 0.01396 8.464 1 1 +55207 ARL8B ADP ribosylation factor like GTPase 8B 3 protein-coding ARL10C|Gie1 ADP-ribosylation factor-like protein 8B|ADP-ribosylation factor-like 10C|ADP-ribosylation factor-like 8B|ADP-ribosylation factor-like protein 10C|novel small G protein indispensable for equal chromosome segregation 1 12 0.001642 11.09 1 1 +55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 13 protein-coding C13orf17 DCN1-like protein 2|DCN1, defective in cullin neddylation 1, domain containing 2|DCUN1 domain-containing protein 2|defective in cullin neddylation protein 1-like protein 2 15 0.002053 7.932 1 1 +55209 SETD5 SET domain containing 5 3 protein-coding - SET domain-containing protein 5 93 0.01273 10.97 1 1 +55210 ATAD3A ATPase family, AAA domain containing 3A 1 protein-coding - ATPase family AAA domain-containing protein 3A 32 0.00438 9.534 1 1 +55211 DPPA4 developmental pluripotency associated 4 3 protein-coding 2410091M23Rik developmental pluripotency-associated protein 4 63 0.008623 1.018 1 1 +55212 BBS7 Bardet-Biedl syndrome 7 4 protein-coding BBS2L1 Bardet-Biedl syndrome 7 protein|BBS2-like 1 58 0.007939 7.838 1 1 +55213 RCBTB1 RCC1 and BTB domain containing protein 1 13 protein-coding CLLD7|CLLL7|GLP RCC1 and BTB domain-containing protein 1|CLL deletion region gene 7 protein|GDP/GTP exchange factor (GEF)-like protein|chronic lymphocytic leukemia deletion region gene 7 protein|regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1|regulator of chromosome condensation and BTB domain-containing protein 1 29 0.003969 9.242 1 1 +55214 P3H2 prolyl 3-hydroxylase 2 3 protein-coding LEPREL1|MCVD|MLAT4 prolyl 3-hydroxylase 2|leprecan-like 1|myxoid liposarcoma-associated protein 4|procollagen-proline 3-dioxygenase 2|prolyl 3-hydroxylase 3 58 0.007939 8.04 1 1 +55215 FANCI Fanconi anemia complementation group I 15 protein-coding KIAA1794 Fanconi anemia group I protein 79 0.01081 9.25 1 1 +55216 C11orf57 chromosome 11 open reading frame 57 11 protein-coding - uncharacterized protein C11orf57 26 0.003559 9.44 1 1 +55217 TMLHE trimethyllysine hydroxylase, epsilon X protein-coding AUTSX6|BBOX2|TMLD|TMLH|TMLHED|XAP130 trimethyllysine dioxygenase, mitochondrial|TML hydroxylase|TML-alpha-ketoglutarate dioxygenase|butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 2|epsilon-trimethyllysine 2-oxoglutarate dioxygenase|epsilon-trimethyllysine hydroxylase 27 0.003696 7.368 1 1 +55218 EXD2 exonuclease 3'-5' domain containing 2 14 protein-coding C14orf114|EXDL2 exonuclease 3'-5' domain-containing protein 2|exonuclease 3'-5' domain-like 2|exonuclease 3'-5' domain-like-containing protein 2 34 0.004654 9.19 1 1 +55219 TMEM57 transmembrane protein 57 1 protein-coding MACOILIN macoilin 42 0.005749 9.774 1 1 +55220 KLHDC8A kelch domain containing 8A 1 protein-coding - kelch domain-containing protein 8A|S-delta-E1|substitute for delta-EGFR expression 1 32 0.00438 4.656 1 1 +55222 LRRC20 leucine rich repeat containing 20 10 protein-coding - leucine-rich repeat-containing protein 20 9 0.001232 8.469 1 1 +55223 TRIM62 tripartite motif containing 62 1 protein-coding DEAR1 E3 ubiquitin-protein ligase TRIM62|ductal epithelium-associated RING Chromosome 1|tripartite motif-containing protein 62 28 0.003832 7.878 1 1 +55224 ETNK2 ethanolamine kinase 2 1 protein-coding EKI2|HMFT1716 ethanolamine kinase 2|ethanolamine kinase-like protein 31 0.004243 8.526 1 1 +55225 RAVER2 ribonucleoprotein, PTB binding 2 1 protein-coding - ribonucleoprotein PTB-binding 2|protein raver-2 38 0.005201 8.505 1 1 +55226 NAT10 N-acetyltransferase 10 11 protein-coding ALP|NET43 RNA cytidine acetyltransferase|18S rRNA cytosine acetyltransferase|N-acetyltransferase 10 (GCN5-related)|N-acetyltransferase-like protein 53 0.007254 10.38 1 1 +55227 LRRC1 leucine rich repeat containing 1 6 protein-coding LANO|dJ523E19.1 leucine-rich repeat-containing protein 1|LANO adapter protein|LAP (leucine-rich repeats and PDZ) and no PDZ protein|LAP and no PDZ protein 40 0.005475 8.938 1 1 +55228 PNMAL1 paraneoplastic Ma antigen family like 1 19 protein-coding - PNMA-like protein 1 33 0.004517 7.451 1 1 +55229 PANK4 pantothenate kinase 4 1 protein-coding - pantothenate kinase 4|hPanK4|pantothenic acid kinase 4 46 0.006296 8.767 1 1 +55230 USP40 ubiquitin specific peptidase 40 2 protein-coding - ubiquitin carboxyl-terminal hydrolase 40|deubiquitinating enzyme 40|ubiquitin specific protease 40|ubiquitin thioesterase 40|ubiquitin thiolesterase 40|ubiquitin-specific-processing protease 40 70 0.009581 9.793 1 1 +55231 CCDC87 coiled-coil domain containing 87 11 protein-coding - coiled-coil domain-containing protein 87 68 0.009307 4.083 1 1 +55233 MOB1A MOB kinase activator 1A 2 protein-coding C2orf6|MATS1|MOB1|MOBK1B|MOBKL1B|Mob4B MOB kinase activator 1A|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 9 0.001232 9.32 1 1 +55234 SMU1 DNA replication regulator and spliceosomal factor 9 protein-coding BWD|SMU-1|fSAP57 WD40 repeat-containing protein SMU1|brain-enriched WD-repeat protein|functional spliceosome-associated protein 57|smu-1 suppressor of mec-8 and unc-52 homolog|smu-1 suppressor of mec-8 and unc-52 protein homolog 21 0.002874 10.51 1 1 +55236 UBA6 ubiquitin like modifier activating enzyme 6 4 protein-coding E1-L2|MOP-4|UBE1L2 ubiquitin-like modifier-activating enzyme 6|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 79 0.01081 9.836 1 1 +55237 VRTN vertebrae development associated 14 protein-coding C14orf115|vertnin vertnin|vertebrae development homolog (pig) 79 0.01081 0.8125 1 1 +55238 SLC38A7 solute carrier family 38 member 7 16 protein-coding SNAT7 putative sodium-coupled neutral amino acid transporter 7|amino acid transporter 27 0.003696 8.046 1 1 +55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 16 protein-coding TPA1 prolyl 3-hydroxylase OGFOD1|2-oxoglutarate and iron-dependent oxygenase domain-containing protein 1|TPA1, termination and polyadenylation 1, homolog|termination and polyadenylation 1 homolog 28 0.003832 9.714 1 1 +55240 STEAP3 STEAP3 metalloreductase 2 protein-coding AHMIO2|STMP3|TSAP6|dudlin-2|dudulin-2|pHyde metalloreductase STEAP3|STEAP family member 3, metalloreductase|six-transmembrane epithelial antigen of prostate 3|tumor suppressor pHyde|tumor suppressor-activated pathway protein 6 35 0.004791 9.594 1 1 +55243 KIRREL kin of IRRE like (Drosophila) 1 protein-coding NEPH1 kin of IRRE-like protein 1|kin of irregular chiasm-like protein 1|nephrin related|nephrin-like protein 1 82 0.01122 7.205 1 1 +55244 SLC47A1 solute carrier family 47 member 1 17 protein-coding MATE1 multidrug and toxin extrusion protein 1|MATE-1|hMATE-1|multidrug and toxin extrusion 1|solute carrier family 47 (multidrug and toxin extrusion), member 1 47 0.006433 6.507 1 1 +55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 20 protein-coding BFZB|C20orf44|CBP3|UQCC ubiquinol-cytochrome-c reductase complex assembly factor 1|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 29 0.003969 9.707 1 1 +55246 CCDC25 coiled-coil domain containing 25 8 protein-coding - coiled-coil domain-containing protein 25 14 0.001916 9.741 1 1 +55247 NEIL3 nei like DNA glycosylase 3 4 protein-coding FGP2|FPG2|NEI3|ZGRF3|hFPG2|hNEI3 endonuclease 8-like 3|DNA glycosylase FPG2|DNA glycosylase hFPG2|DNA glycosylase/AP lyase Neil3|endonuclease VIII-like 3|nei endonuclease VIII-like 3|nei-like protein 3|zinc finger, GRF-type containing 3 47 0.006433 5.07 1 1 +55248 TMEM206 transmembrane protein 206 1 protein-coding C1orf75 transmembrane protein 206 37 0.005064 7.857 1 1 +55249 YY1AP1 YY1 associated protein 1 1 protein-coding HCCA1|HCCA2|YAP|YY1AP YY1-associated protein 1|hepatocellular carcinoma susceptibility protein|hepatocellular carcinoma-associated protein 2 55 0.007528 10.83 1 1 +55250 ELP2 elongator acetyltransferase complex subunit 2 18 protein-coding SHINC-2|STATIP1|StIP elongator complex protein 2|STAT3-interacting protein 1|elongation protein 2 homolog|elongator protein 2|signal transducer and activator of transcription 3 interacting protein 1 42 0.005749 10.03 1 1 +55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 20 protein-coding C20orf36 protein-L-isoaspartate O-methyltransferase domain-containing protein 2 31 0.004243 10.29 1 1 +55252 ASXL2 additional sex combs like 2, transcriptional regulator 2 protein-coding ASXH2 putative Polycomb group protein ASXL2|additional sex combs like 2|additional sex combs like transcriptional regulator 2|additional sex combs-like protein 2|polycomb group protein ASXH2 141 0.0193 8.644 1 1 +55253 TYW1 tRNA-yW synthesizing protein 1 homolog 7 protein-coding RSAFD1|TYW1A|YPL207W S-adenosyl-L-methionine-dependent tRNA 4-demethylwyosine synthase|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 46 0.006296 9.067 1 1 +55254 TMEM39A transmembrane protein 39A 3 protein-coding - transmembrane protein 39A 34 0.004654 9.053 1 1 +55255 WDR41 WD repeat domain 41 5 protein-coding MSTP048 WD repeat-containing protein 41 35 0.004791 9.084 1 1 +55256 ADI1 acireductone dioxygenase 1 2 protein-coding APL1|ARD|Fe-ARD|HMFT1638|MTCBP1|Ni-ARD|SIPL|mtnD 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 8 0.001095 10.94 1 1 +55257 MRGBP MRG domain binding protein 20 protein-coding C20orf20|Eaf7|MRG15BP|URCC4 MRG/MORF4L-binding protein|MRG-binding protein|MRG/MORF4L binding protein|up-regulated in colon cancer 4 18 0.002464 8.807 1 1 +55258 THNSL2 threonine synthase like 2 2 protein-coding SOFAT|THS2|TSH2 threonine synthase-like 2|secreted osteoclastogenic factor of activated T cells 39 0.005338 8.356 1 1 +55259 CASC1 cancer susceptibility candidate 1 12 protein-coding LAS1|PPP1R54 protein CASC1|cancer susceptibility candidate gene 1 protein|lung adenoma susceptibility 1-like protein|protein phosphatase 1 regulatory subunit 54 51 0.006981 3.723 1 1 +55260 TMEM143 transmembrane protein 143 19 protein-coding - transmembrane protein 143 27 0.003696 7.138 1 1 +55262 C7orf43 chromosome 7 open reading frame 43 7 protein-coding - uncharacterized protein C7orf43 20 0.002737 8.697 1 1 +55266 TMEM19 transmembrane protein 19 12 protein-coding - transmembrane protein 19 25 0.003422 9.433 1 1 +55267 PRR34 proline rich 34 22 protein-coding C22orf26 proline-rich protein 34 10 0.001369 3.248 1 1 +55268 ECHDC2 enoyl-CoA hydratase domain containing 2 1 protein-coding - enoyl-CoA hydratase domain-containing protein 2, mitochondrial|enoyl Coenzyme A hydratase domain containing 2 23 0.003148 9.157 1 1 +55269 PSPC1 paraspeckle component 1 13 protein-coding PSP1 paraspeckle component 1|paraspeckle protein 1 44 0.006022 9.629 1 1 +55270 NUDT15 nudix hydrolase 15 13 protein-coding MTH2|NUDT15D probable 8-oxo-dGTP diphosphatase NUDT15|8-oxo-dGTPase NUDT15|mutT homolog 2|nudix (nucleoside diphosphate linked moiety X)-type motif 15|probable 7,8-dihydro-8-oxoguanine triphosphatase NUDT15 13 0.001779 8.789 1 1 +55272 IMP3 IMP3, U3 small nucleolar ribonucleoprotein 15 protein-coding BRMS2|C15orf12|MRPS4 U3 small nucleolar ribonucleoprotein protein IMP3|IMP3, U3 small nucleolar ribonucleoprotein, homolog|U3 snoRNP protein 3 homolog|U3 snoRNP protein IMP3 9 0.001232 10.23 1 1 +55273 TMEM100 transmembrane protein 100 17 protein-coding - transmembrane protein 100 17 0.002327 5.332 1 1 +55274 PHF10 PHD finger protein 10 6 protein-coding BAF45A|XAP135 PHD finger protein 10|BRG1-associated factor 45a|BRG1-associated factor, 45-KD, A|PHD zinc finger protein XAP135 27 0.003696 10.24 1 1 +55275 VPS53 VPS53, GARP complex subunit 17 protein-coding HCCS1|PCH2E|hVps53L|pp13624 vacuolar protein sorting-associated protein 53 homolog 45 0.006159 9.901 1 1 +55276 PGM2 phosphoglucomutase 2 4 protein-coding MSTP006 phosphoglucomutase-2|PGM 2|glucose phosphomutase 2|phosphodeoxyribomutase 38 0.005201 9.38 1 1 +55277 FGGY FGGY carbohydrate kinase domain containing 1 protein-coding - FGGY carbohydrate kinase domain-containing protein 71 0.009718 7.061 1 1 +55278 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 6 protein-coding GatA glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial|glu-AdT subunit A|glutaminyl-tRNA synthase-like protein 1|glutamyl-tRNA(Gln) amidotransferase subunit A homolog|glutamyl-tRNA(Gln) amidotransferase, subunit A 27 0.003696 8.76 1 1 +55279 ZNF654 zinc finger protein 654 3 protein-coding - zinc finger protein 654|melanoma-associated antigen 32 0.00438 8.172 1 1 +55280 CWF19L1 CWF19-like 1, cell cycle control (S. pombe) 10 protein-coding C19L1|SCAR17|hDrn1 CWF19-like protein 1|CWF19-like 1 cell cycle control 29 0.003969 8.875 1 1 +55281 TMEM140 transmembrane protein 140 7 protein-coding - transmembrane protein 140 19 0.002601 9.008 1 1 +55282 LRRC36 leucine rich repeat containing 36 16 protein-coding RORBP70|XLHSRF2 leucine-rich repeat-containing protein 36|ROR gamma binding protein 70|heat shock regulated 2 56 0.007665 2.968 1 1 +55283 MCOLN3 mucolipin 3 1 protein-coding TRP-ML3|TRPML3 mucolipin-3 45 0.006159 5.064 1 1 +55284 UBE2W ubiquitin conjugating enzyme E2 W (putative) 8 protein-coding UBC-16|UBC16 ubiquitin-conjugating enzyme E2 W|E2 ubiquitin-conjugating enzyme W|N-terminal E2 ubiquitin-conjugating enzyme|N-terminus-conjugating E2|ubiquitin carrier protein W|ubiquitin conjugating enzyme E2W (putative)|ubiquitin-conjugating enzyme 16|ubiquitin-conjugating enzyme 2W|ubiquitin-protein ligase W 12 0.001642 9.283 1 1 +55285 RBM41 RNA binding motif protein 41 X protein-coding - RNA-binding protein 41 24 0.003285 7.094 1 1 +55286 C4orf19 chromosome 4 open reading frame 19 4 protein-coding - uncharacterized protein C4orf19 20 0.002737 6.311 1 1 +55287 TMEM40 transmembrane protein 40 3 protein-coding - transmembrane protein 40 22 0.003011 3.328 1 1 +55288 RHOT1 ras homolog family member T1 17 protein-coding ARHT1|MIRO-1|MIRO1 mitochondrial Rho GTPase 1|mitochondrial Rho (MIRO) GTPase 1|rac-GTP binding protein-like protein|ras homolog gene family, member T1 41 0.005612 9.566 1 1 +55289 ACOXL acyl-CoA oxidase-like 2 protein-coding - acyl-coenzyme A oxidase-like protein|acyl-CoA oxidase-like protein 47 0.006433 2.561 1 1 +55290 BRF2 BRF2, RNA polymerase III transcription initiation factor 50 kDa subunit 8 protein-coding BRFU|TFIIIB50 transcription factor IIIB 50 kDa subunit|B-related factor 2|BRF-2|BRF2, subunit of RNA polymerase III transcription initiation factor, BRF1-like|RNA polymerase III transcription initiation factor BRFU|hBRFU|hTFIIIB50|transcription factor IIB- related factor, TFIIIB50 25 0.003422 8.469 1 1 +55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 11 protein-coding C11orf23|PP6R3|SAP190|SAPL|SAPLa|SAPS3 serine/threonine-protein phosphatase 6 regulatory subunit 3|SAPS domain family, member 3|sporulation-induced transcript 4-associated protein SAPL 54 0.007391 10.96 1 1 +55293 UEVLD UEV and lactate/malate dehyrogenase domains 11 protein-coding ATTP|UEV3 ubiquitin-conjugating enzyme E2 variant 3|EV and lactate/malate dehydrogenase domain-containing protein|UEV-3|signaling molecule ATTP 26 0.003559 7.62 1 1 +55294 FBXW7 F-box and WD repeat domain containing 7 4 protein-coding AGO|CDC4|FBW6|FBW7|FBX30|FBXO30|FBXW6|SEL-10|SEL10|hAgo|hCdc4 F-box/WD repeat-containing protein 7|F-box and WD repeat domain containing 7, E3 ubiquitin protein ligase|F-box and WD-40 domain protein 7 (archipelago homolog, Drosophila)|F-box protein FBW7|F-box protein FBX30|F-box protein SEL-10|archipelago|homolog of C elegans sel-10 235 0.03217 8.61 1 1 +55295 KLHL26 kelch like family member 26 19 protein-coding - kelch-like protein 26|kelch-like 26 44 0.006022 7.859 1 1 +55296 TBC1D19 TBC1 domain family member 19 4 protein-coding - TBC1 domain family member 19 31 0.004243 6.55 1 1 +55297 CCDC91 coiled-coil domain containing 91 12 protein-coding HSD8|p56 coiled-coil domain-containing protein 91|GGA-binding partner|p56 accessory protein 41 0.005612 8.722 1 1 +55298 RNF121 ring finger protein 121 11 protein-coding - RING finger protein 121 14 0.001916 8.945 1 1 +55299 BRIX1 BRX1, biogenesis of ribosomes 5 protein-coding BRIX|BXDC2 ribosome biogenesis protein BRX1 homolog|BRX1, biogenesis of ribosomes, homolog|brix domain containing 2|brix domain-containing protein 2 21 0.002874 9.471 1 1 +55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta 4 protein-coding PI4KIIB|PIK42B phosphatidylinositol 4-kinase type 2-beta|PI4KII-BETA|phosphatidylinositol 4-kinase type-II beta 26 0.003559 9.087 1 1 +55301 OLAH oleoyl-ACP hydrolase 10 protein-coding AURA1|SAST|THEDC1 S-acyl fatty acid synthase thioesterase, medium chain|augmented in rheumatoid arthritis 1|oleoyl-acyl-carrier-protein hydrolase|thioesterase II|thioesterase domain containing 1|thioesterase domain-containing protein 1 31 0.004243 1.365 1 1 +55303 GIMAP4 GTPase, IMAP family member 4 7 protein-coding IAN-1|IAN1|IMAP4|MSTP062 GTPase IMAP family member 4|human immune associated nucleotide 1|immune-associated nucleotide-binding protein 1|immunity associated protein 4|immunity-associated nucleotide 1 protein 36 0.004927 8.666 1 1 +55304 SPTLC3 serine palmitoyltransferase long chain base subunit 3 20 protein-coding C20orf38|LCB2B|LCB3|SPT3|SPTLC2L|dJ718P11|dJ718P11.1|hLCB2b serine palmitoyltransferase 3|LCB 3|SPT 3|long chain base biosynthesis protein 2b|long chain base biosynthesis protein 3|serine palmitoyltransferase, long chain base subunit 2-like (aminotransferase 2)|serine-palmitoyl-CoA transferase 3 58 0.007939 7.294 1 1 +55308 DDX19A DEAD-box helicase 19A 16 protein-coding DDX19-DDX19L|DDX19L ATP-dependent RNA helicase DDX19A|DDX19-like protein|DEAD (Asp-Glu-Ala-As) box polypeptide 19A|DEAD (Asp-Glu-Ala-Asp) box polypeptide 19A|DEAD box protein 19A|RNA helicase 20 0.002737 9.766 1 1 +55311 ZNF444 zinc finger protein 444 19 protein-coding EZF-2|EZF2|ZSCAN17 zinc finger protein 444|endothelial zinc finger protein 2|zinc finger and SCAN domain-containing protein 17 13 0.001779 9.262 1 1 +55312 RFK riboflavin kinase 9 protein-coding RIFK riboflavin kinase|0610038L10Rik|ATP:riboflavin 5'-phosphotransferase|flavokinase 11 0.001506 9.29 1 1 +55313 CPPED1 calcineurin like phosphoesterase domain containing 1 16 protein-coding CSTP1 serine/threonine-protein phosphatase CPPED1|calcineurin-like phosphoesterase domain-containing protein 1|complete S-transactivated protein 1 31 0.004243 9.065 1 1 +55314 TMEM144 transmembrane protein 144 4 protein-coding - transmembrane protein 144 21 0.002874 7.847 1 1 +55315 SLC29A3 solute carrier family 29 member 3 10 protein-coding ENT3|HCLAP|HJCD|PHID equilibrative nucleoside transporter 3|solute carrier family 29 (equilibrative nucleoside transporter), member 3|solute carrier family 29 (nucleoside transporters), member 3 29 0.003969 8.053 1 1 +55316 RSAD1 radical S-adenosyl methionine domain containing 1 17 protein-coding - radical S-adenosyl methionine domain-containing protein 1, mitochondrial|oxygen-independent coproporphyrinogen-III oxidase-like protein RSAD1 30 0.004106 9.52 1 1 +55317 AP5S1 adaptor related protein complex 5 sigma 1 subunit 20 protein-coding C20orf29 AP-5 complex subunit sigma-1|adapter-related protein complex 5 sigma subunit|adaptor-related protein complex 5 sigma subunit|protein C20orf29|sigma5 13 0.001779 8.142 1 1 +55319 TMA16 translation machinery associated 16 homolog 4 protein-coding C4orf43 translation machinery-associated protein 16|UPF0534 protein C4orf43 14 0.001916 8.336 1 1 +55320 MIS18BP1 MIS18 binding protein 1 14 protein-coding C14orf106|HSA242977|KNL2|M18BP1 mis18-binding protein 1|P243|hsKNL-2|kinetochore null 2 homolog|kinetochore-associated protein KNL-2 homolog|putative protein p243 which interacts with transcription factor Sp1 71 0.009718 8.491 1 1 +55321 TMEM74B transmembrane protein 74B 20 protein-coding C20orf46 transmembrane protein 74B|transmembrane protein C20orf46 17 0.002327 5.265 1 1 +55322 C5orf22 chromosome 5 open reading frame 22 5 protein-coding - UPF0489 protein C5orf22 35 0.004791 9.091 1 1 +55323 LARP6 La ribonucleoprotein domain family member 6 15 protein-coding ACHN la-related protein 6|acheron|death-associated LA motif protein 36 0.004927 8 1 1 +55324 ABCF3 ATP binding cassette subfamily F member 3 3 protein-coding EST201864 ATP-binding cassette sub-family F member 3|ATP-binding cassette, sub-family F (GCN20), member 3 57 0.007802 10.33 1 1 +55325 UFSP2 UFM1 specific peptidase 2 4 protein-coding BHD|C4orf20 ufm1-specific protease 2 28 0.003832 9.014 1 1 +55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 8 protein-coding 1AGPAT5|LPAATE 1-acyl-sn-glycerol-3-phosphate acyltransferase epsilon|1-AGP acyltransferase 5|1-AGPAT 5|1-acylglycerol-3-phosphate O-acyltransferase 5 (lysophosphatidic acid acyltransferase, epsilon)|lysophosphatidic acid acyltransferase epsilon|testicular tissue protein Li 144 16 0.00219 9.624 1 1 +55327 LIN7C lin-7 homolog C, crumbs cell polarity complex component 11 protein-coding LIN-7-C|LIN-7C|MALS-3|MALS3|VELI3 protein lin-7 homolog C|LIN-7 protein 3|lin-7 homolog C|mammalian lin-seven protein 3|veli-3|vertebrate lin-7 homolog 3 12 0.001642 9.514 1 1 +55328 RNLS renalase, FAD dependent amine oxidase 10 protein-coding C10orf59|RENALASE renalase|MAO-C|alpha-NAD(P)H oxidase/anomerase|monoamine oxidase-C 25 0.003422 6.546 1 1 +55329 MNS1 meiosis specific nuclear structural 1 15 protein-coding SPATA40 meiosis-specific nuclear structural protein 1|spermatogenesis associated 40 28 0.003832 6.325 1 1 +55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 4 protein-coding BCAS4L|BLOS4|CNO biogenesis of lysosome-related organelles complex 1 subunit 4|BLOC-1 subunit 4|biogenesis of lysosomal organelles complex-1, subunit 4, cappuccino|cappuccino homolog|protein cappuccino homolog 10 0.001369 8.286 1 1 +55331 ACER3 alkaline ceramidase 3 11 protein-coding APHC|PHCA alkaline ceramidase 3|alkCDase 3|alkaline CDase 3|alkaline dihydroceramidase SB89|alkaline phytoceramidase|phytoceramidase, alkaline 21 0.002874 8.458 1 1 +55332 DRAM1 DNA damage regulated autophagy modulator 1 12 protein-coding DRAM DNA damage-regulated autophagy modulator protein 1|damage-regulated autophagy modulator 14 0.001916 9.2 1 1 +55333 SYNJ2BP synaptojanin 2 binding protein 14 protein-coding ARIP2|OMP25 synaptojanin-2-binding protein|activin receptor interacting protein 5|mitochondrial outer membrane protein 25 7 0.0009581 9.878 1 1 +55334 SLC39A9 solute carrier family 39 member 9 14 protein-coding ZIP-9|ZIP9 zinc transporter ZIP9|solute carrier family 39 (zinc transporter), member 9|zinc transporter SLC39A9|zrt- and Irt-like protein 9 16 0.00219 10.93 1 1 +55335 NIPSNAP3B nipsnap homolog 3B 9 protein-coding FP944|NIPSNAP3|SNAP1 protein NipSnap homolog 3B 17 0.002327 4.789 1 1 +55336 FBXL8 F-box and leucine rich repeat protein 8 16 protein-coding FBL8 F-box/LRR-repeat protein 8|F-box protein FBL8 6 0.0008212 6.201 1 1 +55337 C19orf66 chromosome 19 open reading frame 66 19 protein-coding RyDEN repressor of yield of DENV protein|Repressor of yield of Dengue virus|UPF0515 protein C19orf66|repressor of yield of DENV 15 0.002053 9.367 1 1 +55339 WDR33 WD repeat domain 33 2 protein-coding NET14|WDC146 pre-mRNA 3' end processing protein WDR33|WD repeat-containing protein 33|WD repeat-containing protein WDC146 118 0.01615 10.41 1 1 +55340 GIMAP5 GTPase, IMAP family member 5 7 protein-coding HIMAP3|IAN-5|IAN4|IAN4L1|IAN5|IMAP3|IROD GTPase IMAP family member 5|immune associated nucleotide 4 like 1|immune-associated nucleotide-binding protein 5|immunity associated protein 3|immunity-associated nucleotide 5 protein|inhibitor of radiation- and OA-induced apoptosis, Irod/Ian5 27 0.003696 8.108 1 1 +55341 LSG1 large 60S subunit nuclear export GTPase 1 3 protein-coding - large subunit GTPase 1 homolog|hLsg1 53 0.007254 9.987 1 1 +55342 STRBP spermatid perinuclear RNA binding protein 9 protein-coding HEL162|ILF3L|SPNR|p74 spermatid perinuclear RNA-binding protein|epididymis luminal protein 162 30 0.004106 9.388 1 1 +55343 SLC35C1 solute carrier family 35 member C1 11 protein-coding CDG2C|FUCT1 GDP-fucose transporter 1|solute carrier family 35 (GDP-fucose transporter), member C1 18 0.002464 9.597 1 1 +55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 X|Y protein-coding LL0XNC01-136G2.1 PI-PLC X domain-containing protein 1 8.512 0 1 +55345 ZGRF1 zinc finger GRF-type containing 1 4 protein-coding C4orf21 protein ZGRF1|GRF-type zinc finger domain-containing protein 1 115 0.01574 6.406 1 1 +55346 TCP11L1 t-complex 11 like 1 11 protein-coding dJ85M6.3 T-complex protein 11-like protein 1|t-complex 11, testis-specific-like 1 32 0.00438 7.546 1 1 +55347 ABHD10 abhydrolase domain containing 10 3 protein-coding - mycophenolic acid acyl-glucuronide esterase, mitochondrial|abhydrolase domain-containing protein 10, mitochondrial|alpha/beta hydrolase domain-containing protein 10, mitochondrial 31 0.004243 9.458 1 1 +55349 CHDH choline dehydrogenase 3 protein-coding - choline dehydrogenase, mitochondrial|CDH|CHD 31 0.004243 7.574 1 1 +55350 VNN3 vanin 3 6 protein-coding HSA238982 vascular non-inflammatory molecule 3|pantetheinase pseudogene|pantetheinase-associated gene expressed in leukocytes (PAGEL)-alpha|vanin 1 pseudogene 32 0.00438 2.356 1 1 +55351 STK32B serine/threonine kinase 32B 4 protein-coding HSA250839|STK32|STKG6|YANK2 serine/threonine-protein kinase 32B|gene for serine/threonine protein kinase|yet another novel kinase 2 62 0.008486 5.513 1 1 +55352 COPRS coordinator of PRMT5 and differentiation stimulator 17 protein-coding C17orf79|COPR5|HSA272196|TTP1 coordinator of PRMT5 and differentiation stimulator|cooperator of PRMT5|coordinator of PRMT5, differentiation stimulator 8 0.001095 9.599 1 1 +55353 LAPTM4B lysosomal protein transmembrane 4 beta 8 protein-coding LAPTM4beta|LC27 lysosomal-associated transmembrane protein 4B|lysosomal associated protein transmembrane 4 beta|lysosome-associated transmembrane protein 4-beta 8 0.001095 11.57 1 1 +55355 HJURP Holliday junction recognition protein 2 protein-coding FAKTS|URLC9|hFLEG1 Holliday junction recognition protein|14-3-3-associated AKT substrate|fetal liver expressing gene 1|fetal liver-expressing gene 1 protein|up-regulated in lung cancer 9 57 0.007802 7.442 1 1 +55356 SLC22A15 solute carrier family 22 member 15 1 protein-coding FLIPT1|PRO34686 solute carrier family 22 member 15|flipt 1|fly-like putative organic ion transporter 1|fly-like putative transporter 1|solute carrier family 22 (organic cation transporter), member 15|trans-like protein 24 0.003285 6.334 1 1 +55357 TBC1D2 TBC1 domain family member 2 9 protein-coding PARIS-1|PARIS1|TBC1D2A TBC1 domain family member 2A|TBC1 domain family, member 2A|armus|prostate antigen recognized and identified by SEREX 1 57 0.007802 9.132 1 1 +55359 STYK1 serine/threonine/tyrosine kinase 1 12 protein-coding NOK|SuRTK106 tyrosine-protein kinase STYK1|novel oncogene with kinase domain|protein PK-unique 38 0.005201 5.146 1 1 +55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha 10 protein-coding PI4KII|PIK42A phosphatidylinositol 4-kinase type 2-alpha|phosphatidylinositol 4-kinase type II (PI4KII)|phosphatidylinositol 4-kinase type II-alpha 30 0.004106 9.944 1 1 +55362 TMEM63B transmembrane protein 63B 6 protein-coding C6orf110 CSC1-like protein 2 55 0.007528 10.4 1 1 +55363 HEMGN hemogen 9 protein-coding CT155|EDAG|EDAG-1|NDR hemogen|erythroid differentiation-associated gene protein|hemopoietic gene protein|negative differentiation regulator protein 36 0.004927 0.6788 1 1 +55364 IMPACT impact RWD domain protein 18 protein-coding RWDD5 protein IMPACT|Impact homolog|RWD domain containing 5|imprinted and ancient gene protein homolog 27 0.003696 9.536 1 1 +55365 TMEM176A transmembrane protein 176A 7 protein-coding GS188|HCA112|MS4B1 transmembrane protein 176A|hepatocellular carcinoma-associated antigen 112|likley ortholog of mouse GS188 22 0.003011 9.426 1 1 +55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 11 protein-coding BNMD17|GPR48 leucine-rich repeat-containing G-protein coupled receptor 4|G protein-coupled receptor 48 60 0.008212 9.601 1 1 +55367 PIDD1 p53-induced death domain protein 1 11 protein-coding LRDD|PIDD p53-induced death domain-containing protein 1|leucine-rich repeat and death domain-containing protein|leucine-rich repeats and death domain containing|p53-induced protein with a death domain 56 0.007665 8.467 1 1 +55370 PPP4R1L protein phosphatase 4 regulatory subunit 1 like (pseudogene) 20 pseudo C20orf192|PPP4R1P1|PRO1085 protein phosphatase 4, regulatory subunit 1 pseudogene|protein phosphatase 4, regulatory subunit 1-like 7 0.0009581 5.692 1 1 +55374 TMCO6 transmembrane and coiled-coil domains 6 5 protein-coding PRO1580 transmembrane and coiled-coil domain-containing protein 6 30 0.004106 7.724 1 1 +55379 LRRC59 leucine rich repeat containing 59 17 protein-coding PRO1855|p34 leucine-rich repeat-containing protein 59|ribosome-binding protein p34 20 0.002737 11.71 1 1 +55384 MEG3 maternally expressed 3 (non-protein coding) 14 ncRNA FP504|GTL2|LINC00023|NCRNA00023|PRO0518|PRO2160|onco-lncRNA-83|prebp1 long intergenic non-protein coding RNA 23 6 0.0008212 5.983 1 1 +55388 MCM10 minichromosome maintenance 10 replication initiation factor 10 protein-coding CNA43|DNA43|PRO2249 protein MCM10 homolog|MCM10 minichromosome maintenance deficient 10|homolog of yeast MCM10|hsMCM10|minichromosome maintenance complex component 10 73 0.009992 6.625 1 1 +55389 4.694 0 1 +55410 1.785 0 1 +55421 NCBP3 nuclear cap binding subunit 3 17 protein-coding C17orf85|ELG|HSA277841 nuclear cap-binding protein subunit 3|CTD-3195I5.1|CTD-3195I5.5 25 0.003422 8.997 1 1 +55422 ZNF331 zinc finger protein 331 19 protein-coding RITA|ZNF361|ZNF463 zinc finger protein 331|C2H2-like zinc finger protein rearranged in thyroid adenomas|KRAB zinc finger protein|zinc finger protein 361|zinc finger protein 463 57 0.007802 8.527 1 1 +55423 SIRPG signal regulatory protein gamma 20 protein-coding CD172g|SIRP-B2|SIRPB2|SIRPgamma|bA77C3.1 signal-regulatory protein gamma|CD172 antigen-like family member B|CD172g antigen|SIRP beta 2|SIRP-gamma|signal-regulatory protein beta-2 58 0.007939 4.376 1 1 +55425 GPALPP1 GPALPP motifs containing 1 13 protein-coding AD029|KIAA1704|LSR7|bA245H20.2 GPALPP motifs-containing protein 1|lipopolysaccharide specific response-7 protein|lipopolysaccharide-specific response protein 7 28 0.003832 8.074 1 1 +55432 YOD1 YOD1 deubiquitinase 1 protein-coding DUBA8|OTUD2|PRO0907 ubiquitin thioesterase OTU1|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 14 0.001916 8.41 1 1 +55435 AP1AR adaptor related protein complex 1 associated regulatory protein 4 protein-coding 2C18|C4orf16|GBAR|PRO0971|gamma-BAR AP-1 complex-associated regulatory protein|adapter-related protein complex 1-associated regulatory protein|gadkin|gamma-1-adaptin brefeldin A resistance protein|gamma-A1-adaptin and kinesin interactor|gamma1-adaptin brefeldin A resistance protein, gamma-BAR 11 0.001506 8.803 1 1 +55437 STRADB STE20-related kinase adaptor beta 2 protein-coding ALS2CR2|CALS-21|ILPIP|ILPIPA|PAPK|PRO1038 STE20-related kinase adapter protein beta|ILP-interacting protein ILPIPA|STRAD beta|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 2|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 2 protein|pseudokinase ALS2CR2 30 0.004106 8.276 1 1 +55449 DHRS4-AS1 DHRS4 antisense RNA 1 14 ncRNA AS1DHRS4|C14orf167|DHRS4AS1|PRO1488 DHRS4 antisense RNA 1 (non-protein coding) 5 0.0006844 8.881 1 1 +55450 CAMK2N1 calcium/calmodulin dependent protein kinase II inhibitor 1 1 protein-coding PRO1489 calcium/calmodulin-dependent protein kinase II inhibitor 1|CaMKIINalpha|caMKII inhibitory protein alpha|caMKIIN-alpha 6 0.0008212 10.08 1 1 +55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 10 protein-coding CHGN2|ChGn-2|GALNACT-2|GALNACT2|PRO0082|beta4GalNAcT chondroitin sulfate N-acetylgalactosaminyltransferase 2|beta 4 GalNAcT-2|chondroitin beta1,4 N-acetylgalactosaminyltransferase 2|glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase 2 69 0.009444 9.013 1 1 +55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 15 protein-coding MST104|MSTP104|PRO1472 dnaJ homolog subfamily A member 4|DnaJ (Hsp40) homolog, subfamily A, member 4 23 0.003148 9.443 1 1 +55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 2 protein-coding C2orf56|MidA|PRO1853 NADH dehydrogenase [ubiquinone] complex I, assembly factor 7|NADH dehydrogenase (ubiquinone) complex I, assembly factor 7|mitochondrial dysfunction protein A homolog|protein midA homolog, mitochondrial 28 0.003832 7.852 1 1 +55472 RBM12B-AS1 RBM12B antisense RNA 1 8 ncRNA C8orf39|PRO1905 RBM12B antisense RNA 1 (non-protein coding) 1 0.0001369 2.818 1 1 +55486 PARL presenilin associated rhomboid like 3 protein-coding PRO2207|PSARL|PSARL1|PSENIP2|RHBDS1 presenilins-associated rhomboid-like protein, mitochondrial|mitochondrial intramembrane-cleaving protease PARL|rhomboid 7 homolog 1 28 0.003832 9.879 1 1 +55500 ETNK1 ethanolamine kinase 1 12 protein-coding EKI|EKI 1|EKI1|Nbla10396 ethanolamine kinase 1|putative protein product of Nbla10396 27 0.003696 10.32 1 1 +55501 CHST12 carbohydrate sulfotransferase 12 7 protein-coding C4S-2|C4ST-2|C4ST2 carbohydrate sulfotransferase 12|carbohydrate (chondroitin 4) sulfotransferase 12|chondroitin 4-O-sulfotransferase 2|chondroitin 4-sulfotransferase 2|sulfotransferase Hlo 36 0.004927 8.515 1 1 +55502 HES6 hes family bHLH transcription factor 6 2 protein-coding C-HAIRY1|HES-6|bHLHb41|bHLHc23 transcription cofactor HES-6|class B basic helix-loop-helix protein 41|hairy and enhancer of split 6 6 0.0008212 7.834 1 1 +55503 TRPV6 transient receptor potential cation channel subfamily V member 6 7 protein-coding ABP/ZF|CAT1|CATL|ECAC2|HSA277909|LP6728|ZFAB transient receptor potential cation channel subfamily V member 6|Alu-binding protein with zinc finger domain|calcium transport protein 1|calcium transporter-like protein|epithelial apical membrane calcium transporter/channel CaT1|epithelial calcium channel 2 89 0.01218 4.298 1 1 +55504 TNFRSF19 TNF receptor superfamily member 19 13 protein-coding TAJ|TAJ-alpha|TRADE|TROY tumor necrosis factor receptor superfamily member 19|toxicity and JNK inducer 39 0.005338 7.882 1 1 +55505 NOP10 NOP10 ribonucleoprotein 15 protein-coding DKCB1|NOLA3|NOP10P 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 13 0.001779 10.17 1 1 +55506 H2AFY2 H2A histone family member Y2 10 protein-coding macroH2A2 core histone macro-H2A.2|core histone macroH2A2.2|histone macroH2A2|mH2A2 31 0.004243 8.63 1 1 +55507 GPRC5D G protein-coupled receptor class C group 5 member D 12 protein-coding - G-protein coupled receptor family C group 5 member D|orphan G-protein coupled receptor 19 0.002601 2.809 1 1 +55508 SLC35E3 solute carrier family 35 member E3 12 protein-coding BLOV1 solute carrier family 35 member E3|bladder cancer overexpressed protein|bladder cancer-overexpressed gene 1 protein|solute carrier family 35, member E2 26 0.003559 7.786 1 1 +55509 BATF3 basic leucine zipper ATF-like transcription factor 3 1 protein-coding JDP1|JUNDM1|SNFT basic leucine zipper transcriptional factor ATF-like 3|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 transcription factor, ATF-like 3 10 0.001369 4.938 1 1 +55510 DDX43 DEAD-box helicase 43 6 protein-coding CT13|HAGE probable ATP-dependent RNA helicase DDX43|DEAD (Asp-Glu-Ala-Asp) box polypeptide 43|DEAD box protein HAGE|DEAD-box protein 43|cancer/testis antigen 13|helical antigen 56 0.007665 2.655 1 1 +55511 SAGE1 sarcoma antigen 1 X protein-coding CT14|SAGE sarcoma antigen 1|cancer/testis antigen 14|putative tumor antigen 113 0.01547 0.7272 1 1 +55512 SMPD3 sphingomyelin phosphodiesterase 3 16 protein-coding NSMASE2 sphingomyelin phosphodiesterase 3|nSMase-2|neutral sphingomyelinase 2|neutral sphingomyelinase II|sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) 49 0.006707 6.964 1 1 +55515 ASIC4 acid sensing ion channel subunit family member 4 2 protein-coding ACCN4|BNAC4 acid-sensing ion channel 4|acid sensing ion channel family member 4|acid-sensing (proton-gated) ion channel family member 4|amiloride-sensitive cation channel 4, pituitary|amiloride-sensitive cation channel family member 4, pituitary|brain sodium channel 4 60 0.008212 2.37 1 1 +55520 ELAC1 elaC ribonuclease Z 1 18 protein-coding D29 zinc phosphodiesterase ELAC protein 1|RNase Z 1|RNaseZ(S)|deleted in Ma29|elaC homolog 1|elaC homolog protein 1|ribonuclease Z 1|tRNA 3 endonuclease 1|tRNA 3' processing endoribonuclease|tRNA Z (short form)|tRNase Z 1|tRNase ZS 16 0.00219 6.878 1 1 +55521 TRIM36 tripartite motif containing 36 5 protein-coding HAPRIN|RBCC728|RNF98 E3 ubiquitin-protein ligase TRIM36|RING finger protein 98|tripartite motif protein 36|tripartite motif-containing protein 36|zinc-binding protein Rbcc728 59 0.008076 5.903 1 1 +55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 10 protein-coding AMOXAD|CMT2Q probable 2-oxoglutarate dehydrogenase E1 component DHKTD1, mitochondrial|dehydrogenase E1 and transketolase domain-containing protein 1 69 0.009444 9.908 1 1 +55527 FEM1A fem-1 homolog A 19 protein-coding EPRAP protein fem-1 homolog A|FEM1-alpha|prostaglandin E receptor 4-associated protein 37 0.005064 9.92 1 1 +55529 TMEM55A transmembrane protein 55A 8 protein-coding - type 2 phosphatidylinositol 4,5-bisphosphate 4-phosphatase|PtdIns-4,5-P(2) 4-phosphatase type II|ptdIns-4,5-P2 4-Ptase II|type 2 PtdIns-4,5-P2 4-Ptase|type II phosphatidylinositol 4,5-bisphosphate 4-phosphatase 28 0.003832 7.57 1 1 +55530 SVOP SV2 related protein 12 protein-coding - synaptic vesicle 2-related protein|SV2 related protein homolog 26 0.003559 1.726 1 1 +55531 ELMOD1 ELMO domain containing 1 11 protein-coding - ELMO domain-containing protein 1|ELMO/CED-12 domain containing 1 32 0.00438 2.514 1 1 +55532 SLC30A10 solute carrier family 30 member 10 1 protein-coding HMDPC|HMNDYT1|ZNT10|ZNT8|ZRC1|ZnT-10 zinc transporter 10|zinc transporter 8 46 0.006296 2.131 1 1 +55534 MAML3 mastermind like transcriptional coactivator 3 4 protein-coding CAGH3|ERDA3|GDN|MAM-2|MAM2|TNRC3 mastermind-like protein 3|CAG repeat containing (glia-derived nexin I alpha)|CAG repeat domain|expanded repeat domain, CAG/CTG 3|mam-3|mastermind-like 3|polyglutamine rich|trinucleotide repeat containing 3 109 0.01492 8.157 1 1 +55536 CDCA7L cell division cycle associated 7 like 7 protein-coding JPO2|R1|RAM2 cell division cycle-associated 7-like protein|transcription factor RAM2 38 0.005201 8.927 1 1 +55539 KCNQ1DN KCNQ1 downstream neighbor (non-protein coding) 11 ncRNA BWRT|HSA404617 - 2 0.0002737 0.3779 1 1 +55540 IL17RB interleukin 17 receptor B 3 protein-coding CRL4|EVI27|IL17BR|IL17RH1 interleukin-17 receptor B|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 30 0.004106 7.045 1 1 +55544 RBM38 RNA binding motif protein 38 20 protein-coding HSRNASEB|RNPC1|SEB4B|SEB4D|dJ800J21.2 RNA-binding protein 38|CLL-associated antigen KW-5|RNA-binding region (RNP1, RRM) containing 1|RNA-binding region-containing protein 1|ssDNA-binding protein SEB4 15 0.002053 9.517 1 1 +55545 MSX2P1 msh homeobox 2 pseudogene 1 17 pseudo HPX5|HSHPX5|MSX2P msh homeobox homolog 2 pseudogene 1 0.0001369 1.32 1 1 +55552 ZNF823 zinc finger protein 823 19 protein-coding HSZFP36 zinc finger protein 823|ZFP 36 for a zinc finger protein|zinc finger protein ZFP-36 38 0.005201 6.889 1 1 +55553 SOX6 SRY-box 6 11 protein-coding HSSOX6|SOXD transcription factor SOX-6|SRY (sex determining region Y)-box 6|SRY-box containing gene 6 74 0.01013 6.607 1 1 +55554 KLK15 kallikrein related peptidase 15 19 protein-coding ACO|HSRNASPH kallikrein-15|ACO protease|kallikrein-like serine protease|prostinogen 41 0.005612 0.9538 1 1 +55556 ENOSF1 enolase superfamily member 1 18 protein-coding RTS|TYMSAS mitochondrial enolase superfamily member 1|L-fuconate dehydratase|antisense RNA to thymidylate synthase 42 0.005749 8.733 1 1 +55558 PLXNA3 plexin A3 X protein-coding 6.3|HSSEXGENE|PLXN3|PLXN4|XAP-6 plexin-A3|Sex chromosome X transmembrane protein of HGF receptor family 3|plexin-4|semaphorin receptor SEX 123 0.01684 9.877 1 1 +55559 HAUS7 HAUS augmin like complex subunit 7 X protein-coding UCHL5IP|UIP1 HAUS augmin-like complex subunit 7|26S proteasome-associated UCH37-interacting protein 1|UCHL5 interacting protein|X-linked protein STS1769 29 0.003969 8.382 1 1 +55561 CDC42BPG CDC42 binding protein kinase gamma 11 protein-coding DMPK2|HSMDPKIN|KAPPA-200|MRCKG|MRCKgamma serine/threonine-protein kinase MRCK gamma|CDC42 binding protein kinase gamma (DMPK-like)|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 78 0.01068 7.755 1 1 +55565 ZNF821 zinc finger protein 821 16 protein-coding - zinc finger protein 821 20 0.002737 7.487 1 1 +55567 DNAH3 dynein axonemal heavy chain 3 16 protein-coding DLP3|DNAHC3B|HEL-36|Hsadhc3|dnahc3-b dynein heavy chain 3, axonemal|axonemal beta dynein heavy chain 3|axonemal dynein, heavy chain|ciliary dynein heavy chain 3|dynein, axonemal, heavy polypeptide 3|epididymis luminal protein 36 330 0.04517 2.865 1 1 +55568 GALNT10 polypeptide N-acetylgalactosaminyltransferase 10 5 protein-coding GALNACT10|PPGALNACT10|PPGANTASE10 polypeptide N-acetylgalactosaminyltransferase 10|GalNAc transferase 10|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 10|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 10 (GalNAc-T10) 47 0.006433 9.774 1 1 +55571 CNOT11 CCR4-NOT transcription complex subunit 11 2 protein-coding C2orf29|C40 CCR4-NOT transcription complex subunit 11|UPF0760 protein C2orf29 36 0.004927 10.04 1 1 +55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 11 protein-coding FP634|H17 FAD-dependent oxidoreductase domain-containing protein 1 34 0.004654 8.986 1 1 +55573 CDV3 CDV3 homolog 3 protein-coding H41 protein CDV3 homolog|carnitine deficiency-associated gene expressed in ventricle 3 7 0.0009581 11.74 1 1 +55576 STAB2 stabilin 2 12 protein-coding FEEL2|FELE-2|FELL2|FEX2|HARE|SCARH1 stabilin-2|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 195 0.02669 1.799 1 1 +55577 NAGK N-acetylglucosamine kinase 2 protein-coding GNK|HSA242910 N-acetyl-D-glucosamine kinase|glcNAc kinase 32 0.00438 10.26 1 1 +55578 SUPT20H SPT20 homolog, SAGA complex component 13 protein-coding C13|C13orf19|FAM48A|FP757|P38IP|SPT20 transcription factor SPT20 homolog|family with sequence similarity 48, member A|protein FAM48A|suppressor of Ty 20 homolog|transcription factor (p38 interacting protein)|tumor rejection antigen 74 0.01013 9.531 1 1 +55582 KIF27 kinesin family member 27 9 protein-coding - kinesin-like protein KIF27 80 0.01095 5.854 1 1 +55584 CHRNA9 cholinergic receptor nicotinic alpha 9 subunit 4 protein-coding HSA243342|NACHRA9 neuronal acetylcholine receptor subunit alpha-9|NACHR alpha 9|acetylcholine receptor, neuronal nicotinic, alpha-9 subunit|cholinergic receptor, nicotinic alpha 9|cholinergic receptor, nicotinic, alpha 9 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 9|neuronal acetylcholine receptor protein, alpha-9 subunit|nicotinic acetylcholine receptor subunit alpha 9 38 0.005201 1.337 1 1 +55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 1 protein-coding GTAP|NICE-5|PRO3094|UBE2Q ubiquitin-conjugating enzyme E2 Q1|E2 ubiquitin-conjugating enzyme Q1|galactosyl transferase-associated protein|protein NICE-5|ubiquitin carrier protein Q1|ubiquitin conjugating enzyme E2Q family member 1|ubiquitin-conjugating enzyme E2Q (putative) 1|ubiquitin-protein ligase Q1 33 0.004517 10.9 1 1 +55586 MIOX myo-inositol oxygenase 22 protein-coding ALDRL6 inositol oxygenase|MI oxygenase|aldehyde reductase (aldose reductase) like 6|aldehyde reductase-like 6|kidney-specific protein 32|renal-specific oxidoreductase 25 0.003422 2.079 1 1 +55588 MED29 mediator complex subunit 29 19 protein-coding IXL|MED2 mediator of RNA polymerase II transcription subunit 29|intersex-like protein 18 0.002464 10.74 1 1 +55589 BMP2K BMP2 inducible kinase 4 protein-coding BIKE|HRIHFB2017 BMP-2-inducible protein kinase 78 0.01068 7.999 1 1 +55591 VEZT vezatin, adherens junctions transmembrane protein 12 protein-coding VEZATIN vezatin 55 0.007528 10.25 1 1 +55592 GOLGA2P5 golgin A2 pseudogene 5 12 pseudo GOLGA2B|GOLGA2L1 golgi autoantigen, golgin subfamily a, 2-like 1|golgin A2 family, member B|golgin A2-like 1|golgin subfamily A member 2B 77 0.01054 6.809 1 1 +55593 OTUD5 OTU deubiquitinase 5 X protein-coding DUBA OTU domain-containing protein 5|OTU domain containing 5|deubiquinating enzyme A|deubiquitinating enzyme A 23 0.003148 10.64 1 1 +55596 ZCCHC8 zinc finger CCHC-type containing 8 12 protein-coding - zinc finger CCHC domain-containing protein 8|TRAMP-like complex RNA-binding factor ZCCHC8|zinc finger, CCHC domain containing 8 62 0.008486 8.947 1 1 +55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 1 protein-coding RBM40|RNP|SNRNP65 RNA-binding protein 40|RNA recognition protein|RNA-binding motif 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 16 0.00219 7.184 1 1 +55600 ITLN1 intelectin 1 1 protein-coding HL-1|HL1|INTL|ITLN|LFR|hIntL|omentin intelectin-1|ITLN-1|endothelial lectin HL-1|galactofuranose-binding lectin|intelectin 1 (galactofuranose binding)|intestinal lactoferrin receptor 38 0.005201 1.945 1 1 +55601 DDX60 DExD/H-box helicase 60 4 protein-coding - probable ATP-dependent RNA helicase DDX60|DEAD (Asp-Glu-Ala-Asp) box polypeptide 60|DEAD box protein 60|DEAD-box helicase 60 92 0.01259 9.316 1 1 +55602 CDKN2AIP CDKN2A interacting protein 4 protein-coding CARF CDKN2A-interacting protein|collaborates/cooperates with ARF (alternate reading frame) protein|collaborator of ARF 26 0.003559 8.657 1 1 +55603 FAM46A family with sequence similarity 46 member A 6 protein-coding C6orf37|XTP11 protein FAM46A|HBV X-transactivated gene 11 protein|HBV XAg-transactivated protein 11|retinal expressed gene C6orf37 47 0.006433 9.089 1 1 +55604 CARMIL1 capping protein regulator and myosin 1 linker 1 6 protein-coding CARMIL|CARMIL1a|LRRC16|LRRC16A|dJ501N12.1|dJ501N12.5 F-actin-uncapping protein LRRC16A|CARMIL homolog|capping protein, Arp2/3 and myosin-I linker homolog 1|capping protein, Arp2/3 and myosin-I linker protein 1|capping protein, Arp2/3, and Myosin-I Linker homolog 1|leucine rich repeat containing 16|leucine rich repeat containing 16A|leucine-rich repeat-containing protein 16A|testicular tissue protein Li 107 91 0.01246 8.883 1 1 +55605 KIF21A kinesin family member 21A 12 protein-coding CFEOM1|FEOM1|FEOM3A kinesin-like protein KIF21A|kinesin-like protein KIF2|renal carcinoma antigen NY-REN-62 152 0.0208 9.251 1 1 +55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A 7 protein-coding NRB1|NRBI|Neurabin-I neurabin-1|neural tissue-specific F-actin-binding protein I|protein phosphatase 1, regulatory (inhibitor) subunit 9A 110 0.01506 7.627 1 1 +55608 ANKRD10 ankyrin repeat domain 10 13 protein-coding - ankyrin repeat domain-containing protein 10 21 0.002874 10.37 1 1 +55609 ZNF280C zinc finger protein 280C X protein-coding SUHW3|ZNF633 zinc finger protein 280C|suppressor of hairy wing homolog 3|zinc finger protein 633 35 0.004791 6.663 1 1 +55610 VPS50 VPS50, EARP/GARPII complex subunit 7 protein-coding CCDC132|VPS54L syndetin|EARP/GARPII complex subunit VPS50|coiled-coil domain containing 132|coiled-coil domain-containing protein 132 108 0.01478 8.764 1 1 +55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 11 protein-coding HSPC263|OTB1|OTU1 ubiquitin thioesterase OTUB1|OTU domain, ubiquitin aldehyde binding 1|OTU domain-containing ubiquitin aldehyde-binding protein 1|OTU-domain Ubal-binding 1|deubiquitinating enzyme OTUB1|otubain-1|ubiquitin-specific protease otubain 1|ubiquitin-specific-processing protease OTUB1 22 0.003011 11.12 1 1 +55612 FERMT1 fermitin family member 1 20 protein-coding C20orf42|DTGCU2|KIND1|UNC112A|URP1 fermitin family homolog 1|UNC112 related protein 1|kindlerin|kindlin 1|kindlin syndrome protein|unc-112-related protein 1 51 0.006981 7.615 1 1 +55613 MTMR8 myotubularin related protein 8 X protein-coding - myotubularin-related protein 8 91 0.01246 3.223 1 1 +55614 KIF16B kinesin family member 16B 20 protein-coding C20orf23|KISC20ORF|SNX23 kinesin-like protein KIF16B|kinesin motor protein|sorting nexin 23|testis secretory sperm-binding protein Li 201a 132 0.01807 8.884 1 1 +55615 PRR5 proline rich 5 22 protein-coding FLJ20185k|PP610|PROTOR-1|PROTOR1 proline-rich protein 5|Rho GTPase activating protein 8|proline rich 5 (renal)|protein observed with Rictor-1 25 0.003422 8.235 1 1 +55616 ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 1 protein-coding ACAP4|CENTB6|DDEFL1|UPLC1 arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 3|ARF6 GTPase-activating protein|ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 1|centaurin, beta 6|development and differentiation enhancing factor-like 1|protein up-regulated in liver cancer 1|up-regulated in liver cancer 1 (UPLC1) 48 0.00657 9.16 1 1 +55617 TASP1 taspase 1 20 protein-coding C20orf13|dJ585I14.2 threonine aspartase 1 41 0.005612 7.482 1 1 +55619 DOCK10 dedicator of cytokinesis 10 2 protein-coding DRIP2|Nbla10300|ZIZ3 dedicator of cytokinesis protein 10|dopamine receptor interacting protein 2|zizimin3 173 0.02368 8.184 1 1 +55620 STAP2 signal transducing adaptor family member 2 19 protein-coding BKS signal-transducing adaptor protein 2|BRK substrate|breast tumor kinase substrate|brk kinase substrate 27 0.003696 9.026 1 1 +55621 TRMT1 tRNA methyltransferase 1 19 protein-coding TRM1 tRNA (guanine(26)-N(2))-dimethyltransferase|N(2),N(2)-dimethylguanosine tRNA methyltransferase|TRM1 tRNA methyltransferase 1 homolog|tRNA 2,2-dimethylguanosine-26 methyltransferase|tRNA methyltransferase 1 homolog|tRNA(guanine-26,N(2)-N(2)) methyltransferase|tRNA(m(2,2)G26)dimethyltransferase 41 0.005612 9.461 1 1 +55622 TTC27 tetratricopeptide repeat domain 27 2 protein-coding - tetratricopeptide repeat protein 27|TPR repeat protein 27 55 0.007528 8.655 1 1 +55623 THUMPD1 THUMP domain containing 1 16 protein-coding Tan1 THUMP domain-containing protein 1 17 0.002327 10.1 1 1 +55624 POMGNT1 protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) 1 protein-coding GNTI.2|GnT I.2|LGMD2O|MEB|MGAT1.2|RP76|gnT-I.2 protein O-linked-mannose beta-1,2-N-acetylglucosaminyltransferase 1|UDP-GlcNAc:alpha-D-mannoside beta-1,2-N-acetylglucosaminyltransferase I.2 47 0.006433 10.67 1 1 +55625 ZDHHC7 zinc finger DHHC-type containing 7 16 protein-coding DHHC7|SERZ-B|SERZ1|ZNF370 palmitoyltransferase ZDHHC7|DHHC-7|Sertoli cell gene with zinc finger domain-β|zinc finger DHHC domain-containing protein 7|zinc finger protein 370|zinc finger, DHHC domain containing 7 28 0.003832 10.27 1 1 +55626 AMBRA1 autophagy and beclin 1 regulator 1 11 protein-coding DCAF3|WDR94 activating molecule in BECN1-regulated autophagy protein 1|DDB1 and CUL4 associated factor 3|WD repeat domain 94|activating molecule in beclin-1-regulated autophagy|autophagy/beclin-1 regulator 1 102 0.01396 9.783 1 1 +55627 SMPD4 sphingomyelin phosphodiesterase 4 2 protein-coding NET13|NSMASE-3|NSMASE3 sphingomyelin phosphodiesterase 4|SKNY protein|neutral sphingomyelinase 3|neutral sphingomyelinase III|sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) 63 0.008623 10.89 1 1 +55628 ZNF407 zinc finger protein 407 18 protein-coding - zinc finger protein 407 137 0.01875 8.1 1 1 +55629 PNRC2 proline rich nuclear receptor coactivator 2 1 protein-coding - proline-rich nuclear receptor coactivator 2 10.83 0 1 +55630 SLC39A4 solute carrier family 39 member 4 8 protein-coding AEZ|AWMS2|ZIP4 zinc transporter ZIP4|solute carrier family 39 (zinc transporter), member 4|zrt- and Irt-like protein 4 42 0.005749 8.514 1 1 +55631 LRRC40 leucine rich repeat containing 40 1 protein-coding dJ677H15.1 leucine-rich repeat-containing protein 40|testicular tissue protein Li 109 41 0.005612 8.241 1 1 +55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase 14 protein-coding KIAA1333|PHF7B G2/M phase-specific E3 ubiquitin-protein ligase|G2/M-phase specific E3 ubiquitin ligase|PHD finger protein 7B 53 0.007254 8.421 1 1 +55633 TBC1D22B TBC1 domain family member 22B 6 protein-coding C6orf197 TBC1 domain family member 22B 31 0.004243 8.813 1 1 +55634 KRBOX4 KRAB box domain containing 4 X protein-coding ZNF673 KRAB domain-containing protein 4|KRAB box domain-containing protein 4|putative zinc finger transcription factor|zinc finger family member 673|zinc finger protein 673 12 0.001642 7.754 1 1 +55635 DEPDC1 DEP domain containing 1 1 protein-coding DEP.8|DEPDC1-V2|DEPDC1A|SDP35 DEP domain-containing protein 1A|cell cycle control protein SDP35 57 0.007802 6.897 1 1 +55636 CHD7 chromodomain helicase DNA binding protein 7 8 protein-coding CRG|HH5|IS3|KAL5 chromodomain-helicase-DNA-binding protein 7|ATP-dependent helicase CHD7|CHARGE association|chromodomain helicase DNA binding protein 7 isoform CRA_e 226 0.03093 9.294 1 1 +55638 SYBU syntabulin 8 protein-coding GOLSYN|OCSYN|SNPHL syntabulin|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-interacting)|syntaxin-1-binding protein 70 0.009581 8.191 1 1 +55640 FLVCR2 feline leukemia virus subgroup C cellular receptor family member 2 14 protein-coding C14orf58|CCT|EPV|FLVCRL14q|MFSD7C|PVHH feline leukemia virus subgroup C receptor-related protein 2|calcium-chelate transporter 31 0.004243 7.327 1 1 +55643 BTBD2 BTB domain containing 2 19 protein-coding - BTB/POZ domain-containing protein 2|BTB (POZ) domain containing 2 25 0.003422 11.08 1 1 +55644 OSGEP O-sialoglycoprotein endopeptidase 14 protein-coding GCPL1|KAE1|OSGEP1|PRSMG1 probable tRNA N6-adenosine threonylcarbamoyltransferase|N6-L-threonylcarbamoyladenine synthase|hOSGEP|probable O-sialoglycoprotein endopeptidase|probable tRNA threonylcarbamoyladenosine biosynthesis protein OSGEP|t(6)A synthase|t(6)A37 threonylcarbamoyladenosine biosynthesis protein OSGEP|tRNA threonylcarbamoyladenosine biosynthesis protein OSGEP 24 0.003285 8.735 1 1 +55646 LYAR Ly1 antibody reactive 4 protein-coding ZC2HC2|ZLYAR cell growth-regulating nucleolar protein|Ly1 antibody reactive homolog 30 0.004106 8.38 1 1 +55647 RAB20 RAB20, member RAS oncogene family 13 protein-coding - ras-related protein Rab-20 17 0.002327 8.71 1 1 +55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V 1 protein-coding GPI-MT-II|HPMRS1|PIG-V GPI mannosyltransferase 2|GPI mannosyltransferase II|Ybr004c homolog|dol-P-Man dependent GPI mannosyltransferase 28 0.003832 8.543 1 1 +55651 NHP2 NHP2 ribonucleoprotein 5 protein-coding DKCB2|NHP2P|NOLA2 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 12 0.001642 10.53 1 1 +55652 SLC48A1 solute carrier family 48 member 1 12 protein-coding HRG-1|HRG1|hHRG-1 heme transporter HRG1|heme-responsive gene 1 protein homolog|solute carrier family 48 (heme transporter), member 1 3 0.0004106 9.685 1 1 +55653 BCAS4 breast carcinoma amplified sequence 4 20 protein-coding CNOL breast carcinoma-amplified sequence 4|BCAS4/BCAS3 fusion|breast carcinoma amplified sequence 4/3 fusion protein 21 0.002874 9.359 1 1 +55654 TMEM127 transmembrane protein 127 2 protein-coding - transmembrane protein 127 12 0.001642 11.18 1 1 +55655 NLRP2 NLR family pyrin domain containing 2 19 protein-coding CLR19.9|NALP2|NBS1|PAN1|PYPAF2 NACHT, LRR and PYD domains-containing protein 2|NACHT, LRR and PYD 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 119 0.01629 5.853 1 1 +55656 INTS8 integrator complex subunit 8 8 protein-coding C8orf52|INT8 integrator complex subunit 8|protein kaonashi-1 65 0.008897 9.54 1 1 +55657 ZNF692 zinc finger protein 692 1 protein-coding AREBP|Zfp692 zinc finger protein 692|AICAR responsive element binding protein 41 0.005612 8.804 1 1 +55658 RNF126 ring finger protein 126 19 protein-coding - E3 ubiquitin-protein ligase RNF126 18 0.002464 9.383 1 1 +55659 ZNF416 zinc finger protein 416 19 protein-coding - zinc finger protein 416 35 0.004791 6.883 1 1 +55660 PRPF40A pre-mRNA processing factor 40 homolog A 2 protein-coding FBP-11|FBP11|FLAF1|FNBP3|HIP-10|HIP10|HYPA|NY-REN-6|Prp40 pre-mRNA-processing factor 40 homolog A|Fas-ligand associated factor 1|Huntingtin-interacting protein A|NY-REN-6 antigen|PRP40 pre-mRNA processing factor 40 homolog A|fas ligand-associated factor 1|formin binding protein 3|formin-binding protein 11|huntingtin yeast partner A|huntingtin-interacting protein 10|renal carcinoma antigen NY-REN-6 53 0.007254 10.98 1 1 +55661 DDX27 DEAD-box helicase 27 20 protein-coding DRS1|Drs1p|HSPC259|PP3241|RHLP|dJ686N3.1 probable ATP-dependent RNA helicase DDX27|DEAD (Asp-Glu-Ala-Asp) box polypeptide 27|DEAD box protein 27|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 27|Deficiency of ribosomal subunits protein 1 homolog|RNA helicase-like protein 53 0.007254 10.4 1 1 +55662 HIF1AN hypoxia inducible factor 1 alpha subunit inhibitor 10 protein-coding FIH1 hypoxia-inducible factor 1-alpha inhibitor|FIH-1|factor inhibiting HIF-1|factor inhibiting HIF1|hypoxia-inducible factor asparagine hydroxylase|peptide-aspartate beta-dioxygenase 15 0.002053 10.06 1 1 +55663 ZNF446 zinc finger protein 446 19 protein-coding ZKSCAN20|ZSCAN30|ZSCAN52 zinc finger protein 446|zinc finger protein with KRAB and SCAN domains 20 24 0.003285 7.982 1 1 +55664 CDC37L1 cell division cycle 37 like 1 9 protein-coding CDC37B|HARC hsp90 co-chaperone Cdc37-like 1|CDC37 cell division cycle 37 homolog-like 1|Hsp90-associating relative of Cdc37|cell division cycle 37 homolog-like 1 22 0.003011 8.386 1 1 +55665 URGCP upregulator of cell proliferation 7 protein-coding URG4 up-regulator of cell proliferation|HBV X protein up-regulated gene 4 protein|HBxAg up-regulated gene 4 protein|up-regulated gene 4 75 0.01027 9.989 1 1 +55666 NPLOC4 NPL4 homolog, ubiquitin recognition factor 17 protein-coding NPL4 nuclear protein localization protein 4 homolog|NPLOC4 ubiquitin recognition factor|nuclear protein localization 4 homolog 37 0.005064 11.42 1 1 +55667 DENND4C DENN domain containing 4C 9 protein-coding C9orf55|C9orf55B|RAB10GEF|bA513M16.3 DENN domain-containing protein 4C|DENN/MADD domain containing 4A pseudogene|DENN/MADD domain containing 4C 95 0.013 9.912 1 1 +55668 GPATCH2L G-patch domain containing 2 like 14 protein-coding C14orf118 G patch domain-containing protein 2-like 27 0.003696 7.416 1 1 +55669 MFN1 mitofusin 1 3 protein-coding hfzo1|hfzo2 mitofusin-1|fzo homolog|mitochondrial transmembrane GTPase FZO-2|mitochondrial transmembrane GTPase Fzo-1|putative transmembrane GTPase|transmembrane GTPase MFN1 61 0.008349 9.424 1 1 +55670 PEX26 peroxisomal biogenesis factor 26 22 protein-coding PBD7A|PBD7B|PEX26M1T|Pex26pM1T peroxisome assembly protein 26|peroxin-26|peroxisome biogenesis disorder, complementation group 8|peroxisome biogenesis disorder, complementation group A|peroxisome biogenesis factor 26 16 0.00219 8.728 1 1 +55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A 14 protein-coding FLFL1|KIAA2010|MSTP033|PP4R3|PP4R3A|SMEK1|smk-1|smk1 serine/threonine-protein phosphatase 4 regulatory subunit 3A|SMEK homolog 1, suppressor of mek1 47 0.006433 10.49 1 1 +55672 NBPF1 neuroblastoma breakpoint family member 1 1 protein-coding AB13|AB14|AB23|AD2|NBG|NBPF neuroblastoma breakpoint family member 1 216 0.02956 8.826 1 1 +55676 SLC30A6 solute carrier family 30 member 6 2 protein-coding MST103|MSTP103|ZNT6 zinc transporter 6|solute carrier family 30 (zinc transporter), member 6 36 0.004927 7.994 1 1 +55677 IWS1 IWS1, SUPT6H interacting protein 2 protein-coding - protein IWS1 homolog|IWS1 homolog|IWS1-like protein|interacts with Spt6 64 0.00876 10.13 1 1 +55679 LIMS2 LIM zinc finger domain containing 2 2 protein-coding LGMD2W|PINCH-2|PINCH2 LIM and senescent cell antigen-like-containing domain protein 2|ILK-binding protein|LIM and senescent cell antigen-like domains 2|LIM-type zinc finger domains 2|particularly interesting new Cys-His protein 2 21 0.002874 8.532 1 1 +55680 RUFY2 RUN and FYVE domain containing 2 10 protein-coding RABIP4R|ZFYVE13 RUN and FYVE domain-containing protein 2|Run- and FYVE-domain containing protein|antigen MU-RMS-40.17|rab4-interacting protein related 56 0.007665 8.125 1 1 +55681 SCYL2 SCY1 like pseudokinase 2 12 protein-coding CVAK104 SCY1-like protein 2|SCY1-like 2|SCY1-like, kinase-like 2|coated vesicle-associated kinase of 104 kDa 61 0.008349 9.661 1 1 +55683 KANSL3 KAT8 regulatory NSL complex subunit 3 2 protein-coding KIAA1310|NSL3|Rcd1 KAT8 regulatory NSL complex subunit 3|NSL complex protein NSL3|non-specific lethal 3 homolog|serum inhibited-related protein|testis development protein PRTD 48 0.00657 10.39 1 1 +55684 RABL6 RAB, member RAS oncogene family-like 6 9 protein-coding C9orf86|PARF|RBEL1|pp8875 rab-like protein 6|Rab-like GTP-binding protein 1C|partner of ARF|putative GTP-binding protein Parf 43 0.005886 11.16 1 1 +55686 MREG melanoregulin 2 protein-coding DSU|WDT2 melanoregulin|dilute suppressor protein homolog|whn-dependent transcript 2 18 0.002464 8.388 1 1 +55687 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase 22 protein-coding LCAL3|MTO2|MTU1|TRMT|TRMT1|TRNT1 mitochondrial tRNA-specific 2-thiouridylase 1|MTO2 homolog|lung cancer associated lncRNA 3|mitochondrial 5-methylaminomethyl-2-thiouridylate-methyltransferase 28 0.003832 8.279 1 1 +55689 YEATS2 YEATS domain containing 2 3 protein-coding - YEATS domain-containing protein 2 91 0.01246 10.11 1 1 +55690 PACS1 phosphofurin acidic cluster sorting protein 1 11 protein-coding MRD17|SHMS phosphofurin acidic cluster sorting protein 1|PACS-1|cytosolic sorting protein PACS-1 55 0.007528 11.29 1 1 +55691 FRMD4A FERM domain containing 4A 10 protein-coding CCAFCA|FRMD4|bA295P9.4 FERM domain-containing protein 4A|FERM domain containing 4 96 0.01314 8.959 1 1 +55692 LUC7L LUC7 like 16 protein-coding LUC7B1|Luc7|SR+89|hLuc7B1 putative RNA-binding protein Luc7-like 1|putative SR protein LUC7B1|sarcoplasmic reticulum protein LUC7B1 26 0.003559 9.467 1 1 +55693 KDM4D lysine demethylase 4D 11 protein-coding JMJD2D lysine-specific demethylase 4D|jmjC domain-containing histone demethylation protein 3D|jumonji domain containing 2D|jumonji domain-containing protein 2D|lysine (K)-specific demethylase 4D 43 0.005886 4.981 1 1 +55695 NSUN5 NOP2/Sun RNA methyltransferase family member 5 7 protein-coding NOL1|NOL1R|NSUN5A|WBSCR20|WBSCR20A|p120|p120(NOL1) probable 28S rRNA (cytosine-C(5))-methyltransferase|NOL1-related protein|NOL1/NOP2/Sun domain family member 5|NOP2/Sun domain family, member 5|NOP2/Sun domain family, member 5A|Williams Beuren syndrome chromosome region 20A|Williams-Beuren syndrome chromosomal region 20A protein|Williams-Beuren syndrome critical region protein 20 copy A|putative methyltransferase NSUN5 24 0.003285 9.349 1 1 +55696 RBM22 RNA binding motif protein 22 5 protein-coding Cwc2|ZC3H16|fSAP47 pre-mRNA-splicing factor RBM22|functional spliceosome-associated protein 47|zinc finger CCCH domain-containing protein 16 20 0.002737 10.03 1 1 +55697 VAC14 Vac14, PIKFYVE complex component 16 protein-coding ArPIKfyve|SNDC|TAX1BP2|TRX protein VAC14 homolog|Tax1 (human T-cell leukemia virus type I) binding protein 1|Tax1 (human T-cell leukemia virus type I) binding protein 2|Vac14 homolog|tax1-binding protein 2 48 0.00657 10.26 1 1 +55698 RADIL Rap associating with DIL domain 7 protein-coding RASIP2 ras-associating and dilute domain-containing protein|Rap GTPase interactor|Ras association and DIL domains 83 0.01136 5.012 1 1 +55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial 1 protein-coding CAGSSS|ILERS isoleucine--tRNA ligase, mitochondrial|isoleucine tRNA ligase 2, mitochondrial|isoleucine-tRNA synthetase 2, mitochondrial|isoleucyl-tRNA synthetase, mitochondrial|mitochondrial isoleucine tRNA synthetase 66 0.009034 11.31 1 1 +55700 MAP7D1 MAP7 domain containing 1 1 protein-coding PARCC1|RPRC1 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 74 0.01013 11.17 1 1 +55701 ARHGEF40 Rho guanine nucleotide exchange factor 40 14 protein-coding SOLO rho guanine nucleotide exchange factor 40|Rho guanine nucleotide exchange factor (GEF) 40|protein SOLO 75 0.01027 9.924 1 1 +55702 CCDC94 coiled-coil domain containing 94 19 protein-coding - coiled-coil domain-containing protein 94 13 0.001779 8.781 1 1 +55703 POLR3B RNA polymerase III subunit B 12 protein-coding C128|HLD8|INMAP|RPC2 DNA-directed RNA polymerase III subunit RPC2|DNA-directed RNA polymerase III 127.6 kDa polypeptide|DNA-directed RNA polymerase III subunit B|RNA polymerase III subunit C2|interphase nucleus and mitotic apparatus associated protein|polymerase (RNA) III (DNA directed) polypeptide B|polymerase (RNA) III subunit B 94 0.01287 8.164 1 1 +55704 CCDC88A coiled-coil domain containing 88A 2 protein-coding APE|GIRDIN|GIV|GRDN|HkRP1|KIAA1212|PEHO girdin|AKT-phosphorylation enhancer|Hook-related protein 1|g alpha-interacting vesicle-associated protein|girders of actin filament|girders of actin filaments 140 0.01916 9.318 1 1 +55705 IPO9 importin 9 1 protein-coding Imp9 importin-9|ran-binding protein 9|ranBP9 64 0.00876 11.03 1 1 +55706 NDC1 NDC1 transmembrane nucleoporin 1 protein-coding NET3|TMEM48 nucleoporin NDC1|nuclear division cycle 1 homolog|transmembrane protein 48 36 0.004927 8.105 1 1 +55707 NECAP2 NECAP endocytosis associated 2 1 protein-coding - adaptin ear-binding coat-associated protein 2|adaptin-ear-binding coat-associated protein 2 19 0.002601 10.47 1 1 +55709 KBTBD4 kelch repeat and BTB domain containing 4 11 protein-coding BKLHD4|HSPC252 kelch repeat and BTB domain-containing protein 4|BTB and kelch domain containing 4|BTB and kelch domain-containing protein 4|kelch repeat and BTB (POZ) domain containing 4 42 0.005749 8.305 1 1 +55711 FAR2 fatty acyl-CoA reductase 2 12 protein-coding HEL-S-81|MLSTD1|SDR10E2 fatty acyl-CoA reductase 2|epididymis secretory protein Li 81|male sterility domain-containing protein 1|short chain dehydrogenase/reductase family 10E, member 2 44 0.006022 6.444 1 1 +55713 ZNF334 zinc finger protein 334 20 protein-coding - zinc finger protein 334 86 0.01177 5.757 1 1 +55714 TENM3 teneurin transmembrane protein 3 4 protein-coding MCOPCB9|ODZ3|TNM3|Ten-m3|ten-3 teneurin-3|ODZ3-like protein|odz, odd Oz/ten-m homolog 3|protein Odd Oz/ten-m homolog 3|tenascin-M3|testicular tissue protein Li 195 240 0.03285 6.84 1 1 +55715 DOK4 docking protein 4 16 protein-coding IRS-5|IRS5 docking protein 4|downstream of tyrosine kinase 4|insulin receptor substrate 5 18 0.002464 9.241 1 1 +55716 LMBR1L limb development membrane protein 1 like 12 protein-coding LIMR protein LMBR1L|limb region 1 homolog-like|limb region 1 protein homolog-like|limb region 1-like protein -like|lipocalin-1 interacting membrane receptor|lipocalin-interacting membrane receptor 34 0.004654 8.832 1 1 +55717 WDR11 WD repeat domain 11 10 protein-coding BRWD2|DR11|HH14|SRI1|WDR15 WD repeat-containing protein 11|WD repeat domain 15|WD repeat-containing protein 15|bromodomain and WD repeat-containing protein 2|sensitization to ricin complex subunit 1 75 0.01027 9.942 1 1 +55718 POLR3E RNA polymerase III subunit E 16 protein-coding RPC5|SIN DNA-directed RNA polymerase III subunit RPC5|DNA-directed RNA polymerase III 80 kDa polypeptide|RNA polymerase III 80 kDa subunit RPC5|RNA polymerase III subunit C5|polymerase (RNA) III (DNA directed) polypeptide E (80kD)|polymerase (RNA) III subunit E 55 0.007528 9.476 1 1 +55719 SLF2 SMC5-SMC6 complex localization factor 2 10 protein-coding C10orf6|FAM178A SMC5-SMC6 complex localization factor protein 2|family with sequence similarity 178, member A|protein FAM178A|smc5/6 localization factor 1 71 0.009718 9.462 1 1 +55720 TSR1 TSR1, ribosome maturation factor 17 protein-coding - pre-rRNA-processing protein TSR1 homolog 41 0.005612 10.09 1 1 +55721 IQCC IQ motif containing C 1 protein-coding - IQ domain-containing protein C 40 0.005475 6.655 1 1 +55722 CEP72 centrosomal protein 72 5 protein-coding - centrosomal protein of 72 kDa|centrosomal protein 72kDa 45 0.006159 6.52 1 1 +55723 ASF1B anti-silencing function 1B histone chaperone 19 protein-coding CIA-II histone chaperone ASF1B|ASF1 anti-silencing function 1 homolog B|CCG1-interacting factor A-II|anti-silencing function protein 1 homolog B|hAsf1|hAsf1b|hCIA-II 15 0.002053 8.366 1 1 +55726 ASUN asunder, spermatogenesis regulator 12 protein-coding C12orf11|GCT1|Mat89Bb|NET48|SPATA30 protein asunder homolog|asunder, spermatogenesis regulator homolog (Drosphila)|cell cycle regulator Mat89Bb homolog|germ cell tumor 1|sarcoma antigen NY-SAR-95|spermatogenesis associated 30 42 0.005749 9.116 1 1 +55727 BTBD7 BTB domain containing 7 14 protein-coding FUP1 BTB/POZ domain-containing protein 7|BTB (POZ) domain containing 7 85 0.01163 9.564 1 1 +55728 N4BP2 NEDD4 binding protein 2 4 protein-coding B3BP NEDD4-binding protein 2|BCL-3-binding protein 104 0.01423 6.858 1 1 +55729 ATF7IP activating transcription factor 7 interacting protein 12 protein-coding AM|ATF-IP|MCAF|MCAF1|p621 activating transcription factor 7-interacting protein 1|ATF-interacting protein|ATF7-interacting protein|ATFa-associated modulator|MBD1-containing chromatin-associated factor 1 110 0.01506 9.719 1 1 +55731 FAM222B family with sequence similarity 222 member B 17 protein-coding C17orf63 protein FAM222B|uncharacterized protein C17orf63 30 0.004106 9.622 1 1 +55732 C1orf112 chromosome 1 open reading frame 112 1 protein-coding - uncharacterized protein C1orf112 59 0.008076 7.429 1 1 +55733 HHAT hedgehog acyltransferase 1 protein-coding MART2|SKI1|Skn protein-cysteine N-palmitoyltransferase HHAT|melanoma antigen recognized by T-cells 2|skinny hedgehog protein 1 40 0.005475 7.465 1 1 +55734 ZFP64 ZFP64 zinc finger protein 20 protein-coding ZNF338 zinc finger protein 64|zinc finger protein 338|zinc finger protein 64 homolog 106 0.01451 8.788 1 1 +55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 1 protein-coding dJ126A5.1 dnaJ homolog subfamily C member 11|DnaJ (Hsp40) homolog, subfamily C, member 11|novel DnaJ domain-containing protein 50 0.006844 10.12 1 1 +55737 VPS35 VPS35, retromer complex component 16 protein-coding MEM3|PARK17 vacuolar protein sorting-associated protein 35|hVPS35|maternal-embryonic 3|vacuolar protein sorting 35 homolog 41 0.005612 11.33 1 1 +55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 20 protein-coding ARF1GAP|HRIHFB2281 ADP-ribosylation factor GTPase-activating protein 1|ARF1-directed GTPase-activating protein 33 0.004517 10.82 1 1 +55739 NAXD NAD(P)HX dehydratase 13 protein-coding CARKD|LP3298 ATP-dependent (S)-NAD(P)H-hydrate dehydratase|ATP-dependent NAD(P)H-hydrate dehydratase|ATP-dependent NAD(P)HX dehydratase|carbohydrate kinase domain containing|carbohydrate kinase domain-containing protein 24 0.003285 10.09 1 1 +55740 ENAH enabled homolog (Drosophila) 1 protein-coding ENA|MENA|NDPP1 protein enabled homolog|mammalian enabled variant 11a|mammalian enabled variant pan 38 0.005201 11.25 1 1 +55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 20 protein-coding C20orf31|C20orf49|bA4204.1 ER degradation-enhancing alpha-mannosidase-like protein 2|ER degradation enhancer, mannosidase alpha-like 2|ER degradation-enhancing alpha-mannosidase-like 2|ER degradation-enhancing-mannosidase-like protein 2 38 0.005201 9.581 1 1 +55742 PARVA parvin alpha 11 protein-coding CH-ILKBP|MXRA2 alpha-parvin|actopaxin|calponin-like integrin-linked kinase-binding protein|matrix-remodeling-associated protein 2 13 0.001779 10.24 1 1 +55743 CHFR checkpoint with forkhead and ring finger domains 12 protein-coding RNF116|RNF196 E3 ubiquitin-protein ligase CHFR|RING finger protein 196|checkpoint with forkhead and ring finger domains, E3 ubiquitin protein ligase 50 0.006844 8.886 1 1 +55744 COA1 cytochrome c oxidase assembly factor 1 homolog 7 protein-coding C7orf44|MITRAC15 cytochrome c oxidase assembly factor 1 homolog|cytochrome c oxidase assembly protein 1 homolog|mitochondrial translation regulation assembly intermediate of cytochrome c oxidase protein of 15 kDa 9 0.001232 9.364 1 1 +55745 AP5M1 adaptor related protein complex 5 mu 1 subunit 14 protein-coding C14orf108|MUDENG|Mu5|MuD AP-5 complex subunit mu-1|AP-5 complex subunit mu|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|adapter-related protein complex 5 subunit mu-1|adaptor-related protein complex 5 subunit mu-1|mu-2-related death-inducing protein|putative HIV-1 infection-related protein 38 0.005201 9.396 1 1 +55746 NUP133 nucleoporin 133 1 protein-coding hNUP133 nuclear pore complex protein Nup133|133 kDa nucleoporin|nucleoporin 133kD|nucleoporin 133kDa|nucleoporin Nup133 75 0.01027 10.17 1 1 +55747 9.163 0 1 +55748 CNDP2 CNDP dipeptidase 2 (metallopeptidase M20 family) 18 protein-coding CN2|CPGL|HEL-S-13|HsT2298|PEPA cytosolic non-specific dipeptidase|carnosine dipeptidase II|cytosolic nonspecific dipeptidase|epididymis secretory protein Li 13|glutamate carboxypeptidase-like protein 1|peptidase A 38 0.005201 11.96 1 1 +55749 CCAR1 cell division cycle and apoptosis regulator 1 10 protein-coding - cell division cycle and apoptosis regulator protein 1|cell cycle and apoptosis regulatory protein 1|death inducer with SAP domain 76 0.0104 10.2 1 1 +55750 AGK acylglycerol kinase 7 protein-coding CATC5|CTRCT38|MTDPS10|MULK acylglycerol kinase, mitochondrial|hAGK|hsMuLK|multi-substrate lipid kinase|multiple substrate lipid kinase 29 0.003969 9.167 1 1 +55751 TMEM184C transmembrane protein 184C 4 protein-coding TMEM34 transmembrane protein 184C|transmembrane protein 34 31 0.004243 9.08 1 1 +55752 SEPT11 septin 11 4 protein-coding - septin-11 23 0.003148 10.96 1 1 +55753 OGDHL oxoglutarate dehydrogenase-like 10 protein-coding - 2-oxoglutarate dehydrogenase-like, mitochondrial|2-oxoglutarate dehydrogenase complex component E1-like|OGDC-E1-like|alpha-ketoglutarate dehydrogenase-like 126 0.01725 5.943 1 1 +55754 TMEM30A transmembrane protein 30A 6 protein-coding C6orf67|CDC50A cell cycle control protein 50A|P4-ATPase flippase complex beta subunit TMEM30A 29 0.003969 11.88 1 1 +55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 9 protein-coding C48|Cep215|MCPH3 CDK5 regulatory subunit-associated protein 2|CDK5 activator-binding protein C48|centrosomal protein 215 kDa|centrosomin 114 0.0156 10.28 1 1 +55756 INTS9 integrator complex subunit 9 8 protein-coding CPSF2L|INT9|RC74 integrator complex subunit 9|protein related to CPSF subunits of 74 kDa 30 0.004106 8.606 1 1 +55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 13 protein-coding HUGT2|UGCGL2|UGT2 UDP-glucose:glycoprotein glucosyltransferase 2|UDP-Glc:glycoprotein glucosyltransferase 2|UDP-glucose ceramide glucosyltransferase-like 1|UDP-glucose ceramide glucosyltransferase-like 2 112 0.01533 8.497 1 1 +55758 RCOR3 REST corepressor 3 1 protein-coding - REST corepressor 3 46 0.006296 9.601 1 1 +55759 WDR12 WD repeat domain 12 2 protein-coding YTM1 ribosome biogenesis protein WDR12|WD repeat-containing protein 12 21 0.002874 8.767 1 1 +55760 DHX32 DEAH-box helicase 32 (putative) 10 protein-coding DDX32|DHLP1 putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX32|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 32|DEAD/H box 32|DEAD/H helicase-like protein-1|DEAH (Asp-Glu-Ala-His) box polypeptide 32|DEAH box protein 32|huDDX32 52 0.007117 9.579 1 1 +55761 TTC17 tetratricopeptide repeat domain 17 11 protein-coding - tetratricopeptide repeat protein 17|TPR repeat protein 17 89 0.01218 10.04 1 1 +55762 ZNF701 zinc finger protein 701 19 protein-coding - zinc finger protein 701 43 0.005886 6.46 1 1 +55763 EXOC1 exocyst complex component 1 4 protein-coding BM-102|SEC3|SEC3L1|SEC3P exocyst complex component 1|SEC3-like 1|exocyst complex component Sec3 65 0.008897 9.707 1 1 +55764 IFT122 intraflagellar transport 122 3 protein-coding CED|CED1|SPG|WDR10|WDR10p|WDR140 intraflagellar transport protein 122 homolog|WD repeat domain 10|WD repeat-containing protein 10|WD repeat-containing protein 140|intraflagellar transport 122 homolog 87 0.01191 9.298 1 1 +55765 C1orf106 chromosome 1 open reading frame 106 1 protein-coding - uncharacterized protein C1orf106 44 0.006022 8.368 1 1 +55766 H2AFJ H2A histone family member J 12 protein-coding H2AJ histone H2A.J|H2a/j|buforin I 11 0.001506 10.16 1 1 +55768 NGLY1 N-glycanase 1 3 protein-coding CDDG|CDG1V|PNG1|PNGase peptide-N(4)-(N-acetyl-beta-glucosaminyl)asparagine amidase|hPNGase|peptide:N-glycanase 49 0.006707 9.076 1 1 +55769 ZNF83 zinc finger protein 83 19 protein-coding HPF1|ZNF816B zinc finger protein 83|zinc finger protein 816B|zinc finger protein HPF1 38 0.005201 9.183 1 1 +55770 EXOC2 exocyst complex component 2 6 protein-coding SEC5|SEC5L1|Sec5p exocyst complex component 2|SEC5-like 1|exocyst complex component Sec5 56 0.007665 9.595 1 1 +55771 PRR11 proline rich 11 17 protein-coding - proline-rich protein 11|transcription repressor of MHCII 28 0.003832 5.632 1 1 +55773 TBC1D23 TBC1 domain family member 23 3 protein-coding NS4ATP1 TBC1 domain family member 23|HCV non-structural protein 4A-transactivated protein 1|HCV nonstructural protein 4A-transactivated protein 1 37 0.005064 9.623 1 1 +55775 TDP1 tyrosyl-DNA phosphodiesterase 1 14 protein-coding - tyrosyl-DNA phosphodiesterase 1|tyr-DNA phosphodiesterase 1 46 0.006296 8.431 1 1 +55776 SAYSD1 SAYSVFN motif domain containing 1 6 protein-coding C6orf64 SAYSvFN domain-containing protein 1 9 0.001232 9.114 1 1 +55777 MBD5 methyl-CpG binding domain protein 5 2 protein-coding MRD1 methyl-CpG-binding domain protein 5|methyl-CpG-binding protein MBD5 117 0.01601 7.871 1 1 +55778 ZNF839 zinc finger protein 839 14 protein-coding C14orf131 zinc finger protein 839|renal carcinoma antigen NY-REN-50 36 0.004927 8.163 1 1 +55779 CFAP44 cilia and flagella associated protein 44 3 protein-coding WDR52 cilia- and flagella-associated protein 44|WD repeat domain 52|WD repeat-containing protein 52 94 0.01287 7.001 1 1 +55780 ERMARD ER membrane associated RNA degradation 6 protein-coding C6orf70|PVNH6|dJ266L20.3 endoplasmic reticulum membrane-associated RNA degradation protein|transmembrane protein C6orf70 50 0.006844 8.294 1 1 +55781 RIOK2 RIO kinase 2 5 protein-coding RIO2 serine/threonine-protein kinase RIO2 37 0.005064 8.8 1 1 +55783 CMTR2 cap methyltransferase 2 16 protein-coding AFT|FTSJD1|HMTr2|MTr2 cap-specific mRNA (nucleoside-2'-O-)-methyltransferase 2|FtsJ methyltransferase domain containing 1|adrift homolog|cap2 2'O-ribose methyltransferase 2|ftsJ methyltransferase domain-containing protein 1|protein adrift homolog 71 0.009718 8.923 1 1 +55784 MCTP2 multiple C2 and transmembrane domain containing 2 15 protein-coding - multiple C2 and transmembrane domain-containing protein 2|multiple C2 domains, transmembrane 2|multiple C2-domains with two transmembrane regions 2 1 86 0.01177 7.357 1 1 +55785 FGD6 FYVE, RhoGEF and PH domain containing 6 12 protein-coding ZFYVE24 FYVE, RhoGEF and PH domain-containing protein 6|zinc finger FYVE domain-containing protein 24 96 0.01314 8.82 1 1 +55786 ZNF415 zinc finger protein 415 19 protein-coding ZfLp zinc finger protein 415 61 0.008349 6.6 1 1 +55787 TXLNG taxilin gamma X protein-coding CXorf15|ELRG|FIAT|LSR5|TXLNGX gamma-taxilin|environmental LPS-responding|environmental lipopolysaccharide-responding gene protein|factor inhibiting ATF4-mediated transcription|factor inhibiting activating transcription factor 4 (ATF4)-mediated transcription|lipopolysaccharide specific response-5 protein|lipopolysaccharide-specific response protein 5 33 0.004517 7.311 1 1 +55788 LMBRD1 LMBR1 domain containing 1 6 protein-coding C6orf209|LMBD1|MAHCF|NESI probable lysosomal cobalamin transporter|HDAg-L-interacting protein NESI|hepatitis delta antigen-L interacting protein|liver regeneration p-53 related protein|nuclear export signal-interacting protein 53 0.007254 10.17 1 1 +55789 DEPDC1B DEP domain containing 1B 5 protein-coding BRCC3|XTP1 DEP domain-containing protein 1B|HBV X-transactivated gene 8 protein|HBV XAg-transactivated protein 8|HBxAg transactivated protein 1|breast cancer cell 3 36 0.004927 6.661 1 1 +55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 8 protein-coding CSGalNAcT-1|ChGn|beta4GalNAcT chondroitin sulfate N-acetylgalactosaminyltransferase 1|beta4GalNAcT-1|chondroitin beta-1,4-N-acetylgalactosaminyltransferase 1|chondroitin beta1,4 N-acetylgalactosaminyltransferase|glucuronylgalactosylproteoglycan 4-beta-N- acetylgalactosaminyltransferase 41 0.005612 8.382 1 1 +55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 1 protein-coding C1orf103|RIF1 ligand-dependent nuclear receptor-interacting factor 1|receptor-interacting factor 1 54 0.007391 8.551 1 1 +55793 FAM63A family with sequence similarity 63 member A 1 protein-coding MINDY-1 protein FAM63A 31 0.004243 9.011 1 1 +55794 DDX28 DEAD-box helicase 28 16 protein-coding MDDX28 probable ATP-dependent RNA helicase DDX28|DEAD (Asp-Glu-Ala-Asp) box polypeptide 28|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 28|mitochondrial DEAD box protein 28|mitochondrial DEAD-box polypeptide 28 22 0.003011 8.338 1 1 +55795 PCID2 PCI domain containing 2 13 protein-coding F10 PCI domain-containing protein 2|CSN12-like protein 36 0.004927 9.342 1 1 +55796 MBNL3 muscleblind like splicing regulator 3 X protein-coding CHCR|MBLX|MBLX39|MBXL muscleblind-like protein 3|Cys3His CCG1-required protein|muscleblind-like 3|muscleblind-like X-linked protein 22 0.003011 5.52 1 1 +55798 METTL2B methyltransferase like 2B 7 protein-coding METL|METTL2|METTL2A|PSENIP1 methyltransferase-like protein 2B 29 0.003969 8.133 1 1 +55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 3 protein-coding HSA272268 voltage-dependent calcium channel subunit alpha-2/delta-3|calcium channel alpha2-delta3 subunit|calcium channel, voltage-dependent, alpha 2/delta 3 subunit|calcium channel, voltage-dependent, alpha 2/delta subunit 3|voltage-gated calcium channel subunit alpha-2/delta-3 120 0.01642 4.175 1 1 +55800 SCN3B sodium voltage-gated channel beta subunit 3 11 protein-coding ATFB16|BRGDA7|HSA243396|SCNB3 sodium channel subunit beta-3|sodium channel, voltage-gated, type III, beta subunit|voltage-gated sodium channel beta-3 subunit 38 0.005201 4.96 1 1 +55801 IL26 interleukin 26 12 protein-coding AK155|IL-26 interleukin-26 19 0.002601 0.589 1 1 +55802 DCP1A decapping mRNA 1A 3 protein-coding HSA275986|Nbla00360|SMAD4IP1|SMIF mRNA-decapping enzyme 1A|DCP1 decapping enzyme homolog A|DCP1 decapping enzyme-like protein A|Smad4-interacting transcriptional co-activator|decapping enzyme hDcp1a|putative protein product of Nbla00360|transcription factor SMIF 31 0.004243 9.23 1 1 +55803 ADAP2 ArfGAP with dual PH domains 2 17 protein-coding CENTA2|HSA272195|cent-b arf-GAP with dual PH domain-containing protein 2|centaurin beta|centaurin-alpha 2 protein|centaurin-alpha-2|cnt-a2 26 0.003559 7.676 1 1 +55805 LRP2BP LRP2 binding protein 4 protein-coding - LRP2-binding protein|megBP|megalin-binding protein 21 0.002874 5.624 1 1 +55806 HR hair growth associated 8 protein-coding ALUNC|AU|HSA277165|HYPT4|MUHH|MUHH1 lysine-specific demethylase hairless|hairless homolog|protein hairless 64 0.00876 7.592 1 1 +55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 17 protein-coding HSY11339|SIAT7A|ST6GalNAcI|STYI alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1|GalNAc alpha-2, 6-sialyltransferase I, long form|SIAT7-A|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1|ST6 GalNAc alpha-2,6-sialyltransferase 1|ST6GALNAC1, alpha-2,6-sialyltransferase 1|ST6GalNAc I|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 50 0.006844 5.483 1 1 +55809 TRERF1 transcriptional regulating factor 1 6 protein-coding BCAR2|HSA277276|RAPA|TREP132|TReP-132|dJ139D8.5 transcriptional-regulating factor 1|breast cancer anti-estrogen resistance 2|rapa-1|rapa-2|transcriptional regulating protein 132|zinc finger protein rapa|zinc finger transcription factor TReP-132 115 0.01574 8.162 1 1 +55810 FOXJ2 forkhead box J2 12 protein-coding FHX forkhead box protein J2|FOXJ2 forkhead factor|fork head homologous X 47 0.006433 9.493 1 1 +55811 ADCY10 adenylate cyclase 10, soluble 1 protein-coding HCA2|HEL-S-7a|SAC|SACI|Sacy|hsAC adenylate cyclase type 10|3',5'-cyclic AMP synthetase|AH-related protein|ATP pyrophosphate-lyase|epididymis secretory sperm binding protein Li 7a|germ cell soluble adenylyl cyclase|testicular soluble adenylyl cyclase (SAC) 127 0.01738 1.625 1 1 +55812 SPATA7 spermatogenesis associated 7 14 protein-coding HEL-S-296|HSD-3.1|HSD3|LCA3 spermatogenesis-associated protein 7|epididymis secretory protein Li 296|spermatogenesis-associated protein HSD3 43 0.005886 7.249 1 1 +55813 UTP6 UTP6, small subunit processome component 17 protein-coding C17orf40|HCA66 U3 small nucleolar RNA-associated protein 6 homolog|UTP6, small subunit (SSU) processome component, homolog|hepatocellular carcinoma-associated antigen 66|multiple hat domains protein 36 0.004927 9.574 1 1 +55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB 5 protein-coding HSA238520|TAF3B1|TFC5|TFIIIB''|TFIIIB150|TFIIIB90|TFNR transcription factor TFIIIB component B'' homolog|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-like nuclear regulator 160 0.0219 9.388 1 1 +55815 TSNAXIP1 translin associated factor X interacting protein 1 16 protein-coding TXI1 translin-associated factor X-interacting protein 1|trax-interacting protein 1 49 0.006707 4.285 1 1 +55816 DOK5 docking protein 5 20 protein-coding C20orf180|IRS-6|IRS6 docking protein 5|downstream of tyrosine kinase 5|insulin receptor substrate 6 39 0.005338 5.403 1 1 +55818 KDM3A lysine demethylase 3A 2 protein-coding JHDM2A|JHMD2A|JMJD1|JMJD1A|TSGA lysine-specific demethylase 3A|jmjC domain-containing histone demethylation protein 2A|jumonji C domain-containing histone demethylase 2A|jumonji domain-containing protein 1A|lysine (K)-specific demethylase 3A|testis-specific protein A 75 0.01027 10.31 1 1 +55819 RNF130 ring finger protein 130 5 protein-coding G1RZFP|GOLIATH|GP E3 ubiquitin-protein ligase RNF130|g1-related zinc finger protein|goliath homolog 23 0.003148 10.51 1 1 +55821 ALLC allantoicase 2 protein-coding ALC probable allantoicase|allantoate amidinohydrolase 51 0.006981 0.5715 1 1 +55823 VPS11 VPS11, CORVET/HOPS core subunit 11 protein-coding END1|HLD12|PEP5|RNF108|hVPS11 vacuolar protein sorting-associated protein 11 homolog|RING finger protein 108|vacuolar protein sorting 11 homolog 46 0.006296 10.07 1 1 +55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 8 protein-coding CBP|PAG phosphoprotein associated with glycosphingolipid-enriched microdomains 1|Csk-binding protein|phosphoprotein associated with glycosphingolipid microdomains 1|transmembrane adapter protein PAG|transmembrane adaptor protein PAG|transmembrane phosphoprotein Cbp 28 0.003832 8.738 1 1 +55825 PECR peroxisomal trans-2-enoyl-CoA reductase 2 protein-coding DCRRP|HPDHASE|HSA250303|PVIARL|SDR29C1|TERP peroxisomal trans-2-enoyl-CoA reductase|2,4-dienoyl-CoA reductase-related protein|DCR-RP|pVI-ARL|putative short chain alcohol dehydrogenase|short chain dehydrogenase/reductase family 29C member 1 10 0.001369 7.629 1 1 +55827 DCAF6 DDB1 and CUL4 associated factor 6 1 protein-coding 1200006M05Rik|ARCAP|IQWD1|MSTP055|NRIP|PC326 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 70 0.009581 10.56 1 1 +55829 SELENOS selenoprotein S 15 protein-coding AD-015|ADO15|SBBI8|SELS|SEPS1|VIMP selenoprotein S|VCP interacting membrane selenoprotein|VCP-interacting membrane protein|valosin-containing protein-interacting membrane protein 4 0.0005475 10.15 1 1 +55830 GLT8D1 glycosyltransferase 8 domain containing 1 3 protein-coding AD-017|MSTP139 glycosyltransferase 8 domain-containing protein 1|glycosyltransferase AD-017 31 0.004243 9.981 1 1 +55831 EMC3 ER membrane protein complex subunit 3 3 protein-coding POB|TMEM111 ER membrane protein complex subunit 3|30 kDa protein|partial optokinetic response b|transmembrane protein 111 14 0.001916 10.06 1 1 +55832 CAND1 cullin associated and neddylation dissociated 1 12 protein-coding TIP120|TIP120A cullin-associated NEDD8-dissociated protein 1|TBP-interacting protein of 120 kDa A|p120 CAND1 83 0.01136 11.3 1 1 +55833 UBAP2 ubiquitin associated protein 2 9 protein-coding UBAP-2 ubiquitin-associated protein 2|AD-012 protein 86 0.01177 9.853 1 1 +55835 CENPJ centromere protein J 13 protein-coding BM032|CENP-J|CPAP|LAP|LIP1|MCPH6|SASS4|SCKL4|Sas-4 centromere protein J|LAG-3-associated protein|LYST-interacting protein 1|LYST-interacting protein LIP1|LYST-interacting protein LIP7|centrosomal P4.1-associated protein 84 0.0115 7.506 1 1 +55837 EAPP E2F associated phosphoprotein 14 protein-coding BM036|C14orf11 E2F-associated phosphoprotein 19 0.002601 9.56 1 1 +55839 CENPN centromere protein N 16 protein-coding BM039|C16orf60|CENP-N|ICEN32 centromere protein N|interphase centromere complex protein 32 21 0.002874 8.569 1 1 +55840 EAF2 ELL associated factor 2 3 protein-coding BM040|TRAITS|U19 ELL-associated factor 2|testosterone-regulated apoptosis inducer and tumor suppressor protein 32 0.00438 5.929 1 1 +55841 WWC3 WWC family member 3 X protein-coding BM042 protein WWC3 98 0.01341 10.01 1 1 +55843 ARHGAP15 Rho GTPase activating protein 15 2 protein-coding BM046 rho GTPase-activating protein 15|rho-type GTPase-activating protein 15 60 0.008212 5.792 1 1 +55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta 10 protein-coding MDS026 serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B delta isoform|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|protein phosphatase 2, regulatory subunit B, delta isoform 18 0.002464 9.248 1 1 +55845 BRK1 BRICK1, SCAR/WAVE actin nucleating complex subunit 3 protein-coding C3orf10|HSPC300|MDS027|hHBrk1 protein BRICK1|BRICK1, SCAR/WAVE actin-nucleating complex subunit, homolog|haematopoietic stem/progenitor cell protein 300|probable protein BRICK1 2 0.0002737 11.5 1 1 +55846 ITFG2 integrin alpha FG-GAP repeat containing 2 12 protein-coding MDS028 integrin-alpha FG-GAP repeat-containing protein 2 32 0.00438 8.721 1 1 +55847 CISD1 CDGSH iron sulfur domain 1 10 protein-coding C10orf70|MDS029|ZCD1|mitoNEET CDGSH iron-sulfur domain-containing protein 1|zinc finger CDGSH-type domain 1 4 0.0005475 8.808 1 1 +55848 PLGRKT plasminogen receptor with a C-terminal lysine 9 protein-coding AD025|C9orf46|MDS030|PLG-RKT|Plg-R(KT) plasminogen receptor (KT)|5033414D02Rik|plasminogen receptor, C-terminal lysine transmembrane protein|transmembrane protein C9orf46 15 0.002053 8.311 1 1 +55850 USE1 unconventional SNARE in the ER 1 19 protein-coding D12|MDS032|P31|SLT1 vesicle transport protein USE1|Q-SNARE|SNARE-like tail-anchored protein 1 homolog|USE1-like protein|protein p31|putative MAPK activating protein PM26|unconventional SNARE in the ER 1 homolog 20 0.002737 8.487 1 1 +55851 PSENEN presenilin enhancer gamma-secretase subunit 19 protein-coding MDS033|MSTP064|PEN-2|PEN2 gamma-secretase subunit PEN-2|hematopoietic stem/progenitor cells protein MDS033|presenilin enhancer 2 homolog 11 0.001506 10.16 1 1 +55852 TEX2 testis expressed 2 17 protein-coding HT008|TMEM96 testis-expressed sequence 2 protein|testis expressed sequence 2|transmembrane protein 96 78 0.01068 10.33 1 1 +55853 IDI2-AS1 IDI2 antisense RNA 1 10 ncRNA C10orf110|HT009|IDI2-AS IDI2 antisense RNA (non-protein coding)|IDI2 antisense RNA 1 (non-protein coding) 5 0.0006844 3.615 1 1 +55854 ZC3H15 zinc finger CCCH-type containing 15 2 protein-coding HT010|LEREPO4|MSTP012 zinc finger CCCH domain-containing protein 15|DRG family-regulatory protein 1|likely ortholog of mouse immediate early response erythropoietin 4 34 0.004654 10.38 1 1 +55855 FAM45BP family with sequence similarity 45, member A pseudogene X pseudo FAM45B|HT011 family with sequence similarity 45, member B 5 0.0006844 7.203 1 1 +55856 ACOT13 acyl-CoA thioesterase 13 6 protein-coding HT012|PNAS-27|THEM2 acyl-coenzyme A thioesterase 13|hypothalamus protein HT012|thioesterase superfamily member 2 8 0.001095 9.409 1 1 +55857 KIZ kizuna centrosomal protein 20 protein-coding C20orf19|HT013|Kizuna|NCRNA00153|PLK1S1|RP69 centrosomal protein kizuna|polo-like kinase 1 substrate 1 18 0.002464 8.234 1 1 +55858 TMEM165 transmembrane protein 165 4 protein-coding CDG2K|FT27|GDT1|TMPT27|TPARL transmembrane protein 165|TPA regulated locus|transmembrane protein PT27|transmembrane protein TPARL 15 0.002053 10.45 1 1 +55859 BEX1 brain expressed X-linked 1 X protein-coding BEX2|HBEX2|HGR74-h protein BEX1|brain-expressed X-linked protein 1|ovarian granulosa cell 13.0 kDa protein hGR74 14 0.001916 4.671 1 1 +55860 ACTR10 actin-related protein 10 homolog 14 protein-coding ACTR11|Arp10|Arp11|HARP11 actin-related protein 10|actin-related protein 11 25 0.003422 9.95 1 1 +55861 DBNDD2 dysbindin domain containing 2 20 protein-coding C20orf35|CK1BP|HSMNP1 dysbindin domain-containing protein 2|SCF apoptosis response protein 1|casein kinase-1 binding protein|dysbindin (dystrobrevin binding protein 1) domain containing 2 18 0.002464 9.653 1 1 +55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 6 protein-coding HEL-S-76|MMCD|dJ351K20.2 ethylmalonyl-CoA decarboxylase|enoyl CoA hydratase domain containing 1|enoyl Coenzyme A hydratase domain containing 1|enoyl-CoA hydratase domain-containing protein 1|epididymis secretory protein Li 76|methylmalonyl-CoA decarboxylase 26 0.003559 9.875 1 1 +55863 TMEM126B transmembrane protein 126B 11 protein-coding HT007 complex I assembly factor TMEM126B, mitochondrial 9 0.001232 9.01 1 1 +55867 SLC22A11 solute carrier family 22 member 11 11 protein-coding OAT4|hOAT4 solute carrier family 22 member 11|organic anion transporter 4|solute carrier family 22 (organic anion/cation transporter), member 11|solute carrier family 22 (organic anion/urate transporter), member 11 46 0.006296 2.048 1 1 +55869 HDAC8 histone deacetylase 8 X protein-coding CDA07|CDLS5|HD8|HDACL1|MRXS6|RPD3|WTS histone deacetylase 8|histone deacetylase-like 1 25 0.003422 8.28 1 1 +55870 ASH1L ASH1 like histone lysine methyltransferase 1 protein-coding ASH1|ASH1L1|KMT2H histone-lysine N-methyltransferase ASH1L|ASH1-like protein|absent small and homeotic disks protein 1 homolog|ash1 (absent, small, or homeotic)-like|lysine N-methyltransferase 2H|probable histone-lysine N-methyltransferase ASH1L 190 0.02601 10.64 1 1 +55871 CBWD1 COBW domain containing 1 9 protein-coding COBP 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 17 0.002327 9.09 1 1 +55872 PBK PDZ binding kinase 8 protein-coding CT84|HEL164|Nori-3|SPK|TOPK lymphokine-activated killer T-cell-originated protein kinase|MAPKK-like protein kinase|T-LAK cell-originated protein kinase|cancer/testis antigen 84|epididymis luminal protein 164|serine/threonine protein kinase|spermatogenesis-related protein kinase 17 0.002327 7.218 1 1 +55876 GSDMB gasdermin B 17 protein-coding GSDML|PP4052|PRO2521 gasdermin-B|gasdermin-like protein 23 0.003148 7.029 1 1 +55879 GABRQ gamma-aminobutyric acid type A receptor theta subunit X protein-coding THETA gamma-aminobutyric acid receptor subunit theta|GABA(A) receptor subunit theta|gamma-aminobutyric acid (GABA) A receptor, theta 90 0.01232 2.132 1 1 +55884 WSB2 WD repeat and SOCS box containing 2 12 protein-coding SBA2 WD repeat and SOCS box-containing protein 2|CS box-containing WD protein|WSB-2 33 0.004517 10.88 1 1 +55885 LMO3 LIM domain only 3 12 protein-coding RBTN3|RBTNL2|RHOM3|Rhom-3 LIM domain only protein 3|LIM domain only 3 (rhombotin-like 2)|neuronal-specific transcription factor DAT1|rhombotin-3 15 0.002053 6.035 1 1 +55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 3 protein-coding ZFP|ZNF167|ZNF448|ZNF64|ZSCAN39 zinc finger protein with KRAB and SCAN domains 7|zinc finger protein 167|zinc finger protein 448|zinc finger protein 64 56 0.007665 5.651 1 1 +55889 GOLGA6B golgin A6 family member B 15 protein-coding GOLGA|GOLGA6D golgin subfamily A member 6B|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 32 0.00438 1.158 1 1 +55890 GPRC5C G protein-coupled receptor class C group 5 member C 17 protein-coding RAIG-3|RAIG3 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 49 0.006707 9.608 1 1 +55891 LENEP lens epithelial protein 1 protein-coding LEP503 lens epithelial cell protein LEP503 7 0.0009581 0.4935 1 1 +55892 MYNN myoneurin 3 protein-coding OSZF|SBBIZ1|ZBTB31|ZNF902 myoneurin|zinc finger and BTB domain-containing protein 31|zinc finger protein with BTB/POZ domain 44 0.006022 8.582 1 1 +55893 ZNF395 zinc finger protein 395 8 protein-coding HDBP-2|HDBP2|HDRF-2|PBF|PRF-1|PRF1|Si-1-8-14 zinc finger protein 395|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 44 0.006022 10.41 1 1 +55897 MESP1 mesoderm posterior bHLH transcription factor 1 15 protein-coding bHLHc5 mesoderm posterior protein 1|class C basic helix-loop-helix protein 5|mesoderm posterior 1 homolog|mesoderm posterior basic helix-loop-helix transcription factor 1 4 0.0005475 5.154 1 1 +55898 UNC45A unc-45 myosin chaperone A 15 protein-coding GC-UNC45|GCUNC-45|GCUNC45|IRO039700|SMAP-1|SMAP1|UNC-45A protein unc-45 homolog A|general cell UNC45|smooth muscle cell associated protein-1|unc-45 homolog A 42 0.005749 10.86 1 1 +55900 ZNF302 zinc finger protein 302 19 protein-coding HSD16|MST154|MSTP154|ZNF135L|ZNF140L|ZNF327 zinc finger protein 302|zinc finger protein 327 26 0.003559 8.949 1 1 +55901 THSD1 thrombospondin type 1 domain containing 1 13 protein-coding TMTSP|UNQ3010 thrombospondin type-1 domain-containing protein 1|4833423O18Rik|thrombospondin, type I, domain containing 1|transmembrane molecule with thrombospondin module 66 0.009034 6.613 1 1 +55902 ACSS2 acyl-CoA synthetase short-chain family member 2 20 protein-coding ACAS2|ACECS|ACS|ACSA|dJ1161H23.1 acetyl-coenzyme A synthetase, cytoplasmic|acetate thiokinase|acetate-CoA ligase|acetyl-Coenzyme A synthetase 2 (ADP forming)|acyl-activating enzyme|cytoplasmic acetyl-coenzyme A synthetase 39 0.005338 9.927 1 1 +55904 KMT2E lysine methyltransferase 2E 7 protein-coding HDCMC04P|MLL5|NKp44L histone-lysine N-methyltransferase 2E|histone-lysine N-methyltransferase MLL5|lysine (K)-specific methyltransferase 2E|myeloid/lymphoid or mixed-lineage leukemia 5 (trithorax homolog, Drosophila)|myeloid/lymphoid or mixed-lineage leukemia protein 5 129 0.01766 10.52 1 1 +55905 RNF114 ring finger protein 114 20 protein-coding PSORS12|ZNF313 E3 ubiquitin-protein ligase RNF114|zinc finger protein 228|zinc finger protein 313 10 0.001369 10.85 1 1 +55906 ZC4H2 zinc finger C4H2-type containing X protein-coding HCA127|KIAA1166|WRWF|WWS zinc finger C4H2 domain-containing protein|hepatocellular carcinoma-associated antigen 127|zinc finger, C4H2 domain containing 31 0.004243 6.985 1 1 +55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase 12 protein-coding CSS N-acylneuraminate cytidylyltransferase|CMP-N-acetylneuraminic acid synthase|CMP-N-acetylneuraminic acid synthetase|CMP-Neu5Ac synthetase|CMP-NeuNAc synthase|CMP-NeuNAc synthetase|CMP-sialic acid synthetase|cytidine 5'-monophosphate N-acetylneuraminic acid synthetase 29 0.003969 9.786 1 1 +55908 ANGPTL8 angiopoietin like 8 19 protein-coding C19orf80|PRO1185|PVPA599|RIFL|TD26 angiopoietin-like protein 8|betatrophin variant 1|betatrophin variant 2|hepatocellular carcinoma-associated gene TD26|hepatocellular carcinoma-associated protein TD26|lipasin|refeeding-induced fat and liver protein 12 0.001642 1.384 1 1 +55909 BIN3 bridging integrator 3 8 protein-coding - bridging integrator 3 15 0.002053 8.709 1 1 +55911 APOBR apolipoprotein B receptor 16 protein-coding APOB100R|APOB48R apolipoprotein B receptor|apoB-48R|apolipoprotein B-100 receptor|apolipoprotein B-48 receptor|apolipoprotein B100 receptor|apolipoprotein B48 receptor 87 0.01191 7.646 1 1 +55914 ERBIN erbb2 interacting protein 5 protein-coding ERBB2IP|HEL-S-78|LAP2 erbin|densin-180-like protein|epididymis secretory protein Li 78|protein LAP2 82 0.01122 10.85 1 1 +55915 LANCL2 LanC like 2 7 protein-coding GPR69B|TASP lanC-like protein 2|G protein-coupled receptor 69B|LanC (bacterial lantibiotic synthetase component C)-like 2|LanC lantibiotic synthetase component C-like 2|testis-specific adriamycin sensitivity protein 37 0.005064 9.354 1 1 +55916 NXT2 nuclear transport factor 2 like export factor 2 X protein-coding P15-2 NTF2-related export protein 2|protein p15-2 13 0.001779 8.369 1 1 +55917 CTTNBP2NL CTTNBP2 N-terminal like 1 protein-coding - CTTNBP2 N-terminal-like protein 45 0.006159 9.478 1 1 +55920 RCC2 regulator of chromosome condensation 2 1 protein-coding TD-60 protein RCC2|RCC1-like protein TD-60|telophase disk protein of 60 kDa 35 0.004791 11.8 1 1 +55922 NKRF NFKB repressing factor X protein-coding ITBA4|NRF NF-kappa-B-repressing factor|transcription factor NRF 38 0.005201 8.503 1 1 +55924 FAM212B family with sequence similarity 212 member B 1 protein-coding C1orf183 protein FAM212B 20 0.002737 5.834 1 1 +55929 DMAP1 DNA methyltransferase 1 associated protein 1 1 protein-coding DNMAP1|DNMTAP1|EAF2|MEAF2|SWC4 DNA methyltransferase 1-associated protein 1|DNMT1 associated protein 1 24 0.003285 9.38 1 1 +55930 MYO5C myosin VC 15 protein-coding - unconventional myosin-Vc|myosin 5C|myosin-Vc 96 0.01314 8.812 1 1 +55937 APOM apolipoprotein M 6 protein-coding G3a|HSPC336|NG20|apo-M apolipoprotein M|NG20-like protein|alternative name: G3a, NG20|protein G3a 7 0.0009581 5.704 1 1 +55954 ZMAT5 zinc finger matrin-type 5 22 protein-coding SNRNP20|U11/U12-20K|ZC3H19 zinc finger matrin-type protein 5|U11/U12 small nuclear ribonucleoprotein 20 kDa protein|U11/U12 snRNP 20 kDa protein|U11/U12 snRNP 20K|zinc finger CCCH-type containing 19 12 0.001642 8.437 1 1 +55957 LIN37 lin-37 DREAM MuvB core complex component 19 protein-coding F25965|ZK418.4|lin-37 protein lin-37 homolog|antolefinin|lin-37 homolog|protein F25965 20 0.002737 7.413 1 1 +55958 KLHL9 kelch like family member 9 9 protein-coding - kelch-like protein 9 43 0.005886 9.737 1 1 +55959 SULF2 sulfatase 2 20 protein-coding HSULF-2 extracellular sulfatase Sulf-2 79 0.01081 11.11 1 1 +55964 SEPT3 septin 3 22 protein-coding SEP3|bK250D10.3 neuronal-specific septin-3 27 0.003696 7.071 1 1 +55966 AJAP1 adherens junctions associated protein 1 1 protein-coding MOT8|SHREW-1|SHREW1 adherens junction-associated protein 1|membrane protein shrew-1|transmembrane protein SHREW1 66 0.009034 3.883 1 1 +55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 12 protein-coding B17.2|DAP13 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12|13 kDa differentiation-associated protein|CI-B17.2|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12|NADH-ubiquinone oxidoreductase subunit B17.2|complex I B17.2 subunit 12 0.001642 9.72 1 1 +55968 NSFL1C NSFL1 cofactor 20 protein-coding P47|UBX1|UBXD10|UBXN2C|dJ776F14.1 NSFL1 cofactor p47|NSFL1 (p97) cofactor (p47)|SHP1 homolog|UBX domain-containing protein 2C|p97 cofactor p47 32 0.00438 10.86 1 1 +55969 C20orf24 chromosome 20 open reading frame 24 20 protein-coding PNAS-11|RIP5 uncharacterized protein C20orf24|rab5-interacting protein 10 0.001369 10.72 1 1 +55970 GNG12 G protein subunit gamma 12 1 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-12|G-protein gamma-12 subunit|guanine nucleotide binding protein (G protein), gamma 12 24 0.003285 11 1 1 +55971 BAIAP2L1 BAI1 associated protein 2 like 1 7 protein-coding IRTKS brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 1|BAI1-associated protein 2-like protein 1|insulin receptor tyrosine kinase substrate 47 0.006433 9.395 1 1 +55972 SLC25A40 solute carrier family 25 member 40 7 protein-coding MCFP solute carrier family 25 member 40|mitochondrial carrier family protein 18 0.002464 7.06 1 1 +55973 BCAP29 B-cell receptor associated protein 29 7 protein-coding BAP29 B-cell receptor-associated protein 29|BCR-associated protein 29 34 0.004654 10.16 1 1 +55974 SLC50A1 solute carrier family 50 member 1 1 protein-coding HsSWEET1|RAG1AP1|SCP|SWEET1|slv sugar transporter SWEET1|RAG1-activating protein 1|RP11-540D14.5|RZPDo834D038D|probable sugar transporter RAG1AP1|recombination activating gene 1 activating protein 1|solute carrier family 50 (sugar efflux transporter), member 1|solute carrier family 50 (sugar transporter), member 1|stromal cell protein 9 0.001232 9.904 1 1 +55975 KLHL7 kelch like family member 7 7 protein-coding CISS3|KLHL6|SBBI26 kelch-like protein 7|kelch-like 6|kelch-like 7|kelch/BTB 56 0.007665 9.26 1 1 +55997 CFC1 cripto, FRL-1, cryptic family 1 2 protein-coding CFC1B|CRYPTIC|DTGA2|HTX2 cryptic protein|cryptic family protein 1|heterotaxy 2 (autosomal dominant) 9 0.001232 1 0 +55998 NXF5 nuclear RNA export factor 5 X protein-coding - nuclear RNA export factor 5|TAP-like protein 1|TAPL-1 48 0.00657 0.3842 1 1 +55999 NXF4 nuclear RNA export factor 4 pseudogene X pseudo - - 58 0.007939 0.228 1 1 +56000 NXF3 nuclear RNA export factor 3 X protein-coding - nuclear RNA export factor 3|TAP-like protein 3|TAPL-3 58 0.007939 1.417 1 1 +56001 NXF2 nuclear RNA export factor 2 X protein-coding CT39|TAPL-2|TCP11X2 nuclear RNA export factor 2|TAP-like protein 2|cancer/testis antigen 39|t-complex protein 11 homolog 9 0.001232 0.8031 1 1 +56005 MYDGF myeloid derived growth factor 19 protein-coding C19orf10|EUROIMAGE1875335|IL25|IL27|IL27w|R33729_1|SF20 myeloid-derived growth factor|UPF0556 protein C19orf10|interleukin 27 working designation|interleukin-25|stromal cell-derived growth factor SF20 8 0.001095 10.83 1 1 +56006 SMG9 SMG9, nonsense mediated mRNA decay factor 19 protein-coding C19orf61|F17127_1|HBMS protein SMG9|protein smg-9 homolog 25 0.003422 9.462 1 1 +56033 BARX1 BARX homeobox 1 9 protein-coding - homeobox protein BarH-like 1|BarH-like homeobox 1 5 0.0006844 3.089 1 1 +56034 PDGFC platelet derived growth factor C 4 protein-coding FALLOTEIN|SCDGF platelet-derived growth factor C|PDGF-C|VEGF-E|secretory growth factor-like protein|spinal cord-derived growth factor 40 0.005475 8.747 1 1 +56052 ALG1 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase 16 protein-coding CDG1K|HMAT1|HMT-1|HMT1|MT-1|Mat-1|hMat-1 chitobiosyldiphosphodolichol beta-mannosyltransferase|GDP-Man:GlcNAc2-PP-dolichol mannosyltransferase|GDP-mannose-dolichol diphosphochitobiose mannosyltransferase|asparagine-linked glycosylation 1 homolog (yeast, beta-1,4-mannosyltransferase)|asparagine-linked glycosylation 1, beta-1,4-mannosyltransferase homolog|asparagine-linked glycosylation protein 1 homolog|beta-1,4-mannosyltransferase|mannosyltransferase-1 33 0.004517 9.29 1 1 +56061 UBFD1 ubiquitin family domain containing 1 16 protein-coding UBPH ubiquitin domain-containing protein UBFD1|ubiquitin-binding protein homolog 25 0.003422 10.58 1 1 +56062 KLHL4 kelch like family member 4 X protein-coding DKELCHL|KHL4 kelch-like protein 4 131 0.01793 4.089 1 1 +56063 TMEM234 transmembrane protein 234 1 protein-coding AASL548|C1orf91|PRO1105|RP4-622L5|dJ622L5.7 transmembrane protein 234 6 0.0008212 7.616 1 1 +56097 PCDHGC5 protocadherin gamma subfamily C, 5 5 protein-coding PCDH-GAMMA-C5 protocadherin gamma-C5 165 0.02258 3.691 1 1 +56098 PCDHGC4 protocadherin gamma subfamily C, 4 5 protein-coding PCDH-GAMMA-C4 protocadherin gamma-C4 51 0.006981 3.087 1 1 +56099 PCDHGB7 protocadherin gamma subfamily B, 7 5 protein-coding ME6|PCDH-GAMMA-B7 protocadherin gamma-B7|cadherin ME6 76 0.0104 6.544 1 1 +56100 PCDHGB6 protocadherin gamma subfamily B, 6 5 protein-coding PCDH-GAMMA-B6 protocadherin gamma-B6 82 0.01122 5.301 1 1 +56101 PCDHGB5 protocadherin gamma subfamily B, 5 5 protein-coding PCDH-GAMMA-B5 protocadherin gamma-B5 24 0.003285 5.821 1 1 +56102 PCDHGB3 protocadherin gamma subfamily B, 3 5 protein-coding PCDH-GAMMA-B3 protocadherin gamma-B3 103 0.0141 3.474 1 1 +56103 PCDHGB2 protocadherin gamma subfamily B, 2 5 protein-coding PCDH-GAMMA-B2 protocadherin gamma-B2 72 0.009855 5.393 1 1 +56104 PCDHGB1 protocadherin gamma subfamily B, 1 5 protein-coding PCDH-GAMMA-B1 protocadherin gamma-B1 94 0.01287 4.676 1 1 +56105 PCDHGA11 protocadherin gamma subfamily A, 11 5 protein-coding PCDH-GAMMA-A11 protocadherin gamma-A11 77 0.01054 4.39 1 1 +56106 PCDHGA10 protocadherin gamma subfamily A, 10 5 protein-coding PCDH-GAMMA-A10 protocadherin gamma-A10 69 0.009444 5.822 1 1 +56107 PCDHGA9 protocadherin gamma subfamily A, 9 5 protein-coding PCDH-GAMMA-A9 protocadherin gamma-A9 73 0.009992 4.898 1 1 +56108 PCDHGA7 protocadherin gamma subfamily A, 7 5 protein-coding PCDH-GAMMA-A7 protocadherin gamma-A7 82 0.01122 4.361 1 1 +56109 PCDHGA6 protocadherin gamma subfamily A, 6 5 protein-coding PCDH-GAMMA-A6 protocadherin gamma-A6 99 0.01355 4.693 1 1 +56110 PCDHGA5 protocadherin gamma subfamily A, 5 5 protein-coding CDH-GAMMA-A5|ME3|PCDH-GAMMA-A5 protocadherin gamma-A5|cadherin ME3 106 0.01451 4.047 1 1 +56111 PCDHGA4 protocadherin gamma subfamily A, 4 5 protein-coding PCDH-GAMMA-A4 protocadherin gamma-A4 104 0.01423 4.639 1 1 +56112 PCDHGA3 protocadherin gamma subfamily A, 3 5 protein-coding PCDH-GAMMA-A3 protocadherin gamma-A3 108 0.01478 3.82 1 1 +56113 PCDHGA2 protocadherin gamma subfamily A, 2 5 protein-coding PCDH-GAMMA-A2 protocadherin gamma-A2 120 0.01642 4.715 1 1 +56114 PCDHGA1 protocadherin gamma subfamily A, 1 5 protein-coding PCDH-GAMMA-A1 protocadherin gamma-A1 109 0.01492 3.86 1 1 +56120 PCDHGB8P protocadherin gamma subfamily B, 8 pseudogene 5 pseudo PCDH-PSI3 protocadherin gamma B8 pseudogene 5 0.0006844 1.495 1 1 +56121 PCDHB15 protocadherin beta 15 5 protein-coding PCDH-BETA15 protocadherin beta-15 93 0.01273 5.139 1 1 +56122 PCDHB14 protocadherin beta 14 5 protein-coding PCDH-BETA14 protocadherin beta-14 116 0.01588 6.863 1 1 +56123 PCDHB13 protocadherin beta 13 5 protein-coding PCDH-BETA13 protocadherin beta-13 94 0.01287 5.693 1 1 +56124 PCDHB12 protocadherin beta 12 5 protein-coding PCDH-BETA12 protocadherin beta-12|PCDH-beta-12 154 0.02108 4.865 1 1 +56125 PCDHB11 protocadherin beta 11 5 protein-coding ME2|PCDH-BETA11 protocadherin beta-11|PCDH-beta-11|cadherin ME2 106 0.01451 4.64 1 1 +56126 PCDHB10 protocadherin beta 10 5 protein-coding PCDH-BETA10|PCHB10 protocadherin beta-10|PCDH-beta-10 139 0.01903 6.078 1 1 +56127 PCDHB9 protocadherin beta 9 5 protein-coding PCDH-BETA9|PCDH3H protocadherin beta-9|PCDH-beta-9|protocadherin-3h 21 0.002874 5.832 1 1 +56128 PCDHB8 protocadherin beta 8 5 protein-coding PCDH-BETA8|PCDH3I protocadherin beta-8|protocadherin-3i 142 0.01944 4.884 1 1 +56129 PCDHB7 protocadherin beta 7 5 protein-coding PCDH-BETA7 protocadherin beta-7 149 0.02039 5.287 1 1 +56130 PCDHB6 protocadherin beta 6 5 protein-coding PCDH-BETA6 protocadherin beta-6 136 0.01861 4.466 1 1 +56131 PCDHB4 protocadherin beta 4 5 protein-coding PCDH-BETA4 protocadherin beta-4 111 0.01519 5.479 1 1 +56132 PCDHB3 protocadherin beta 3 5 protein-coding PCDH-BETA3 protocadherin beta-3 136 0.01861 4.754 1 1 +56133 PCDHB2 protocadherin beta 2 5 protein-coding PCDH-BETA2 protocadherin beta-2 115 0.01574 6.32 1 1 +56134 PCDHAC2 protocadherin alpha subfamily C, 2 5 protein-coding PCDH-ALPHA-C2 protocadherin alpha-C2 155 0.02122 4.64 1 1 +56135 PCDHAC1 protocadherin alpha subfamily C, 1 5 protein-coding PCDH-ALPHA-C1 protocadherin alpha-C1 83 0.01136 3.311 1 1 +56136 PCDHA13 protocadherin alpha 13 5 protein-coding CNR5|CNRN5|CNRS5|CRNR5|PCDH-ALPHA13 protocadherin alpha-13|KIAA0345-like 1|PCDH-alpha-13|ortholog of mouse CNR5 118 0.01615 2.681 1 1 +56137 PCDHA12 protocadherin alpha 12 5 protein-coding PCDH-ALPHA12 protocadherin alpha-12|KIAA0345-like 2|PCDH-alpha-12 127 0.01738 3.473 1 1 +56138 PCDHA11 protocadherin alpha 11 5 protein-coding CNR7|CNRN7|CNRS7|CRNR7|PCDH-ALPHA11 protocadherin alpha-11|KIAA0345-like 3 119 0.01629 3.745 1 1 +56139 PCDHA10 protocadherin alpha 10 5 protein-coding CNR8|CNRN8|CNRS8|CRNR8|PCDH-ALPHA10 protocadherin alpha-10|KIAA0345-like 4|PCDH-alpha-10|ortholog to mouse CNR8 121 0.01656 4.07 1 1 +56140 PCDHA8 protocadherin alpha 8 5 protein-coding PCDH-ALPHA8 protocadherin alpha-8|KIAA0345-like 6|PCDH-alpha-8 109 0.01492 1.902 1 1 +56141 PCDHA7 protocadherin alpha 7 5 protein-coding CNR4|CNRN4|CNRS4|CRNR4|PCDH-ALPHA7 protocadherin alpha-7|KIAA0345-like 7|PCDH-alpha-7|ortholog to mouse CNR4 150 0.02053 3.299 1 1 +56142 PCDHA6 protocadherin alpha 6 5 protein-coding CNR2|CNRN2|CNRS2|CRNR2|PCDH-ALPHA6 protocadherin alpha-6|KIAA0345-like 8|PCDH-alpha-6 125 0.01711 3.752 1 1 +56143 PCDHA5 protocadherin alpha 5 5 protein-coding CNR6|CNRN6|CNRS6|CRNR6|PCDH-ALPHA5 protocadherin alpha-5|KIAA0345-like 9|PCDH-alpha-5|ortholog of mouse CNR6 116 0.01588 2.625 1 1 +56144 PCDHA4 protocadherin alpha 4 5 protein-coding CNR1|CNRN1|CRNR1|PCDH-ALPHA4 protocadherin alpha-4|KIAA0345-like 10|PCDH-alpha-4|ortholog of mouse CNR1 109 0.01492 4.125 1 1 +56145 PCDHA3 protocadherin alpha 3 5 protein-coding PCDH-ALPHA3 protocadherin alpha-3|KIAA0345-like 11|PCDH-alpha-3 133 0.0182 3.763 1 1 +56146 PCDHA2 protocadherin alpha 2 5 protein-coding PCDH-ALPHA2 protocadherin alpha-2|KIAA0345-like 12 146 0.01998 2.817 1 1 +56147 PCDHA1 protocadherin alpha 1 5 protein-coding PCDH-ALPHA1 protocadherin alpha-1|KIAA0345-like 13|PCDH-alpha-1 133 0.0182 3.371 1 1 +56154 TEX15 testis expressed 15 8 protein-coding CT42 testis-expressed sequence 15 protein|cancer/testis antigen 42 202 0.02765 1.964 1 1 +56155 TEX14 testis expressed 14, intercellular bridge forming factor 17 protein-coding CT113 inactive serine/threonine-protein kinase TEX14|cancer/testis antigen 113|protein kinase-like protein SgK307|sugen kinase 307|testis-expressed protein 14|testis-expressed sequence 14 protein 120 0.01642 2.805 1 1 +56156 TEX13B testis expressed 13B X protein-coding TGC3B|TSGA5 testis-expressed sequence 13B protein|testis expressed sequence 13B 28 0.003832 0.1702 1 1 +56157 TEX13A testis expressed 13A X protein-coding - testis-expressed sequence 13A protein 61 0.008349 0.05855 1 1 +56158 TEX12 testis expressed 12 11 protein-coding - testis-expressed sequence 12 protein|testis expressed sequence 12|testis-expressed sequence 12 protein variant 1|testis-expressed sequence 12 protein variant 2|testis-expressed sequence 12 protein variant 3 5 0.0006844 0.818 1 1 +56159 TEX11 testis expressed 11 X protein-coding SPGFX2|TGC1|TSGA3 testis-expressed sequence 11 protein|testis expressed sequence 11 68 0.009307 1.504 1 1 +56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component 15 protein-coding HCA4|MAGEG1|MAGEL3|NDNL2|NSE3 non-structural maintenance of chromosomes element 3 homolog|MAGE-G1 antigen|hepatocellular carcinoma-associated protein 4|hepatocellular carcinoma-associated protein HCA4|melanoma antigen, family G, 1|melanoma-associated antigen G1|necdin-like 2|necdin-like 2, SMC5-SMC6 complex component|necdin-like gene 2|necdin-like protein 2|non-SMC element 3 homolog 15 0.002053 8.727 1 1 +56163 RNF17 ring finger protein 17 13 protein-coding Mmip-2|SPATA23|TDRD4 RING finger protein 17|spermatogenesis associated 23|tudor domain containing 4|tudor domain-containing protein 4 124 0.01697 0.5577 1 1 +56164 STK31 serine/threonine kinase 31 7 protein-coding SGK396|TDRD8 serine/threonine-protein kinase 31|serine/threonine-protein kinase NYD-SPK|sugen kinase 396|testis tissue sperm-binding protein Li 78m|tudor domain containing 8 111 0.01519 3.003 1 1 +56165 TDRD1 tudor domain containing 1 10 protein-coding CT41.1 tudor domain-containing protein 1|cancer/testis antigen 41.1|testicular tissue protein Li 193 94 0.01287 1.814 1 1 +56169 GSDMC gasdermin C 8 protein-coding MLZE gasdermin-C|melanoma-derived leucine zipper, extra-nuclear factor|melanoma-derived leucine zipper-containing extranuclear factor 53 0.007254 3.868 1 1 +56171 DNAH7 dynein axonemal heavy chain 7 2 protein-coding - dynein heavy chain 7, axonemal|axonemal beta dynein heavy chain 7|axonemal dynein heavy chain 7|ciliary dynein heavy chain 7|dynein heavy chain-like protein 2|dynein, axonemal, heavy polypeptide 7|hDHC2 358 0.049 4.408 1 1 +56172 ANKH ANKH inorganic pyrophosphate transport regulator 5 protein-coding ANK|CCAL2|CMDJ|CPPDD|HANK|MANK progressive ankylosis protein homolog|ankylosis, progressive homolog 38 0.005201 10.54 1 1 +56180 MOSPD1 motile sperm domain containing 1 X protein-coding DJ473B4 motile sperm domain-containing protein 1 16 0.00219 8.104 1 1 +56181 MTFR1L mitochondrial fission regulator 1 like 1 protein-coding FAM54B|HYST1888|MST116|MSTP116 mitochondrial fission regulator 1-like|family with sequence similarity 54 member B|protein FAM54B 17 0.002327 9.888 1 1 +56203 LMOD3 leiomodin 3 3 protein-coding NEM10 leiomodin-3|leiomodin 3 (fetal)|leiomodin, fetal form 40 0.005475 2.355 1 1 +56204 FAM214A family with sequence similarity 214 member A 15 protein-coding KIAA1370 protein FAM214A 74 0.01013 9.338 1 1 +56241 SUSD2 sushi domain containing 2 22 protein-coding BK65A6.2 sushi domain-containing protein 2|Sushi domain (SCR repeat) containing|testicular tissue protein Li 190 59 0.008076 7.996 1 1 +56242 ZNF253 zinc finger protein 253 19 protein-coding BMZF-1|BMZF1|ZNF411 zinc finger protein 253|DNA-binding protein|bone marrow zinc finger 1|zinc finger protein 411 44 0.006022 7.476 1 1 +56243 KIAA1217 KIAA1217 10 protein-coding SKT sickle tail protein homolog|likely orthologue of Mus musculus enhancer trap locus 4 139 0.01903 10.56 1 1 +56244 BTNL2 butyrophilin like 2 6 protein-coding BTL-II|BTN7|HSBLMHC1|SS2 butyrophilin-like protein 2|butyrophilin-like 2 (MHC class II associated) 33 0.004517 0.3129 1 1 +56245 C21orf62 chromosome 21 open reading frame 62 21 protein-coding B37|C21orf120|PRED81 uncharacterized protein C21orf62 11 0.001506 2.357 1 1 +56246 MRAP melanocortin 2 receptor accessory protein 21 protein-coding B27|C21orf61|FALP|FGD2|GCCD2 melanocortin-2 receptor accessory protein|fat cell-specific low molecular weight protein|fat tissue-specific low MW protein 20 0.002737 0.8258 1 1 +56252 YLPM1 YLP motif containing 1 14 protein-coding C14orf170|PPP1R169|ZAP113|ZAP3 YLP motif-containing protein 1|nuclear protein ZAP3|protein phosphatase 1, regulatory subunit 169 145 0.01985 10.47 1 1 +56253 CRTAM cytotoxic and regulatory T-cell molecule 11 protein-coding CD355 cytotoxic and regulatory T-cell molecule|class-I MHC-restricted T-cell-associated molecule 33 0.004517 3.636 1 1 +56254 RNF20 ring finger protein 20 9 protein-coding BRE1|BRE1A|hBRE1 E3 ubiquitin-protein ligase BRE1A|BRE1 E3 ubiquitin ligase homolog|homolog of S. cerevisiae BRE1 63 0.008623 10.19 1 1 +56255 TMX4 thioredoxin related transmembrane protein 4 20 protein-coding DJ971N18.2|PDIA14|TXNDC13 thioredoxin-related transmembrane protein 4|protein disulfide isomerase family A, member 14|thioredoxin domain containing 13|thioredoxin domain-containing protein 13 34 0.004654 9.718 1 1 +56256 SERTAD4 SERTA domain containing 4 1 protein-coding DJ667H12.2 SERTA domain-containing protein 4 27 0.003696 5.435 1 1 +56257 MEPCE methylphosphate capping enzyme 7 protein-coding BCDIN3 7SK snRNA methylphosphate capping enzyme|bicoid-interacting protein 3 homolog|bin3 homolog|bin3, bicoid-interacting 3, homolog 36 0.004927 10.52 1 1 +56259 CTNNBL1 catenin beta like 1 20 protein-coding C20orf33|NAP|P14L|PP8304|dJ633O20.1 beta-catenin-like protein 1|nuclear associated protein|testis development protein NYD-SP19 44 0.006022 10.02 1 1 +56260 C8orf44 chromosome 8 open reading frame 44 8 protein-coding - putative uncharacterized protein C8orf44 14 0.001916 5.141 1 1 +56261 GPCPD1 glycerophosphocholine phosphodiesterase 1 20 protein-coding EDI3|GDE5|GDPD6|PREI4 glycerophosphocholine phosphodiesterase GPCPD1|endometrial differential 3|glycerophosphocholine phosphodiesterase GDE1 homolog|glycerophosphodiester phosphodiesterase 5|preimplantation protein 4|putative glycerophosphocholine phosphodiesterase GPCPD1|putative glycerophosphodiester phosphodiesterase 5 36 0.004927 9.717 1 1 +56262 LRRC8A leucine rich repeat containing 8 family member A 9 protein-coding AGM5|LRRC8|SWELL1 volume-regulated anion channel subunit LRRC8A|leucine-rich repeat-containing protein 8A|swelling protein 1 50 0.006844 11.09 1 1 +56265 CPXM1 carboxypeptidase X, M14 family member 1 20 protein-coding CPX1|CPXM probable carboxypeptidase X1|carboxypeptidase X (M14 family), member 1|carboxypeptidase-like protein X1|metallocarboxypeptidase CPX-1 73 0.009992 8.042 1 1 +56267 KYAT3 kynurenine aminotransferase 3 1 protein-coding CCBL2|KAT3|KATIII kynurenine--oxoglutarate transaminase 3|RP11-82K18.3|cysteine conjugate beta lyase 2|cysteine-S-conjugate beta-lyase 2|kynurenine aminotransferase III|kynurenine--glyoxylate transaminase|kynurenine--oxoglutarate transaminase III 37 0.005064 8.893 1 1 +56269 IRGC immunity related GTPase cinema 19 protein-coding CINEMA|IFGGE|IRGC1|Iigp5|R30953_1 interferon-inducible GTPase 5|immunity-related GTPase cinema 1|immunity-related GTPase family, cinema 1|interferon-gamma-inducible GTPase IFGGE protein 50 0.006844 0.3075 1 1 +56270 WDR45B WD repeat domain 45B 17 protein-coding WDR45L|WIPI-3|WIPI3 WD repeat domain phosphoinositide-interacting protein 3|WD repeat protein 45-like|WD repeat-containing protein 45-like|WD repeat-containing protein 45B|WDR45-like protein|WIPI49-like protein 29 0.003969 11.2 1 1 +56271 BEX4 brain expressed X-linked 4 X protein-coding BEXL1 protein BEX4|BEX family member 4|BEX1-like protein 1|brain expressed X-linked-like 1|nerve growth factor receptor-associated protein 3 6 0.0008212 9.306 1 1 +56286 DAD1P1 defender against cell death 1 pseudogene 1 12 pseudo DAD1L|DADR DAD1-related 0.2438 0 1 +56287 GKN1 gastrokine 1 2 protein-coding AMP18|BRICD1|CA11|FOV|foveolin gastrokine-1|18 kDa antrum mucosa protein|AMP-18|BRICHOS domain containing 1 13 0.001779 0.4741 1 1 +56288 PARD3 par-3 family cell polarity regulator 10 protein-coding ASIP|Baz|PAR3|PAR3alpha|PARD-3|PARD3A|PPP1R118|SE2-5L16|SE2-5LT1|SE2-5T2 partitioning defective 3 homolog|CTCL tumor antigen se2-5|PAR3-alpha|atypical PKC isotype-specific interacting protein|bazooka|par-3 family cell polarity regulator alpha|par-3 partitioning defective 3 homolog|protein phosphatase 1, regulatory subunit 118 115 0.01574 9.717 1 1 +56300 IL36G interleukin 36, gamma 2 protein-coding IL-1F9|IL-1H1|IL-1RP2|IL1E|IL1F9|IL1H1|IL1RP2 interleukin-36 gamma|IL-1 related protein 2|IL-1(EPSILON)|IL-1-epsilon|interleukin 1-related protein 2|interleukin-1 epsilon|interleukin-1 family member 9|interleukin-1 homolog 1 22 0.003011 1.723 1 1 +56301 SLC7A10 solute carrier family 7 member 10 19 protein-coding ASC1|HASC-1|asc-1 asc-type amino acid transporter 1|solute carrier family 7 (neutral amino acid transporter light chain, asc system), 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 34 0.004654 2.046 1 1 +56302 TRPV5 transient receptor potential cation channel subfamily V member 5 7 protein-coding CAT2|ECAC1|OTRPC3 transient receptor potential cation channel subfamily V member 5|calcium transport protein 2|calcium transporter 2|epithelial calcium channel 1|osm-9-like TRP channel 3 104 0.01423 0.3502 1 1 +56311 ANKRD7 ankyrin repeat domain 7 7 protein-coding TSA806 ankyrin repeat domain-containing protein 7|testicular tissue protein Li 19|testis-specific ankyrin motif containing protein|testis-specific protein TSA806 30 0.004106 1.526 1 1 +56339 METTL3 methyltransferase like 3 14 protein-coding IME4|M6A|MT-A70|Spo8 N6-adenosine-methyltransferase 70 kDa subunit|adoMet-binding subunit of the human mRNA (N6-adenosine)-methyltransferase|mRNA (2'-O-methyladenosine-N(6)-)-methyltransferase|mRNA m(6)A methyltransferase|methyltransferase-like protein 3 39 0.005338 9.277 1 1 +56341 PRMT8 protein arginine methyltransferase 8 12 protein-coding HRMT1L3|HRMT1L4 protein arginine N-methyltransferase 8|HMT1 hnRNP methyltransferase-like 3|arginine methyltransferase 8|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 4|protein arginine N-methyltransferase 4 62 0.008486 1.813 1 1 +56342 PPAN peter pan homolog (Drosophila) 19 protein-coding BXDC3|SSF|SSF-1|SSF1|SSF2 suppressor of SWI4 1 homolog|brix domain-containing protein 3|homolog of S. cerevisiae SSF1|second-step splicing factor 1|suppressor of sterile four 1 19 0.002601 9.07 1 1 +56344 CABP5 calcium binding protein 5 19 protein-coding CABP3 calcium-binding protein 5|calcium-binding protein 3 21 0.002874 0.1158 1 1 +56413 LTB4R2 leukotriene B4 receptor 2 14 protein-coding BLT2|BLTR2|JULF2|KPG_004|LTB4-R 2|LTB4-R2|NOP9 leukotriene B4 receptor 2|LTB4 receptor JULF2|leukotriene B4 receptor BLT2|seven transmembrane receptor BLTR2 14 0.001916 5.854 1 1 +56474 CTPS2 CTP synthase 2 X protein-coding - CTP synthase 2|CTP synthase II|CTP synthetase type 2|UTP-ammonia ligase 2|cytidine 5'-triphosphate synthetase 2 27 0.003696 9.048 1 1 +56475 RPRM reprimo, TP53 dependent G2 arrest mediator candidate 2 protein-coding REPRIMO protein reprimo|candidate mediator of the p53 dependent G2 arrest|reprimo, TP53 dependant G2 arrest mediator candidate 12 0.001642 3.642 1 1 +56477 CCL28 C-C motif chemokine ligand 28 5 protein-coding CCK1|MEC|SCYA28 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 12 0.001642 5.519 1 1 +56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 22 protein-coding 4E-T|Clast4 eukaryotic translation initiation factor 4E transporter|2610509L04Rik|eIF4E transporter 69 0.009444 9.244 1 1 +56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 6 protein-coding Kv7.5 potassium voltage-gated channel subfamily KQT member 5|KQT-like 5|potassium channel protein|potassium channel subunit alpha KvLQT5|potassium channel, voltage gated KQT-like subfamily Q, member 5|voltage-gated potassium channel subunit Kv7.5 114 0.0156 4.992 1 1 +56521 DNAJC12 DnaJ heat shock protein family (Hsp40) member C12 10 protein-coding JDP1 dnaJ homolog subfamily C member 12|DnaJ (Hsp40) homolog, subfamily C, member 12|J domain containing protein 1 (JDP1)|J domain protein 1|j domain-containing protein 1 16 0.00219 6.176 1 1 +56547 MMP26 matrix metallopeptidase 26 11 protein-coding - matrix metalloproteinase-26|MMP-26|endometase|matrilysin 2 37 0.005064 0.2539 1 1 +56548 CHST7 carbohydrate sulfotransferase 7 X protein-coding C6ST-2|GST-5 carbohydrate sulfotransferase 7|N-acetylglucosamine 6-O-sulfotransferase 4|carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7|chondroitin 6-sulfotransferase-2|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 5|glcNAc6ST-4|gn6st-4 15 0.002053 6.557 1 1 +56603 CYP26B1 cytochrome P450 family 26 subfamily B member 1 2 protein-coding CYP26A2|P450RAI-2|P450RAI2|RHFCA cytochrome P450 26B1|cytochrome P450 family 26 subfamily A member 1|cytochrome P450 retinoic acid-inactivating 2|cytochrome P450 retinoid metabolizing protein|cytochrome P450, family 26, subfamily B, polypeptide 1|cytochrome P450, subfamily XXVIB, polypeptide 1|retinoic acid-metabolizing cytochrome 64 0.00876 6.434 1 1 +56604 TUBB7P tubulin beta 7 pseudogene 4 pseudo TUBB4Q putative tubulin beta-4q chain|tubulin, beta polypeptide 4, member Q, pseudogene 8 0.001095 1.385 1 1 +56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta 1 protein-coding ERO1LB|Ero1beta ERO1-like protein beta|ERO1-L-beta|ERO1-like beta|endoplasmic oxidoreductin-1-like protein B|endoplasmic reticulum oxidoreductase beta|endoplasmic reticulum oxidoreductin-1-like protein B|oxidoreductin-1-L-beta 31 0.004243 8.13 1 1 +56606 SLC2A9 solute carrier family 2 member 9 4 protein-coding GLUT9|GLUTX|UAQTL2|URATv1 solute carrier family 2, facilitated glucose transporter member 9|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 45 0.006159 6.227 1 1 +56616 DIABLO diablo IAP-binding mitochondrial protein 12 protein-coding DFNA64|SMAC diablo homolog, mitochondrial|diablo-like protein|direct IAP-binding protein with low pI|second mitochondria-derived activator of caspase 10 0.001369 10.05 1 1 +56623 INPP5E inositol polyphosphate-5-phosphatase E 9 protein-coding CORS1|CPD4|JBTS1|MORMS|PPI5PIV 72 kDa inositol polyphosphate 5-phosphatase|phosphatidylinositol polyphosphate 5-phosphatase type IV|phosphatidylinositol-4,5-bisphosphate 5-phosphatase 27 0.003696 8.339 1 1 +56624 ASAH2 N-acylsphingosine amidohydrolase 2 10 protein-coding BCDase|HNAC1|LCDase|N-CDase|NCDase neutral ceramidase|N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2|acylsphingosine deacylase 2|mitochondrial ceramidase|neutral/alkaline ceramidase|non-lysosomal ceramidase 33 0.004517 2.387 1 1 +56647 BCCIP BRCA2 and CDKN1A interacting protein 10 protein-coding TOK-1|TOK1 BRCA2 and CDKN1A-interacting protein|BCCIPalpha|BCCIPbeta|BRCA2 and Cip1/p21 interacting protein|TOK-1alpha|TOK-1beta|cdk inhibitor p21 binding protein|p21- and CDK-associated protein 1|protein TOK-1 18 0.002464 10.11 1 1 +56648 EIF5A2 eukaryotic translation initiation factor 5A2 3 protein-coding EIF-5A2|eIF5AII eukaryotic translation initiation factor 5A-2|eIF-5A-2|eukaryotic initiation factor 5A 12 0.001642 7.148 1 1 +56649 TMPRSS4 transmembrane protease, serine 4 11 protein-coding CAPH2|MT-SP2|TMPRSS3 transmembrane protease serine 4|channel-activating protease 2|membrane-type serine protease 2|transmembrane serine protease 3|type II membrane serine protease 26 0.003559 6.21 1 1 +56650 CLDND1 claudin domain containing 1 3 protein-coding C3orf4|GENX-3745 claudin domain-containing protein 1|claudin domain containing 1 protein|membrane protein GENX-3745 20 0.002737 10.4 1 1 +56651 LINC00470 long intergenic non-protein coding RNA 470 18 ncRNA C18orf2 - 8 0.001095 1.095 1 1 +56652 C10orf2 chromosome 10 open reading frame 2 10 protein-coding ATXN8|IOSCA|MTDPS7|PEO|PEO1|PEOA3|PRLTS5|SANDO|SCA8|TWINL twinkle protein, mitochondrial|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 49 0.006707 8.438 1 1 +56654 NPDC1 neural proliferation, differentiation and control 1 9 protein-coding CAB|CAB-|CAB-1|CAB1|NPDC-1 neural proliferation differentiation and control protein 1 17 0.002327 10.09 1 1 +56655 POLE4 DNA polymerase epsilon 4, accessory subunit 2 protein-coding YHHQ1|p12 DNA polymerase epsilon subunit 4|DNA polymerase II subunit 4|DNA polymerase epsilon p12 subunit|DNA polymerase epsilon subunit p12|polymerase (DNA) epsilon 4, accessory subunit|polymerase (DNA-directed), epsilon 4 (p12 subunit)|polymerase (DNA-directed), epsilon 4, accessory subunit 7 0.0009581 8.978 1 1 +56656 OR2S2 olfactory receptor family 2 subfamily S member 2 (gene/pseudogene) 9 protein-coding OR37A|OST715 olfactory receptor 2S2|olfactory receptor OR9-3|olfactory receptor, family 2, subfamily S, member 2 24 0.003285 0.09194 1 1 +56658 TRIM39 tripartite motif containing 39 6 protein-coding RNF23|TFP|TRIM39B E3 ubiquitin-protein ligase TRIM39|ring finger protein 23|testis-abundant finger protein|tripartite motif-containing protein 39 43 0.005886 8.606 1 1 +56659 KCNK13 potassium two pore domain channel subfamily K member 13 14 protein-coding K2p13.1|THIK-1|THIK1 potassium channel subfamily K member 13|K2P13.1 potassium channel|potassium channel, subfamily K, member 13|potassium channel, two pore domain subfamily K, member 13|tandem pore domain halothane-inhibited potassium channel 1|tandem pore domain potassium channel THIK-1 55 0.007528 4.769 1 1 +56660 KCNK12 potassium two pore domain channel subfamily K member 12 2 protein-coding K2p12.1|THIK-2|THIK2 potassium channel subfamily K member 12|potassium channel, subfamily K, member 12|potassium channel, two pore domain subfamily K, member 12|tandem pore domain halothane-inhibited potassium channel 2|tandem pore domain potassium channel THIK-2 7 0.0009581 2.287 1 1 +56662 VTRNA1-3 vault RNA 1-3 5 ncRNA HVG3|VAULTRC3|VR3|hvg-3 vault RNA component 3 0 0 1 +56663 VTRNA1-2 vault RNA 1-2 5 ncRNA HVG2|VAULTRC2|VR2|hvg-2 vault RNA component 2 0 0 1 +56664 VTRNA1-1 vault RNA 1-1 5 ncRNA HVG1|VAULTRC1|VR1|hvg-1|vRNA vault RNA component 1 0.0002186 0 1 +56666 PANX2 pannexin 2 22 protein-coding PX2|hPANX2 pannexin-2 36 0.004927 6.349 1 1 +56667 MUC13 mucin 13, cell surface associated 3 protein-coding DRCC1|MUC-13 mucin-13|down-regulated in colon cancer 1|mucin 13, epithelial transmembrane 35 0.004791 4.004 1 1 +56670 SUCNR1 succinate receptor 1 3 protein-coding GPR91 succinate receptor 1|G-protein coupled receptor 91|P2Y purinoceptor 1 25 0.003422 2.95 1 1 +56672 AKIP1 A-kinase interacting protein 1 11 protein-coding BCA3|C11orf17 A-kinase-interacting protein 1|A kinase (PRKA) interacting protein 1|breast cancer associated gene 3|koyt binding protein 1|koyt binding protein 2|koyt binding protein 3|proline-rich protein BCA3 15 0.002053 8.481 1 1 +56673 C11orf16 chromosome 11 open reading frame 16 11 protein-coding - uncharacterized protein C11orf16 32 0.00438 1.125 1 1 +56674 TMEM9B TMEM9 domain family member B 11 protein-coding C11orf15 transmembrane protein 9B 8 0.001095 10.31 1 1 +56675 NRIP3 nuclear receptor interacting protein 3 11 protein-coding C11orf14|NY-SAR-105 nuclear receptor-interacting protein 3|sarcoma antigen NY-SAR-105 21 0.002874 6.357 1 1 +56676 ASCL3 achaete-scute family bHLH transcription factor 3 11 protein-coding HASH3|SGN1|bHLHa42 achaete-scute homolog 3|achaete-scute complex homolog 3|bHLH transcription factor Sgn-1 (Salivary Glands 1)|bHLH transcriptional regulator Sgn-1|class A basic helix-loop-helix protein 42 13 0.001779 0.2427 1 1 +56681 SAR1A secretion associated Ras related GTPase 1A 10 protein-coding SAR1|SARA1|Sara|masra2 GTP-binding protein SAR1a|COPII-associated small GTPase|SAR1 gene homolog A|SAR1 homolog A|SAR1a gene homolog 1 12 0.001642 11.14 1 1 +56683 C21orf59 chromosome 21 open reading frame 59 21 protein-coding C21orf48|CILD26|FBB18|Kur UPF0769 protein C21orf59|kurly homolog|prostate cancer upregulated protein 1 16 0.00219 9.583 1 1 +56704 JPH1 junctophilin 1 8 protein-coding CMT2K|JP-1|JP1 junctophilin-1|junctophilin type 1 62 0.008486 6.535 1 1 +56729 RETN resistin 19 protein-coding ADSF|FIZZ3|RETN1|RSTN|XCP1 resistin|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 2 0.0002737 1.19 1 1 +56731 SLC2A4RG SLC2A4 regulator 20 protein-coding GEF|HDBP-1|HDBP1|Si-1-2|Si-1-2-19 SLC2A4 regulator|GLUT4 enhancer factor|Huntington's disease gene regulatory region-binding protein 1 18 0.002464 10.42 1 1 +56751 BARHL1 BarH like homeobox 1 9 protein-coding - barH-like 1 homeobox protein 23 0.003148 0.3446 1 1 +56776 FMN2 formin 2 1 protein-coding - formin-2 313 0.04284 3.377 1 1 +56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 7 protein-coding ARTD13|FLB6421|PARP13|ZAP|ZC3H2|ZC3HDC2 zinc finger CCCH-type antiviral protein 1|ADP-ribosyltransferase diphtheria toxin-like 13|zinc finger CCCH domain-containing protein 2|zinc finger CCCH-type, antiviral 1 64 0.00876 10.18 1 1 +56832 IFNK interferon kappa 9 protein-coding IFNT1|INFE1 interferon kappa|IFN-kappa|interferon-like protein 12 0.001642 0.26 1 1 +56833 SLAMF8 SLAM family member 8 1 protein-coding BLAME|CD353|SBBI42 SLAM family member 8|B lymphocyte activator macrophage expressed|BCM-like membrane protein 38 0.005201 7.805 1 1 +56834 GPR137 G protein-coupled receptor 137 11 protein-coding C11orf4|GPR137A|TM7SF1L1 integral membrane protein GPR137|transmembrane 7 superfamily member 1-like 1 protein 38 0.005201 9.208 1 1 +56848 SPHK2 sphingosine kinase 2 19 protein-coding SK 2|SK-2|SPK 2|SPK-2 sphingosine kinase 2|sphingosine kinase type 2 45 0.006159 8.697 1 1 +56849 TCEAL7 transcription elongation factor A like 7 X protein-coding MPMGp800C04260Q003|WEX5 transcription elongation factor A protein-like 7|TCEA-like protein 7|transcription elongation factor A (SII)-like 7|transcription elongation factor S-II protein-like 7 4 0.0005475 5.004 1 1 +56850 GRIPAP1 GRIP1 associated protein 1 X protein-coding GRASP-1 GRIP1-associated protein 1 47 0.006433 10.04 1 1 +56851 EMC7 ER membrane protein complex subunit 7 15 protein-coding C11orf3|C15orf24|HT022|ORF1-FL1 ER membrane protein complex subunit 7|UPF0480 protein C15orf24|chromosome 15 hypothetical ATG/GTP binding protein 20 0.002737 10.23 1 1 +56852 RAD18 RAD18, E3 ubiquitin protein ligase 3 protein-coding RNF73 E3 ubiquitin-protein ligase RAD18|RAD18 homolog|RAD18, S. cerevisiae, homolog|RING finger protein 73|hHR18|hRAD18|postreplication repair protein RAD18|postreplication repair protein hRAD18p 39 0.005338 7.718 1 1 +56853 CELF4 CUGBP, Elav-like family member 4 18 protein-coding BRUNOL4|CELF-4 CUGBP Elav-like family member 4|CUG-BP- and ETR-3-like factor 4|LYST-interacting protein LIP9|RNA-binding protein BRUNOL4|bruno-like 4, RNA binding protein|bruno-like protein 4 61 0.008349 4.078 1 1 +56882 CDC42SE1 CDC42 small effector 1 1 protein-coding SCIP1|SPEC1 CDC42 small effector protein 1|1300002M12Rik|CDC42-binding protein SCIP1|signaling molecule SPEC1 beta|small effector of CDC42 protein 1|small protein effector 1 of Cdc42 4 0.0005475 11.32 1 1 +56884 FSTL5 follistatin like 5 4 protein-coding - follistatin-related protein 5|follistatin-like protein 5 171 0.02341 1.895 1 1 +56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 2 protein-coding HUGT1|UGCGL1|UGT1 UDP-glucose:glycoprotein glucosyltransferase 1|UDP--Glc:glycoprotein glucosyltransferase|UDP-glucose ceramide glucosyltransferase-like 1 85 0.01163 10.92 1 1 +56888 KCMF1 potassium channel modulatory factor 1 2 protein-coding DEBT91|FIGC|PCMF|ZZZ1 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 22 0.003011 10.33 1 1 +56889 TM9SF3 transmembrane 9 superfamily member 3 10 protein-coding EP70-P-iso|SMBP transmembrane 9 superfamily member 3|SM-11044 binding protein|dinucleotide oxidase disulfide thiol exchanger 3 superfamily member 3|endomembrane protein emp70 precursor isolog 49 0.006707 12.2 1 1 +56890 MDM1 Mdm1 nuclear protein 12 protein-coding - nuclear protein MDM1|Mdm1 nuclear protein homolog|Mdm4, transformed 3T3 cell double minute 1, p53 binding protein|nuclear protein double minute 1 52 0.007117 7.754 1 1 +56891 LGALS14 galectin 14 19 protein-coding CLC2|PPL13 placental protein 13-like|Charcot-Leyden crystal protein 2|gal-14|lectin, galactoside-binding, soluble, 14|placental protein 13-like protein 17 0.002327 0.2616 1 1 +56892 C8orf4 chromosome 8 open reading frame 4 8 protein-coding TC-1|TC1 protein C8orf4|human thyroid cancer 1|thyroid cancer protein 1 10 0.001369 9.105 1 1 +56893 UBQLN4 ubiquilin 4 1 protein-coding A1U|A1Up|C1orf6|CIP75|UBIN ubiquilin-4|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 26 0.003559 10.6 1 1 +56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 21 protein-coding LPAAT-GAMMA1|LPAAT3 1-acyl-sn-glycerol-3-phosphate acyltransferase gamma|1-AGP acyltransferase 3|1-AGPAT 3|lysophosphatidic acid acyltransferase gamma|lysophosphatidic acid acyltransferase-gamma1 25 0.003422 11.09 1 1 +56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 6 protein-coding 1-AGPAT4|LPAAT-delta|dJ473J16.2 1-acyl-sn-glycerol-3-phosphate acyltransferase delta|1-AGP acyltransferase 4|1-AGPAT 4|1-acylglycerol-3-phosphate O-acyltransferase 4 (lysophosphatidic acid acyltransferase, delta)|lysophosphatidic acid acyltransferase delta|lysophosphatidic acid acyltransferase-delta (LPAAT-delta) 36 0.004927 7.597 1 1 +56896 DPYSL5 dihydropyrimidinase like 5 2 protein-coding CRAM|CRMP-5|CRMP5|Ulip6 dihydropyrimidinase-related protein 5|CRMP3-associated molecule|DRP-5|ULIP-6|UNC33-like phosphoprotein 6|collapsin response mediator protein-5 71 0.009718 2.735 1 1 +56897 WRNIP1 Werner helicase interacting protein 1 6 protein-coding WHIP|bA420G6.2 ATPase WRNIP1|putative helicase RUVBL 20 0.002737 10.23 1 1 +56898 BDH2 3-hydroxybutyrate dehydrogenase, type 2 4 protein-coding DHRS6|EFA6R|PRO20933|SDR15C1|UCPA-OR|UNQ6308 3-hydroxybutyrate dehydrogenase type 2|R-beta-hydroxybutyrate dehydrogenase|dehydrogenase/reductase SDR family member 6|oxidoreductase UCPA|short chain dehydrogenase/reductase family 15C member 1 16 0.00219 9.149 1 1 +56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B 12 protein-coding AIDA|AIDA-1|ANKS2|EB-1|EB1|cajalin-2 ankyrin repeat and sterile alpha motif domain-containing protein 1B|E2a-Pbx1-associated protein|amyloid-beta precursor protein intracellular domain associated protein 1|cajalin 2 133 0.0182 4.481 1 1 +56900 TMEM167B transmembrane protein 167B 1 protein-coding AD-020|C1orf119 protein kish-B|protein x 013 4 0.0005475 10.14 1 1 +56901 NDUFA4L2 NDUFA4, mitochondrial complex associated like 2 12 protein-coding NUOMS NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4-like 2|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4-like 2|NADH:ubiquinone oxidoreductase MLRQ subunit homolog 2 0.0002737 8.906 1 1 +56902 PNO1 partner of NOB1 homolog 2 protein-coding KHRBP1|RRP20 RNA-binding protein PNO1|KH-type RNA-binding protein 1|RNA binding protein 16 0.00219 9.034 1 1 +56903 PAPOLB poly(A) polymerase beta 7 protein-coding PAPT|TPAP poly(A) polymerase beta|PAP-beta|poly(A) polymerase beta (testis specific)|polynucleotide adenylyltransferase beta|testis-specific poly(A) polymerase 50 0.006844 0.4904 1 1 +56904 SH3GLB2 SH3 domain containing GRB2 like endophilin B2 9 protein-coding PP6569|PP9455|RRIG1 endophilin-B2|SH3 domain-containing GRB2-like protein B2|SH3-containing protein SH3GLB2|SH3-domain GRB2-like endophilin B2|retinoid receptor-induced gene 1 20 0.002737 10.38 1 1 +56905 C15orf39 chromosome 15 open reading frame 39 15 protein-coding - uncharacterized protein C15orf39 70 0.009581 9.866 1 1 +56906 THAP10 THAP domain containing 10 15 protein-coding - THAP domain-containing protein 10 19 0.002601 6.206 1 1 +56907 SPIRE1 spire type actin nucleation factor 1 18 protein-coding Spir-1 protein spire homolog 1|spire actin nucleation factor 1|spire family actin nucleation factor 1|spire homolog 1 36 0.004927 9.32 1 1 +56910 STARD7 StAR related lipid transfer domain containing 7 2 protein-coding GTT1 stAR-related lipid transfer protein 7, mitochondrial|START domain containing 7|START domain-containing protein 7|StAR-related lipid transfer (START) domain containing 7|gestational trophoblastic tumor protein 1 22 0.003011 11.77 1 1 +56911 MAP3K7CL MAP3K7 C-terminal like 21 protein-coding C21orf7|HC21ORF7|TAK1L|TAKL|TAKL-1|TAKL-2|TAKL-4 MAP3K7 C-terminal-like protein|TAK1-like protein 1|TAK1-like protein 2|TAK1-like protein 4|TGF-beta activated kinase 16 0.00219 6.458 1 1 +56912 IFT46 intraflagellar transport 46 11 protein-coding C11orf2|C11orf60|CFAP32 intraflagellar transport protein 46 homolog|UPF0360|cilia and flagella associated protein 32|intraflagellar transport 46 homolog|intraflagellar transport protein IFT46 22 0.003011 8.828 1 1 +56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 7 protein-coding C1GALT|T-synthase glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1|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 22 0.003011 8.39 1 1 +56914 OTOR otoraplin 20 protein-coding FDP|MIAL1 otoraplin|fibrocyte-derived protein|melanoma inhibitory activity-like protein 21 0.002874 0.4417 1 1 +56915 EXOSC5 exosome component 5 19 protein-coding RRP41B|RRP46|Rrp46p|hRrp46p|p12B exosome complex component RRP46|chronic myelogenous leukemia tumor antigen 28|exosome complex exonuclease RRP46|exosome component Rrp46|ribosomal RNA-processing protein 46 20 0.002737 8.851 1 1 +56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 4 protein-coding ADERM|ETL1|HEL1 SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A containing DEAD/H box 1|ATP-dependent helicase 1 77 0.01054 9.453 1 1 +56917 MEIS3 Meis homeobox 3 19 protein-coding MRG2 homeobox protein Meis3|Meis1, myeloid ecotropic viral integration site 1 homolog 3|meis1-related protein 2 32 0.00438 6.925 1 1 +56918 C2orf83 chromosome 2 open reading frame 83 2 protein-coding - folate transporter-like protein C2orf83 9 0.001232 0.1465 1 1 +56919 DHX33 DEAH-box helicase 33 17 protein-coding DDX33 putative ATP-dependent RNA helicase DHX33|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 33|DEAH (Asp-Glu-Ala-His) box polypeptide 33|DEAH box protein 33 34 0.004654 7.99 1 1 +56920 SEMA3G semaphorin 3G 3 protein-coding sem2 semaphorin-3G|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G|semaphorin sem2 49 0.006707 7.423 1 1 +56922 MCCC1 methylcrotonoyl-CoA carboxylase 1 3 protein-coding MCC-B|MCCA methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|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 1 (alpha)|methylcrotonoyl-CoA carboxylase alpha|methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) 44 0.006022 9.304 1 1 +56923 NMUR2 neuromedin U receptor 2 5 protein-coding FM-4|FM4|NMU-R2|NMU2R|TGR-1|TGR1 neuromedin-U receptor 2|G-protein coupled receptor FM-4|G-protein coupled receptor TGR-1|growth hormone secretagogue receptor family, member 4 60 0.008212 1.485 1 1 +56924 PAK6 p21 (RAC1) activated kinase 6 15 protein-coding PAK5 serine/threonine-protein kinase PAK 6|p21 protein (Cdc42/Rac)-activated kinase 6|p21(CDKN1A)-activated kinase 6 44 0.006022 7.486 1 1 +56925 LXN latexin 3 protein-coding ECI|TCI latexin|MUM|endogenous carboxypeptidase inhibitor|tissue carboxypeptidase inhibitor 9 0.001232 7.683 1 1 +56926 NCLN nicalin 19 protein-coding NET59 nicalin|nicalin homolog|nicastrin-like protein 26 0.003559 10.82 1 1 +56927 GPR108 G protein-coupled receptor 108 19 protein-coding LUSTR2 protein GPR108|lung seven transmembrane receptor 2 33 0.004517 10.29 1 1 +56928 SPPL2B signal peptide peptidase like 2B 19 protein-coding IMP-4|IMP4|PSH4|PSL1 signal peptide peptidase-like 2B|SPP-like 2B|intramembrane protease 4|presenilin homologous protein 4|presenilin-like protein 1 35 0.004791 9.865 1 1 +56929 FEM1C fem-1 homolog C 5 protein-coding EUROIMAGE686608|EUROIMAGE783647|FEM1A protein fem-1 homolog C|FEM1-gamma 26 0.003559 9.444 1 1 +56931 DUS3L dihydrouridine synthase 3 like 19 protein-coding DUS3 tRNA-dihydrouridine(47) synthase [NAD(P)(+)]-like 47 0.006433 8.772 1 1 +56934 CA10 carbonic anhydrase 10 17 protein-coding CA-RPX|CARPX|HUCEP-15 carbonic anhydrase-related protein 10|CA-RP X|CARP X|carbonic anhydrase X|carbonic anhydrase-related protein X|cerebral protein-15 62 0.008486 1.985 1 1 +56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 11 protein-coding C11orf75|FN5 single-pass membrane and coiled-coil domain-containing protein 4|UPF0443 protein C11orf75 2 0.0002737 8.185 1 1 +56936 CCDC177 coiled-coil domain containing 177 14 protein-coding C14orf162|PLPL coiled-coil domain-containing protein 177|myelin proteolipid protein-like protein 0 0 1.531 1 1 +56937 PMEPA1 prostate transmembrane protein, androgen induced 1 20 protein-coding STAG1|TMEPAI protein TMEPAI|solid tumor-associated 1 protein|transmembrane, prostate androgen induced RNA 38 0.005201 10.74 1 1 +56938 ARNTL2 aryl hydrocarbon receptor nuclear translocator like 2 12 protein-coding BMAL2|CLIF|MOP9|PASD9|bHLHe6 aryl hydrocarbon receptor nuclear translocator-like protein 2|CYCLE-like factor|PAS domain-containing protein 9|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 40 0.005475 6.227 1 1 +56940 DUSP22 dual specificity phosphatase 22 6 protein-coding JKAP|JSP-1|JSP1|LMW-DSP2|LMWDSP2|MKP-x|MKPX|VHX dual specificity protein phosphatase 22|JNK-stimulating phosphatase 1|JNK-stimulatory phosphatase-1|MAP kinase phosphatase x|homolog of mouse dual specificity phosphatase LMW-DSP2|low molecular weight dual specificity phosphatase 2|mitogen-activated protein kinase phosphatase x 51 0.006981 9.506 1 1 +56941 HMCES 5-hydroxymethylcytosine (hmC) binding, ES cell-specific 3 protein-coding C3orf37|DC12|SRAPD1 embryonic stem cell-specific 5-hydroxymethylcytosine-binding protein|ES cell-specific 5hmC-binding protein|SRAP domain-containing protein 1|UPF0361 protein C3orf37|putative peptidase SRAPD1 26 0.003559 9.98 1 1 +56942 CMC2 C-X9-C motif containing 2 16 protein-coding 2310061C15Rik|C16orf61|DC13 COX assembly mitochondrial protein 2 homolog|C-x(9)-C motif containing 2 6 0.0008212 8.71 1 1 +56943 ENY2 ENY2, transcription and export complex 2 subunit 8 protein-coding DC6|Sus1|e(y)2 transcription and mRNA export factor ENY2|enhancer of yellow 2 homolog|enhancer of yellow 2 transcription factor homolog 11 0.001506 9.302 1 1 +56944 OLFML3 olfactomedin like 3 1 protein-coding HNOEL-iso|OLF44 olfactomedin-like protein 3 33 0.004517 8.97 1 1 +56945 MRPS22 mitochondrial ribosomal protein S22 3 protein-coding C3orf5|COXPD5|GIBT|GK002|MRP-S22|RPMS22 28S ribosomal protein S22, mitochondrial|S22mt 39 0.005338 9.123 1 1 +56946 EMSY EMSY, BRCA2 interacting transcriptional repressor 11 protein-coding C11orf30|GL002 BRCA2-interacting transcriptional repressor EMSY|protein EMSY 76 0.0104 8.37 1 1 +56947 MFF mitochondrial fission factor 2 protein-coding C2orf33|EMPF2|GL004 mitochondrial fission factor 28 0.003832 10.3 1 1 +56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 14 protein-coding C14orf124|HCDI epimerase family protein SDR39U1 21 0.002874 9.325 1 1 +56949 XAB2 XPA binding protein 2 19 protein-coding HCNP|HCRN|NTC90|SYF1 pre-mRNA-splicing factor SYF1|SYF1 homolog, RNA splicing factor|SYF1 pre-mRNA-splicing factor|crn-related protein kim1 65 0.008897 10.43 1 1 +56950 SMYD2 SET and MYND domain containing 2 1 protein-coding HSKM-B|KMT3C|ZMYND14 N-lysine methyltransferase SMYD2|SET and MYND domain-containing protein 2|histone methyltransferase SMYD2|lysine N-methyltransferase 3C|zinc finger, MYND domain containing 14 27 0.003696 9.433 1 1 +56951 C5orf15 chromosome 5 open reading frame 15 5 protein-coding HTGN29|KCT2 keratinocyte-associated transmembrane protein 2|keratinocytes associated transmembrane protein 2 15 0.002053 10.6 1 1 +56952 PRTFDC1 phosphoribosyl transferase domain containing 1 10 protein-coding HHGP phosphoribosyltransferase domain-containing protein 1 14 0.001916 6.889 1 1 +56953 NT5M 5',3'-nucleotidase, mitochondrial 17 protein-coding dNT-2|dNT2|mdN 5'(3')-deoxyribonucleotidase, mitochondrial|5' nucleotidase, mitochondrial|5(3)-deoxyribonucleotidase|deoxy-5'-nucleotidase 2|mitochondrial 5' nucleotidase 16 0.00219 5.932 1 1 +56954 NIT2 nitrilase family member 2 3 protein-coding HEL-S-8a omega-amidase NIT2|Nit protein 2|epididymis secretory sperm binding protein Li 8a|nitrilase homolog 2 24 0.003285 9.593 1 1 +56955 MEPE matrix extracellular phosphoglycoprotein 4 protein-coding OF45 matrix extracellular phosphoglycoprotein|matrix, extracellular phosphoglycoprotein with ASARM motif (bone)|osteoblast/osteocyte factor 45 62 0.008486 0.8663 1 1 +56956 LHX9 LIM homeobox 9 1 protein-coding - LIM/homeobox protein Lhx9|LIM homeobox protein 9 43 0.005886 1.725 1 1 +56957 OTUD7B OTU deubiquitinase 7B 1 protein-coding CEZANNE|ZA20D1 OTU domain-containing protein 7B|OTU domain containing 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 75 0.01027 9.568 1 1 +56961 SHD Src homology 2 domain containing transforming protein D 19 protein-coding - SH2 domain-containing adapter protein D|src homology 2 domain-containing transforming protein D 29 0.003969 2.878 1 1 +56963 RGMA repulsive guidance molecule family member a 15 protein-coding RGM repulsive guidance molecule A|RGM domain family, member A 32 0.00438 7.636 1 1 +56964 WDR93 WD repeat domain 93 15 protein-coding - WD repeat-containing protein 93 41 0.005612 3.103 1 1 +56965 PARP6 poly(ADP-ribose) polymerase family member 6 15 protein-coding ARTD17|PARP-6-B1|PARP-6-C|pART17 poly [ADP-ribose] polymerase 6|ADP-ribosyltransferase diphtheria toxin-like 17|PARP-6 42 0.005749 9.469 1 1 +56967 C14orf132 chromosome 14 open reading frame 132 14 protein-coding C14orf88 uncharacterized protein C14orf132|putative uncharacterized protein C14orf132 1 0.0001369 8.115 1 1 +56969 RPL23AP32 ribosomal protein L23a pseudogene 32 2 pseudo RPL23A_9_220 - 0 0 0.8462 1 1 +56970 ATXN7L3 ataxin 7 like 3 17 protein-coding - ataxin-7-like protein 3 35 0.004791 10.54 1 1 +56971 CEACAM19 carcinoembryonic antigen related cell adhesion molecule 19 19 protein-coding CEACM19|CEAL1 carcinoembryonic antigen-related cell adhesion molecule 19|carcinoembryonic antigen-like 1 15 0.002053 6.183 1 1 +56975 FAM20C FAM20C, golgi associated secretory pathway kinase 7 protein-coding DMP-4|DMP4|G-CK|GEF-CK|RNS extracellular serine/threonine protein kinase FAM20C|Golgi casein kinase|dentin matrix protein 4|family with sequence similarity 20, member C|golgi-enriched fraction casein kinase 8 0.001095 9.857 1 1 +56977 STOX2 storkhead box 2 4 protein-coding - storkhead-box protein 2 51 0.006981 4.891 1 1 +56978 PRDM8 PR/SET domain 8 4 protein-coding EPM10|PFM5 PR domain zinc finger protein 8|PR domain 8|PR-domain containing protein 8 41 0.005612 5.11 1 1 +56979 PRDM9 PR/SET domain 9 5 protein-coding MEISETZ|MSBP3|PFM6|ZNF899 histone-lysine N-methyltransferase PRDM9|PR domain 9|PR domain containing 9|PR domain zinc finger protein 9|histone methyl transferase|minisatellite binding protein 3 (115kD) 226 0.03093 0.3079 1 1 +56980 PRDM10 PR/SET domain 10 11 protein-coding PFM7 PR domain zinc finger protein 10|PR domain 10|PR domain containing 10|PR domain-containing protein 10|PR-domain family member 7|PRDM zinc finger transcription factor|tristanin 82 0.01122 7.836 1 1 +56981 PRDM11 PR/SET domain 11 11 protein-coding PFM8 PR domain-containing protein 11|PR domain 11|PR domain containing 11|PR-domain containing protein 11 57 0.007802 4.437 1 1 +56983 POGLUT1 protein O-glucosyltransferase 1 3 protein-coding C3orf9|CLP46|KDELCL1|KTELC1|MDS010|MDSRP|Rumi|hCLP46 protein O-glucosyltransferase 1|9630046K23Rik|CAP10-like 46 kDa protein|KDELC family like 1|KTEL (Lys-Tyr-Glu-Leu) containing 1|KTEL motif-containing protein 1|O-glucosyltransferase Rumi homolog|hRumi|myelodysplastic syndromes relative protein|protein O-xylosyltransferase|x 010 protein 34 0.004654 8.56 1 1 +56984 PSMG2 proteasome assembly chaperone 2 18 protein-coding CLAST3|HCCA3|HsT1707|MDS003|PAC2|TNFSF5IP1 proteasome assembly chaperone 2|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 (prosome, macropain) assembly chaperone 2|proteasome assembling chaperone 2|tumor necrosis factor superfamily member 5-induced protein 1|x 003 protein 11 0.001506 9.934 1 1 +56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent 17 protein-coding C17orf48|MDS006|NBLA03831 manganese-dependent ADP-ribose/CDP-alcohol diphosphatase|ADP-ribose/CDP-alcohol pyrophosphatase|ADPRibase-Mn|CDP-choline phosphohydrolase 19 0.002601 7.081 1 1 +56986 DTWD1 DTW domain containing 1 15 protein-coding MDS009 DTW domain-containing protein 1|x 009 protein 27 0.003696 8.146 1 1 +56987 BBX BBX, HMG-box containing 3 protein-coding ARTC1|HBP2|HSPC339|MDS001 HMG box transcription factor BBX|Ag recognized by Treg cells 1|HMG box-containing protein 2|bobby sox homolog|x 001 protein 80 0.01095 10.34 1 1 +56990 CDC42SE2 CDC42 small effector 2 5 protein-coding SPEC2 CDC42 small effector protein 2|non-kinase Cdc42 effector protein SPEC2|small effector of CDC42 protein 2 3 0.0004106 10.45 1 1 +56992 KIF15 kinesin family member 15 3 protein-coding HKLP2|KNSL7|NY-BR-62 kinesin-like protein KIF15|kinesin-like 7|kinesin-like protein 2|kinesin-like protein 7|serologically defined breast cancer antigen NY-BR-62 86 0.01177 6.83 1 1 +56993 TOMM22 translocase of outer mitochondrial membrane 22 22 protein-coding 1C9-2|MST065|MSTP065|TOM22 mitochondrial import receptor subunit TOM22 homolog|mitochondrial import receptor Tom22|translocase of outer membrane 22 kDa subunit homolog|translocase of outer mitochondrial membrane 22 homolog 13 0.001779 10.4 1 1 +56994 CHPT1 choline phosphotransferase 1 12 protein-coding CPT|CPT1 cholinephosphotransferase 1|AAPT1-like protein|cholinephosphotransferase 1 alpha|diacylglycerol cholinephosphotransferase 1|hCPT1|phosphatidylcholine synthesizing enzyme 27 0.003696 9.813 1 1 +56995 TULP4 tubby like protein 4 6 protein-coding TUSP tubby-related protein 4|tubby super-family protein|tubby superfamily protein 113 0.01547 9.611 1 1 +56996 SLC12A9 solute carrier family 12 member 9 7 protein-coding CCC6|CIP1|WO3.3|hCCC6 solute carrier family 12 member 9|CCC-interacting protein 1|cation-chloride cotransporter 6|cation-chloride cotransporter-interacting protein 1|potassium-chloride transporter 9|solute carrier family 12 (potassium/chloride transporters), member 9 67 0.009171 9.943 1 1 +56997 COQ8A coenzyme Q8A 1 protein-coding ADCK3|ARCA2|CABC1|COQ10D4|COQ8|SCAR9 atypical kinase ADCK3, mitochondrial|aarF domain containing kinase 3|aarF domain-containing protein kinase 3|chaperone activity of bc1 complex-like, mitochondrial|chaperone, ABC1 activity of bc1 complex homolog|coenzyme Q8 homolog 43 0.005886 9.988 1 1 +56998 CTNNBIP1 catenin beta interacting protein 1 1 protein-coding ICAT beta-catenin-interacting protein 1|beta-catenin-interacting protein ICAT|inhibitor of beta-catenin and Tcf-4 7 0.0009581 9.856 1 1 +56999 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif 9 3 protein-coding - A disintegrin and metalloproteinase with thrombospondin motifs 9|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 9 153 0.02094 8.183 1 1 +57000 GSN-AS1 GSN antisense RNA 1 9 ncRNA C9orf31|MOST2 GSN antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 7 protein-coding ACN9|DC11|LYRM10|Sdh7 succinate dehydrogenase assembly factor 3, mitochondrial|ACN9 homolog|SDH assembly factor 3|protein ACN9 homolog, mitochondrial 12 0.001642 7.681 1 1 +57002 YAE1D1 Yae1 domain containing 1 7 protein-coding C7orf36|GK003 yae1 domain-containing protein 1 19 0.002601 7.708 1 1 +57003 CCDC47 coiled-coil domain containing 47 17 protein-coding GK001|MSTP041 coiled-coil domain-containing protein 47|Calumin 42 0.005749 11.4 1 1 +57007 ACKR3 atypical chemokine receptor 3 2 protein-coding CMKOR1|CXC-R7|CXCR-7|CXCR7|GPR159|RDC-1|RDC1 atypical chemokine receptor 3|C-X-C chemokine receptor type 7|G protein-coupled receptor|G-protein coupled receptor 159|G-protein coupled receptor RDC1 homolog|chemokine (C-X-C motif) receptor 7|chemokine orphan receptor 1 38 0.005201 9.037 1 1 +57010 CABP4 calcium binding protein 4 11 protein-coding CRSD|CSNB2B calcium-binding protein 4 21 0.002874 3.077 1 1 +57016 AKR1B10 aldo-keto reductase family 1 member B10 7 protein-coding AKR1B11|AKR1B12|ALDRLn|ARL-1|ARL1|HIS|HSI aldo-keto reductase family 1 member B10|ARP|SI reductase|aldo-keto reductase family 1, member B10 (aldose reductase)|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 31 0.004243 4.928 1 1 +57017 COQ9 coenzyme Q9 16 protein-coding C16orf49|COQ10D5 ubiquinone biosynthesis protein COQ9, mitochondrial|coenzyme Q9 homolog 29 0.003969 10.09 1 1 +57018 CCNL1 cyclin L1 3 protein-coding ANIA6A|BM-001|PRO1073|ania-6a cyclin-L1|cyclin L ania-6a|cyclin L gamma|cyclin-L 29 0.003969 10.08 1 1 +57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 16 protein-coding Anamorsin|DRE2|PRO0915 anamorsin|fe-S cluster assembly protein DRE2 homolog|predicted protein of HQ0915 18 0.002464 9.854 1 1 +57020 C16orf62 chromosome 16 open reading frame 62 16 protein-coding - UPF0505 protein C16orf62|esophageal cancer associated protein 68 0.009307 9.92 1 1 +57026 PDXP pyridoxal phosphatase 22 protein-coding CIN|PLP|dJ37E16.5 pyridoxal phosphate phosphatase|PLP phosphatase|chronophin|pyridoxal (pyridoxine, vitamin B6) phosphatase|testicular secretory protein Li 36 3 0.0004106 8.539 1 1 +57030 SLC17A7 solute carrier family 17 member 7 19 protein-coding BNPI|VGLUT1 vesicular glutamate transporter 1|brain-specific Na(+)-dependent inorganic phosphate cotransporter|brain-specific Na-dependent inorganic phosphate cotransporter|solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7|solute carrier family 17 (vesicular glutamate transporter), member 7 46 0.006296 3.868 1 1 +57035 RSRP1 arginine and serine rich protein 1 1 protein-coding C1orf63|NPD014 arginine/serine-rich protein 1|UPF0471 protein C1orf63 20 0.002737 8.915 1 1 +57037 ANKMY2 ankyrin repeat and MYND domain containing 2 7 protein-coding ZMYND20 ankyrin repeat and MYND domain-containing protein 2 30 0.004106 8.743 1 1 +57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial 6 protein-coding ArgRS|DALRD2|PCH6|PRO1992|RARSL probable arginine--tRNA ligase, mitochondrial|probable arginyl-tRNA synthetase, mitochondrial 47 0.006433 9.176 1 1 +57045 TWSG1 twisted gastrulation BMP signaling modulator 1 18 protein-coding TSG twisted gastrulation protein homolog 1|twisted gastrulation homolog 1 15 0.002053 9.942 1 1 +57047 PLSCR2 phospholipid scramblase 2 3 protein-coding - phospholipid scramblase 2|PL scramblase 2|ca(2+)-dependent phospholipid scramblase 2 28 0.003832 0.7755 1 1 +57048 PLSCR3 phospholipid scramblase 3 17 protein-coding - phospholipid scramblase 3|PL scramblase 3|ca(2+)-dependent phospholipid scramblase 3 19 0.002601 9.382 1 1 +57050 UTP3 UTP3, small subunit processome component homolog (S. cerevisiae) 4 protein-coding CRL1|CRLZ1|SAS10 something about silencing protein 10|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 31 0.004243 9.404 1 1 +57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit 11 protein-coding - neuronal acetylcholine receptor subunit alpha-10|NACHR alpha-10|acetylcholine receptor, nicotinic, alpha 10 (neuronal)|cholinergic receptor, nicotinic alpha 10|cholinergic receptor, nicotinic, alpha 10 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 10|nicotinic acetylcholine receptor subunit alpha-10 33 0.004517 3.441 1 1 +57054 DAZ3 deleted in azoospermia 3 Y protein-coding pDP1679 deleted in azoospermia protein 3 0.1681 0 1 +57055 DAZ2 deleted in azoospermia 2 Y protein-coding pDP1678 deleted in azoospermia protein 2 1 0.0001369 0.2334 1 1 +57057 TBX20 T-box 20 7 protein-coding ASD4 T-box transcription factor TBX20|T-box protein 20 53 0.007254 0.8478 1 1 +57060 PCBP4 poly(rC) binding protein 4 3 protein-coding CBP|LIP4|MCG10 poly(rC)-binding protein 4|LYST-interacting protein|RNA binding protein MCG10|alpha-CP4 19 0.002601 9.395 1 1 +57061 HYMAI hydatidiform mole associated and imprinted (non-protein coding) 6 ncRNA NCRNA00020 - 1.303 0 1 +57062 DDX24 DEAD-box helicase 24 14 protein-coding - ATP-dependent RNA helicase DDX24|DEAD (Asp-Glu-Ala-Asp) box helicase 24|DEAD (Asp-Glu-Ala-Asp) box polypeptide 24|DEAD box protein 24|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 24|S. cerevisiae CHL1-like helicase 42 0.005749 11.63 1 1 +57082 KNL1 kinetochore scaffold 1 15 protein-coding AF15Q14|CASC5|CT29|D40|MCPH4|PPP1R55|Spc7|hKNL-1|hSpc105 protein CASC5|ALL1-fused gene from chromosome 15q14 protein|blinkin, bub-linking kinetochore protein|cancer susceptibility candidate 5|cancer susceptibility candidate gene 5 protein|cancer/testis antigen 29|kinetochore null 1 homolog|kinetochore-null protein 1|microcephaly, primary autosomal recessive 4|protein phosphatase 1, regulatory subunit 55 125 0.01711 6.509 1 1 +57084 SLC17A6 solute carrier family 17 member 6 11 protein-coding DNPI|VGLUT2 vesicular glutamate transporter 2|differentiation-associated BNPI|differentiation-associated Na(+)-dependent inorganic phosphate cotransporter|differentiation-associated Na-dependent inorganic phosphate cotransporter|solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6|solute carrier family 17 (vesicular glutamate transporter), member 6 104 0.01423 0.5332 1 1 +57085 AGTRAP angiotensin II receptor associated protein 1 protein-coding ATRAP type-1 angiotensin II receptor-associated protein|AT1 receptor-associated protein|ATI receptor-associated protein|angiotensin II, type I receptor-associated protein 14 0.001916 9.863 1 1 +57088 PLSCR4 phospholipid scramblase 4 3 protein-coding TRA1 phospholipid scramblase 4|Ca(2+)-dependent phospholipid scramblase 4|PL scramblase 4|cell growth inhibiting protein 43 32 0.00438 8.395 1 1 +57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 10 protein-coding LALP1 ectonucleoside triphosphate diphosphohydrolase 7|NTPDase 7|lysosomal apyrase-like protein 1 46 0.006296 8.307 1 1 +57091 CASS4 Cas scaffolding protein family member 4 20 protein-coding C20orf32|CAS4|HEFL|HEPL cas scaffolding protein family member 4|HEF-like protein|HEF1-EFS-p130Cas-like protein 90 0.01232 4.432 1 1 +57092 PCNP PEST proteolytic signal containing nuclear protein 3 protein-coding - PEST proteolytic signal-containing nuclear protein|PEST-containing nuclear protein 13 0.001779 11.13 1 1 +57093 TRIM49 tripartite motif containing 49 11 protein-coding RNF18|TRIM49A|TRIM49L2 tripartite motif-containing protein 49|ring finger protein 18|testis-specific RING Finger protein|testis-specific ring-finger protein 38 0.005201 0.3067 1 1 +57094 CPA6 carboxypeptidase A6 8 protein-coding CPAH|ETL5|FEB11 carboxypeptidase A6|carboxypeptidase B 51 0.006981 2.208 1 1 +57095 PITHD1 PITH domain containing 1 1 protein-coding C1orf128|HT014|TXNL1CL PITH domain-containing protein 1|HT014|PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1|TXNL1 C-terminal like 15 0.002053 10.03 1 1 +57096 RPGRIP1 retinitis pigmentosa GTPase regulator interacting protein 1 14 protein-coding CORD13|LCA6|RGI1|RGRIP|RPGRIP|RPGRIP1d X-linked retinitis pigmentosa GTPase regulator-interacting protein 1|RPGR-interacting protein 1 92 0.01259 2.72 1 1 +57097 PARP11 poly(ADP-ribose) polymerase family member 11 12 protein-coding ARTD11|C12orf6|MIB006 poly [ADP-ribose] polymerase 11|ADP-ribosyltransferase diphtheria toxin-like 11 24 0.003285 7.796 1 1 +57099 AVEN apoptosis and caspase activation inhibitor 15 protein-coding PDCD12 cell death regulator Aven|apoptosis, caspase activation inhibitor|programmed cell death 12 17 0.002327 7.811 1 1 +57101 ANO2 anoctamin 2 12 protein-coding C12orf3|TMEM16B anoctamin-2|anoctamin 2, calcium activated chloride channel|transmembrane protein 16B (eight membrane-spanning domains) 98 0.01341 3.61 1 1 +57102 C12orf4 chromosome 12 open reading frame 4 12 protein-coding - protein C12orf4 33 0.004517 8.547 1 1 +57103 TIGAR TP53 induced glycolysis regulatory phosphatase 12 protein-coding C12orf5|FR2BP fructose-2,6-bisphosphatase TIGAR|TP53-induced glycolysis and apoptosis regulator|fructose-2,6-bisphosphate 2-phosphatase|probable fructose-2,6-bisphosphatase TIGAR|transactivated by NS3TP2 protein 26 0.003559 8.427 1 1 +57104 PNPLA2 patatin like phospholipase domain containing 2 11 protein-coding 1110001C14Rik|ATGL|FP17548|PEDF-R|TTS-2.2|TTS2|iPLA2zeta patatin-like phospholipase domain-containing protein 2|IPLA2-zeta|TTS2.2|adipose triglyceride lipase|calcium-independent phospholipase A2|desnutrin|mutant patatin-like phospholipase domain containing 2|pigment epithelium-derived factor|transport-secretion protein 2.2|triglyceride hydrolase 16 0.00219 10.63 1 1 +57105 CYSLTR2 cysteinyl leukotriene receptor 2 13 protein-coding CYSLT2|CYSLT2R|GPCR21|HG57|HPN321|KPG_011|PSEC0146|hGPCR21 cysteinyl leukotriene receptor 2|G-protein coupled receptor GPCR21|G-protein coupled receptor HG57|cysteinyl leukotriene CysLT2 receptor 36 0.004927 3.896 1 1 +57106 NAT14 N-acetyltransferase 14 (putative) 19 protein-coding KLP1 N-acetyltransferase 14|K562 cell-derived leucine-zipper-like protein 1|K562 cells-derived leucine-zipper-like protein 1|N-acetyltransferase 14 (GCN5-related, putative) 5 0.0006844 8.253 1 1 +57107 PDSS2 prenyl (decaprenyl) diphosphate synthase, subunit 2 6 protein-coding C6orf210|COQ10D3|DLP1|bA59I9.3|hDLP1 decaprenyl-diphosphate synthase subunit 2|all-trans-decaprenyl-diphosphate synthase subunit 2|decaprenyl pyrophosphate synthase subunit 2|decaprenyl pyrophosphate synthetase subunit 2|subunit 2 of decaprenyl diphosphate synthase 23 0.003148 8.591 1 1 +57109 REXO4 REX4 homolog, 3'-5' exonuclease 9 protein-coding REX4|XPMC2|XPMC2H RNA exonuclease 4|REX4, RNA exonuclease 4 homolog|XPMC2 prevents mitotic catastrophe 2 homolog|Xenopus prevents mitotic catastrophe 2 homolog|exonuclease XPMC2 21 0.002874 9.417 1 1 +57110 HRASLS HRAS like suppressor 3 protein-coding A-C1|H-REV107|HRASLS1|HRSL1|HSD28 phospholipid-metabolizing enzyme A-C1|H-REV107 protein-related protein|HRAS-like suppressor 1|phospholipase A 22 0.003011 3.81 1 1 +57111 RAB25 RAB25, member RAS oncogene family 1 protein-coding CATX-8|RAB11C ras-related protein Rab-25 18 0.002464 8.11 1 1 +57113 TRPC7 transient receptor potential cation channel subfamily C member 7 5 protein-coding TRP7 short transient receptor potential channel 7|TRP-7|hTRP7|likley ortholog of mouse transient receptor potential cation channel, subfamily C, member 7|putative capacitative calcium channel|transient receptor protein 7 105 0.01437 0.3758 1 1 +57115 PGLYRP4 peptidoglycan recognition protein 4 1 protein-coding PGLYRPIbeta|PGRP-Ibeta|PGRPIB|SBBI67 peptidoglycan recognition protein 4|PGRP-I-beta|peptidoglycan recognition protein I-beta|peptidoglycan recognition protein intermediate beta 41 0.005612 1.802 1 1 +57116 ZNF695 zinc finger protein 695 1 protein-coding SBZF3 zinc finger protein 695|zinc finger protein SBZF3 54 0.007391 4.081 1 1 +57117 INTS12 integrator complex subunit 12 4 protein-coding INT12|PHF22|SBBI22 integrator complex subunit 12|PHD finger protein 22|hypothetical nuclear factor SBBI22 31 0.004243 8.603 1 1 +57118 CAMK1D calcium/calmodulin dependent protein kinase ID 10 protein-coding CKLiK|CaM-K1|CaMKID calcium/calmodulin-dependent protein kinase type 1D|CaM kinase ID|CamKI-like protein kinase|caM kinase I delta|caM-KI delta|caMKI delta 46 0.006296 6.594 1 1 +57119 EPPIN epididymal peptidase inhibitor 20 protein-coding CT71|CT72|SPINLW1|WAP7|WFDC7|dJ461P17.2 eppin|WAP four-disulfide core domain protein 7|cancer/testis antigen 71|cancer/testis antigen 72|epididymal protease inhibitor|protease inhibitor WAP7|serine peptidase inhibitor-like, with Kunitz and WAP domains 1 (eppin) 11 0.001506 0.6825 1 1 +57120 GOPC golgi associated PDZ and coiled-coil motif containing 6 protein-coding CAL|FIG|GOPC1|PIST|dJ94G16.2 Golgi-associated PDZ and coiled-coil motif-containing protein|CFTR-associated ligand|PDZ protein interacting specifically with TC10|PDZ/coiled-coil domain binding partner for the rho-family GTPase TC10|dJ94G16.2 PIST|fused in glioblastoma|golgi-associated PDZ and coiled-coil motif containing protein 27 0.003696 9.814 1 1 +57121 LPAR5 lysophosphatidic acid receptor 5 12 protein-coding GPR92|GPR93|KPG_010|LPA5 lysophosphatidic acid receptor 5|G protein-coupled receptor 92|G-protein coupled receptor 93|LPA receptor 5|LPA-5 18 0.002464 7.3 1 1 +57122 NUP107 nucleoporin 107 12 protein-coding NPHS11|NUP84 nuclear pore complex protein Nup107|nucleoporin 107kDa 63 0.008623 9.59 1 1 +57124 CD248 CD248 molecule 11 protein-coding CD164L1|TEM1 endosialin|2610111G01Rik|CD164 sialomucin-like 1|CD248 antigen, endosialin|CD248 molecule, endosialin|tumor endothelial marker 1 50 0.006844 9.028 1 1 +57125 PLXDC1 plexin domain containing 1 17 protein-coding TEM3|TEM7 plexin domain-containing protein 1|2410003I07Rik|tumor endothelial marker 3|tumor endothelial marker 7 33 0.004517 8.143 1 1 +57126 CD177 CD177 molecule 19 protein-coding HNA-2a|HNA2A|NB1|NB1 GP|PRV-1|PRV1 CD177 antigen|NB1 glycoprotein|cell surface receptor|human neutrophil alloantigen 2a|polycythemia rubra vera protein 1 42 0.005749 3.835 1 1 +57127 RHBG Rh family B glycoprotein (gene/pseudogene) 1 protein-coding SLC42A2 ammonium transporter Rh type B|Rh family, B glycoprotein|Rhesus blood group, B glycoprotein 41 0.005612 2.283 1 1 +57128 LYRM4 LYR motif containing 4 6 protein-coding C6orf149|CGI-203|COXPD19|ISD11 LYR motif-containing protein 4|homolog of yeast Isd11|mitochondrial matrix Nfs1 interacting protein 11 0.001506 8.67 1 1 +57129 MRPL47 mitochondrial ribosomal protein L47 3 protein-coding CGI-204|L47mt|MRP-L47|NCM1 39S ribosomal protein L47, mitochondrial|nasopharyngeal carcinoma metastasis-related 1|nasopharyngeal carcinoma metastasis-related protein 1 25 0.003422 9.395 1 1 +57130 ATP13A1 ATPase 13A1 19 protein-coding ATP13A|CGI-152 manganese-transporting ATPase 13A1|ATPase type 13A1|cation transporting ATPase|probable cation-transporting ATPase 13A1 61 0.008349 10.87 1 1 +57132 CHMP1B charged multivesicular body protein 1B 18 protein-coding C10orf2|C18-ORF2|C18orf2|CHMP1.5|Vps46-2|Vps46B|hVps46-2 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 11 0.001506 10.76 1 1 +57134 MAN1C1 mannosidase alpha class 1C member 1 1 protein-coding HMIC|MAN1A3|MAN1C|pp6318 mannosyl-oligosaccharide 1,2-alpha-mannosidase IC|1,2-alpha-mannosidase IC|processing alpha-1,2-mannosidase IC 49 0.006707 8.134 1 1 +57135 DAZ4 deleted in azoospermia 4 Y protein-coding pDP1680|pDP1681 deleted in azoospermia protein 4 0.01833 0 1 +57136 APMAP adipocyte plasma membrane associated protein 20 protein-coding BSCv|C20orf3 adipocyte plasma membrane-associated protein|protein BSCv 37 0.005064 11.7 1 1 +57139 RGL3 ral guanine nucleotide dissociation stimulator like 3 19 protein-coding - ral guanine nucleotide dissociation stimulator-like 3|RalGEF-like protein 3, mouse homolog|ralGDS-like 3 51 0.006981 6.897 1 1 +57140 RNPEPL1 arginyl aminopeptidase like 1 2 protein-coding - arginyl aminopeptidase-like 1|RNPEP-like 1|aminopeptidase B-like 1|argininyl aminopeptidase-like 1|arginyl aminopeptidase (aminopeptidase B)-like 1 27 0.003696 10.9 1 1 +57142 RTN4 reticulon 4 2 protein-coding 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 reticulon-4|Human NogoA|My043 protein|foocen|neurite growth inhibitor 220|neurite outgrowth inhibitor|neuroendocrine-specific protein C homolog|reticulon 5 70 0.009581 12.46 1 1 +57143 ADCK1 aarF domain containing kinase 1 14 protein-coding - uncharacterized aarF domain-containing protein kinase 1 40 0.005475 7.703 1 1 +57144 PAK5 p21 (RAC1) activated kinase 5 20 protein-coding PAK7 serine/threonine-protein kinase PAK 7|PAK-5|PAK-7|p21 (RAC1) activated kinase 7|p21 protein (Cdc42/Rac)-activated kinase 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 PAK7 112 0.01533 2.266 1 1 +57146 TMEM159 transmembrane protein 159 16 protein-coding - promethin 11 0.001506 9.087 1 1 +57147 SCYL3 SCY1 like pseudokinase 3 1 protein-coding PACE-1|PACE1 protein-associating with the carboxyl-terminal domain of ezrin|SCY1-like 3|SCY1-like protein 3|SCY1-like, kinase-like 3|ezrin-binding partner PACE-1 (PACE-1)|ezrin-binding protein PACE-1 41 0.005612 8.315 1 1 +57148 RALGAPB Ral GTPase activating protein non-catalytic beta subunit 20 protein-coding KIAA1219|RalGAPbeta ral GTPase-activating protein subunit beta|Ral GTPase activating protein, beta subunit (non-catalytic) 141 0.0193 10.72 1 1 +57149 LYRM1 LYR motif containing 1 16 protein-coding A211C6.1 LYR motif-containing protein 1 5 0.0006844 9.037 1 1 +57150 SMIM8 small integral membrane protein 8 6 protein-coding C6orf162|dJ102H19.2 small integral membrane protein 8|UPF0708 protein C6orf162 8 0.001095 6.791 1 1 +57151 LYZL6 lysozyme like 6 17 protein-coding HEL-S-6a|LYC1|LYZB|PRO1485|TKAL754|UNQ754 lysozyme-like protein 6|epididymis secretory sperm binding protein Li 6a|lysozyme B|lysozyme homolog 22 0.003011 0.06295 1 1 +57152 SLURP1 secreted LY6/PLAUR domain containing 1 8 protein-coding ANUP|ARS|ArsB|LY6LS|MDM secreted Ly-6/uPAR-related protein 1|ARS(component B)-81/S|SLURP-1|anti-neoplastic urinary protein|lymphocyte antigen 6-like secreted|secreted Ly6/uPAR related protein 1 9 0.001232 1.325 1 1 +57153 SLC44A2 solute carrier family 44 member 2 19 protein-coding CTL2|PP1292 choline transporter-like protein 2|solute carrier family 44 (choline transporter), member 2|testicular tissue protein Li 47 48 0.00657 11.95 1 1 +57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 7 protein-coding - E3 ubiquitin-protein ligase SMURF1|E3 ubiquitin ligase SMURF1|Smad ubiquitination regulatory factor 1|Smad-specific E3 ubiquitin ligase 1|hSMURF1 43 0.005886 9.966 1 1 +57156 TMEM63C transmembrane protein 63C 14 protein-coding C14orf171|CSC1|hsCSC1 calcium permeable stress-gated cation channel 1|calcium permeable stress-gated cation channel 1 homolog 37 0.005064 5.909 1 1 +57157 PHTF2 putative homeodomain transcription factor 2 7 protein-coding - putative homeodomain transcription factor 2 58 0.007939 9.035 1 1 +57158 JPH2 junctophilin 2 20 protein-coding CMH17|JP-2|JP2 junctophilin-2|junctophilin type 2 63 0.008623 5.968 1 1 +57159 TRIM54 tripartite motif containing 54 2 protein-coding MURF|MURF-3|RNF30|muRF3 tripartite motif-containing protein 54|muscle-specific RING finger protein 3|ring finger protein 30 32 0.00438 2.752 1 1 +57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 14 protein-coding - E3 ubiquitin-protein ligase pellino homolog 2|pellino homolog 2|pellino-2|protein pellino homolog 2 41 0.005612 7.458 1 1 +57162 PELI1 pellino E3 ubiquitin protein ligase 1 2 protein-coding - E3 ubiquitin-protein ligase pellino homolog 1|pellino homolog 1|pellino-1|pellino-related intracellular-signaling molecule|protein pellino homolog 1 22 0.003011 9.486 1 1 +57165 GJC2 gap junction protein gamma 2 1 protein-coding CX46.6|Cx47|GJA12|HLD2|LMPH1C|PMLDAR|SPG44 gap junction gamma-2 protein|connexin-46.6|connexin-47|gap junction alpha-12 protein|gap junction protein, gamma 2, 47kDa 20 0.002737 5.12 1 1 +57167 SALL4 spalt like transcription factor 4 20 protein-coding DRRS|HSAL4|ZNF797 sal-like protein 4|zinc finger protein 797|zinc finger protein SALL4 114 0.0156 4.565 1 1 +57168 ASPHD2 aspartate beta-hydroxylase domain containing 2 22 protein-coding - aspartate beta-hydroxylase domain-containing protein 2 30 0.004106 6.793 1 1 +57169 ZNFX1 zinc finger NFX1-type containing 1 20 protein-coding - NFX1-type zinc finger-containing protein 1 110 0.01506 10.76 1 1 +57171 DOLPP1 dolichyldiphosphatase 1 9 protein-coding LSFR2 dolichyldiphosphatase 1|dolichyl pyrophosphate phosphatase 1|linked to Surfeit genes in Fugu rubripes 2 13 0.001779 8.863 1 1 +57172 CAMK1G calcium/calmodulin dependent protein kinase IG 1 protein-coding CLICK3|CLICKIII|VWS1|dJ272L16.1 calcium/calmodulin-dependent protein kinase type 1G|CLICK III|caM kinase I gamma|caM kinase IG|caM-KI gamma|caMK-like CREB kinase III|caMKI gamma|caMKIG 33 0.004517 3.472 1 1 +57175 CORO1B coronin 1B 11 protein-coding CORONIN-2 coronin-1B|coronin, actin binding protein, 1B 41 0.005612 11.2 1 1 +57176 VARS2 valyl-tRNA synthetase 2, mitochondrial 6 protein-coding COXPD20|VALRS|VARS2L|VARSL valine--tRNA ligase, mitochondrial|valine tRNA ligase 2, mitochondrial (putative)|valyl-tRNA synthetase like 55 0.007528 9.678 1 1 +57178 ZMIZ1 zinc finger MIZ-type containing 1 10 protein-coding MIZ|RAI17|TRAFIP10|ZIMP10|hZIMP10 zinc finger MIZ domain-containing protein 1|FLJ00092 protein|RP11-519K18.1|retinoic acid induced 17|zinc finger-containing, Miz1, PIAS-like protein on chromosome 10 85 0.01163 11.5 1 1 +57179 KIAA1191 KIAA1191 5 protein-coding p33MONOX|p60MONOX putative monooxygenase p33MONOX|brain-derived rescue factor p60MONOX|flavin monooxygenase motif-containing protein of 33 kDa|flavine monooxygenase motif-containing protein of 33 kDa 18 0.002464 11.15 1 1 +57180 ACTR3B ARP3 actin related protein 3 homolog B 7 protein-coding ARP11|ARP3BETA actin-related protein 3B|ARP3-beta|actin-like protein 3B|actin-related protein 3-beta|actin-related protein ARP4|actin-related protein Arp11 20 0.002737 7.522 1 1 +57181 SLC39A10 solute carrier family 39 member 10 2 protein-coding LZT-Hs2 zinc transporter ZIP10|ZIP-10|solute carrier family 39 (metal ion transporter), member 10|solute carrier family 39 (zinc transporter), member 10|zrt- and Irt-like protein 10 47 0.006433 9.468 1 1 +57182 ANKRD50 ankyrin repeat domain 50 4 protein-coding - ankyrin repeat domain-containing protein 50 108 0.01478 9.451 1 1 +57184 FAM219B family with sequence similarity 219 member B 15 protein-coding C15orf17 protein FAM219B|uncharacterized protein C15orf17 10 0.001369 9.928 1 1 +57185 NIPAL3 NIPA like domain containing 3 1 protein-coding DJ462O23.2|NPAL3 NIPA-like protein 3 27 0.003696 9.755 1 1 +57186 RALGAPA2 Ral GTPase activating protein catalytic alpha subunit 2 20 protein-coding AS250|C20orf74|bA287B20.1|dJ1049G11|dJ1049G11.4|p220 ral GTPase-activating protein subunit alpha-2|250 kDa substrate of Akt|Ral GTPase activating protein, alpha subunit 2 (catalytic)|RapGAPalpha2|akt substrate AS250|ral GTPase-activating protein alpha subunit 2 116 0.01588 8.348 1 1 +57187 THOC2 THO complex 2 X protein-coding CXorf3|MRX12|MRX35|THO2|dJ506G2.1|hTREX120 THO complex subunit 2|mental retardation, X-linked 12|mental retardation, X-linked 35 119 0.01629 10.26 1 1 +57188 ADAMTSL3 ADAMTS like 3 15 protein-coding ADAMTSL-3 ADAMTS-like protein 3|a disintegrin-like and metalloprotease domain with thrombospondin type I motifs-like 3|punctin-2 175 0.02395 6.067 1 1 +57189 KIAA1147 KIAA1147 7 protein-coding LCHN|PRO2561 protein LCHN|predicted protein of HQ2561 19 0.002601 9.958 1 1 +57190 SELENON selenoprotein N 1 protein-coding CFTD|MDRS1|RSMD1|RSS|SELN|SEPN1 selenoprotein N|selenoprotein N, 1 20 0.002737 11.62 1 1 +57191 VN1R1 vomeronasal 1 receptor 1 19 protein-coding V1RL1|VNR19I1|ZVNH1|ZVNR1 vomeronasal type-1 receptor 1|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 26 0.003559 3.561 1 1 +57192 MCOLN1 mucolipin 1 19 protein-coding MG-2|ML4|MLIV|MST080|MSTP080|TRP-ML1|TRPM-L1|TRPML1 mucolipin-1|mucolipidin|mucolipidosis type IV protein 50 0.006844 9.037 1 1 +57194 ATP10A ATPase phospholipid transporting 10A (putative) 15 protein-coding ATP10C|ATPVA|ATPVC probable phospholipid-transporting ATPase VA|ATPase type IV, phospholipid transporting (P-type)|ATPase, Class V, type 10C|ATPase, class V, type 10A|P4-ATPase flippase complex alpha subunit ATP10A|aminophospholipid translocase VA|phospholipid-transporting ATPase VA 179 0.0245 7.319 1 1 +57198 ATP8B2 ATPase phospholipid transporting 8B2 1 protein-coding ATPID phospholipid-transporting ATPase ID|36/8-9 fusion protein with epitope for anti-lectin antibody|ATPase, aminophospholipid transporter, class I, type 8B, member 2|ATPase, class I, type 8B, member 2|P4-ATPase flippase complex alpha subunit ATP8B2|probable phospholipid-transporting ATPase ID 103 0.0141 9.311 1 1 +57205 ATP10D ATPase phospholipid transporting 10D (putative) 4 protein-coding ATPVD probable phospholipid-transporting ATPase VD|ATPase, class V, type 10D|P4-ATPase flippase complex alpha subunit ATP10D|type IV aminophospholipid transporting ATPase 130 0.01779 8.71 1 1 +57209 ZNF248 zinc finger protein 248 10 protein-coding bA162G10.3 zinc finger protein 248|KRAB protein domain|Kruppel-type zinc finger protein|bA162G10.3 (zinc finger protein) 53 0.007254 8.142 1 1 +57210 SLC45A4 solute carrier family 45 member 4 8 protein-coding - solute carrier family 45 member 4 71 0.009718 8.926 1 1 +57211 ADGRG6 adhesion G protein-coupled receptor G6 6 protein-coding APG1|DREG|GPR126|LCCS9|PR126|PS1TP2|VIGR G-protein coupled receptor 126|HBV PreS1-transactivated protein 2|developmentally regulated G-protein-coupled receptor|vascular-inducible G protein-coupled receptor 68 0.009307 7.96 1 1 +57212 TP73-AS1 TP73 antisense RNA 1 1 ncRNA KIAA0495|PDAM TP73 antisense RNA 1 (non-protein coding)|p53-dependent apoptosis modulator 15 0.002053 8.412 1 1 +57213 SPRYD7 SPRY domain containing 7 13 protein-coding C13orf1|CLLD6 SPRY domain-containing protein 7|CLL deletion region gene 6 protein|chronic lymphocytic leukemia deletion region gene 6 protein 8 0.001095 8.227 1 1 +57214 CEMIP cell migration inducing hyaluronan binding protein 15 protein-coding CCSP1|HYBID|KIAA1199|TMEM2L cell migration-inducing and hyaluronan-binding protein|cell migration inducing protein, hyaluronan binding|colon cancer secreted protein 1|hyaluronan-binding protein involved in hyaluronan depolymerization 98 0.01341 7.553 1 1 +57215 THAP11 THAP domain containing 11 16 protein-coding CTG-B43a|CTG-B45d|HRIHFB2206|RONIN THAP domain-containing protein 11 21 0.002874 9.404 1 1 +57216 VANGL2 VANGL planar cell polarity protein 2 1 protein-coding LPP1|LTAP|STB1|STBM|STBM1 vang-like protein 2|loop-tail protein 1 homolog|loop-tail-associated protein|strabismus 1|van Gogh-like protein 2|vang-like 2 (van gogh, Drosophila) 53 0.007254 8.887 1 1 +57217 TTC7A tetratricopeptide repeat domain 7A 2 protein-coding GIDID|MINAT|TTC7 tetratricopeptide repeat protein 7A|TPR repeat protein 7A 48 0.00657 9.824 1 1 +57221 ARFGEF3 ARFGEF family member 3 6 protein-coding A7322|BIG3|C6orf92|KIAA1244|PPP1R33|dJ171N11.1 brefeldin A-inhibited guanine nucleotide-exchange protein 3|protein phosphatase 1, regulatory subunit 33 130 0.01779 7.452 1 1 +57222 ERGIC1 endoplasmic reticulum-golgi intermediate compartment 1 5 protein-coding ERGIC-32|ERGIC32|NET24 endoplasmic reticulum-Golgi intermediate compartment protein 1|ER-Golgi intermediate compartment 32 kDa protein|endoplasmic reticulum-golgi intermediate compartment (ERGIC) 1|endoplasmic reticulum-golgi intermediate compartment 32 kDa protein 22 0.003011 12.11 1 1 +57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B 2 protein-coding FLFL2|PP4R3B|PSY2|SMEK2|smk1 serine/threonine-protein phosphatase 4 regulatory subunit 3B|SMEK homolog 2, suppressor of mek1 57 0.007802 10.75 1 1 +57224 NHSL1 NHS like 1 6 protein-coding C6orf63 NHS-like protein 1 34 0.004654 8.653 1 1 +57226 LYRM2 LYR motif containing 2 6 protein-coding DJ122O8.2 LYR motif-containing protein 2 6 0.0008212 9.664 1 1 +57228 SMAGP small cell adhesion glycoprotein 12 protein-coding hSMAGP small cell adhesion glycoprotein|small cell transmembrane and glycosylated protein|small trans-membrane and glycosylated protein|small transmembrane and glycosylated protein 5 0.0006844 7.78 1 1 +57231 SNX14 sorting nexin 14 6 protein-coding RGS-PX2|SCAR20 sorting nexin-14 61 0.008349 10.03 1 1 +57232 ZNF630 zinc finger protein 630 X protein-coding dJ54B20.2 zinc finger protein 630|dJ54B20.2 (novel KRAB box containing C2H2 type zinc finger protein) 49 0.006707 5.688 1 1 +57282 SLC4A10 solute carrier family 4 member 10 2 protein-coding NBCn2|NCBE sodium-driven chloride bicarbonate exchanger|solute carrier family 4, sodium bicarbonate cotransporter-like, member 10|solute carrier family 4, sodium bicarbonate transporter, member 10 117 0.01601 2.317 1 1 +57291 DANCR differentiation antagonizing non-protein coding RNA 4 ncRNA AGU2|ANCR|KIAA0114|SNHG13|lncRNA-ANCR adipogenesis up-regulated transcript 2|anti-differentiation ncRNA|anti-differentiation noncoding RNA|small nucleolar RNA host gene 13 (non-protein coding) 5 0.0006844 9.438 1 1 +57325 KAT14 lysine acetyltransferase 14 20 protein-coding ATAC2|CRP2BP|CSRP2BP|PRO1194|dJ717M23.1 cysteine-rich protein 2-binding protein|ADA2A-containing complex subunit 2|ATAC component 2 homolog|CRP2 binding partner|CRP2 binding protein|CSRP2-binding protein 9.402 0 1 +57326 PBXIP1 PBX homeobox interacting protein 1 1 protein-coding HPIP pre-B-cell leukemia transcription factor-interacting protein 1|hematopoietic PBX-interacting protein|pre-B-cell leukemia homeobox interacting protein 1 45 0.006159 11.67 1 1 +57332 CBX8 chromobox 8 17 protein-coding PC3|RC1 chromobox protein homolog 8|Pc class 3 homolog|chromobox homolog 8 (Pc class homolog, Drosophila)|polycomb 3|rectachrome 1 40 0.005475 7.361 1 1 +57333 RCN3 reticulocalbin 3 19 protein-coding RLP49 reticulocalbin-3|EF-hand calcium-binding protein RLP49|reticulocabin|reticulocalbin 3, EF-hand calcium binding domain 25 0.003422 8.698 1 1 +57335 ZNF286A zinc finger protein 286A 17 protein-coding ZNF286 zinc finger protein 286A|zinc finger protein ZNF286 31 0.004243 7.924 1 1 +57336 ZNF287 zinc finger protein 287 17 protein-coding ZKSCAN13|ZSCAN45 zinc finger protein 287|zinc finger protein with KRAB and SCAN domains 13 47 0.006433 6.592 1 1 +57337 SENP7 SUMO1/sentrin specific peptidase 7 3 protein-coding - sentrin-specific protease 7|SUMO-1-specific protease 2|sentrin/SUMO-specific protease SENP7 77 0.01054 8.333 1 1 +57338 JPH3 junctophilin 3 16 protein-coding CAGL237|HDL2|JP-3|JP3|TNRC22 junctophilin-3|junctophilin type 3|trinucleotide repeat containing 22 71 0.009718 3.709 1 1 +57343 ZNF304 zinc finger protein 304 19 protein-coding - zinc finger protein 304|KRAB-containing zinc finger protein 56 0.007665 8.002 1 1 +57348 TTYH1 tweety family member 1 19 protein-coding - protein tweety homolog 1|hTTY1|tweety homolog 1 45 0.006159 4.666 1 1 +57369 GJD2 gap junction protein delta 2 15 protein-coding CX36|GJA9 gap junction delta-2 protein|connexin-36|gap junction alpha-9 protein|gap junction protein, delta 2, 36kDa 36 0.004927 0.5445 1 1 +57379 AICDA activation induced cytidine deaminase 12 protein-coding AID|ARP2|CDA2|HEL-S-284|HIGM2 single-stranded DNA cytosine deaminase|cytidine aminohydrolase|epididymis secretory protein Li 284|integrated into Burkitt's lymphoma cell line Ramos 25 0.003422 1.109 1 1 +57380 MRS2 MRS2, magnesium transporter 6 protein-coding HPT|MRS2L magnesium transporter MRS2 homolog, mitochondrial|MRS2-like protein|MRS2-like, magnesium homeostasis factor|putative magnesium transporter 27 0.003696 9.416 1 1 +57381 RHOJ ras homolog family member J 14 protein-coding ARHJ|RASL7B|TC10B|TCL rho-related GTP-binding protein RhoJ|RAS-like, family 7, member B|TC10-like Rho GTPase|ras homolog gene family, member J|ras-like protein family member 7B|tc10-like GTP-binding protein 25 0.003422 6.793 1 1 +57393 TMEM27 transmembrane protein 27 X protein-coding NX-17|NX17 collectrin|kidney-specific membrane protein 10 0.001369 4.869 1 1 +57396 CLK4 CDC like kinase 4 5 protein-coding - dual specificity protein kinase CLK4|protein serine threonine kinase Clk4 36 0.004927 8.409 1 1 +57402 S100A14 S100 calcium binding protein A14 1 protein-coding BCMP84|S100A15 protein S100-A14|S114|breast cancer membrane protein 84 7 0.0009581 8.715 1 1 +57403 RAB22A RAB22A, member RAS oncogene family 20 protein-coding - ras-related protein Rab-22A|GTP-binding protein RAB22A|rab-22 14 0.001916 10.36 1 1 +57404 CYP20A1 cytochrome P450 family 20 subfamily A member 1 2 protein-coding CYP-M cytochrome P450 20A1|cytochrome P450 monooxygenase|cytochrome P450, family 20, subfamily A, polypeptide 1 30 0.004106 9.059 1 1 +57405 SPC25 SPC25, NDC80 kinetochore complex component 2 protein-coding AD024|SPBC25|hSpc25 kinetochore protein Spc25|2600017H08Rik|SPC25, NDC80 kinetochore complex component, homolog|spindle pole body component 25 homolog 9 0.001232 6.32 1 1 +57406 ABHD6 abhydrolase domain containing 6 3 protein-coding - monoacylglycerol lipase ABHD6|2-arachidonoylglycerol hydrolase|abhydrolase domain-containing protein 6|lipase protein 22 0.003011 7.917 1 1 +57407 NMRAL1 NmrA like redox sensor 1 16 protein-coding HSCARG|SDR48A1 nmrA-like family domain-containing protein 1|NmrA-like family domain containing 1|short chain dehydrogenase/reductase family 48A, member 1 14 0.001916 9.66 1 1 +57408 LRTM1 leucine rich repeats and transmembrane domains 1 3 protein-coding HT017 leucine-rich repeat and transmembrane domain-containing protein 1 46 0.006296 0.3218 1 1 +57409 MIF4GD MIF4G domain containing 17 protein-coding AD023|MIFD|SLIP1 MIF4G domain-containing protein|SLBP (stem loop binding protein)-interacting protein 1|SLBP-interacting protein 1 17 0.002327 8.811 1 1 +57410 SCYL1 SCY1 like pseudokinase 1 11 protein-coding GKLP|HT019|NKTL|NTKL|P105|SCAR21|TAPK|TEIF|TRAP N-terminal kinase-like protein|SCY1-like protein 1|SCY1-like, kinase-like 1|coated vesicle-associated kinase of 90 kDa|likely ortholog of mouse N-terminal kinase-like protein|telomerase regulation-associated protein|telomerase transcriptional elements-interacting factor|teratoma-associated tyrosine kinase 42 0.005749 11.03 1 1 +57412 AS3MT arsenite methyltransferase 10 protein-coding CYT19 arsenite methyltransferase|S-adenosyl-L-methionine:arsenic(III) methyltransferase|S-adenosylmethionine:arsenic (III) methyltransferase|arsenic (+3 oxidation state) methyltransferase|methylarsonite methyltransferase|methyltransferase cyt19 24 0.003285 7.188 1 1 +57414 RHBDD2 rhomboid domain containing 2 7 protein-coding NPD007|RHBDL7 rhomboid domain-containing protein 2|rhomboid, veinlet-like 7 22 0.003011 11.32 1 1 +57415 C3orf14 chromosome 3 open reading frame 14 3 protein-coding HT021 uncharacterized protein C3orf14 11 0.001506 6.896 1 1 +57418 WDR18 WD repeat domain 18 19 protein-coding Ipi3|R32184_1 WD repeat-containing protein 18|Involved in Processing ITS2 3 homolog 25 0.003422 9.478 1 1 +57419 SLC24A3 solute carrier family 24 member 3 20 protein-coding NCKX3 sodium/potassium/calcium exchanger 3|Na(+)/K(+)/Ca(2+)-exchange protein 3|sodium calcium exchanger|solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 51 0.006981 7.161 1 1 +57446 NDRG3 NDRG family member 3 20 protein-coding - protein NDRG3|N-myc downstream-regulated gene 3 protein 21 0.002874 10.18 1 1 +57447 NDRG2 NDRG family member 2 14 protein-coding SYLD protein NDRG2|N-myc downstream regulator 2|N-myc downstream-regulated gene 2 protein|NDR1-related protein NDR2|cytoplasmic protein Ndr1|syld709613 protein 29 0.003969 10.59 1 1 +57448 BIRC6 baculoviral IAP repeat containing 6 2 protein-coding APOLLON|BRUCE baculoviral IAP repeat-containing protein 6|BIR repeat-containing ubiquitin-conjugating enzyme|ubiquitin-conjugating BIR-domain enzyme apollon 299 0.04093 10.78 1 1 +57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 1 protein-coding CMTRIC|DSMA4|GEF720|Syx|Tech pleckstrin homology domain-containing family G member 5|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 (with RhoGef domain) member 5|synectin-binding guanine exchange factor 68 0.009307 8.47 1 1 +57451 TENM2 teneurin transmembrane protein 2 5 protein-coding ODZ2|TEN-M2|TNM2|ten-2 teneurin-2|neurestin alpha|odd Oz/ten-m homolog 2|odz, odd Oz/ten-m homolog 2|protein Odd Oz/ten-m homolog 2|tenascin-M2 235 0.03217 5.269 1 1 +57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 14 protein-coding GALNACT16|GALNTL1|GalNAc-T16 polypeptide N-acetylgalactosaminyltransferase 16|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 1|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 16|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 1|galNAc-T-like protein 1|polypeptide GalNAc transferase 16|polypeptide GalNAc transferase-like protein 1|polypeptide N-acetylgalactosaminyltransferase-like protein 1|pp-GaNTase-like protein 1|protein-UDP acetylgalactosaminyltransferase-like protein 1|putative polypeptide N-acetylgalactosaminyltransferase-like protein 1 52 0.007117 6.198 1 1 +57453 DSCAML1 DS cell adhesion molecule like 1 11 protein-coding DSCAM2 Down syndrome cell adhesion molecule-like protein 1|DSCAM-like 1|Downs syndrome cell adhesion molecule like 1|down syndrome cell adhesion molecule 2 211 0.02888 4.035 1 1 +57455 REXO1 RNA exonuclease 1 homolog 19 protein-coding ELOABP1|EloA-BP1|REX1|TCEB3BP1 RNA exonuclease 1 homolog|REX1, RNA exonuclease 1 homolog|elongin-A-binding protein 1|transcription elongation factor B polypeptide 3-binding protein 1 66 0.009034 9.604 1 1 +57456 KIAA1143 KIAA1143 3 protein-coding - uncharacterized protein KIAA1143 14 0.001916 9.299 1 1 +57458 TMCC3 transmembrane and coiled-coil domain family 3 12 protein-coding - transmembrane and coiled-coil domains protein 3|transmembrane and coiled-coil domains 3 56 0.007665 8.647 1 1 +57459 GATAD2B GATA zinc finger domain containing 2B 1 protein-coding MRD18|P66beta|p68 transcriptional repressor p66-beta|GATA zinc finger domain-containing protein 2B|transcription repressor p66 beta component of the MeCP1 complex 34 0.004654 9.979 1 1 +57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H 12 protein-coding ARHCL1|NERPP-2C|URCC2 protein phosphatase 1H|neurite extension-related protein phosphatase related to PP2C|protein phosphatase 1H (PP2C domain containing)|ras homolog gene family, member C like 1 39 0.005338 8.711 1 1 +57461 ISY1 ISY1 splicing factor homolog 3 protein-coding FSAP33 pre-mRNA-splicing factor ISY1 homolog|functional spliceosome-associated protein 33 10 0.001369 9.326 1 1 +57462 KIAA1161 KIAA1161 9 protein-coding NET37 uncharacterized family 31 glucosidase KIAA1161 30 0.004106 8.071 1 1 +57463 AMIGO1 adhesion molecule with Ig like domain 1 1 protein-coding ALI2|AMIGO|AMIGO-1 amphoterin-induced protein 1|alivin-2|amphoterin-induced gene and ORF 14 0.001916 6.299 1 1 +57464 STRIP2 striatin interacting protein 2 7 protein-coding FAM40B|FAR11B striatin-interacting protein 2|FAR11 factor arrest 11 homolog B|family with sequence similarity 40, member B|homolog of yeast FAR11 protein 2|protein FAM40B 61 0.008349 6.246 1 1 +57465 TBC1D24 TBC1 domain family member 24 16 protein-coding DFNA65|DFNB86|DOORS|EIEE16|FIME|TLDC6 TBC1 domain family member 24|TBC/LysM-associated domain containing 6|skywalker homolog 31 0.004243 8.189 1 1 +57466 SCAF4 SR-related CTD associated factor 4 21 protein-coding SFRS15|SRA4 splicing factor, arginine/serine-rich 15|CTD-binding SR-like protein rA4|SR-like CTD-associated factor 4|pre-mRNA splicing SR protein rA4|splicing factor serine alanine 15 121 0.01656 9.756 1 1 +57467 HHATL hedgehog acyltransferase-like 3 protein-coding C3orf3|GUP1|MBOAT3|MSTP002|OACT3 protein-cysteine N-palmitoyltransferase HHAT-like protein|GUP1 glycerol uptake/transporter homolog|glycerol uptake/transporter homolog|hedgehog acyltransferase-like protein|membrane bound O-acyltransferase domain containing 3 33 0.004517 2.42 1 1 +57468 SLC12A5 solute carrier family 12 member 5 20 protein-coding EIEE34|EIG14|KCC2|hKCC2 solute carrier family 12 member 5|K-Cl cotransporter 2|electroneutral potassium-chloride cotransporter 2|erythroid K-Cl cotransporter 2|neuronal K-Cl cotransporter|solute carrier family 12 (potassium/chloride transporter), member 5 128 0.01752 2.947 1 1 +57469 PNMAL2 paraneoplastic Ma antigen family like 2 19 protein-coding - PNMA-like protein 2|PNMA-like 2 48 0.00657 5.908 1 1 +57470 LRRC47 leucine rich repeat containing 47 1 protein-coding - leucine-rich repeat-containing protein 47 35 0.004791 10.34 1 1 +57471 ERMN ermin 2 protein-coding JN|KIAA1189 ermin|ermin, ERM-like protein|juxtanodin 25 0.003422 3.784 1 1 +57472 CNOT6 CCR4-NOT transcription complex subunit 6 5 protein-coding CCR4|Ccr4a CCR4-NOT transcription complex subunit 6|carbon catabolite repression 4 protein|carbon catabolite repressor protein 4 homolog|cytoplasmic deadenylase 37 0.005064 9.841 1 1 +57473 ZNF512B zinc finger protein 512B 20 protein-coding GM632 zinc finger protein 512B 57 0.007802 9.623 1 1 +57474 ZNF490 zinc finger protein 490 19 protein-coding - zinc finger protein 490 28 0.003832 7.783 1 1 +57475 PLEKHH1 pleckstrin homology, MyTH4 and FERM domain containing H1 14 protein-coding - pleckstrin homology domain-containing family H member 1|PH domain-containing family H member 1|pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 70 0.009581 8.383 1 1 +57476 GRAMD1B GRAM domain containing 1B 11 protein-coding - GRAM domain-containing protein 1B 62 0.008486 5.267 1 1 +57477 SHROOM4 shroom family member 4 X protein-coding SHAP protein Shroom4|second homolog of apical protein 120 0.01642 7.875 1 1 +57478 USP31 ubiquitin specific peptidase 31 16 protein-coding - ubiquitin carboxyl-terminal hydrolase 31|deubiquitinating enzyme 31|ubiquitin specific proteinase 31|ubiquitin thioesterase 31|ubiquitin thiolesterase 31|ubiquitin-specific-processing protease 31 101 0.01382 9.045 1 1 +57479 PRR12 proline rich 12 19 protein-coding KIAA1205 proline-rich protein 12 111 0.01519 10.11 1 1 +57480 PLEKHG1 pleckstrin homology and RhoGEF domain containing G1 6 protein-coding ARHGEF41 pleckstrin homology domain-containing family G member 1|pleckstrin homology domain containing, family G (with RhoGef domain) member 1 99 0.01355 8.552 1 1 +57481 KIAA1210 KIAA1210 X protein-coding - uncharacterized protein KIAA1210 148 0.02026 1.563 1 1 +57482 KIAA1211 KIAA1211 4 protein-coding - uncharacterized protein KIAA1211 157 0.02149 6.756 1 1 +57484 RNF150 ring finger protein 150 4 protein-coding - RING finger protein 150 38 0.005201 5.184 1 1 +57486 NLN neurolysin 5 protein-coding AGTBP|EP24.16|MEP|MOP neurolysin, mitochondrial|angiotensin binding protein|endopeptidase 24.16|microsomal endopeptidase|mitochondrial oligopeptidase M|neurolysin (metallopeptidase M3 family)|neurotensin endopeptidase 47 0.006433 8.348 1 1 +57488 ESYT2 extended synaptotagmin 2 7 protein-coding CHR2SYT|E-Syt2|FAM62B extended synaptotagmin-2|chr2 synaptotagmin|extended synaptotagmin like protein 2|extended synaptotagmin protein 2|family with sequence similarity 62 (C2 domain containing), member B 49 0.006707 11.35 1 1 +57489 ODF2L outer dense fiber of sperm tails 2 like 1 protein-coding dJ977L11.1 outer dense fiber protein 2-like 33 0.004517 8.246 1 1 +57491 AHRR aryl-hydrocarbon receptor repressor 5 protein-coding AHH|AHHR|bHLHe77 aryl hydrocarbon receptor repressor|ahR repressor|aryl hydrocarbon hydroxylase regulator|class E basic helix-loop-helix protein 77|dioxin receptor repressor 49 0.006707 5.182 1 1 +57492 ARID1B AT-rich interaction domain 1B 6 protein-coding 6A3-5|BAF250B|BRIGHT|CSS1|DAN15|ELD/OSA1|MRD12|OSA2|P250R AT-rich interactive domain-containing protein 1B|ARID domain-containing protein 1B|AT rich interactive domain 1B (SWI1-like)|BRG1-associated factor 250b|BRG1-binding protein ELD/OSA1|ELD (eyelid)/OSA protein 190 0.02601 10.53 1 1 +57493 HEG1 heart development protein with EGF like domains 1 3 protein-coding HEG|MST112|MSTP112 protein HEG homolog 1|HEG homolog 1|heart of glass 99 0.01355 10.41 1 1 +57494 RIMKLB ribosomal modification protein rimK like family member B 12 protein-coding FAM80B|NAAGS|NAAGS-I beta-citrylglutamate synthase B|N-acetyl-aspartyl-glutamate synthetase B|N-acetyl-aspartylglutamate synthetase B|N-acetylaspartyl-glutamate synthetase B|NAAG synthetase B|beta-citryl-glutamate synthase B|family with sequence similarity 80, member B|ribosomal protein S6 modification-like protein B 39 0.005338 8.595 1 1 +57495 NWD2 NACHT and WD repeat domain containing 2 4 protein-coding KIAA1239 NACHT and WD repeat domain-containing protein 2 44 0.006022 1.667 1 1 +57496 MKL2 MKL1/myocardin like 2 16 protein-coding MRTF-B|MRTFB|NPD001 MKL/myocardin-like protein 2|CTA-276F8.1|MKL/myocardin like 2|megakaryoblastic leukemia 2|myocardin-related transcription factor B 84 0.0115 9.928 1 1 +57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 6 protein-coding FIGLER2|KIAA1246|SALM1 leucine-rich repeat and fibronectin type-III domain-containing protein 2|fibronectin type III, immunoglobulin and leucine rich repeat domains 2|synaptic adhesion-like molecule 1 117 0.01601 2.295 1 1 +57498 KIDINS220 kinase D-interacting substrate 220kDa 2 protein-coding ARMS kinase D-interacting substrate of 220 kDa|ankyrin repeat-rich membrane spanning|ankyrin repeat-rich membrane-spanning protein|truncated KIDINS220 128 0.01752 10.81 1 1 +57501 KIAA1257 KIAA1257 3 protein-coding - uncharacterized protein KIAA1257 38 0.005201 3.797 1 1 +57502 NLGN4X neuroligin 4, X-linked X protein-coding ASPGX2|AUTSX2|HLNX|HNL4X|NLGN4 neuroligin-4, X-linked 137 0.01875 5.991 1 1 +57504 MTA3 metastasis associated 1 family member 3 2 protein-coding - metastasis-associated protein MTA3|metastasis associated gene family, member 3 23 0.003148 9.732 1 1 +57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial 6 protein-coding AARSL|COXPD8|LKENP|MT-ALARS|MTALARS alanine--tRNA ligase, mitochondrial|alanine tRNA ligase 2, mitochondrial (putative)|alanyl-tRNA synthetase 2, mitochondrial (putative)|alanyl-tRNA synthetase like|probable alanyl-tRNA synthetase, mitochondrial 63 0.008623 8.985 1 1 +57506 MAVS mitochondrial antiviral signaling protein 20 protein-coding CARDIF|IPS-1|IPS1|VISA mitochondrial antiviral-signaling protein|CARD adapter inducing interferon beta|CARD adaptor inducing IFN-beta|IFN-B promoter stimulator 1|interferon beta promoter stimulator protein 1|putative NF-kappa-B-activating protein 031N|virus-induced signaling adaptor|virus-induced-signaling adapter 42 0.005749 11.22 1 1 +57507 ZNF608 zinc finger protein 608 5 protein-coding NY-REN-36 zinc finger protein 608|renal carcinoma antigen NY-REN-36 92 0.01259 7.984 1 1 +57508 INTS2 integrator complex subunit 2 17 protein-coding INT2|KIAA1287 integrator complex subunit 2 61 0.008349 8.269 1 1 +57509 MTUS1 microtubule associated tumor suppressor 1 8 protein-coding ATBP|ATIP|ICIS|MP44|MTSG1 microtubule-associated tumor suppressor 1|AT2 receptor-binding protein|AT2 receptor-interacting protein|AT2R binding protein|angiotensin-II type 2 receptor-interacting protein|erythroid differentiation-related|mitochondrial tumor suppressor gene 1|transcription factor MTSG1 85 0.01163 10.56 1 1 +57510 XPO5 exportin 5 6 protein-coding exp5 exportin-5|ran-binding protein 21 54 0.007391 10.31 1 1 +57511 COG6 component of oligomeric golgi complex 6 13 protein-coding CDG2L|COD2|SHNS conserved oligomeric Golgi complex subunit 6|COG complex subunit 6|complexed with Dor1p 2|conserved oligomeric Golgi complex protein 6|testicular tissue protein Li 41 39 0.005338 8.921 1 1 +57512 GPR158 G protein-coupled receptor 158 10 protein-coding - probable G-protein coupled receptor 158 186 0.02546 4.73 1 1 +57513 CASKIN2 CASK interacting protein 2 17 protein-coding ANKS5B caskin-2 61 0.008349 9.753 1 1 +57514 ARHGAP31 Rho GTPase activating protein 31 3 protein-coding AOS1|CDGAP rho GTPase-activating protein 31|Cdc42 GTPase-activating protein 129 0.01766 9.035 1 1 +57515 SERINC1 serine incorporator 1 6 protein-coding TDE1L|TDE2|TMS-2|TMS2 serine incorporator 1|tumor differentially expressed protein 2 34 0.004654 12.12 1 1 +57519 STARD9 StAR related lipid transfer domain containing 9 15 protein-coding KIF16A stAR-related lipid transfer protein 9|START domain containing 9|START domain-containing protein 9|StAR-related lipid transfer (START) domain containing 9 29 0.003969 1 0 +57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 2 protein-coding NEDL2 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 157 0.02149 7.046 1 1 +57521 RPTOR regulatory associated protein of MTOR complex 1 17 protein-coding KOG1|Mip1 regulatory-associated protein of mTOR|p150 target of rapamycin (TOR)-scaffold protein containing WD-repeats|raptor 100 0.01369 9.924 1 1 +57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 12 protein-coding ARHGAP13|NMTC2 SLIT-ROBO Rho GTPase-activating protein 1|rho GTPase-activating protein 13 106 0.01451 8.619 1 1 +57523 NYNRIN NYN domain and retroviral integrase containing 14 protein-coding CGIN1|KIAA1305 protein NYNRIN|Cousin of GIN1|NYN domain and retroviral integrase catalytic domain-containing protein|protein cousin of GIN1 122 0.0167 9.107 1 1 +57524 CASKIN1 CASK interacting protein 1 16 protein-coding ANKS5A caskin-1 65 0.008897 4.288 1 1 +57526 PCDH19 protocadherin 19 X protein-coding EFMR|EIEE9 protocadherin-19 134 0.01834 5.079 1 1 +57528 KCTD16 potassium channel tetramerization domain containing 16 5 protein-coding - BTB/POZ domain-containing protein KCTD16|potassium channel tetramerisation domain containing 16|potassium channel tetramerization domain-containing protein 16 53 0.007254 2.701 1 1 +57529 RGAG1 retrotransposon gag domain containing 1 X protein-coding MAR9|MART9 retrotransposon gag domain-containing protein 1|tumor antigen BJ-HCC-23|tumor antigen BJHCC23 113 0.01547 2.471 1 1 +57530 CGN cingulin 1 protein-coding - cingulin 67 0.009171 9.225 1 1 +57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 6 protein-coding SPPRS E3 ubiquitin-protein ligase HACE1 68 0.009307 7.652 1 1 +57532 NUFIP2 NUFIP2, FMR1 interacting protein 2 17 protein-coding 182-FIP|82-FIP|FIP-82|PIG1 nuclear fragile X mental retardation-interacting protein 2|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 protein interacting protein 2|proliferation-inducing gene 1 39 0.005338 11.11 1 1 +57533 TBC1D14 TBC1 domain family member 14 4 protein-coding - TBC1 domain family member 14 51 0.006981 10.79 1 1 +57534 MIB1 mindbomb E3 ubiquitin protein ligase 1 18 protein-coding DIP-1|DIP1|LVNC7|MIB|ZZANK2|ZZZ6 E3 ubiquitin-protein ligase MIB1|DAPK-interacting protein 1|ubiquitin ligase mind bomb|zinc finger ZZ type with ankyrin repeat domain protein 2 68 0.009307 10.27 1 1 +57535 KIAA1324 KIAA1324 1 protein-coding EIG121 UPF0577 protein KIAA1324|estrogen-induced gene 121 protein|maba1 54 0.007391 7.897 1 1 +57536 KIAA1328 KIAA1328 18 protein-coding - protein hinderin|hinderin 41 0.005612 6.537 1 1 +57537 SORCS2 sortilin related VPS10 domain containing receptor 2 4 protein-coding - VPS10 domain-containing receptor SorCS2|VPS10 domain receptor protein 57 0.007802 6.938 1 1 +57538 ALPK3 alpha kinase 3 15 protein-coding MAK|MIDORI alpha-protein kinase 3|muscle alpha-kinase|muscle alpha-protein kinase|myocyte induction differentiation originator 115 0.01574 7.886 1 1 +57539 WDR35 WD repeat domain 35 2 protein-coding CED2|IFT121|IFTA1|SRTD7 WD repeat-containing protein 35|intraflagellar transport protein 121 homolog|naofen 81 0.01109 8.561 1 1 +57540 DISP3 dispatched RND transporter family member 3 1 protein-coding PTCHD2 protein dispatched homolog 3|dispatched 3|dispatched homolog 3|patched domain containing 2|patched domain-containing protein 2 169 0.02313 3.614 1 1 +57541 ZNF398 zinc finger protein 398 7 protein-coding P51|P71|ZER6 zinc finger protein 398|zinc finger DNA binding protein ZER6|zinc finger DNA binding protein p52/p71|zinc finger-estrogen receptor interaction, clone 6 47 0.006433 8.768 1 1 +57542 KLHL42 kelch like family member 42 12 protein-coding Ctb9|KLHDC5 kelch-like protein 42|cullin-3-binding protein 9|kelch domain containing 5|kelch domain-containing protein 5 35 0.004791 9.519 1 1 +57544 TXNDC16 thioredoxin domain containing 16 14 protein-coding ERp90|KIAA1344 thioredoxin domain-containing protein 16 59 0.008076 8.132 1 1 +57545 CC2D2A coiled-coil and C2 domain containing 2A 4 protein-coding JBTS9|MKS6 coiled-coil and C2 domain-containing protein 2A 74 0.01013 7.904 1 1 +57546 PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 16 protein-coding PDPC 2|PPM2B|PPM2C2 [Pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 2, mitochondrial|protein phosphatase 2C, magnesium-dependent, catalytic subunit 2|protein phosphatase, Mg2+/Mn2+ dependent 2B|pyruvate dehydrogenase phosphatase isoenzyme 2 26 0.003559 6.975 1 1 +57547 ZNF624 zinc finger protein 624 17 protein-coding - zinc finger protein 624 52 0.007117 6.445 1 1 +57549 IGSF9 immunoglobulin superfamily member 9 1 protein-coding FP18798|IGSF9A|Nrt1 protein turtle homolog A|immunoglobulin superfamily member 9A 80 0.01095 7.544 1 1 +57551 TAOK1 TAO kinase 1 17 protein-coding KFC-B|MAP3K16|MARKK|PSK-2|PSK2|TAO1|hKFC-B|hTAOK1 serine/threonine-protein kinase TAO1|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|thousand and one amino acid protein 1|thousand and one amino acid protein kinase 1 73 0.009992 7.869 1 1 +57552 NCEH1 neutral cholesterol ester hydrolase 1 3 protein-coding AADACL1|NCEH neutral cholesterol ester hydrolase 1|arylacetamide deacetylase-like 1 30 0.004106 9.014 1 1 +57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 22 protein-coding MICAL-3 protein-methionine sulfoxide oxidase MICAL3|flavoprotein oxidoreductase MICAL3|molecule interacting with CasL protein 3|protein MICAL-3 129 0.01766 10.16 1 1 +57554 LRRC7 leucine rich repeat containing 7 1 protein-coding DENSIN leucine-rich repeat-containing protein 7|densin-180 253 0.03463 2.139 1 1 +57555 NLGN2 neuroligin 2 17 protein-coding - neuroligin-2 53 0.007254 9.255 1 1 +57556 SEMA6A semaphorin 6A 5 protein-coding HT018|SEMA|SEMA6A1|SEMAQ|VIA semaphorin-6A|SEMA6A-1|sema VIa|sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A|semaphorin 6A-1|semaphorin VIA 83 0.01136 8.689 1 1 +57558 USP35 ubiquitin specific peptidase 35 11 protein-coding - ubiquitin carboxyl-terminal hydrolase 35|deubiquitinating enzyme 35|ubiquitin specific protease 35|ubiquitin thioesterase 35|ubiquitin thiolesterase 35|ubiquitin-specific-processing protease 35 72 0.009855 7.647 1 1 +57559 STAMBPL1 STAM binding protein like 1 10 protein-coding ALMalpha|AMSH-FP|AMSH-LP|bA399O19.2 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 33 0.004517 6.919 1 1 +57560 IFT80 intraflagellar transport 80 3 protein-coding ATD2|SRTD2|WDR56 intraflagellar transport protein 80 homolog|WD repeat domain 56|WD repeat-containing protein 56|intraflagellar transport 80 homolog 44 0.006022 8.976 1 1 +57561 ARRDC3 arrestin domain containing 3 5 protein-coding TLIMP arrestin domain-containing protein 3|TBP-2-like inducible membrane protein|alpha-arrestin 3 38 0.005201 10.66 1 1 +57562 CEP126 centrosomal protein 126 11 protein-coding KIAA1377 centrosomal protein of 126 kDa|centrosomal protein 126kDa 99 0.01355 6.511 1 1 +57563 KLHL8 kelch like family member 8 4 protein-coding - kelch-like protein 8|kelch-like 8 44 0.006022 8.327 1 1 +57565 KLHL14 kelch like family member 14 18 protein-coding - kelch-like protein 14|kelch-like 14|printor|protein interactor of Torsin-1A 86 0.01177 3.53 1 1 +57567 ZNF319 zinc finger protein 319 16 protein-coding ZFP319 zinc finger protein 319 29 0.003969 8.448 1 1 +57568 SIPA1L2 signal induced proliferation associated 1 like 2 1 protein-coding SPAL2 signal-induced proliferation-associated 1-like protein 2|SIPA1-like protein 2|SPA-1-like 2 167 0.02286 9.547 1 1 +57569 ARHGAP20 Rho GTPase activating protein 20 11 protein-coding RARHOGAP rho GTPase-activating protein 20|RA and RhoGAP domain containing protein|rho GTPase activating protein 20 variant 2|rho-type GTPase-activating protein 20 78 0.01068 5.397 1 1 +57570 TRMT5 tRNA methyltransferase 5 14 protein-coding COXPD26|KIAA1393|TRM5 tRNA (guanine(37)-N1)-methyltransferase|M1G-methyltransferase|TRM5 tRNA methyltransferase 5 homolog|tRNA (guanine-N(1)-)-methyltransferase|tRNA [GM37] methyltransferase|tRNA-N1G37 methyltransferase 27 0.003696 8.764 1 1 +57571 CARNS1 carnosine synthase 1 11 protein-coding ATPGD1 carnosine synthase 1|ATP-grasp domain containing 1|ATP-grasp domain-containing protein 1 47 0.006433 5.546 1 1 +57572 DOCK6 dedicator of cytokinesis 6 19 protein-coding AOS2|ZIR1 dedicator of cytokinesis protein 6 91 0.01246 9.776 1 1 +57573 ZNF471 zinc finger protein 471 19 protein-coding ERP1|Z1971 zinc finger protein 471|EZFIT-related protein 1 67 0.009171 5.932 1 1 +57574 MARCH4 membrane associated ring-CH-type finger 4 2 protein-coding MARCH-IV|RNF174 E3 ubiquitin-protein ligase MARCH4|RING finger protein 174|membrane associated ring finger 4|membrane-associated RING finger protein 4|membrane-associated RING-CH protein IV|membrane-associated ring finger (C3HC4) 4, E3 ubiquitin protein ligase 47 0.006433 3.266 1 1 +57575 PCDH10 protocadherin 10 4 protein-coding OL-PCDH|PCDH19 protocadherin-10 251 0.03436 4.206 1 1 +57576 KIF17 kinesin family member 17 1 protein-coding KIF17B|KIF3X|KLP-2|OSM-3 kinesin-like protein KIF17|KIF17 variant protein|KIF3-related motor protein 82 0.01122 5.044 1 1 +57577 CCDC191 coiled-coil domain containing 191 3 protein-coding KIAA1407 coiled-coil domain-containing protein 191 77 0.01054 7.19 1 1 +57578 UNC79 unc-79 homolog (C. elegans) 14 protein-coding KIAA1409 protein unc-79 homolog 245 0.03353 3.426 1 1 +57579 FAM135A family with sequence similarity 135 member A 6 protein-coding KIAA1411 protein FAM135A 76 0.0104 8.406 1 1 +57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 20 protein-coding P-REX1 phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 1 protein|PIP3 dependent Rac exchange factor 1|ptdIns(3,4,5)-dependent Rac exchanger 1 162 0.02217 10.1 1 1 +57582 KCNT1 potassium sodium-activated channel subfamily T member 1 9 protein-coding EIEE14|ENFL5|KCa4.1|SLACK|Slo2.2|bA100C15.2 potassium channel subfamily T member 1|Sequence like a calcium-activated K+ channel|potassium channel, sodium activated subfamily T, member 1|potassium channel, subfamily T, member 1 96 0.01314 2.13 1 1 +57583 TMEM181 transmembrane protein 181 6 protein-coding GPR178|KIAA1423 transmembrane protein 181|G protein-coupled receptor 178 27 0.003696 10.17 1 1 +57584 ARHGAP21 Rho GTPase activating protein 21 10 protein-coding ARHGAP10 rho GTPase-activating protein 21|Rho-GTPase activating protein 10|rho GTPase-activating protein 10|rho-type GTPase-activating protein 21 120 0.01642 10.57 1 1 +57585 CRAMP1 cramped chromatin regulator homolog 1 16 protein-coding CRAMP1L|HN1L|TCE4 protein cramped-like|Crm, cramped-like|T-complex expressed gene 4|hematological and neurological expressed 1-like protein 47 0.006433 9.383 1 1 +57586 SYT13 synaptotagmin 13 11 protein-coding - synaptotagmin-13|synaptotagmin XIII|sytXIII 36 0.004927 5.982 1 1 +57587 CFAP97 cilia and flagella associated protein 97 4 protein-coding KIAA1430|hmw cilia- and flagella-associated protein 97 22 0.003011 9.726 1 1 +57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 9 protein-coding CIP150|KIAA1432|bA207C16.1 RAB6A-GEF complex partner protein 1|RAB6A GEF complex partner 1|connexin 43-interacting protein 150 kDa|connexin-43-interacting protein of 150 kDa|protein RIC1 homolog 78 0.01068 8.997 1 1 +57590 WDFY1 WD repeat and FYVE domain containing 1 2 protein-coding FENS-1|WDF1|ZFYVE17 WD repeat and FYVE domain-containing protein 1|WD40- and FYVE domain-containing protein 1|phosphoinositide-binding protein SR1|zinc finger FYVE domain-containing protein 17 33 0.004517 10.2 1 1 +57591 MKL1 megakaryoblastic leukemia (translocation) 1 22 protein-coding BSAC|MAL|MRTF-A MKL/myocardin-like protein 1|basic, SAP and coiled-coil domain|megakaryoblastic leukemia 1 protein|megakaryocytic acute leukemia protein|myocardin-related transcription factor A 63 0.008623 10.03 1 1 +57592 ZNF687 zinc finger protein 687 1 protein-coding PDB6 zinc finger protein 687 77 0.01054 10.01 1 1 +57593 EBF4 early B-cell factor 4 20 protein-coding COE4|O/E-4 transcription factor COE4|OE-4|olf-1/EBF-like 4 20 0.002737 7.865 1 1 +57594 HOMEZ homeobox and leucine zipper encoding 14 protein-coding KIAA1443 homeobox and leucine zipper protein Homez|homeodomain leucine zipper-containing factor 49 0.006707 8.497 1 1 +57595 PDZD4 PDZ domain containing 4 X protein-coding LNX5|LU1|PDZK4|PDZRN4L PDZ domain-containing protein 4|PDZ domain-containing RING finger protein 4-like protein 59 0.008076 6.391 1 1 +57596 BEGAIN brain enriched guanylate kinase associated 14 protein-coding - brain-enriched guanylate kinase-associated protein|brain-enriched guanylate kinase-associated homolog 38 0.005201 4.576 1 1 +57597 BAHCC1 BAH domain and coiled-coil containing 1 17 protein-coding BAHD2 BAH and coiled-coil domain-containing protein 1|BAH domain-containing protein 2|bromo adjacent homology domain-containing protein 2 29 0.003969 8.736 1 1 +57599 WDR48 WD repeat domain 48 3 protein-coding P80|SPG60|UAF1 WD repeat-containing protein 48|USP1 associated factor 1|WD repeat endosomal protein|testicular tissue protein Li 224 35 0.004791 9.855 1 1 +57600 FNIP2 folliculin interacting protein 2 4 protein-coding FNIPL|MAPO1 folliculin-interacting protein 2|FNIP1-like protein|O6-methylguanine-induced apoptosis 1 protein 62 0.008486 8.674 1 1 +57602 USP36 ubiquitin specific peptidase 36 17 protein-coding DUB1 ubiquitin carboxyl-terminal hydrolase 36|deubiquitinating enzyme 36|ubiquitin specific protease 36|ubiquitin thioesterase 36|ubiquitin-specific-processing protease 36 72 0.009855 10.2 1 1 +57604 KIAA1456 KIAA1456 8 protein-coding C8orf79|TRM9L probable tRNA methyltransferase 9-like protein 31 0.004243 5.657 1 1 +57605 PITPNM2 phosphatidylinositol transfer protein membrane associated 2 12 protein-coding NIR-3|NIR3|RDGB2|RDGBA2 membrane-associated phosphatidylinositol transfer protein 2|PYK2 N-terminal domain-interacting receptor 3|retinal degeneration B alpha 2 70 0.009581 8.296 1 1 +57606 SLAIN2 SLAIN motif family member 2 4 protein-coding KIAA1458 SLAIN motif-containing protein 2 35 0.004791 10.13 1 1 +57608 KIAA1462 KIAA1462 10 protein-coding JCAD junctional protein associated with coronary artery disease 128 0.01752 9.404 1 1 +57609 DIP2B disco interacting protein 2 homolog B 12 protein-coding - disco-interacting protein 2 homolog B|DIP2 disco-interacting protein 2 homolog B 89 0.01218 10.37 1 1 +57610 RANBP10 RAN binding protein 10 16 protein-coding - ran-binding protein 10 44 0.006022 9.285 1 1 +57611 ISLR2 immunoglobulin superfamily containing leucine rich repeat 2 15 protein-coding LINX immunoglobulin superfamily containing leucine-rich repeat protein 2|leucine-rich repeat domain and immunoglobulin domain-containing axon extension protein 55 0.007528 4.75 1 1 +57613 FAM234B family with sequence similarity 234 member B 12 protein-coding KIAA1467 protein FAM234B 49 0.006707 8.254 1 1 +57614 KIAA1468 KIAA1468 18 protein-coding HsT3308|HsT885 lisH domain and HEAT repeat-containing protein KIAA1468 69 0.009444 9.276 1 1 +57615 ZNF492 zinc finger protein 492 19 protein-coding ZNF115 zinc finger protein 492|zinc finger protein 115 (Y20) 70 0.009581 2.366 1 1 +57616 TSHZ3 teashirt zinc finger homeobox 3 19 protein-coding TSH3|ZNF537 teashirt homolog 3|teashirt family zinc finger 3|zinc finger protein 537 222 0.03039 7.643 1 1 +57617 VPS18 VPS18, CORVET/HOPS core subunit 15 protein-coding PEP3 vacuolar protein sorting-associated protein 18 homolog|hVPS18|vacuolar protein sorting 18 homolog|vacuolar protein sorting protein 18 44 0.006022 9.807 1 1 +57619 SHROOM3 shroom family member 3 4 protein-coding APXL3|MSTP013|SHRM|ShrmL protein Shroom3|F-actin-binding protein|shroom-related protein 123 0.01684 9.527 1 1 +57620 STIM2 stromal interaction molecule 2 4 protein-coding - stromal interaction molecule 2 35 0.004791 9.044 1 1 +57621 ZBTB2 zinc finger and BTB domain containing 2 6 protein-coding ZNF437 zinc finger and BTB domain-containing protein 2 39 0.005338 8.737 1 1 +57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 19 protein-coding SALM2 leucine-rich repeat and fibronectin type III domain-containing protein 1|CTC-246B18.8|synaptic adhesion-like molecule 2 55 0.007528 6.16 1 1 +57623 ZFAT zinc finger and AT-hook domain containing 8 protein-coding AITD3|ZFAT1|ZNF406 zinc finger protein ZFAT|zinc finger gene in autoimmune thyroid disease|zinc finger protein 406|zinc-finger gene in AITD susceptibility region 108 0.01478 8.017 1 1 +57624 NYAP2 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 2 protein-coding KIAA1486 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 2 119 0.01629 1.324 1 1 +57626 KLHL1 kelch like family member 1 13 protein-coding MRP2 kelch-like protein 1|Mayven-related protein 2 146 0.01998 0.538 1 1 +57628 DPP10 dipeptidyl peptidase like 10 2 protein-coding DPL2|DPPY|DPRP-3|DPRP3 inactive dipeptidyl peptidase 10|DPP X|dipeptidyl peptidase 10|dipeptidyl peptidase IV-related protein 3|dipeptidyl peptidase X|dipeptidyl peptidase-like protein 2|dipeptidyl-peptidase 10 (inactive)|dipeptidyl-peptidase 10 (non-functional) 167 0.02286 2.552 1 1 +57630 SH3RF1 SH3 domain containing ring finger 1 4 protein-coding POSH|RNF142|SH3MD2 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 53 0.007254 9.314 1 1 +57631 LRCH2 leucine rich repeats and calponin homology domain containing 2 X protein-coding dA204F4.4 leucine-rich repeat and calponin homology domain-containing protein 2|leucine-rich repeats and calponin homology (CH) domain containing 2 62 0.008486 5.573 1 1 +57633 LRRN1 leucine rich repeat neuronal 1 3 protein-coding FIGLER3|NLRR-1 leucine-rich repeat neuronal protein 1|fibronectin type III, immunoglobulin and leucine rich repeat domains 3|neuronal leucine-rich repeat protein 1 75 0.01027 6.51 1 1 +57634 EP400 E1A binding protein p400 12 protein-coding CAGH32|P400|TNRC12 E1A-binding protein p400|CAG repeat protein 32|domino homolog|hDomino|p400 SWI2/SNF2-related protein|p400 kDa SWI2/SNF2-related protein|trinucleotide repeat containing 12|trinucleotide repeat-containing gene 12 protein 236 0.0323 10.47 1 1 +57636 ARHGAP23 Rho GTPase activating protein 23 17 protein-coding - rho GTPase-activating protein 23|rho-type GTPase-activating protein 23 27 0.003696 9.879 1 1 +57639 CCDC146 coiled-coil domain containing 146 7 protein-coding - coiled-coil domain-containing protein 146 69 0.009444 6.961 1 1 +57642 COL20A1 collagen type XX alpha 1 chain 20 protein-coding bA261N11.4 collagen alpha-1(XX) chain|collagen, type XX, alpha 1|collagen-like protein 107 0.01465 1.34 1 1 +57643 ZSWIM5 zinc finger SWIM-type containing 5 1 protein-coding - zinc finger SWIM domain-containing protein 5|zinc finger, SWIM domain containing 5 66 0.009034 7.008 1 1 +57644 MYH7B myosin heavy chain 7B 20 protein-coding MHC14|MYH14 myosin-7B|U937-associated antigen|antigen MLAA-21|myosin heavy chain 7B, cardiac muscle beta isoform|myosin, heavy chain 7B, cardiac muscle, beta|myosin, heavy polypeptide 7B, cardiac muscle, beta|slow A MYH14 143 0.01957 3.978 1 1 +57645 POGK pogo transposable element with KRAB domain 1 protein-coding BASS2|KRBOX2|LST003 pogo transposable element with KRAB domain|KRAB box domain containing 2 34 0.004654 10.57 1 1 +57646 USP28 ubiquitin specific peptidase 28 11 protein-coding - ubiquitin carboxyl-terminal hydrolase 28|deubiquitinating enzyme 28|ubiquitin carboxyl-terminal hydrolase 28 variant 1|ubiquitin specific protease 28|ubiquitin thioesterase 28|ubiquitin thiolesterase 28|ubiquitin-specific-processing protease 28 100 0.01369 8.9 1 1 +57647 DHX37 DEAH-box helicase 37 12 protein-coding DDX37 probable ATP-dependent RNA helicase DHX37|DEAD/DEAH box helicase DDX37|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 37|DEAH (Asp-Glu-Ala-His) box polypeptide 37|DEAH box protein 37 98 0.01341 9.256 1 1 +57648 KIAA1522 KIAA1522 1 protein-coding - uncharacterized protein KIAA1522 98 0.01341 11.4 1 1 +57649 PHF12 PHD finger protein 12 17 protein-coding PF1 PHD finger protein 12|PHD factor 1|PHD zinc finger transcription factor 55 0.007528 10.14 1 1 +57650 KIAA1524 KIAA1524 3 protein-coding CIP2A|p90 protein CIP2A|cancerous inhibitor of PP2A|cancerous inhibitor of protein phosphatase 2A|p90 autoantigen 66 0.009034 7.149 1 1 +57653 LOC100499484-C9ORF174 LOC100499484-C9orf174 readthrough 9 ncRNA - Behcet's Disease Associated Gene 1 5.869 0 1 +57654 UVSSA UV stimulated scaffold protein A 4 protein-coding KIAA1530|UVSS3 UV-stimulated scaffold protein A 59 0.008076 7.471 1 1 +57655 GRAMD1A GRAM domain containing 1A 19 protein-coding KIAA1533 GRAM domain-containing protein 1A 45 0.006159 10.49 1 1 +57657 HCN3 hyperpolarization activated cyclic nucleotide gated potassium channel 3 1 protein-coding - potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 3 55 0.007528 6.804 1 1 +57658 CALCOCO1 calcium binding and coiled-coil domain 1 12 protein-coding Cocoa|PP13275|calphoglin 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 41 0.005612 10.55 1 1 +57659 ZBTB4 zinc finger and BTB domain containing 4 17 protein-coding KAISO-L1|ZNF903 zinc finger and BTB domain-containing protein 4|KAISO-like zinc finger protein 1 60 0.008212 11.03 1 1 +57661 PHRF1 PHD and ring finger domains 1 11 protein-coding PPP1R125|RNF221 PHD and RING finger domain-containing protein 1|CTD-binding SR-like protein rA9|protein phosphatase 1, regulatory subunit 125 124 0.01697 10.23 1 1 +57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 19 protein-coding KIAA1543|NEZHA|PPP1R80 calmodulin-regulated spectrin-associated protein 3|protein phosphatase 1, regulatory subunit 80 61 0.008349 8.796 1 1 +57663 USP29 ubiquitin specific peptidase 29 19 protein-coding HOM-TES-84/86 ubiquitin carboxyl-terminal hydrolase 29|deubiquitinating enzyme 29|ubiquitin thioesterase 29|ubiquitin thiolesterase 29|ubiquitin-specific processing protease|ubiquitin-specific-processing protease 29 139 0.01903 0.1092 1 1 +57664 PLEKHA4 pleckstrin homology domain containing A4 19 protein-coding PEPP1 pleckstrin homology domain-containing family A member 4|PEPP-1|PH domain-containing family A member 4|phosphoinositol 3-phosphate binding protein-1|phosphoinositol 3-phosphate-binding PH domain protein 1|pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 57 0.007802 9.092 1 1 +57665 RDH14 retinol dehydrogenase 14 (all-trans/9-cis/11-cis) 2 protein-coding PAN2|SDR7C4 retinol dehydrogenase 14|alcohol dehydrogenase PAN2|pancreas protein 2|retinol dehydrogenase 14 (all-trans and 9-cis)|short chain dehydrogenase/reductase family 7C member 4 10 0.001369 8.603 1 1 +57666 FBRSL1 fibrosin like 1 12 protein-coding - fibrosin-1-like protein|AUTS2-like protein|HBV X-transactivated gene 9 protein|HBV XAg-transactivated protein 9 18 0.002464 9.456 1 1 +57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 2 protein-coding BE37|YMO1|YRT band 4.1-like protein 5|yurt homolog 62 0.008486 8.818 1 1 +57670 KIAA1549 KIAA1549 7 protein-coding - UPF0606 protein KIAA1549 146 0.01998 8.265 1 1 +57673 BEND3 BEN domain containing 3 6 protein-coding KIAA1553 BEN domain-containing protein 3 68 0.009307 7.314 1 1 +57674 RNF213 ring finger protein 213 17 protein-coding ALO17|C17orf27|KIAA1618|MYMY2|MYSTR|NET57 E3 ubiquitin-protein ligase RNF213|ALK lymphoma oligomerization partner on chromosome 17|mysterin 252 0.03449 11.93 1 1 +57677 ZFP14 ZFP14 zinc finger protein 19 protein-coding ZNF531 zinc finger protein 14 homolog|zinc finger protein 531 51 0.006981 7.411 1 1 +57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial 10 protein-coding GPAT|GPAT1 glycerol-3-phosphate acyltransferase 1, mitochondrial|GPAT-1 59 0.008076 8.726 1 1 +57679 ALS2 ALS2, alsin Rho guanine nucleotide exchange factor 2 protein-coding ALS2CR6|ALSJ|IAHSP|PLSJ alsin|amyotrophic lateral sclerosis 2 (juvenile)|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 6 protein|amyotrophic lateral sclerosis 2 protein 86 0.01177 9.101 1 1 +57680 CHD8 chromodomain helicase DNA binding protein 8 14 protein-coding AUTS18|HELSNF1 chromodomain-helicase-DNA-binding protein 8|ATP-dependent helicase CHD8|axis duplication inhibitor|duplin|helicase with SNF2 domain 1 162 0.02217 10.69 1 1 +57683 ZDBF2 zinc finger DBF-type containing 2 2 protein-coding - DBF4-type zinc finger-containing protein 2 202 0.02765 6.975 1 1 +57684 ZBTB26 zinc finger and BTB domain containing 26 9 protein-coding ZNF481|bioref zinc finger and BTB domain-containing protein 26|zinc finger protein 481|zinc finger protein 483|zinc finger protein Bioref 19 0.002601 6.042 1 1 +57685 CACHD1 cache domain containing 1 1 protein-coding - VWFA and cache domain-containing protein 1|cache domain-containing protein 1|von Willebrand factor type A and cache domain containing 1 98 0.01341 7.859 1 1 +57687 VAT1L vesicle amine transport 1 like 16 protein-coding - synaptic vesicle membrane protein VAT-1 homolog-like|vesicle amine transport protein 1 homolog (T. californica)-like|vesicle amine transport protein 1 homolog-like (T. californica) 45 0.006159 4.921 1 1 +57688 ZSWIM6 zinc finger SWIM-type containing 6 5 protein-coding AFND zinc finger SWIM domain-containing protein 6|zinc finger, SWIM domain containing 6 38 0.005201 8.568 1 1 +57689 LRRC4C leucine rich repeat containing 4C 11 protein-coding NGL-1|NGL1 leucine-rich repeat-containing protein 4C|netrin-G1 ligand 148 0.02026 4.334 1 1 +57690 TNRC6C trinucleotide repeat containing 6C 17 protein-coding - trinucleotide repeat-containing gene 6C protein 91 0.01246 8.868 1 1 +57691 KIAA1586 KIAA1586 6 protein-coding - E3 SUMO-protein ligase KIAA1586 49 0.006707 7.157 1 1 +57692 MAGEE1 MAGE family member E1 X protein-coding DAMAGE|HCA1 melanoma-associated antigen E1|MAGE-E1 antigen|alpha-dystrobrevin-associated MAGE Protein|dystrobrevin-associated MAGE protein|hepatocellular carcinoma-associated HCA1|hepatocellular carcinoma-associated protein 1|melanoma antigen family E, 1|melanoma antigen family E1 101 0.01382 6.615 1 1 +57693 ZNF317 zinc finger protein 317 19 protein-coding - zinc finger protein 317|KRAB-containing zinc finger protein 317 43 0.005886 9.49 1 1 +57695 USP37 ubiquitin specific peptidase 37 2 protein-coding - ubiquitin carboxyl-terminal hydrolase 37|deubiquitinating enzyme 37|tmp_locus_50|ubiquitin specific protease 37|ubiquitin thioesterase 37|ubiquitin thiolesterase 37|ubiquitin-specific-processing protease 37 65 0.008897 8.814 1 1 +57696 DDX55 DEAD-box helicase 55 12 protein-coding - ATP-dependent RNA helicase DDX55|DEAD (Asp-Glu-Ala-Asp) box polypeptide 55|DEAD box protein 55 45 0.006159 8.824 1 1 +57697 FANCM Fanconi anemia complementation group M 14 protein-coding FAAP250|KIAA1596 Fanconi anemia group M protein|ATP-dependent RNA helicase FANCM|fanconi anemia-associated polypeptide of 250 kDa|protein Hef ortholog 159 0.02176 6.78 1 1 +57698 SHTN1 shootin 1 10 protein-coding KIAA1598|shootin-1 shootin-1|shootin1 35 0.004791 9.853 1 1 +57699 CPNE5 copine 5 6 protein-coding COPN5|CPN5 copine-5|copine V 36 0.004927 6.57 1 1 +57700 FAM160B1 family with sequence similarity 160 member B1 10 protein-coding KIAA1600|bA106M7.3 protein FAM160B1 53 0.007254 9.19 1 1 +57701 NCKAP5L NCK associated protein 5 like 12 protein-coding Cep169|FP1193|KIAA1602 nck-associated protein 5-like|NCKAP5-like|centrosomal protein of 169 kDa 71 0.009718 9.213 1 1 +57703 CWC22 CWC22 spliceosome associated protein homolog 2 protein-coding EIF4GL|NCM|fSAPb pre-mRNA-splicing factor CWC22 homolog|CWC22 homolog, spliceosome-associated protein|CWC22 spliceosome-associated protein|functional spliceosome-associated protein b|nucampholin homolog 59 0.008076 9.153 1 1 +57704 GBA2 glucosylceramidase beta 2 9 protein-coding AD035|NLGase|SPG46 non-lysosomal glucosylceramidase|beta-glucocerebrosidase 2|glucosidase, beta (bile acid) 2|glucosylceramidase 2 47 0.006433 10.12 1 1 +57705 WDFY4 WDFY family member 4 10 protein-coding C10orf64 WD repeat- and FYVE domain-containing protein 4 103 0.0141 6.967 1 1 +57706 DENND1A DENN domain containing 1A 9 protein-coding FAM31A|KIAA1608 DENN domain-containing protein 1A|DENN/MADD domain containing 1A|connecdenn 1 60 0.008212 9.573 1 1 +57707 TLDC1 TBC/LysM-associated domain containing 1 16 protein-coding KIAA1609 TLD domain-containing protein 1|TBC/LysM-associated domain-containing protein 1|TLD domain containing 1 40 0.005475 8.57 1 1 +57708 MIER1 MIER1 transcriptional regulator 1 protein-coding ER1|MI-ER1 mesoderm induction early response protein 1|mesoderm induction early response 1 homolog|mesoderm induction early response 1, transcriptional regulator 47 0.006433 9.72 1 1 +57709 SLC7A14 solute carrier family 7 member 14 3 protein-coding PPP1R142 probable cationic amino acid transporter|protein phosphatase 1, regulatory subunit 142|solute carrier family 7 (cationic amino acid transporter, y+ system), member 14|solute carrier family 7 (orphan transporter), member 14 84 0.0115 1.889 1 1 +57710 KIAA1614 KIAA1614 1 protein-coding - uncharacterized protein KIAA1614 81 0.01109 5.691 1 1 +57711 ZNF529 zinc finger protein 529 19 protein-coding - zinc finger protein 529 34 0.004654 8.137 1 1 +57713 SFMBT2 Scm-like with four mbt domains 2 10 protein-coding - scm-like with four MBT domains protein 2|Scm-related gene containing four mbt domains 2|scm-like with 4 MBT domains protein 2 117 0.01601 5.521 1 1 +57714 8.788 0 1 +57715 SEMA4G semaphorin 4G 10 protein-coding - semaphorin-4G|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G 45 0.006159 7.664 1 1 +57716 PRX periaxin 19 protein-coding CMT4F periaxin 93 0.01273 7.141 1 1 +57717 PCDHB16 protocadherin beta 16 5 protein-coding ME1|PCDH-BETA16|PCDH3X|PCDHB8a protocadherin beta-16|cadherin ME1|protocadherin beta 8a|protocadherin-3x 116 0.01588 6.498 1 1 +57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 14 protein-coding CFAP14|KIAA1622|PP4R4 serine/threonine-protein phosphatase 4 regulatory subunit 4|HEAT-like repeat-containing protein|cilia and flagella associated protein 14 67 0.009171 3.719 1 1 +57719 ANO8 anoctamin 8 19 protein-coding KIAA1623|TMEM16H anoctamin-8|transmembrane protein 16H 60 0.008212 8.108 1 1 +57720 GPR107 G protein-coupled receptor 107 9 protein-coding GCDRP|LUSTR1|bA138E2.2 protein GPR107|lung seven transmembrane receptor 1 35 0.004791 11.33 1 1 +57721 METTL14 methyltransferase like 14 4 protein-coding - N6-adenosine-methyltransferase subunit METTL14|methyltransferase-like protein 14 35 0.004791 7.996 1 1 +57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 15 protein-coding DDM36|NOPE immunoglobulin superfamily DCC subclass member 4|likely ortholog of mouse neighbor of Punc E11|neighbor of Punc E11 100 0.01369 6.207 1 1 +57724 EPG5 ectopic P-granules autophagy protein 5 homolog 18 protein-coding HEEW1|KIAA1632|VICIS ectopic P granules protein 5 homolog 154 0.02108 9.509 1 1 +57727 NCOA5 nuclear receptor coactivator 5 20 protein-coding CIA|bA465L10.6 nuclear receptor coactivator 5|NCoA-5|coactivator independent of AF-2 49 0.006707 10.05 1 1 +57728 WDR19 WD repeat domain 19 4 protein-coding ATD5|CED4|DYF-2|IFT144|NPHP13|ORF26|Oseg6|PWDMP|SRTD5 WD repeat-containing protein 19|WD repeat membrane protein PWDMP|intraflagellar transport 144 homolog 68 0.009307 8.466 1 1 +57730 ANKRD36B ankyrin repeat domain 36B 2 protein-coding KIAA1641 ankyrin repeat domain-containing protein 36B|CLL-associated antigen KW-1|melanoma-associated antigen 54 0.007391 4.356 1 1 +57731 SPTBN4 spectrin beta, non-erythrocytic 4 19 protein-coding QV|SPNB4|SPTBN3 spectrin beta chain, non-erythrocytic 4|beta-IV spectrin|spectrin beta chain, brain 3|spectrin, non-erythroid beta chain 3 166 0.02272 5.376 1 1 +57732 ZFYVE28 zinc finger FYVE-type containing 28 4 protein-coding LST2|LYST2 lateral signaling target protein 2 homolog|hLst2|zinc finger FYVE domain-containing protein 28|zinc finger, FYVE domain containing 28 77 0.01054 7.336 1 1 +57733 GBA3 glucosylceramidase beta 3 (gene/pseudogene) 4 protein-coding CBG|CBGL1|GLUC|KLRP cytosolic beta-glucosidase|cytosolic beta-glucosidase-like protein 1|glucosidase, beta, acid 3 (cytosolic)|klotho-related protein 105 0.01437 2.262 1 1 +57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 11 protein-coding CEGB1|CEGF1|CEGP1 signal peptide, CUB and EGF-like domain-containing protein 2|signal peptide, CUB domain, EGF-like 2 73 0.009992 7.221 1 1 +57761 TRIB3 tribbles pseudokinase 3 20 protein-coding C20orf97|NIPK|SINK|SKIP3|TRB3 tribbles homolog 3|TRB-3|neuronal cell death inducible putative kinase|p65-interacting inhibitor of NF-kappa-B|p65-interacting inhibitor of NF-kappaB 29 0.003969 9.176 1 1 +57763 ANKRA2 ankyrin repeat family A member 2 5 protein-coding ANKRA ankyrin repeat family A protein 2|RFXANK-like protein 2|ankyrin repeat, family A (RFXANK-like), 2 15 0.002053 8.076 1 1 +57786 RBAK RB associated KRAB zinc finger 7 protein-coding ZNF769 RB-associated KRAB zinc finger protein|RB-associated KRAB repressor|zinc finger protein 769 58 0.007939 8.834 1 1 +57787 MARK4 microtubule affinity regulating kinase 4 19 protein-coding MARK4L|MARK4S|MARKL1|MARKL1L|PAR-1D MAP/microtubule affinity-regulating kinase 4|MAP/microtubule affinity-regulating kinase like 1|MARK4 serine/threonine protein kinase 57 0.007802 9.78 1 1 +57794 SUGP1 SURP and G-patch domain containing 1 19 protein-coding F23858|RBP|SF4 SURP and G-patch domain-containing protein 1|RNA-binding protein RBP|splicing factor 4 43 0.005886 9.292 1 1 +57795 BRINP2 BMP/retinoic acid inducible neural specific 2 1 protein-coding DBCCR1L2|FAM5B BMP/retinoic acid-inducible neural-specific protein 2|DBCCR1-like protein 2|DBCCR1-like2|bone morphogenetic protein/retinoic acid inducible neural-specific 2|bone morphogenic protein/retinoic acid inducible neural-specific 2|family with sequence similarity 5, member B|protein FAM5B 128 0.01752 2.934 1 1 +57798 GATAD1 GATA zinc finger domain containing 1 7 protein-coding CMD2B|ODAG|RG083M05.2 GATA zinc finger domain-containing protein 1|ocular development-associated gene protein 11 0.001506 9.864 1 1 +57799 RAB40C RAB40C, member RAS oncogene family 16 protein-coding RARL|RASL8C ras-related protein Rab-40C|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 27 0.003696 9.512 1 1 +57801 HES4 hes family bHLH transcription factor 4 1 protein-coding bHLHb42 transcription factor HES-4|bHLH factor Hes4|class B basic helix-loop-helix protein 42|hHES4|hairy and enhancer of split 4 9 0.001232 6.427 1 1 +57804 POLD4 DNA polymerase delta 4, accessory subunit 11 protein-coding POLDS|p12 DNA polymerase delta subunit 4|DNA polymerase delta smallest subunit p12|polymerase (DNA) delta 4, accessory subunit|polymerase (DNA-directed), delta 4, accessory subunit 6 0.0008212 10.39 1 1 +57805 CCAR2 cell cycle and apoptosis regulator 2 8 protein-coding DBC-1|DBC1|KIAA1967|NET35|p30 DBC|p30DBC cell cycle and apoptosis regulator protein 2|cell division cycle and apoptosis regulator protein 2|deleted in breast cancer 1|p30 DBC protein 51 0.006981 11.09 1 1 +57817 HAMP hepcidin antimicrobial peptide 19 protein-coding HEPC|HFE2B|LEAP1|PLTR hepcidin|liver-expressed antimicrobial peptide 1|putative liver tumor regressor 11 0.001506 3.575 1 1 +57818 G6PC2 glucose-6-phosphatase catalytic subunit 2 2 protein-coding IGRP glucose-6-phosphatase 2|G-6-Pase 2|G6Pase 2|glucose-6-phosphatase, catalytic, 2|islet-specific G6CP-related protein|islet-specific glucose-6-phosphatase catalytic subunit-related protein|islet-specific glucose-6-phosphatase-related protein 34 0.004654 0.7082 1 1 +57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated 6 protein-coding C6orf28|G7B|YBL026W|snRNP U6 snRNA-associated Sm-like protein LSm2|LSM2 U6 small nuclear RNA and mRNA degradation associated|LSM2 homolog, U6 small nuclear RNA associated|protein G7b|small nuclear ribonuclear protein D homolog|snRNP core Sm-like protein Sm-x5 5 0.0006844 9.444 1 1 +57820 CCNB1IP1 cyclin B1 interacting protein 1 14 protein-coding C14orf18|HEI10 E3 ubiquitin-protein ligase CCNB1IP1|cyclin B1 interacting protein 1, E3 ubiquitin protein ligase|human enhancer of invasion 10 26 0.003559 9.418 1 1 +57821 CCDC181 coiled-coil domain containing 181 1 protein-coding C1orf114 coiled-coil domain-containing protein 181 55 0.007528 3.511 1 1 +57822 GRHL3 grainyhead like transcription factor 3 1 protein-coding SOM|TFCP2L4|VWS2 grainyhead-like protein 3 homolog|sister of mammalian grainyhead|transcription factor CP2-like 4|transcription factor hSOM1 55 0.007528 5.519 1 1 +57823 SLAMF7 SLAM family member 7 1 protein-coding 19A|CD319|CRACC|CS1 SLAM family member 7|19A24 protein|CD2 subset 1|CD2-like receptor activating cytotoxic cells|membrane protein FOAP-12|novel LY9 (lymphocyte antigen 9) like protein|protein 19A 40 0.005475 7.04 1 1 +57824 HMHB1 histocompatibility minor HB-1 5 protein-coding HB-1|HB-1Y|HLA-HB1 minor histocompatibility protein HB-1|minor histocompatibility antigen HB-1 1 0.0001369 0.3211 1 1 +57826 RAP2C RAP2C, member of RAS oncogene family X protein-coding - ras-related protein Rap-2c|small GTPase RAP2C 18 0.002464 9.543 1 1 +57827 C6orf47 chromosome 6 open reading frame 47 6 protein-coding D6S53E|G4|NG34 uncharacterized protein C6orf47|protein G4 15 0.002053 9.519 1 1 +57828 CATSPERG cation channel sperm associated auxiliary subunit gamma 19 protein-coding C19orf15 cation channel sperm-associated protein subunit gamma|catsper channel auxiliary subunit gamma 64 0.00876 3.792 1 1 +57829 ZP4 zona pellucida glycoprotein 4 1 protein-coding ZBP|ZP1|ZPB|Zp-4 zona pellucida sperm-binding protein 4|zona pellucida protein B 107 0.01465 0.1901 1 1 +57830 KRTAP5-8 keratin associated protein 5-8 11 protein-coding KRTAP5-2|KRTAP5.8|UHSKerB keratin-associated protein 5-8|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|ultrahigh sulfur keratin-associated protein 5.8 20 0.002737 1.026 1 1 +57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 19 protein-coding CYPIVF11 phylloquinone omega-hydroxylase CYP4F11|3-hydroxy fatty acids omega-hydroxylase CYP4F11|cytochrome P450 4F11|cytochrome P450, family 4, subfamily F, polypeptide 11|cytochrome P450, subfamily IVF, polypeptide 11 53 0.007254 5.972 1 1 +57835 SLC4A5 solute carrier family 4 member 5 2 protein-coding NBC4|NBCe2 electrogenic sodium bicarbonate cotransporter 4|solute carrier family 4 (sodium bicarbonate cotransporter), member 5 74 0.01013 7.563 1 1 +57862 ZNF410 zinc finger protein 410 14 protein-coding APA-1|APA1 zinc finger protein 410|another partner for ARF 1|clones 23667 and 23775 zinc finger protein|zinc finger protein APA-1 20 0.002737 9.84 1 1 +57863 CADM3 cell adhesion molecule 3 1 protein-coding BIgR|IGSF4B|NECL1|Necl-1|TSLL1|synCAM3 cell adhesion molecule 3|TSLC1-like 1|TSLC1-like protein 1|brain immunoglobulin receptor|dendritic cell nectin-like protein 1 short isoform|immunoglobulin superfamily member 4B|nectin-like 1|nectin-like protein 1|synaptic cell adhesion molecule 3 53 0.007254 5.713 1 1 +57864 SLC46A2 solute carrier family 46 member 2 9 protein-coding Ly110|TSCOT thymic stromal cotransporter homolog|thymic stromal co-transporter 31 0.004243 3.001 1 1 +57876 MUC3B mucin 3B, cell surface associated 7 protein-coding MUC3|MUC3A mucin-3B|MUC-3B|intestinal mucin MUC3B|intestinal mucin-3B 2 0.0002737 1 0 +58155 PTBP2 polypyrimidine tract binding protein 2 1 protein-coding PTBLP|brPTB|nPTB polypyrimidine tract-binding protein 2|PTB-like protein|neural polypyrimidine tract binding protein|neurally-enriched homolog of PTB 49 0.006707 8.185 1 1 +58157 NGB neuroglobin 14 protein-coding - neuroglobin 12 0.001642 1.49 1 1 +58158 NEUROD4 neuronal differentiation 4 12 protein-coding ATH-3|ATH3|Atoh3|MATH-3|MATH3|bHLHa4 neurogenic differentiation factor 4|class A basic helix-loop-helix protein 4|neurogenic differentiation 4|protein atonal homolog 3 51 0.006981 0.6464 1 1 +58160 NFE4 nuclear factor, erythroid 4 7 protein-coding NF-E4 transcription factor NF-E4|fetal globin activator NF-E4|gamma-globin gene activator 0 0 1 0 +58189 WFDC1 WAP four-disulfide core domain 1 16 protein-coding PS20 WAP four-disulfide core domain protein 1|WAP four-disulfide core domain 1 homolog|prostate stromal protein ps20|ps20 growth inhibitor 14 0.001916 5.902 1 1 +58190 CTDSP1 CTD small phosphatase 1 2 protein-coding NIF3|NLI-IF|NLIIF|SCP1 carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 1|CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 1|NLI-interacting factor 3|nuclear LIM interactor-interacting factor 3|small C-terminal domain phosphatase 1 22 0.003011 11.47 1 1 +58191 CXCL16 C-X-C motif chemokine ligand 16 17 protein-coding CXCLG16|SR-PSOX|SRPSOX C-X-C motif chemokine 16|CXC chemokine ligand 16|chemokine (C-X-C motif) ligand 16|scavenger receptor for phosphatidylserine and oxidized low density lipoprotein|small-inducible cytokine B16|transmembrane chemokine CXCL16 12 0.001642 10.38 1 1 +58472 SQRDL sulfide quinone reductase-like (yeast) 15 protein-coding CGI-44|PRO1975|SQOR sulfide:quinone oxidoreductase, mitochondrial|sulfide dehydrogenase like 23 0.003148 10.09 1 1 +58473 PLEKHB1 pleckstrin homology domain containing B1 11 protein-coding KPL1|PHR1|PHRET1 pleckstrin homology domain-containing family B member 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 containing, family B (evectins) member 1|pleckstrin homology domain retinal protein 1 13 0.001779 8.25 1 1 +58475 MS4A7 membrane spanning 4-domains A7 11 protein-coding 4SPAN2|CD20L4|CFFM4|MS4A8 membrane-spanning 4-domains subfamily A member 7|CD20 antigen-like 4|CD20/Fc-epsilon-RI-beta family member 4|four-span transmembrane protein 2|high affinity immunoglobulin epsilon receptor beta subunit 26 0.003559 8.295 1 1 +58476 TP53INP2 tumor protein p53 inducible nuclear protein 2 20 protein-coding C20orf110|DOR|PIG-U|PINH|dJ1181N3.1 tumor protein p53-inducible nuclear protein 2|diabetes and obesity-regulated|p53-inducible protein U 9 0.001232 10.19 1 1 +58477 SRPRB SRP receptor beta subunit 3 protein-coding APMCF1 signal recognition particle receptor subunit beta|SR-beta|signal recognition particle receptor, B subunit|signal recognition particle receptor, beta subunit 24 0.003285 10.44 1 1 +58478 ENOPH1 enolase-phosphatase 1 4 protein-coding E1|MASA|MST145|mtnC enolase-phosphatase E1|2,3-diketo-5-methylthio-1-phosphopentane phosphatase|acireductone synthase 15 0.002053 9.982 1 1 +58480 RHOU ras homolog family member U 1 protein-coding ARHU|CDC42L1|G28K|WRCH1|hG28K rho-related GTP-binding protein RhoU|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|wnt-1 responsive Cdc42 homolog 1 22 0.003011 9.484 1 1 +58483 LINC00474 long intergenic non-protein coding RNA 474 9 ncRNA C9orf27|EST-YD1 - 1 0.0001369 0.007253 1 1 +58484 NLRC4 NLR family CARD domain containing 4 2 protein-coding AIFEC|CARD12|CLAN|CLAN1|CLANA|CLANB|CLANC|CLAND|CLR2.1|FCAS4|IPAF NLR family CARD domain-containing protein 4|CARD, LRR, and NACHT-containing protein|ICE-protease activating factor|NOD-like receptor C4|caspase recruitment domain family, member 12|caspase recruitment domain-containing protein 12|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 4 91 0.01246 5.004 1 1 +58485 TRAPPC1 trafficking protein particle complex 1 17 protein-coding BET5|MUM2 trafficking protein particle complex subunit 1|BET5 homolog|MUM-2|melanoma ubiquitous mutated 2|multiple myeloma protein 2 8 0.001095 10.56 1 1 +58486 ZBED5 zinc finger BED-type containing 5 11 protein-coding Buster1 zinc finger BED domain-containing protein 5|transposon-derived Buster1 transposase-like protein 16 0.00219 9.667 1 1 +58487 CREBZF CREB/ATF bZIP transcription factor 11 protein-coding SMILE|ZF CREB/ATF bZIP transcription factor|HCF-binding transcription factor Zhangfei|SHP-interacting leucine zipper protein|Zhangfei|host cell factor-binding transcription factor Zhangfei 27 0.003696 10.13 1 1 +58488 PCTP phosphatidylcholine transfer protein 17 protein-coding PC-TP|STARD2 phosphatidylcholine transfer protein|START domain-containing protein 2|StAR-related lipid transfer (START) domain containing 2|stAR-related lipid transfer protein 2 12 0.001642 8.736 1 1 +58489 ABHD17C abhydrolase domain containing 17C 15 protein-coding FAM108C1 protein ABHD17C|abhydrolase domain-containing protein 17C|abhydrolase domain-containing protein FAM108C1|alpha/beta hydrolase domain-containing protein 17C|family with sequence similarity 108, member C1 12 0.001642 9.265 1 1 +58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B 20 protein-coding C20orf77|CREPT|NET60|dJ1057B20.2 regulation of nuclear pre-mRNA domain-containing protein 1B|cell-cycle related and expression-elevated protein in tumor 24 0.003285 9.805 1 1 +58491 ZNF71 zinc finger protein 71 19 protein-coding EZFIT endothelial zinc finger protein induced by tumor necrosis factor alpha|Kruppel-related zinc finger protein 59 0.008076 7.357 1 1 +58492 ZNF77 zinc finger protein 77 19 protein-coding pT1 zinc finger protein 77|ZNFpT1 39 0.005338 6.314 1 1 +58493 INIP INTS3 and NABP interacting protein 9 protein-coding C9orf80|HSPC043|MISE|SOSSC|SSBIP1|hSSBIP1 SOSS complex subunit 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 16 0.00219 7.6 1 1 +58494 JAM2 junctional adhesion molecule 2 21 protein-coding C21orf43|CD322|JAM-B|JAMB|PRO245|VE-JAM|VEJAM junctional adhesion molecule B|JAM-2|JAM-IT/VE-JAM|vascular endothelial junction-associated molecule 29 0.003969 6.668 1 1 +58495 OVOL2 ovo like zinc finger 2 20 protein-coding EUROIMAGE566589|PPCD1|ZNF339 transcription factor Ovo-like 2|zinc finger protein 339 17 0.002327 5.459 1 1 +58496 LY6G5B lymphocyte antigen 6 complex, locus G5B 6 protein-coding C6orf19|G5b lymphocyte antigen 6 complex locus protein G5b|lymphocyte antigen-6 G5B splicing isoform 288|lymphocyte antigen-6 G5B splicing isoform 452|lymphocyte antigen-6 G5B splicing isoform 690|lymphocyte antigen-6 G5B splicing isoform 837 14 0.001916 5.387 1 1 +58497 PRUNE1 prune exopolyphosphatase 1 protein-coding DRES-17|DRES17|H-PRUNE|HTCD37|PRUNE protein prune homolog|Drosophila-related expressed sequence 17 32 0.00438 9.546 1 1 +58498 MYL7 myosin light chain 7 7 protein-coding MYL2A|MYLC2A myosin regulatory light chain 2, atrial isoform|MLC-2a|MLC2a|myosin light chain 2a|myosin regulatory light chain 7|myosin, light chain 7, regulatory|myosin, light polypeptide 7, regulatory 12 0.001642 0.5086 1 1 +58499 ZNF462 zinc finger protein 462 9 protein-coding Zfp462 zinc finger protein 462 150 0.02053 8.017 1 1 +58500 ZNF250 zinc finger protein 250 8 protein-coding ZFP647|ZNF647 zinc finger protein 250|zinc finger protein (clone 647)|zinc finger protein 647 32 0.00438 7.95 1 1 +58503 OPRPN opiorphin prepropeptide 4 protein-coding BPLP|PRL1|PROL1|opiorphin opiorphin prepropeptide|basic proline-rich lacrimal protein|basic proline-rich protein|proline rich, lacrimal 1|proline-rich 1|proline-rich protein 1 38 0.005201 0.5081 1 1 +58504 ARHGAP22 Rho GTPase activating protein 22 10 protein-coding RhoGAP2|RhoGap22 rho GTPase-activating protein 22|rho-type GTPase-activating protein 22 60 0.008212 6.51 1 1 +58505 OSTC oligosaccharyltransferase complex non-catalytic subunit 4 protein-coding DC2 oligosaccharyltransferase complex subunit OSTC|hydrophobic protein HSF-28|oligosaccharyltransferase complex subunit (non-catalytic) 6 0.0008212 10.55 1 1 +58506 SCAF1 SR-related CTD associated factor 1 19 protein-coding SRA1 splicing factor, arginine/serine-rich 19|SCAF|SR-related and CTD-associated factor 1|SR-related-CTD-associated factor|serine arginine-rich pre-mRNA splicing factor SR-A1 72 0.009855 10.92 1 1 +58508 KMT2C lysine methyltransferase 2C 7 protein-coding HALR|MLL3 histone-lysine N-methyltransferase 2C|ALR-like protein|histone-lysine N-methyltransferase MLL3|histone-lysine N-methyltransferase, H3 lysine-4 specific|homologous to ALR protein|lysine (K)-specific methyltransferase 2C|myeloid/lymphoid or mixed-lineage leukemia protein 3 499 0.0683 10.76 1 1 +58509 CACTIN cactin, spliceosome C complex subunit 19 protein-coding C19orf29|NY-REN-24|fSAPc cactin|NY REN 24 antigen|functional spliceosome-associated protein c|renal carcinoma antigen NY-REN-24 53 0.007254 9.065 1 1 +58510 PRODH2 proline dehydrogenase 2 19 protein-coding HSPOX1|HYPDH probable proline dehydrogenase 2|kidney and liver proline oxidase 1|probable proline oxidase 2|proline dehydrogenase (oxidase) 2 47 0.006433 1.052 1 1 +58511 DNASE2B deoxyribonuclease 2 beta 1 protein-coding DLAD deoxyribonuclease-2-beta|DNase II beta|DNase II-like acid DNase|DNase2-like acid DNase|deoxyribonuclease II beta|endonuclease DLAD|lysosomal DNase II 29 0.003969 2.129 1 1 +58512 DLGAP3 DLG associated protein 3 1 protein-coding DAP3|SAPAP3 disks large-associated protein 3|DAP-3|PSD-95/SAP90-binding protein 3|SAP90/PSD-95-associated protein 3|discs large homolog associated protein 3|discs, large (Drosophila) homolog-associated protein 3 102 0.01396 4.106 1 1 +58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 19 protein-coding EPS15R epidermal growth factor receptor substrate 15-like 1|epidermal growth factor receptor substrate EPS15R|eps15-related protein 46 0.006296 9.704 1 1 +58515 SELENOK selenoprotein K 3 protein-coding HSPC030|HSPC297|SELK selenoprotein K 7 0.0009581 9.277 1 1 +58516 FAM60A family with sequence similarity 60 member A 12 protein-coding C12orf14|L4|TERA protein FAM60A|tera protein homolog 18 0.002464 10.11 1 1 +58517 RBM25 RNA binding motif protein 25 14 protein-coding NET52|RED120|RNPC7|S164|Snu71|fSAP94 RNA-binding protein 25|Arg/Glu/Asp-rich protein, 120 kDa|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 60 0.008212 10.73 1 1 +58524 DMRT3 doublesex and mab-3 related transcription factor 3 9 protein-coding DMRTA3 doublesex- and mab-3-related transcription factor 3|DMRT-like family A3|testis-specific protein 43 0.005886 2.463 1 1 +58525 WIZ widely interspaced zinc finger motifs 19 protein-coding ZNF803 protein Wiz|WIZ zinc finger|widely-interspaced zinc finger-containing protein|zinc finger protein 803 71 0.009718 10.39 1 1 +58526 MID1IP1 MID1 interacting protein 1 X protein-coding G12-like|MIG12|S14R|STRAIT11499|THRSPL mid1-interacting protein 1|MID1 interacting G12-like protein|MID1 interacting protein 1 (gastrulation specific G12-like)|gastrulation specific G12 homolog|spot 14-R|spot 14-related protein 13 0.001779 9.969 1 1 +58527 ABRACL ABRA C-terminal like 6 protein-coding C6orf115|Costars|HSPC280|PRO2013 costars family protein ABRACL|ABRA C-terminal-like protein 3 0.0004106 8.961 1 1 +58528 RRAGD Ras related GTP binding D 6 protein-coding RAGD|bA11D8.2.1 ras-related GTP-binding protein D|Rag D protein 25 0.003422 8.816 1 1 +58529 MYOZ1 myozenin 1 10 protein-coding CS-2|FATZ|MYOZ myozenin-1|calsarcin-2|filamin-, actinin- and telethonin-binding protein 26 0.003559 3.792 1 1 +58530 LY6G6D lymphocyte antigen 6 complex, locus G6D 6 protein-coding C6orf23|G6D|LY6-D|MEGT1|NG25 lymphocyte antigen 6 complex locus protein G6d|lymphocyte antigen-6 G6D|megakaryocyte-enhanced gene transcript 1 protein|protein Ly6-D 17 0.002327 0.7577 1 1 +58531 PRM3 protamine 3 16 protein-coding - protamine-3|gene 4|sperm protamine P3 5 0.0006844 0.01368 1 1 +58533 SNX6 sorting nexin 6 14 protein-coding MSTP010|TFAF2 sorting nexin-6|TRAF4-associated factor 2|tumor necrosis factor receptor-associated factor 4(TRAF4)-associated factor 2 20 0.002737 10.3 1 1 +58538 MPP4 membrane palmitoylated protein 4 2 protein-coding ALS2CR5|DLG6 MAGUK p55 subfamily member 4|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 5 protein|discs large homolog 6|membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) 37 0.005064 1.473 1 1 +58985 IL22RA1 interleukin 22 receptor subunit alpha 1 1 protein-coding CRF2-9|IL22R|IL22R1 interleukin-22 receptor subunit alpha-1|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, alpha 1|zcytoR11 39 0.005338 5.43 1 1 +58986 TMEM8A transmembrane protein 8A 16 protein-coding M83|TMEM6|TMEM8 transmembrane protein 8A|five-span transmembrane protein M83|transmembrane protein 6|transmembrane protein 8 (five membrane-spanning domains) 39 0.005338 10.73 1 1 +59067 IL21 interleukin 21 4 protein-coding CVID11|IL-21|Za11 interleukin-21|interleukin-21 isoform 23 0.003148 0.1871 1 1 +59082 CARD18 caspase recruitment domain family member 18 11 protein-coding ICEBERG|UNQ5804|pseudo-ICE caspase recruitment domain-containing protein 18|ICEBERG caspase-1 inhibitor|caspase-1 inhibitor Iceberg 17 0.002327 0.642 1 1 +59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) 6 protein-coding NPP-5|NPP5 ectonucleotide pyrophosphatase/phosphodiesterase family member 5|E-NPP 5 35 0.004791 7.448 1 1 +59269 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 1 protein-coding KBP-1|KBP1|KRC|SHN3|Schnurri-3|ZAS3|ZNF40C transcription factor HIVEP3|ZAS family, member 3|kappa-B and V(D)J recombination signal sequences-binding protein|kappa-binding protein 1|zinc finger protein ZAS3 172 0.02354 7.635 1 1 +59271 EVA1C eva-1 homolog C 21 protein-coding B18|B19|C21orf63|C21orf64|FAM176C|PRED34|SUE21 protein eva-1 homolog C|family with sequence similarity 176, member C|protein FAM176C 24 0.003285 7.853 1 1 +59272 ACE2 angiotensin I converting enzyme 2 X protein-coding ACEH angiotensin-converting enzyme 2|ACE-related carboxypeptidase|angiotensin I converting enzyme (peptidyl-dipeptidase A) 2|angiotensin-converting enzyme homolog|metalloprotease MPROT15|peptidyl-dipeptidase A 47 0.006433 4.643 1 1 +59274 MESDC1 mesoderm development candidate 1 15 protein-coding - mesoderm development candidate 1 15 0.002053 9.07 1 1 +59277 NTN4 netrin 4 12 protein-coding PRO3091 netrin-4|beta-netrin|hepar-derived netrin-like protein 45 0.006159 8.967 1 1 +59283 CACNG8 calcium voltage-gated channel auxiliary subunit gamma 8 19 protein-coding - voltage-dependent calcium channel gamma-8 subunit|TARP gamma-8|calcium channel, voltage-dependent, gamma subunit 8|neuronal voltage-gated calcium channel gamma-8 subunit|transmembrane AMPAR regulatory protein gamma-8 34 0.004654 0.5703 1 1 +59284 CACNG7 calcium voltage-gated channel auxiliary subunit gamma 7 19 protein-coding - voltage-dependent calcium channel gamma-7 subunit|TARP gamma-7|calcium channel, voltage-dependent, gamma subunit 7|neuronal voltage-gated calcium channel gamma-7 subunit|transmembrane AMPAR regulatory protein gamma-7 52 0.007117 1.427 1 1 +59285 CACNG6 calcium voltage-gated channel auxiliary subunit gamma 6 19 protein-coding - voltage-dependent calcium channel gamma-6 subunit|calcium channel, voltage-dependent, gamma subunit 6|neuronal voltage-gated calcium channel gamma-6 subunit 29 0.003969 1.63 1 1 +59286 UBL5 ubiquitin like 5 19 protein-coding HUB1 ubiquitin-like protein 5|beacon|testicular tissue protein Li 217 3 0.0004106 11.05 1 1 +59307 SIGIRR single Ig and TIR domain containing 11 protein-coding IL-1R8|TIR8 single Ig IL-1-related receptor|single Ig IL-1R-related molecule|single immunoglobulin and toll-interleukin 1 receptor (TIR) domain|single immunoglobulin domain IL1R1 related|single immunoglobulin domain-containing IL1R-related protein|toll/interleukin-1 receptor 8 26 0.003559 9.036 1 1 +59335 PRDM12 PR/SET domain 12 9 protein-coding HSAN8|PFM9 PR domain zinc finger protein 12|PR domain 12|PR domain containing 12|PR-domain containing protein 12 17 0.002327 1.63 1 1 +59336 PRDM13 PR/SET domain 13 6 protein-coding MU-MB-20.220|PFM10 PR domain zinc finger protein 13|PR domain 13|PR domain containing 13|PR-domain containing protein 13 55 0.007528 1.013 1 1 +59338 PLEKHA1 pleckstrin homology domain containing A1 10 protein-coding TAPP1 pleckstrin homology domain-containing family A member 1|pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1|tandem PH domain-containing protein 1 38 0.005201 9.793 1 1 +59339 PLEKHA2 pleckstrin homology domain containing A2 8 protein-coding TAPP2 pleckstrin homology domain-containing family A member 2|PH domain-containing family A member 2|TAPP-2|pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 2|tandem PH Domain containing protein-2|tandem PH domain-containing protein 2 27 0.003696 9.853 1 1 +59340 HRH4 histamine receptor H4 18 protein-coding AXOR35|BG26|GPCR105|GPRv53|H4|H4R|HH4R histamine H4 receptor|G-protein coupled receptor 105|SP9144|pfi-013 33 0.004517 1.052 1 1 +59341 TRPV4 transient receptor potential cation channel subfamily V member 4 12 protein-coding BCYM3|CMT2C|HMSN2C|OTRPC4|SMAL|SPSMA|SSQTL1|TRP12|VRL2|VROAC transient receptor potential cation channel subfamily V member 4|OSM9-like transient receptor potential channel 4|osm-9-like TRP channel 4|osmosensitive transient receptor potential channel 4|transient receptor potential protein 12|vanilloid receptor-like channel 2|vanilloid receptor-related osmotically activated channel 74 0.01013 6.607 1 1 +59342 SCPEP1 serine carboxypeptidase 1 17 protein-coding HSCP1|RISC retinoid-inducible serine carboxypeptidase|serine carboxypeptidase 1 precursor protein 27 0.003696 10.64 1 1 +59343 SENP2 SUMO1/sentrin/SMT3 specific peptidase 2 3 protein-coding AXAM2|SMT3IP2 sentrin-specific protease 2|SMT3-specific isopeptidase 2|SUMO1/sentrin/SMT3 specific protease 2|sentrin/SUMO-specific protease SENP2 38 0.005201 9.567 1 1 +59344 ALOXE3 arachidonate lipoxygenase 3 17 protein-coding ARCI3|E-LOX|eLOX-3|eLOX3 hydroperoxide isomerase ALOXE3|e-LOX-3|epidermal LOX-3|epidermal lipoxygenase|epidermis-type lipoxygenase 3|hydroperoxy icosatetraenoate dehydratase 54 0.007391 2.925 1 1 +59345 GNB4 G protein subunit beta 4 3 protein-coding CMTD1F guanine nucleotide-binding protein subunit beta-4|G protein beta-4 subunit|guanine nucleotide binding protein (G protein), beta polypeptide 4|transducin beta chain 4 25 0.003422 9.547 1 1 +59348 ZNF350 zinc finger protein 350 19 protein-coding ZBRK1|ZFQR zinc finger protein 350|KRAB zinc finger protein ZFQR|zinc finger and BRCA1-interacting protein with a KRAB domain 1|zinc finger protein ZBRK1 35 0.004791 7.577 1 1 +59349 KLHL12 kelch like family member 12 1 protein-coding C3IP1|DKIR kelch-like protein 12|CUL3-interacting protein 1|DKIR homolog|kelch-like protein C3IP1 31 0.004243 9.921 1 1 +59350 RXFP1 relaxin/insulin like family peptide receptor 1 4 protein-coding LGR7|RXFPR1 relaxin receptor 1|leucine-rich repeat-containing G protein-coupled receptor 7 82 0.01122 1.938 1 1 +59351 PBOV1 prostate and breast cancer overexpressed 1 6 protein-coding UC28|UROC28|dJ171N11.2 prostate and breast cancer overexpressed gene 1 protein 8 0.001095 0.3872 1 1 +59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 1 protein-coding GPCR|VTS20631 leucine-rich repeat-containing G-protein coupled receptor 6|gonadotropin receptor 87 0.01191 5.449 1 1 +59353 TMEM35A transmembrane protein 35A X protein-coding TMEM35 transmembrane protein 35 13 0.001779 4.295 1 1 +60312 AFAP1 actin filament associated protein 1 4 protein-coding AFAP|AFAP-110|AFAP110 actin filament-associated protein 1|110 kDa actin filament-associated protein|actin filament-associated protein, 110 kDa 49 0.006707 9.93 1 1 +60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 1 protein-coding SP192 vasculin-like protein 1 34 0.004654 11.12 1 1 +60314 C12orf10 chromosome 12 open reading frame 10 12 protein-coding Gamm1|MST024|MSTP024|MYG|MYG1 UPF0160 protein MYG1, mitochondrial|melanocyte proliferating gene 1|melanocyte related 12 0.001642 9.7 1 1 +60343 FAM3A family with sequence similarity 3 member A X protein-coding 2.19|DLD|DXS560S|XAP-7 protein FAM3A|cytokine-like protein 2-19 13 0.001779 9.919 1 1 +60370 AVPI1 arginine vasopressin induced 1 10 protein-coding PP5395|VIP32|VIT32 arginine vasopressin-induced protein 1|AVP-induced protein 1|vasopressin-induced transcript 10 0.001369 8.198 1 1 +60385 TSKS testis specific serine kinase substrate 19 protein-coding PPP1R161|STK22S1|TSKS1|TSSKS testis-specific serine kinase substrate|STK22 substrate 1|protein phosphatase 1, regulatory subunit 161|testis specific serine/threonine kinase substrate|testis-specific kinase substrate 100 0.01369 1.61 1 1 +60386 SLC25A19 solute carrier family 25 member 19 17 protein-coding DNC|MCPHA|MUP1|THMD3|THMD4|TPC mitochondrial thiamine pyrophosphate carrier|mitochondrial uncoupling protein 1|solute carrier family 25 (mitochondrial deoxynucleotide carrier), member 19|solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 19 0.002601 7.966 1 1 +60401 EDA2R ectodysplasin A2 receptor X protein-coding EDA-A2R|EDAA2R|TNFRSF27|XEDAR tumor necrosis factor receptor superfamily member 27|EDA-A2 receptor|X-linked ectodysplasin-A2 receptor|ectodysplasin A2 isoform receptor|tumor necrosis factor receptor superfamily member XEDAR 28 0.003832 5.743 1 1 +60412 EXOC4 exocyst complex component 4 7 protein-coding SEC8|SEC8L1|Sec8p exocyst complex component 4|SEC8-like 1|exocyst complex component Sec8 97 0.01328 10.56 1 1 +60436 TGIF2 TGFB induced factor homeobox 2 20 protein-coding - homeobox protein TGIF2|5'-TG-3' interacting factor 2|TGF(beta)-induced transcription factor 2|TGFB-induced factor 2 (TALE family homeobox)|transcription growth factor-beta-induced factor 2 25 0.003422 9.198 1 1 +60437 CDH26 cadherin 26 20 protein-coding VR20 cadherin-like protein 26|cadherin-like 26|cadherin-like protein VR20 74 0.01013 3.85 1 1 +60439 TTTY2 testis-specific transcript, Y-linked 2 (non-protein coding) Y ncRNA NCRNA00109|TTY2|lINC00109 long intergenic non-protein coding RNA 109|testis-specific testis transcript Y 2 0.2433 0 1 +60467 BPESC1 blepharophimosis, epicanthus inversus and ptosis, candidate 1 (non-protein coding) 3 ncRNA NCRNA00187 - 0.1415 0 1 +60468 BACH2 BTB domain and CNC homolog 2 6 protein-coding BTBD25 transcription regulator protein BACH2|BTB and CNC homolog 2|BTB and CNC homology 1, basic leucine zipper transcription factor 2 84 0.0115 6.204 1 1 +60481 ELOVL5 ELOVL fatty acid elongase 5 6 protein-coding HELO1|SCA38|dJ483K16.1 elongation of very long chain fatty acids protein 5|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)|fatty acid elongase 1|homolog of yeast long chain polyunsaturated fatty acid elongation enzyme 2|spinocerebellar ataxia 38|very long chain 3-ketoacyl-CoA synthase 5|very long chain 3-oxoacyl-CoA synthase 5 30 0.004106 11.11 1 1 +60482 SLC5A7 solute carrier family 5 member 7 2 protein-coding CHT|CHT1|HMN7A high affinity choline transporter 1|high affinity choline transporter; hemicholinium-3-sensitive choline transporter|solute carrier family 5 (sodium/choline cotransporter), member 7 73 0.009992 1.195 1 1 +60484 HAPLN2 hyaluronan and proteoglycan link protein 2 1 protein-coding BRAL1 hyaluronan and proteoglycan link protein 2|brain link protein-1 17 0.002327 1.961 1 1 +60485 SAV1 salvador family WW domain containing protein 1 14 protein-coding SAV|WW45|WWP4 protein salvador homolog 1|1700040G09Rik|45 kDa WW domain protein|WW domain-containing adaptor 45|hWW45|salvador homolog 1 23 0.003148 9.406 1 1 +60487 TRMT11 tRNA methyltransferase 11 homolog 6 protein-coding C6orf75|MDS024|TRM11|TRMT11-1 tRNA (guanine(10)-N2)-methyltransferase homolog|tRNA guanosine-2'-O-methyltransferase TRM11 homolog 22 0.003011 7.842 1 1 +60488 MRPS35 mitochondrial ribosomal protein S35 12 protein-coding HDCMD11P|MDS023|MRP-S28|MRPS28 28S ribosomal protein S35, mitochondrial|28S ribosomal protein S28, mitochondrial|MRP-S35|S28mt|S35mt|mitochondrial ribosomal protein S28 26 0.003559 10.41 1 1 +60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G 22 protein-coding A3G|ARCD|ARP-9|ARP9|CEM-15|CEM15|MDS019|bK150C2.7|dJ494G10.1 DNA dC->dU-editing enzyme APOBEC-3G|APOBEC-related cytidine deaminase|APOBEC-related protein 9|DNA dC->dU editing enzyme|apolipoprotein B editing enzyme catalytic polypeptide-like 3G|apolipoprotein B mRNA editing enzyme cytidine deaminase|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3G|apolipoprotein B mRNA-editing enzyme catalytic polypeptide 3G|deoxycytidine deaminase|phorbolin-like protein MDS019 26 0.003559 7.845 1 1 +60490 PPCDC phosphopantothenoylcysteine decarboxylase 15 protein-coding MDS018|PPC-DC|coaC phosphopantothenoylcysteine decarboxylase 9 0.001232 7.535 1 1 +60491 NIF3L1 NGG1 interacting factor 3 like 1 2 protein-coding ALS2CR1|CALS-7|MDS015 NIF3-like protein 1|GTP cyclohydrolase I|NIF3 (Ngg1 interacting factor 3, S.pombe homolog)-like 1|NIF3 NGG1 interacting factor 3-like 1|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 1|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 1 protein|putative GTP cyclohydrolase 1 type 2 NIF3L1 28 0.003832 8.903 1 1 +60492 CCDC90B coiled-coil domain containing 90B 11 protein-coding MDS011|MDS025 coiled-coil domain-containing protein 90B, mitochondrial 22 0.003011 9.316 1 1 +60493 FASTKD5 FAST kinase domains 5 20 protein-coding dJ1187M17.5 FAST kinase domain-containing protein 5, mitochondrial|FAST kinase domain-containing protein 5 61 0.008349 8.715 1 1 +60494 CCDC81 coiled-coil domain containing 81 11 protein-coding - coiled-coil domain-containing protein 81 47 0.006433 3.175 1 1 +60495 HPSE2 heparanase 2 (inactive) 10 protein-coding HPA2|HPR2|UFS|UFS1 inactive heparanase-2|heparanase 3|heparanase-like protein 59 0.008076 1.889 1 1 +60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase 11 protein-coding AASD-PPT|ACPS|CGI-80|LYS2|LYS5 L-aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase|4'-phosphopantetheinyl transferase|LYS5 ortholog|alpha-aminoadipic semialdehyde dehydrogenase-phosphopantetheinyl transferase|holo ACP synthase|holo-[acyl-carrier-protein] synthase 21 0.002874 9.717 1 1 +60506 NYX nyctalopin X protein-coding CLRP|CSNB1|CSNB1A|CSNB4|NBM1 nyctalopin|leucine-rich repeat protein 30 0.004106 0.4765 1 1 +60509 AGBL5 ATP/GTP binding protein like 5 2 protein-coding CCP5|RP75 cytosolic carboxypeptidase-like protein 5|cytosolic carboxypeptidase 5 75 0.01027 9.446 1 1 +60526 LDAH lipid droplet associated hydrolase 2 protein-coding C2orf43|hLDAH lipid droplet-associated hydrolase|UPF0554 protein C2orf43|lipid droplet-associated serine hydrolase 27 0.003696 8.309 1 1 +60528 ELAC2 elaC ribonuclease Z 2 17 protein-coding COXPD17|ELC2|HPC2 zinc phosphodiesterase ELAC protein 2|RNase Z 2|elaC homolog 2|elaC homolog protein 2|elaC-like 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 43 0.005886 10.5 1 1 +60529 ALX4 ALX homeobox 4 11 protein-coding CRS5|FND2 homeobox protein aristaless-like 4|aristaless-like homeobox 4|homeodomain transcription factor ALX4 61 0.008349 0.9684 1 1 +60558 GUF1 GUF1 homolog, GTPase 4 protein-coding EF-4|EF4|EIEE40 translation factor GUF1, mitochondrial|GTP-binding protein GUF1 homolog|GTPase of unknown function 1|elongation factor 4 homolog|ribosomal back-translocase 50 0.006844 9.315 1 1 +60559 SPCS3 signal peptidase complex subunit 3 4 protein-coding PRO3567|SPC22/23|SPC3|YLR066W signal peptidase complex subunit 3|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 homolog 16 0.00219 11.25 1 1 +60560 NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit 9 protein-coding EGAP|MAK10|MAK10P|bA379P1.1 N-alpha-acetyltransferase 35, NatC auxiliary subunit|MAK10 homolog, amino-acid N-acetyltransferase subunit|corneal wound healing-related protein|embryonic growth-associated protein homolog|protein MAK10 homolog 39 0.005338 8.618 1 1 +60561 RINT1 RAD50 interactor 1 7 protein-coding RINT-1 RAD50-interacting protein 1|hsRINT-1 54 0.007391 8.804 1 1 +60592 SCOC short coiled-coil protein 4 protein-coding HRIHFB2072|SCOCO|UNC-69 short coiled-coil protein 13 0.001779 10.45 1 1 +60598 KCNK15 potassium two pore domain channel subfamily K member 15 20 protein-coding K2p15.1|KCNK11|KCNK14|KT3.3|TASK-5|TASK5|dJ781B1.1 potassium channel subfamily K member 15|TWIK-related acid-sensitive K(+) channel 5|acid-sensitive potassium channel protein TASK-5|potassium channel, subfamily K, member 14|potassium channel, two pore domain subfamily K, member 15|two pore K(+) channel KT3.3|two pore potassium channel KT3.3 30 0.004106 4.316 1 1 +60625 DHX35 DEAH-box helicase 35 20 protein-coding C20orf15|DDX35|KAIA0875 probable ATP-dependent RNA helicase DHX35|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 35|DEAH (Asp-Glu-Ala-His) box polypeptide 35|DEAH-box protein 35 51 0.006981 8.232 1 1 +60626 RIC8A RIC8 guanine nucleotide exchange factor A 11 protein-coding RIC8 synembryn-A|resistance to inhibitors of cholinesterase 8 homolog A 39 0.005338 10.87 1 1 +60672 MIIP migration and invasion inhibitory protein 1 protein-coding IIP45 migration and invasion-inhibitory protein|IGFBP2-binding protein|invasion-inhibitory protein 45 30 0.004106 8.94 1 1 +60673 ATG101 autophagy related 101 12 protein-coding C12orf44 autophagy-related protein 101|Atg13-interacting protein 13 0.001779 9.952 1 1 +60674 GAS5 growth arrest specific 5 (non-protein coding) 1 ncRNA NCRNA00030|SNHG2 growth arrest specific 5|growth arrest specific transcript 5|small nucleolar RNA host gene (non-protein coding) 2 6 0.0008212 10.68 1 1 +60675 PROK2 prokineticin 2 3 protein-coding BV8|HH4|KAL4|MIT1|PK2 prokineticin-2|protein Bv8 homolog 6 0.0008212 1.502 1 1 +60676 PAPPA2 pappalysin 2 1 protein-coding PAPP-A2|PAPP-E|PAPPE|PLAC3 pappalysin-2|placenta-specific 3|pregnancy-associated plasma preproprotein-A2|pregnancy-associated plasma protein E1 332 0.04544 2.153 1 1 +60677 CELF6 CUGBP, Elav-like family member 6 15 protein-coding BRUNOL6 CUGBP Elav-like family member 6|Bruno -like 6, RNA binding protein|CELF-6|CUG-BP- and ETR-3-like factor 6|RNA-binding protein BRUNOL-6|bruno-like 6, RNA binding protein|bruno-like protein 6 20 0.002737 5.716 1 1 +60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific 3 protein-coding EFSEC|SELB selenocysteine-specific elongation factor|elongation factor for selenoprotein translation|elongation factor sec|selenocysteine (Sec)-specific eukaryotic elongation factor 38 0.005201 9.005 1 1 +60680 CELF5 CUGBP, Elav-like family member 5 19 protein-coding BRUNOL-5|BRUNOL5|CELF-5 CUGBP Elav-like family member 5|CUG-BP and ETR-3 like factor 5|RNA-binding protein BRUNOL-5|bruno-like 5 RNA binding protein 24 0.003285 3.854 1 1 +60681 FKBP10 FK506 binding protein 10 17 protein-coding BRKS1|FKBP65|OI11|OI6|PPIASE|hFKBP65 peptidyl-prolyl cis-trans isomerase FKBP10|65 kDa FK506-binding protein|65 kDa FKBP|FK506 binding protein 10, 65 kDa|FKBP-10|FKBP-65|PPIase FKBP10|immunophilin FKBP65|rotamase 45 0.006159 10.74 1 1 +60682 SMAP1 small ArfGAP 1 6 protein-coding SMAP-1 stromal membrane-associated protein 1|stromal membrane-associated GTPase-activating protein 1 46 0.006296 9.743 1 1 +60684 TRAPPC11 trafficking protein particle complex 11 4 protein-coding C4orf41|FOIGR|GRY|LGMD2S trafficking protein particle complex subunit 11|foie gras homolog|gryzun homolog 49 0.006707 9.536 1 1 +60685 ZFAND3 zinc finger AN1-type containing 3 6 protein-coding TEX27 AN1-type zinc finger protein 3|testis expressed sequence 27|zinc finger, AN1-type domain 3 10 0.001369 10.88 1 1 +60686 C14orf93 chromosome 14 open reading frame 93 14 protein-coding - uncharacterized protein C14orf93 31 0.004243 7.741 1 1 +63027 SLC22A23 solute carrier family 22 member 23 6 protein-coding C6orf85 solute carrier family 22 member 23|ion transporter protein 34 0.004654 9.576 1 1 +63035 BCORL1 BCL6 corepressor-like 1 X protein-coding BCoR-L1|CXorf10 BCL-6 corepressor-like protein 1|BCoR-like protein 1 155 0.02122 8.604 1 1 +63036 CELA2A chymotrypsin like elastase family member 2A 1 protein-coding ELA2A|PE-1 chymotrypsin-like elastase family member 2A|elastase 2A|pancreatic elastase 2|pancreatic elastase IIA 27 0.003696 0.2362 1 1 +63826 SRR serine racemase 17 protein-coding ILV1|ISO1 serine racemase|D-serine ammonia-lyase|D-serine dehydratase|L-serine ammonia-lyase|L-serine dehydratase 19 0.002601 7.717 1 1 +63827 BCAN brevican 1 protein-coding BEHAB|CSPG7 brevican core protein|brain-enriched hyaluronan-binding protein|chondroitin sulfate proteoglycan 7|chondroitin sulfate proteoglycan BEHAB 110 0.01506 5.097 1 1 +63874 ABHD4 abhydrolase domain containing 4 14 protein-coding ABH4 protein ABHD4|abhydrolase domain-containing protein 4|alpha/beta hydrolase domain-containing protein 4|alpha/beta-hydrolase 4|lyso-N-acylphosphatidylethanolamine lipase 19 0.002601 9.966 1 1 +63875 MRPL17 mitochondrial ribosomal protein L17 11 protein-coding L17mt|LIP2|MRP-L17|MRP-L26|RPL17L|RPML26 39S ribosomal protein L17, mitochondrial|LYST-interacting protein 2|LYST-interacting protein LIP2 10 0.001369 10.06 1 1 +63876 PKNOX2 PBX/knotted 1 homeobox 2 11 protein-coding PREP2 homeobox protein PKNOX2|PBX/knotted homeobox 2|homeobox protein PREP-2 48 0.00657 5.295 1 1 +63877 FAM204A family with sequence similarity 204 member A 10 protein-coding C10orf84|bA319I23.1 protein FAM204A 14 0.001916 9.133 1 1 +63891 RNF123 ring finger protein 123 3 protein-coding FP1477|KPC1 E3 ubiquitin-protein ligase RNF123|Kip1 ubiquitination-promoting complex subunit 1|kip1 ubiquitination-promoting complex protein 1 84 0.0115 9.611 1 1 +63892 THADA THADA, armadillo repeat containing 2 protein-coding ARMC13|GITA thyroid adenoma-associated protein|death receptor-interacting protein|gene inducing thyroid adenomas protein 117 0.01601 9.767 1 1 +63893 UBE2O ubiquitin conjugating enzyme E2 O 17 protein-coding E2-230K (E3-independent) E2 ubiquitin-conjugating enzyme|E2/E3 hybrid ubiquitin-protein ligase UBE2O|ubiquitin carrier protein O|ubiquitin conjugating enzyme E2O|ubiquitin-conjugating enzyme E2 of 230 kDa|ubiquitin-conjugating enzyme E2-230K|ubiquitin-protein ligase O 65 0.008897 9.989 1 1 +63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog 14 protein-coding C14orf133|SPE-39|SPE39|VIPAR|VPS16B|hSPE-39 spermatogenesis-defective protein 39 homolog|VPS33B-interacting protein involved in polarity and apical protein restriction 30 0.004106 8.942 1 1 +63895 PIEZO2 piezo type mechanosensitive ion channel component 2 18 protein-coding C18orf30|C18orf58|DA3|DA5|FAM38B|FAM38B2|HsT748|HsT771|MWKS piezo-type mechanosensitive ion channel component 2|family with sequence similarity 38, member A pseudogene|family with sequence similarity 38, member B2|piezo-type mechanosensitive ion channel component 1 pseudogene|protein PIEZO2 79 0.01081 6.26 1 1 +63897 HEATR6 HEAT repeat containing 6 17 protein-coding ABC1 HEAT repeat-containing protein 6|amplified in breast cancer 1|amplified in breast cancer protein 1 58 0.007939 8.621 1 1 +63898 SH2D4A SH2 domain containing 4A 8 protein-coding PPP1R38|SH2A SH2 domain-containing protein 4A|protein SH(2)A|protein phosphatase 1 regulatory subunit 38 28 0.003832 8.033 1 1 +63899 NSUN3 NOP2/Sun RNA methyltransferase family member 3 3 protein-coding MST077|MSTP077 putative methyltransferase NSUN3|NOL1/NOP2/Sun domain family 3|NOL1/NOP2/Sun domain family member 3|NOP2/Sun domain family, member 3 25 0.003422 6.704 1 1 +63901 FAM111A family with sequence similarity 111 member A 11 protein-coding GCLEB|KCS2 protein FAM111A 47 0.006433 9.619 1 1 +63904 DUSP21 dual specificity phosphatase 21 X protein-coding LMWDSP21 dual specificity protein phosphatase 21|BJ-HCC-26 tumor antigen|LMW-DSP21|low molecular weight dual specificity phosphatase 21 17 0.002327 0.05354 1 1 +63905 MANBAL mannosidase beta like 20 protein-coding - protein MANBAL|mannosidase beta A like|mannosidase, beta A, lysosomal-like 7 0.0009581 10.34 1 1 +63906 GPATCH3 G-patch domain containing 3 1 protein-coding GPATC3 G patch domain-containing protein 3 43 0.005886 8.285 1 1 +63908 NAPB NSF attachment protein beta 20 protein-coding SNAP-BETA|SNAPB beta-soluble NSF attachment protein|N-ethylmaleimide-sensitive factor attachment protein, beta 17 0.002327 8.272 1 1 +63910 SLC17A9 solute carrier family 17 member 9 20 protein-coding C20orf59|POROK8|VNUT solute carrier family 17 member 9|solute carrier family 17 (vesicular nucleotide transporter), member 9|vesicular nucleotide transporter SLC17A9 33 0.004517 6.821 1 1 +63914 LINC01590 long intergenic non-protein coding RNA 1590 6 ncRNA C6orf164|dJ102H19.4 - 1 0.0001369 2.938 1 1 +63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 6 protein-coding BLOS5|MU|MUTED biogenesis of lysosome-related organelles complex 1 subunit 5|BLOC-1 subunit 5|biogenesis of lysosomal organelles complex-1, subunit 5, muted|muted homolog|protein Muted homolog 6 0.0008212 8.226 1 1 +63916 ELMO2 engulfment and cell motility 2 20 protein-coding CED-12|CED12|Ced-12A|ELMO-2|VMPI engulfment and cell motility protein 2|PH domain protein CED12A|ced-12 homolog 2|protein ced-12 homolog A 57 0.007802 10.1 1 1 +63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 7 protein-coding GALNAC-T11|GALNACT11 polypeptide N-acetylgalactosaminyltransferase 11|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 11|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11)|polypeptide GalNAc transferase 11|pp-GaNTase 11|protein-UDP acetylgalactosaminyltransferase 11 33 0.004517 10.06 1 1 +63920 ZBED8 zinc finger BED-type containing 8 5 protein-coding Buster3|C5orf54 protein ZBED8|transposon-derived Buster3 transposase-like protein|zinc finger BED domain-containing protein 8 33 0.004517 7.027 1 1 +63922 CHTF18 chromosome transmission fidelity factor 18 16 protein-coding C16orf41|C321D2.2|C321D2.3|C321D2.4|CHL12|Ctf18|RUVBL chromosome transmission fidelity protein 18 homolog|C321D2.3 (novel protein)|C321D2.4 (novel protein)|CTF18, chromosome transmission fidelity factor 18 homolog|homolog of yeast CHL12|some homology with holliday junction DNA helicase RUVB like 54 0.007391 8.366 1 1 +63923 TNN tenascin N 1 protein-coding TN-W tenascin-N|TN-N 198 0.0271 3.973 1 1 +63924 CIDEC cell death inducing DFFA like effector c 3 protein-coding CIDE-3|CIDE3|FPLD5|FSP27 cell death activator CIDE-3|fat specific protein 27 13 0.001779 2.432 1 1 +63925 ZNF335 zinc finger protein 335 20 protein-coding MCPH10|NIF-1|NIF1|NIF2 zinc finger protein 335|NRC-interacting factor 1|zinc-finger/leucine-zipper co-transducer NIF1 87 0.01191 9.194 1 1 +63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 20 protein-coding ANKRD5 ankyrin repeat and EF-hand domain-containing protein 1|ankyrin repeat domain-containing protein 5 51 0.006981 7.158 1 1 +63928 CHP2 calcineurin like EF-hand protein 2 16 protein-coding - calcineurin B homologous protein 2|hepatocellular carcinoma antigen gene 520|hepatocellular carcinoma-associated antigen 520 26 0.003559 2.406 1 1 +63929 XPNPEP3 X-prolyl aminopeptidase 3 22 protein-coding APP3|ICP55|NPHPL1 probable Xaa-Pro aminopeptidase 3|Intermediate Cleaving Peptidase 55|X-Pro aminopeptidase 3|X-prolyl aminopeptidase (aminopeptidase P) 3, putative|X-prolyl aminopeptidase 3, mitochondrial 33 0.004517 7.583 1 1 +63931 MRPS14 mitochondrial ribosomal protein S14 1 protein-coding DJ262D12.2|HSMRPS14|MRP-S14|S14mt 28S ribosomal protein S14, mitochondrial|mitochondrial 28S ribosomal protein S14 14 0.001916 8.666 1 1 +63932 CXorf56 chromosome X open reading frame 56 X protein-coding - UPF0428 protein CXorf56 27 0.003696 7.53 1 1 +63933 MCUR1 mitochondrial calcium uniporter regulator 1 6 protein-coding C6orf79|CCDC90A|FMP32 mitochondrial calcium uniporter regulator 1|MCU regulator 1|coiled-coil domain containing 90A|coiled-coil domain-containing protein 90A, mitochondrial 15 0.002053 8.512 1 1 +63934 ZNF667 zinc finger protein 667 19 protein-coding MIPU1 zinc finger protein 667|myocardial ischemic preconditioning upregulated 1 ortholog 84 0.0115 5.401 1 1 +63935 PCIF1 PDX1 C-terminal inhibiting factor 1 20 protein-coding C20orf67|PPP1R121 phosphorylated CTD-interacting factor 1|PDX-1 C terminus-interacting factor 1|protein phosphatase 1, regulatory subunit 121 50 0.006844 10.16 1 1 +63939 FAM217B family with sequence similarity 217 member B 20 protein-coding C20orf177|dJ551D2.5 protein FAM217B|uncharacterized protein C20orf177 36 0.004927 7.593 1 1 +63940 GPSM3 G-protein signaling modulator 3 6 protein-coding AGS4|C6orf9|G18|G18.1a|G18.1b|G18.2|NG1 G-protein-signaling modulator 3|G-protein signaling modulator 3 (AGS3-like, C. elegans)|G-protein signalling modulator 3 (AGS3-like, C. elegans)|activator of G-protein signaling 4 20 0.002737 8.543 1 1 +63941 NECAB3 N-terminal EF-hand calcium binding protein 3 20 protein-coding APBA2BP|EFCBP3|NIP1|STIP3|SYTIP2|XB51|dJ63M2.4|dJ63M2.5 N-terminal EF-hand calcium-binding protein 3|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 18 0.002464 9.132 1 1 +63943 FKBPL FK506 binding protein like 6 protein-coding DIR1|FKBP4|NG7|WISP39 FK506-binding protein-like|WAF-1/CIP1 stabilizing protein 39|peptidyl-prolyl cis-trans isomerase 26 0.003559 7.362 1 1 +63946 DMRTC2 DMRT like family C2 19 protein-coding - doublesex- and mab-3-related transcription factor C2 33 0.004517 0.368 1 1 +63947 DMRTC1 DMRT like family C1 X protein-coding - doublesex- and mab-3-related transcription factor C1|doublesex-mab-3 1 0.0001369 0.6855 1 1 +63948 DMRTB1 DMRT like family B with proline rich C-terminal 1 1 protein-coding - doublesex- and mab-3-related transcription factor B1 38 0.005201 0.3008 1 1 +63950 DMRTA2 DMRT like family A2 1 protein-coding - doublesex- and mab-3-related transcription factor A2|doublesex- and mab-3-related transcription factor 5 10 0.001369 2.152 1 1 +63951 DMRTA1 DMRT like family A1 9 protein-coding DMO|DMRT4 doublesex- and mab-3-related transcription factor A1 27 0.003696 4.295 1 1 +63967 CLSPN claspin 1 protein-coding - claspin|claspin homolog 68 0.009307 6.05 1 1 +63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 11 protein-coding P53AIP1 p53-regulated apoptosis-inducing protein 1 6 0.0008212 2.751 1 1 +63971 KIF13A kinesin family member 13A 6 protein-coding RBKIN|bA500C11.2 kinesin-like protein KIF13A|homolog of mouse KIF13A mannose-6-phosphate receptor transporter|kinesin-like protein RBKIN 127 0.01738 9.732 1 1 +63973 NEUROG2 neurogenin 2 4 protein-coding Atoh4|Math4A|NGN2|bHLHa8|ngn-2 neurogenin-2|class A basic helix-loop-helix protein 8|protein atonal homolog 4 15 0.002053 0.9272 1 1 +63974 NEUROD6 neuronal differentiation 6 7 protein-coding Atoh2|MATH2|Math-2|NEX1M|Nex1|bHLHa2 neurogenic differentiation factor 6|brain my051 protein|class A basic helix-loop-helix protein 2|protein atonal homolog 2 55 0.007528 0.3396 1 1 +63976 PRDM16 PR/SET domain 16 1 protein-coding CMD1LL|LVNC8|MEL1|PFM13 PR domain zinc finger protein 16|MDS1/EVI1-like gene 1|PR domain 16|PR domain containing 16|transcription factor MEL1 110 0.01506 5.322 1 1 +63977 PRDM15 PR/SET domain 15 21 protein-coding C21orf83|PFM15|ZNF298 PR domain zinc finger protein 15|PR domain 15|PR domain containing 15|zinc finger protein 298 80 0.01095 7.754 1 1 +63978 PRDM14 PR/SET domain 14 8 protein-coding PFM11 PR domain zinc finger protein 14|PR domain 14|PR domain-containing 14|PR domain-containing protein 14 66 0.009034 0.28 1 1 +63979 FIGNL1 fidgetin like 1 7 protein-coding - fidgetin-like protein 1 52 0.007117 8.132 1 1 +63982 ANO3 anoctamin 3 11 protein-coding C11orf25|DYT23|DYT24|GENX-3947|TMEM16C anoctamin-3|transmembrane protein 16C (eight membrane-spanning domains) 103 0.0141 2.942 1 1 +64002 PCGEM1 PCGEM1, prostate-specific transcript (non-protein coding) 2 ncRNA LINC00071|NCRNA00071|PCAT9 long intergenic non-protein coding RNA 71|prostate cancer associated transcript 9|prostate-specific non-coding|prostate-specific transcript 1 (non-protein coding) 0 0 0.4191 1 1 +64005 MYO1G myosin IG 7 protein-coding HA2|HLA-HA2|MHAG unconventional myosin-Ig|minor histocompatibility antigen HA-2|myosin-Ig 67 0.009171 7.152 1 1 +64061 TSPYL2 TSPY like 2 X protein-coding CDA1|CINAP|CTCL|DENTT|HRIHFB2216|NP79|SE204|TSPX testis-specific Y-encoded-like protein 2|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 protein Y encoded-like 2 51 0.006981 9.358 1 1 +64062 RBM26 RNA binding motif protein 26 13 protein-coding ARRS2|C13orf10|PPP1R132|PRO1777|SE70-2|ZC3H17 RNA-binding protein 26|CTCL tumor antigen se70-2|acidic rich RS domain containing 2|cutaneous T-cell lymphoma tumor antigen se70-2|protein phosphatase 1, regulatory 132 67 0.009171 9.413 1 1 +64063 PRSS22 protease, serine 22 16 protein-coding BSSP-4|SP001LA|hBSSP-4 brain-specific serine protease 4|prosemin|protease, serine S1 family member 22|serine protease 26|tryptase epsilon 18 0.002464 5.744 1 1 +64064 OXCT2 3-oxoacid CoA-transferase 2 1 protein-coding FKSG25|SCOTT succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial|3-oxoacid CoA-transferase 2A|testis-specific succinyl CoA:3-oxoacid CoA-transferase 21 0.002874 2.952 1 1 +64065 PERP PERP, TP53 apoptosis effector 6 protein-coding KCP1|KRTCAP1|PIGPC1|THW|dJ496H19.1 p53 apoptosis effector related to PMP-22|1110017A08Rik|KCP-1|keratinocyte-associated protein 1|keratinocytes associated protein 1|p53 apoptosis effector related to PMP22|p53-induced protein PIGPC1|transmembrane protein THW 13 0.001779 11.74 1 1 +64066 MMP27 matrix metallopeptidase 27 11 protein-coding MMP-27 matrix metalloproteinase-27|matrix metalloprotease 27 50 0.006844 0.4028 1 1 +64067 NPAS3 neuronal PAS domain protein 3 14 protein-coding MOP6|PASD6|bHLHe12 neuronal PAS domain-containing protein 3|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 PAS3 98 0.01341 5.018 1 1 +64072 CDH23 cadherin related 23 10 protein-coding CDHR23|USH1D cadherin-23|cadherin-like 23|cadherin-related family member 23|otocadherin 222 0.03039 5.872 1 1 +64073 C19orf33 chromosome 19 open reading frame 33 19 protein-coding H2RSP|IMUP|IMUP-1|IMUP-2 immortalization up-regulated protein|HAI-2 related small protein|hepatocyte growth factor activator inhibitor type 2-related small protein|immortalization-upregulated protein 8 0.001095 7.148 1 1 +64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase 10 protein-coding HDHD2B phospholysine phosphohistidine inorganic pyrophosphate phosphatase|hLHPP 16 0.00219 8.891 1 1 +64078 SLC28A3 solute carrier family 28 member 3 9 protein-coding CNT3 solute carrier family 28 member 3|concentrative Na(+)-nucleoside cotransporter 3|concentrative Na+-nucleoside cotransporter|solute carrier family 28 (concentrative nucleoside transporter), member 3|solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 55 0.007528 3.159 1 1 +64080 RBKS ribokinase 2 protein-coding RBSK|RK ribokinase 17 0.002327 6.614 1 1 +64081 PBLD phenazine biosynthesis like protein domain containing 10 protein-coding HEL-S-306|MAWBP|MAWDBP phenazine biosynthesis-like domain-containing protein|MAWD-binding protein|epididymis secretory protein Li 306 31 0.004243 7.413 1 1 +64083 GOLPH3 golgi phosphoprotein 3 5 protein-coding GOPP1|GPP34|MIDAS|Vps74 Golgi phosphoprotein 3|coat protein GPP34|coat-protein|golgi peripheral membrane protein 1, 34 kDa|golgi phosphoprotein 3 (coat-protein)|golgi protein|golgi-associated protein|mitochondrial DNA absence factor 27 0.003696 11.3 1 1 +64084 CLSTN2 calsyntenin 2 3 protein-coding ALC-GAMMA|CDHR13|CS2|CSTN2|alcagamma calsyntenin-2|alcadein gamma|cadherin-related family member 13 142 0.01944 5.73 1 1 +64087 MCCC2 methylcrotonoyl-CoA carboxylase 2 5 protein-coding MCCB methylcrotonoyl-CoA carboxylase beta chain, mitochondrial|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 2 (beta)|methylcrotonoyl-Coenzyme A carboxylase 2 (beta)|non-biotin containing subunit of 3-methylcrotonyl-CoA carboxylase|testicular secretory protein Li 29 40 0.005475 10.93 1 1 +64089 SNX16 sorting nexin 16 8 protein-coding - sorting nexin-16 21 0.002874 7.827 1 1 +64090 GAL3ST2 galactose-3-O-sulfotransferase 2 2 protein-coding GAL3ST-2|GP3ST galactose-3-O-sulfotransferase 2|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 29 0.003969 2.043 1 1 +64091 POPDC2 popeye domain containing 2 3 protein-coding POP2 popeye domain-containing protein 2|popeye protein 2 24 0.003285 5.415 1 1 +64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 21 protein-coding HACS1|NASH1|SASH2|SH3D6B|SLy2 SAM domain-containing protein SAMSN-1|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|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 64 0.00876 6.827 1 1 +64093 SMOC1 SPARC related modular calcium binding 1 14 protein-coding OAS SPARC-related modular calcium-binding protein 1|secreted modular calcium-binding protein 1 42 0.005749 6.517 1 1 +64094 SMOC2 SPARC related modular calcium binding 2 6 protein-coding DTDP1|MST117|MSTP117|MSTP140|SMAP2|bA270C4A.1|bA37D8.1|dJ421D16.1 SPARC-related modular calcium-binding protein 2|SMAP-2|SMOC-2|secreted modular calcium-binding protein 2|smooth muscle associated protein 2|thyroglobulin type-1 repeat containing protein 42 0.005749 8.56 1 1 +64096 GFRA4 GDNF family receptor alpha 4 20 protein-coding - GDNF family receptor alpha-4|GDNF receptor alpha-4|GDNFR-alpha-4|GFR receptor alpha 4|GFR-alpha-4|persephin receptor 7 0.0009581 0.2823 1 1 +64097 EPB41L4A erythrocyte membrane protein band 4.1 like 4A 5 protein-coding EPB41L4|NBL4 band 4.1-like protein 4A|erythrocyte protein band 4.1-like 4 63 0.008623 8.52 1 1 +64098 PARVG parvin gamma 22 protein-coding - gamma-parvin 33 0.004517 7.528 1 1 +64100 ELSPBP1 epididymal sperm binding protein 1 19 protein-coding E12|EDDM12|EL149|HE12 epididymal sperm-binding protein 1|epididymal protein 12|epididymal secretory protein 12|epididymis luminal secretory protein 149 27 0.003696 0.2833 1 1 +64101 LRRC4 leucine rich repeat containing 4 7 protein-coding NAG14|NGL-2 leucine-rich repeat-containing protein 4|brain tumor associated protein LRRC4|brain tumor-associated protein BAG|nasopharyngeal carcinoma-associated gene 14 protein|netrin-G2 ligand 46 0.006296 6.163 1 1 +64102 TNMD tenomodulin X protein-coding BRICD4|CHM1L|TEM tenomodulin|BRICHOS domain containing 4|chondromodulin-1-like protein|chondromodulin-I-like protein|chondromodulin-IB|hChM1L|hTeM|myodulin|tendin 25 0.003422 1.331 1 1 +64105 CENPK centromere protein K 5 protein-coding AF5alpha|CENP-K|FKSG14|P33|Solt centromere protein K|SoxLZ/Sox6-binding protein Solt|interphase centromere complex protein 37|leucine zipper protein FKSG14|protein AF-5alpha 18 0.002464 6.228 1 1 +64106 NPFFR1 neuropeptide FF receptor 1 10 protein-coding GPR147|NPFF1|NPFF1R1|OT7T022 neuropeptide FF receptor 1|G-protein coupled receptor 147|RFamide-related peptide receptor OT7T022|neuropeptide FF 1 15 0.002053 0.7587 1 1 +64108 RTP4 receptor transporter protein 4 3 protein-coding IFRG28|Z3CXXC4 receptor-transporting protein 4|28 kDa interferon-responsive protein|28kD interferon responsive protein|3CxxC-type zinc finger protein 4|receptor (chemosensory) transporter protein 4|zinc finger, 3CxxC-type 4 19 0.002601 7.059 1 1 +64109 CRLF2 cytokine receptor-like factor 2 X|Y protein-coding CRL2|CRLF2Y|TSLPR cytokine receptor-like factor 2|IL-XR|TSLP receptor|cytokine receptor CRL2 precusor|thymic stromal lymphopoietin protein receptor|thymic stromal-derived lymphopoietin receptor 0.7364 0 1 +64110 MAGEF1 MAGE family member F1 3 protein-coding - melanoma-associated antigen F1|MAGE-F1 antigen|melanoma antigen family F, 1|melanoma antigen family F1 15 0.002053 10.05 1 1 +64111 NPVF neuropeptide VF precursor 7 protein-coding C7orf9|RFRP pro-FMRFamide-related neuropeptide VF|FMRFamide-related peptide|FMRFamide-related peptides|RFamide-related peptide|neuropeptide NPVF 21 0.002874 0.06171 1 1 +64112 MOAP1 modulator of apoptosis 1 14 protein-coding MAP-1|PNMA4 modulator of apoptosis 1|MAP1|paraneoplastic Ma antigen family member 4|paraneoplastic antigen Ma4|paraneoplastic antigen like 4 30 0.004106 9.566 1 1 +64114 TMBIM1 transmembrane BAX inhibitor motif containing 1 2 protein-coding LFG3|MST100|MSTP100|PP1201|RECS1 protein lifeguard 3|transmembrane BAX inhibitor motif-containing protein 1 13 0.001779 11.95 1 1 +64115 C10orf54 chromosome 10 open reading frame 54 10 protein-coding B7-H5|B7H5|DD1alpha|GI24|PD-1H|PP2135|SISP1|VISTA V-type immunoglobulin domain-containing suppressor of T-cell activation|Death Domain1alpha|PDCD1 homolog|V-domain Ig suppressor of T cell activation|V-set domain-containing immunoregulatory receptor|platelet receptor GI24|sisp-1|stress-induced secreted protein-1 27 0.003696 9.81 1 1 +64116 SLC39A8 solute carrier family 39 member 8 4 protein-coding BIGM103|CDG2N|LZT-Hs6|PP3105|ZIP8 zinc transporter ZIP8|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 25 0.003422 9.202 1 1 +64118 DUS1L dihydrouridine synthase 1 like 17 protein-coding DUS1|PP3111 tRNA-dihydrouridine(16/17) synthase [NAD(P)(+)]-like 26 0.003559 10.72 1 1 +64121 RRAGC Ras related GTP binding C 1 protein-coding GTR2|RAGC|TIB929 ras-related GTP-binding protein C|GTPase-interacting protein 2|Rag C protein 23 0.003148 8.162 1 1 +64122 FN3K fructosamine 3 kinase 17 protein-coding - fructosamine-3-kinase 20 0.002737 8.829 1 1 +64123 ADGRL4 adhesion G protein-coupled receptor L4 1 protein-coding ELTD1|ETL|KPG_003 adhesion G protein-coupled receptor L4|EGF, latrophilin and seven transmembrane domain containing 1|EGF, latrophilin and seven transmembrane domain-containing protein 1|EGF-TM7-latrophilin-related protein 137 0.01875 8.29 1 1 +64127 NOD2 nucleotide binding oligomerization domain containing 2 16 protein-coding ACUG|BLAU|CARD15|CD|CLR16.3|IBD1|NLRC2|NOD2B|PSORAS1 nucleotide-binding oligomerization domain-containing protein 2|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 92 0.01259 6.102 1 1 +64129 TINAGL1 tubulointerstitial nephritis antigen like 1 1 protein-coding ARG1|LCN7|LIECG3|TINAGRP tubulointerstitial nephritis antigen-like|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-related protein 29 0.003969 9.748 1 1 +64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component 19 protein-coding LIN-7B|MALS-2|MALS2|VELI2 protein lin-7 homolog B|hLin7B|hVeli2|lin-7 homolog B|mammalian lin-seven protein 2|veli-2|vertebrate lin-7 homolog 2 9 0.001232 5.727 1 1 +64131 XYLT1 xylosyltransferase 1 16 protein-coding DBQD2|PXYLT1|XT-I|XT1|XTI|XYLTI|xylT-I xylosyltransferase 1|beta-D-xylosyltransferase 1|peptide O-xylosyltransferase 1|xylosyltransferase I|xylosyltransferase iota 107 0.01465 8.401 1 1 +64132 XYLT2 xylosyltransferase 2 17 protein-coding PXYLT2|SOS|XT-II|XT2|xylT-II xylosyltransferase 2|UDP-D-xylose:proteoglycan core protein beta-D-xylosyltransferase|peptide O-xylosyltransferase 1|protein xylosyltransferase 2|xylosyltransferase II 73 0.009992 9.723 1 1 +64135 IFIH1 interferon induced with helicase C domain 1 2 protein-coding AGS7|Hlcd|IDDM19|MDA-5|MDA5|RLR-2|SGMRT1 interferon-induced helicase C domain-containing protein 1|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|melanoma differentiation-associated gene 5|melanoma differentiation-associated protein 5|murabutide down-regulated protein 70 0.009581 9.08 1 1 +64137 ABCG4 ATP binding cassette subfamily G member 4 11 protein-coding WHITE2 ATP-binding cassette sub-family G member 4|ATP-binding cassette, sub-family G (WHITE), member 4|putative ABC transporter 67 0.009171 3.041 1 1 +64145 RBSN rabenosyn, RAB effector 3 protein-coding Rabenosyn-5|ZFYVE20 rabenosyn-5|110 kDa protein|FYVE finger-containing Rab5 effector protein rabenosyn-5|RAB effector RBSN|zinc finger, FYVE domain containing 20 52 0.007117 9.527 1 1 +64146 PDF peptide deformylase (mitochondrial) 16 protein-coding - peptide deformylase, mitochondrial|peptide deformylase-like protein|polypeptide deformylase 5 0.0006844 7.505 1 1 +64147 KIF9 kinesin family member 9 3 protein-coding - kinesin-like protein KIF9|kinesin protein 9 54 0.007391 6.916 1 1 +64149 C17orf75 chromosome 17 open reading frame 75 17 protein-coding NJMU-R1|SRI2 protein Njmu-R1|sensitization to ricin complex subunit 2|spermatogenesis-related protein 26 0.003559 7.929 1 1 +64150 DIO3OS DIO3 opposite strand/antisense RNA (head to head) 14 ncRNA C14orf134|DIO3-AS1|DIO3-OS|NCRNA00041 DIO3 opposite strand (non-protein coding)|DIO3 opposite strand/antisense RNA (non-protein coding)|deiodinase, iodothyronine, type III opposite strand|uterine-derived 14 kDa protein 9 0.001232 1.139 1 1 +64151 NCAPG non-SMC condensin I complex subunit G 4 protein-coding CAPG|CHCG|NY-MEL-3|YCG1 condensin complex subunit 3|XCAP-G homolog|chromosome condensation protein G|chromosome-associated protein G|condensin subunit CAP-G|melanoma antigen NY-MEL-3 51 0.006981 7.986 1 1 +64167 ERAP2 endoplasmic reticulum aminopeptidase 2 5 protein-coding L-RAP|LRAP endoplasmic reticulum aminopeptidase 2|leukocyte-derived arginine aminopeptidase 49 0.006707 8.993 1 1 +64168 NECAB1 N-terminal EF-hand calcium binding protein 1 8 protein-coding EFCBP1|STIP-1 N-terminal EF-hand calcium-binding protein 1|EF-hand calcium-binding protein 1|neuronal calcium binding protein|neuronal calcium-binding protein 1|synaptotagmin interacting protein 1 41 0.005612 5.737 1 1 +64170 CARD9 caspase recruitment domain family member 9 9 protein-coding CANDF2|hCARD9 caspase recruitment domain-containing protein 9 36 0.004927 5.539 1 1 +64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 2 protein-coding OSGEPL|Qri7 probable tRNA N6-adenosine threonylcarbamoyltransferase, mitochondrial|N6-L-threonylcarbamoyladenine synthase|O-sialoglycoprotein endopeptidase-like protein 1|probable O-sialoglycoprotein endopeptidase 2|probable tRNA threonylcarbamoyladenosine biosynthesis protein OSGEPL1|putative sialoglycoprotease type 2|t(6)A synthase|t(6)A37 threonylcarbamoyladenosine biosynthesis protein OSGEPL1|tRNA threonylcarbamoyladenosine biosynthesis protein OSGEPL1 22 0.003011 7.347 1 1 +64173 1.506 0 1 +64174 DPEP2 dipeptidase 2 16 protein-coding MBD2 dipeptidase 2 32 0.00438 5.111 1 1 +64175 P3H1 prolyl 3-hydroxylase 1 1 protein-coding GROS1|LEPRE1|OI8 prolyl 3-hydroxylase 1|growth suppressor 1|leprecan|leucine proline-enriched proteoglycan (leprecan) 1|leucine- and proline-enriched proteoglycan 1|procollagen-proline 3-dioxygenase 58 0.007939 9.645 1 1 +64180 DPEP3 dipeptidase 3 16 protein-coding MBD3 dipeptidase 3|membrane-bound dipeptidase 3|metallopeptidase (family M19)|testis secretory sperm-binding protein Li 211a 41 0.005612 1.206 1 1 +64184 EDDM3B epididymal protein 3B 14 protein-coding EP3B|FAM12B|HE3-BETA|HE3B|RAM2 epididymal secretory protein E3-beta|family with sequence similarity 12, member B (epididymal)|human epididymis-specific 3 beta|human epididymis-specific protein 3-beta|ribonuclease A M2 13 0.001779 0.2095 1 1 +64207 IRF2BPL interferon regulatory factor 2 binding protein like 14 protein-coding C14orf4|EAP1 interferon regulatory factor 2-binding protein-like|enhanced at puberty 1|enhanced at puberty protein 1 68 0.009307 10.28 1 1 +64208 POPDC3 popeye domain containing 3 6 protein-coding POP3|bA355M14.1 popeye domain-containing protein 3|popeye protein 3 32 0.00438 3.38 1 1 +64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component 10 protein-coding MET18|MMS19L|hMMS19 MMS19 nucleotide excision repair protein homolog|MET18 homolog|MMS19 cytosolic iron-sulfur assembly component|MMS19 nucleotide excision repair homolog|MMS19-like (MET18 homolog, S. cerevisiae)|MMS19-like protein|homolog of yeast MMS19 30 0.004106 10.23 1 1 +64211 LHX5 LIM homeobox 5 12 protein-coding - LIM/homeobox protein Lhx5|LIM homeobox protein 5 26 0.003559 1.013 1 1 +64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 10 protein-coding DNAJL1|ERdj1|HTJ1|MTJ1 dnaJ homolog subfamily C member 1|DnaJ (Hsp40) homolog, subfamily C, member 1|DnaJ-like protein|dnaJ protein homolog MTJ1 51 0.006981 9.459 1 1 +64216 TFB2M transcription factor B2, mitochondrial 1 protein-coding Hkp1|mtTFB2 dimethyladenosine transferase 2, mitochondrial|HCV NS5A-transactivated protein 5|S-adenosylmethionine-6-N', N'-adenosyl(rRNA) dimethyltransferase 2|h-mtTFB|h-mtTFB2|hTFB2M|hepatitis C virus NS5A-transactivated protein 5|mitochondrial 12S rRNA dimethylase 2|mitochondrial transcription factor B2 33 0.004517 8.55 1 1 +64218 SEMA4A semaphorin 4A 1 protein-coding CORD10|RP35|SEMAB|SEMB semaphorin-4A|sema B|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A|semaphorin-B 55 0.007528 8.855 1 1 +64219 PJA1 praja ring finger ubiquitin ligase 1 X protein-coding PRAJA1|RNF70 E3 ubiquitin-protein ligase Praja-1|RING finger protein 70|praja 1|praja ring finger 1, E3 ubiquitin protein ligase 54 0.007391 9.439 1 1 +64220 STRA6 stimulated by retinoic acid 6 15 protein-coding MCOPCB8|MCOPS9|PP14296 stimulated by retinoic acid gene 6 protein homolog|retinol binding protein 4 receptor|stimulated by retinoic acid 6 homolog|stimulated by retinoic acid gene 6 homolog 37 0.005064 6.473 1 1 +64221 ROBO3 roundabout guidance receptor 3 11 protein-coding HGPPS|HGPS|RBIG1|RIG1 roundabout homolog 3|retinoblastoma inhibiting gene 1|roundabout, axon guidance receptor, homolog 3|roundabout-like protein 3 104 0.01423 6.318 1 1 +64222 TOR3A torsin family 3 member A 1 protein-coding ADIR|ADIR2 torsin-3A|ATP-dependant interferon response protein 1|ATP-dependant interferon responsive|ATP-dependent interferon-responsive protein 20 0.002737 10.11 1 1 +64223 MLST8 MTOR associated protein, LST8 homolog 16 protein-coding GBL|GbetaL|LST8|POP3|WAT1 target of rapamycin complex subunit LST8|TORC subunit LST8|gable|mammalian lethal with SEC13 protein 8|protein GbetaL 25 0.003422 10.01 1 1 +64224 HERPUD2 HERPUD family member 2 7 protein-coding - homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 2 protein|homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 2 35 0.004791 9.395 1 1 +64225 ATL2 atlastin GTPase 2 2 protein-coding ARL3IP2|ARL6IP2|aip-2|atlastin2 atlastin-2|ADP-ribosylation factor-like protein 6-interacting protein 2|ARL-6-interacting protein 2 35 0.004791 10.07 1 1 +64231 MS4A6A membrane spanning 4-domains A6A 11 protein-coding 4SPAN3|4SPAN3.2|CD20L3|CDA01|MS4A6|MST090|MSTP090 membrane-spanning 4-domains subfamily A member 6A|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 30 0.004106 8.773 1 1 +64232 MS4A5 membrane spanning 4-domains A5 11 protein-coding CD20-L2|CD20L2|TETM4 membrane-spanning 4-domains subfamily A member 5|CD20 antigen-like 2|testis-expressed transmembrane protein 4|testis-expressed transmembrane-4 protein 18 0.002464 0.009701 1 1 +64236 PDLIM2 PDZ and LIM domain 2 8 protein-coding MYSTIQUE|SLIM PDZ and LIM domain protein 2|PDZ and LIM domain 2 (mystique) 31 0.004243 8.892 1 1 +64240 ABCG5 ATP binding cassette subfamily G member 5 2 protein-coding STSL ATP-binding cassette sub-family G member 5|ATP-binding cassette, sub-family G (WHITE), member 5|sterolin 1 48 0.00657 2.023 1 1 +64241 ABCG8 ATP binding cassette subfamily G member 8 2 protein-coding GBD4|STSL ATP-binding cassette sub-family G member 8|ATP-binding cassette, sub-family G (WHITE), member 8|sterolin 2 75 0.01027 1.293 1 1 +64282 PAPD5 poly(A) RNA polymerase D5, non-canonical 16 protein-coding TRF4-2 non-canonical poly(A) RNA polymerase PAPD5|PAP associated domain containing 5|PAP-associated domain-containing protein 5|TUTase 3|terminal uridylyltransferase 3|topoisomerase-related function protein 4-2 31 0.004243 8.527 1 1 +64283 ARHGEF28 Rho guanine nucleotide exchange factor 28 5 protein-coding RGNEF|RIP2|p190RHOGEF rho guanine nucleotide exchange factor 28|190 kDa guanine nucleotide exchange factor|Rho guanine nucleotide exchange factor (GEF) 28|Rho interacting protein 2|p190-RhoGEF|rho-guanine nucleotide exchange factor 76 0.0104 7.987 1 1 +64284 RAB17 RAB17, member RAS oncogene family 2 protein-coding - ras-related protein Rab-17 9 0.001232 7.437 1 1 +64285 RHBDF1 rhomboid 5 homolog 1 16 protein-coding C16orf8|Dist1|EGFR-RS|gene-89|gene-90|hDist1 inactive rhomboid protein 1|epidermal growth factor receptor, related sequence|epidermal growth factor receptor-related protein|iRhom1|p100hRho|rhomboid family 1|rhomboid family member 1 49 0.006707 9.244 1 1 +64288 ZSCAN31 zinc finger and SCAN domain containing 31 6 protein-coding ZNF20-Lp|ZNF310P|ZNF323 zinc finger and SCAN domain-containing protein 31|zinc finger protein 323 38 0.005201 7.39 1 1 +64318 NOC3L NOC3 like DNA replication regulator 10 protein-coding AD24|C10orf117|FAD24 nucleolar complex protein 3 homolog|NOC3 protein homolog|NOC3L DNA replication regulator|factor for adipocyte differentiation 24|nucleolar complex associated 3 homolog|nucleolar complex-associated protein 3-like protein 50 0.006844 8.594 1 1 +64319 FBRS fibrosin 16 protein-coding FBS|FBS1 probable fibrosin-1|fibrogenic lymphokine|fibrosin 1|probable fibrosin-1 long transcript protein 28 0.003832 10.72 1 1 +64320 RNF25 ring finger protein 25 2 protein-coding AO7 E3 ubiquitin-protein ligase RNF25|ring finger protein AO7 25 0.003422 8.871 1 1 +64321 SOX17 SRY-box 17 8 protein-coding VUR3 transcription factor SOX-17|SRY (sex determining region Y)-box 17|SRY-related HMG-box transcription factor SOX17 34 0.004654 5.744 1 1 +64324 NSD1 nuclear receptor binding SET domain protein 1 5 protein-coding ARA267|KMT3B|SOTOS|SOTOS1|STO histone-lysine N-methyltransferase, H3 lysine-36 and H4 lysine-20 specific|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|lysine N-methyltransferase 3B|nuclear receptor-binding SET domain-containing protein 1 216 0.02956 10.71 1 1 +64326 RFWD2 ring finger and WD repeat domain 2 1 protein-coding COP1|RNF200 E3 ubiquitin-protein ligase RFWD2|RING finger protein 200|constitutive photomorphogenesis protein 1 homolog|constitutive photomorphogenic protein 1|putative ubiquitin ligase COP1|ring finger and WD repeat domain 2, E3 ubiquitin protein ligase 58 0.007939 9.905 1 1 +64327 LMBR1 limb development membrane protein 1 7 protein-coding ACHP|C7orf2|DIF14|LSS|PPD2|THYP|TPT|ZRS limb region 1 protein homolog|differentiation-related gene 14 protein|limb region 1 homolog 25 0.003422 9.907 1 1 +64328 XPO4 exportin 4 13 protein-coding exp4 exportin-4 75 0.01027 9.204 1 1 +64332 NFKBIZ NFKB inhibitor zeta 3 protein-coding IKBZ|INAP|MAIL NF-kappa-B inhibitor zeta|I-kappa-B-zeta|IL-1 inducible nuclear ankyrin-repeat protein|Ikappa B-zeta variant 3|IkappaB-zeta|ikB-zeta|ikappaBzeta|molecule possessing ankyrin repeats induced by lipopolysaccharide|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, zeta 47 0.006433 8.474 1 1 +64333 ARHGAP9 Rho GTPase activating protein 9 12 protein-coding 10C|RGL1 rho GTPase-activating protein 9|rho-type GTPase-activating protein 9 64 0.00876 6.978 1 1 +64342 HS1BP3 HCLS1 binding protein 3 2 protein-coding ETM2|HS1-BP3 HCLS1-binding protein 3|HS1-binding protein 3|HSP1BP-3 27 0.003696 9.651 1 1 +64343 AZI2 5-azacytidine induced 2 3 protein-coding AZ2|NAP1|TILP 5-azacytidine-induced protein 2|5-azacytidine induced gene 2|NAK-associated protein 1|NF-kappa-B-activating kinase-associated protein 1 28 0.003832 9.575 1 1 +64344 HIF3A hypoxia inducible factor 3 alpha subunit 19 protein-coding HIF-3A|HIF3-alpha-1|IPAS|MOP7|PASD7|bHLHe17 hypoxia-inducible factor 3-alpha|PAS domain-containing protein 7|basic-helix-loop-helix-PAS protein MOP7|class E basic helix-loop-helix protein 17|inhibitory PAS domain protein|member of PAS protein 7 74 0.01013 5.191 1 1 +64359 NXN nucleoredoxin 17 protein-coding NRX|TRG-4 nucleoredoxin|nucleoredoxin 1 30 0.004106 9.537 1 1 +64374 SIL1 SIL1 nucleotide exchange factor 5 protein-coding BAP|MSS|ULG5 nucleotide exchange factor SIL1|BiP-associated protein|SIL1 homolog, endoplasmic reticulum chaperone|SIL1-like protein endoplasmic reticulum chaperone 23 0.003148 9.985 1 1 +64375 IKZF4 IKAROS family zinc finger 4 12 protein-coding EOS|ZNFN1A4 zinc finger protein Eos|IKAROS family zinc finger 4 (Eos)|ikaros family zinc finger protein 4|zinc finger protein, subfamily 1A, 4 (Eos)|zinc finger transcription factor Eos 35 0.004791 7.813 1 1 +64376 IKZF5 IKAROS family zinc finger 5 10 protein-coding PEGASUS|ZNFN1A5 zinc finger protein Pegasus|IKAROS family zinc finger 5 (Pegasus)|zinc finger protein, subfamily 1A, 5 (Pegasus)|zinc finger transcription factor Pegasus 25 0.003422 8.76 1 1 +64377 CHST8 carbohydrate sulfotransferase 8 19 protein-coding GALNAC4ST1|GalNAc4ST|PSS3 carbohydrate sulfotransferase 8|GALNAC-4-ST1|GalNAc-4-O-sulfotransferase 1|N-acetylgalactosamine-4-O-sulfotransferase 1|carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 8|galNAc4ST-1 48 0.00657 3.228 1 1 +64386 MMP25 matrix metallopeptidase 25 16 protein-coding MMP-25|MMP20|MMP20A|MMPL1|MT-MMP 6|MT-MMP6|MT6-MMP|MT6MMP|MTMMP6 matrix metalloproteinase-25|leukolysin|matrix metallopeptidase-like 1|matrix metalloproteinase 20|matrix metalloproteinase-like 1|membrane-type 6 matrix metalloproteinase|membrane-type matrix metalloproteinase 6 38 0.005201 5.64 1 1 +64388 GREM2 gremlin 2, DAN family BMP antagonist 1 protein-coding CKTSF1B2|DAND3|PRDC gremlin-2|DAN domain family member 3|cysteine knot superfamily 1, BMP antagonist 2|gremlin 2, cysteine knot superfamily, homolog|protein related to DAN and cerberus 34 0.004654 4.165 1 1 +64393 ZMAT3 zinc finger matrin-type 3 3 protein-coding PAG608|WIG-1|WIG1 zinc finger matrin-type protein 3|WIG-1/PAG608 protein|p53 target zinc finger protein|p53-activated gene 608 protein|zinc finger protein WIG1 28 0.003832 6.964 1 1 +64395 GMCL1 germ cell-less, spermatogenesis associated 1 2 protein-coding BTBD13|GCL|GCL1|SPATA29 germ cell-less protein-like 1|germ cell-less homolog 1|spermatogenesis associated 29 24 0.003285 8.072 1 1 +64396 GMCL1P1 germ cell-less, spermatogenesis associated 1 pseudogene 1 5 pseudo GCL|GMCL1L|GMCL2 germ cell-less homolog 1 pseudogene 1|germ cell-less related 1 0.0001369 2.135 1 1 +64397 ZNF106 zinc finger protein 106 15 protein-coding SH3BP3|ZFP106|ZNF474 zinc finger protein 106|SH3-domain binding protein 3|zinc finger protein 474 85 0.01163 10.57 1 1 +64398 MPP5 membrane palmitoylated protein 5 14 protein-coding PALS1 MAGUK p55 subfamily member 5|membrane protein, palmitoylated 5 (MAGUK p55 subfamily member 5)|protein associated with Lin-7 1|protein associated with lin seven 1|stardust 36 0.004927 9.533 1 1 +64399 HHIP hedgehog interacting protein 4 protein-coding HIP hedgehog-interacting protein 64 0.00876 3.165 1 1 +64400 AKTIP AKT interacting protein 16 protein-coding FT1|FTS AKT-interacting protein|fused toes homolog 13 0.001779 9.036 1 1 +64403 CDH24 cadherin 24 14 protein-coding CDH11L cadherin-24|cadherin 24, type 2 59 0.008076 7.636 1 1 +64405 CDH22 cadherin 22 20 protein-coding C20orf25|dJ998H6.1 cadherin-22|PB-cadherin|cadherin 22, type 2|cadherin-like 22|ortholog of rat PB-cadherin|pituitary and brain cadherin 74 0.01013 2.964 1 1 +64407 RGS18 regulator of G-protein signaling 18 1 protein-coding RGS13 regulator of G-protein signaling 18|regulator of G-protein signalling 13|regulator of G-protein signalling 18 47 0.006433 4.629 1 1 +64409 WBSCR17 Williams-Beuren syndrome chromosome region 17 7 protein-coding GALNACT17|GALNT16|GALNT20|GALNTL3|GalNAc-T5L putative polypeptide N-acetylgalactosaminyltransferase-like protein 3|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 3|polypeptide GalNAc transferase-like protein 3|polypeptide N-acetylgalactosaminyltransferase WBSCR17|polypeptide N-acetylgalactosaminyltransferase-like 3|pp-GaNTase-like protein 3|pp-GalNAc-transferase 20|protein-UDP acetylgalactosaminyltransferase-like protein 3|williams-Beuren syndrome chromosomal region 17 protein 148 0.02026 5.367 1 1 +64410 KLHL25 kelch like family member 25 15 protein-coding ENC-2|ENC2 kelch-like protein 25|BTB/POZ KELCH domain protein|ectoderm-neural cortex protein 2|ectodermal-neural cortex 2|kelch-like 25 39 0.005338 8.086 1 1 +64411 ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 5 protein-coding CENTD3|DRAG1 arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 3|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|centaurin-delta-3|phosphoinositide binding protein 103 0.0141 8.402 1 1 +64412 GZF1 GDNF inducible zinc finger protein 1 20 protein-coding ZBTB23|ZNF336 GDNF-inducible zinc finger protein 1|zinc finger and BTB domain-containing protein 23|zinc finger protein 336 60 0.008212 8.793 1 1 +64417 TMEM267 transmembrane protein 267 5 protein-coding C5orf28 transmembrane protein C5orf28 15 0.002053 8.076 1 1 +64418 TMEM168 transmembrane protein 168 7 protein-coding - transmembrane protein 168 61 0.008349 9.251 1 1 +64419 MTMR14 myotubularin related protein 14 3 protein-coding C3orf29 myotubularin-related protein 14|HCV NS5A-transactivated protein 4 splice variant A-binding protein 1|NS5ATP4ABP1|egg-derived tyrosine phosphatase homolog|jumpy 41 0.005612 9.687 1 1 +64420 SUSD1 sushi domain containing 1 9 protein-coding - sushi domain-containing protein 1 53 0.007254 7.946 1 1 +64421 DCLRE1C DNA cross-link repair 1C 10 protein-coding A-SCID|DCLREC1C|RS-SCID|SCIDA|SNM1C protein artemis|DNA cross-link repair 1C (PSO2 homolog, S. cerevisiae)|SNM1 homolog C|SNM1-like protein|severe combined immunodeficiency, type a (Athabascan) 54 0.007391 7.923 1 1 +64422 ATG3 autophagy related 3 3 protein-coding APG3|APG3-LIKE|APG3L|PC3-96 ubiquitin-like-conjugating enzyme ATG3|2610016C12Rik|ATG3 autophagy related 3 homolog|autophagy-related protein 3|hApg3 19 0.002601 9.821 1 1 +64423 INF2 inverted formin, FH2 and WH2 domain containing 14 protein-coding C14orf151|C14orf173|CMTDIE|FSGS5|pp9484 inverted formin-2|HBEAG-binding protein 2 binding protein C|HBEBP2-binding protein C 71 0.009718 11.1 1 1 +64425 POLR1E RNA polymerase I subunit E 9 protein-coding PAF53|PRAF1 DNA-directed RNA polymerase I subunit RPA49|DNA-directed RNA polymerase I subunit E|RNA polymerase I subunit A49|RNA polymerase I-associated factor 53|polymerase (RNA) I associated factor 1|polymerase (RNA) I polypeptide E|polymerase (RNA) I polypeptide E, 53kDa|polymerase (RNA) I subunit E 23 0.003148 8.831 1 1 +64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component 12 protein-coding SAP45|SDS3 sin3 histone deacetylase corepressor complex component SDS3|45 kDa Sin3-associated polypeptide|sin3A-associated protein, 45kDa|suppressor of defective silencing 3 protein homolog 16 0.00219 10.14 1 1 +64427 TTC31 tetratricopeptide repeat domain 31 2 protein-coding - tetratricopeptide repeat protein 31|TPR repeat protein 31 32 0.00438 8.99 1 1 +64428 NARFL nuclear prelamin A recognition factor like 16 protein-coding HPRN|IOP1|LET1L|NAR1|PRN cytosolic Fe-S cluster assembly factor NARFL|LET1 like/JFP15|iron-only hydrogenase-like protein 1|protein related to Narf 28 0.003832 9.327 1 1 +64429 ZDHHC6 zinc finger DHHC-type containing 6 10 protein-coding DHHC-6|ZNF376 palmitoyltransferase ZDHHC6|transmembrane protein H4|zinc finger DHHC domain-containing protein 6|zinc finger protein 376 25 0.003422 9.454 1 1 +64430 PCNX4 pecanex homolog 4 (Drosophila) 14 protein-coding C14orf135|FBP2|PCNXL4 pecanex-like protein 4|HCV F protein-binding protein 2|HCV F-interacting protein|hepatitis C virus F protein-binding protein 2|pecanex homolog protein 4|pecanex-like 4|pecanex-like protein C14orf135 66 0.009034 9.36 1 1 +64431 ACTR6 ARP6 actin-related protein 6 homolog 12 protein-coding ARP6|CDA12|HSPC281|MSTP136|hARP6|hARPX actin-related protein 6 32 0.00438 8.909 1 1 +64432 MRPS25 mitochondrial ribosomal protein S25 3 protein-coding MRP-S25|RPMS25 28S ribosomal protein S25, mitochondrial|S25mt|mitochondrial 28S ribosomal protein S25 12 0.001642 9.931 1 1 +64433 LINC00244 long intergenic non-protein coding RNA 244 7 ncRNA C7orf4|NCRNA00244 Putative uncharacterized protein C7orf4 0.4713 0 1 +64434 NOM1 nucleolar protein with MIF4G domain 1 7 protein-coding C7orf3|PPP1R113|SGD1 nucleolar MIF4G domain-containing protein 1|SGD1 homolog|protein phosphatase 1, regulatory subunit 113 65 0.008897 8.774 1 1 +64446 DNAI2 dynein axonemal intermediate chain 2 17 protein-coding CILD9|DIC2 dynein intermediate chain 2, axonemal|dynein, axonemal, intermediate polypeptide 2 68 0.009307 0.8638 1 1 +64478 CSMD1 CUB and Sushi multiple domains 1 8 protein-coding PPP1R24 CUB and sushi domain-containing protein 1|protein phosphatase 1, regulatory subunit 24 505 0.06912 3.12 1 1 +64493 LINC00235 long intergenic non-protein coding RNA 235 16 ncRNA C16orf10|LA16c-356B8.1|NCRNA00235 - 1.182 0 1 +64499 TPSB2 tryptase beta 2 (gene/pseudogene) 16 protein-coding TPS2|tryptaseB|tryptaseC tryptase beta-2|mast cell tryptase beta II|mast cell tryptase beta III|testicular tissue protein Li 163 19 0.002601 6.842 1 1 +64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 15 protein-coding CPE-BP1|CPEB|CPEB-1|h-CPEB|hCPEB-1 cytoplasmic polyadenylation element-binding protein 1|CPE-binding protein 1 47 0.006433 3.748 1 1 +64518 TEKT3 tektin 3 17 protein-coding - tektin-3|testicular microtubules-related protein 45 0.006159 2.32 1 1 +64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 6 protein-coding ALDH12|DJ352A20.2 aldehyde dehydrogenase family 8 member A1|aldehyde dehydrogenase 12|aldehyde dehydrogenase family protein 54 0.007391 3.682 1 1 +64579 NDST4 N-deacetylase and N-sulfotransferase 4 4 protein-coding N-HSST|N-HSST 4|NDST-4|NHSST4 bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 4|N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 4|N-deacetylase/N-sulfotransferase 4|N-heparan sulfate sulfotransferase 4|glucosaminyl N-deacetylase/N-sulfotransferase 4 142 0.01944 0.764 1 1 +64581 CLEC7A C-type lectin domain family 7 member A 12 protein-coding BGR|CANDF4|CD369|CLECSF12|DECTIN1|SCARE2 C-type lectin domain family 7 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 12|C-type lectin superfamily member 12|DC-associated C-type lectin 1|beta-glucan receptor|dectin-1|dendritic cell-associated C-type lectin-1|lectin-like receptor 1 25 0.003422 6.949 1 1 +64582 GPR135 G protein-coupled receptor 135 14 protein-coding HUMNPIIY20 probable G-protein coupled receptor 135 24 0.003285 3.721 1 1 +64591 TSPY2 testis specific protein, Y-linked 2 Y protein-coding TSPYQ1 testis-specific Y-encoded protein 2|testis-specific Y-encoded protein Q1 5 0.0006844 0.2493 1 1 +64593 RBMY3AP RNA binding motif protein, Y-linked, family 3, member A pseudogene Y pseudo RBMY3P|RBMY4P|SPATA14 RNA binding motif protein, Y chromosome, family 3 pseudogene|RNA binding motif protein, Y chromosome, family 4 pseudogene 0.006447 0 1 +64595 TTTY15 testis-specific transcript, Y-linked 15 (non-protein coding) Y ncRNA NCRNA00138 - 3.29 0 1 +64598 MOSPD3 motile sperm domain containing 3 7 protein-coding CDS3|NET30 motile sperm domain-containing protein 3 18 0.002464 8.653 1 1 +64599 GIGYF1 GRB10 interacting GYF protein 1 7 protein-coding GYF1|PERQ1 PERQ amino acid-rich with GYF domain-containing protein 1|GYF domain containing 1|PERQ amino acid rich, with GYF domain 1|postmeiotic segregation increased 2-like 12 84 0.0115 10.41 1 1 +64600 PLA2G2F phospholipase A2 group IIF 1 protein-coding - group IIF secretory phospholipase A2|GIIF sPLA2|phosphatidylcholine 2-acylhydrolase 2F|sPLA2-IIF 19 0.002601 1.674 1 1 +64601 VPS16 VPS16, CORVET/HOPS core subunit 20 protein-coding hVPS16 vacuolar protein sorting-associated protein 16 homolog|vacuolar protein sorting 16 homolog|vacuolar protein sorting protein 16 60 0.008212 9.87 1 1 +64641 EBF2 early B-cell factor 2 8 protein-coding COE2|EBF-2|O/E-3|OE-3 transcription factor COE2|Collier, Olf and EBF 2|OLF-1/EBF-LIKE 3|metencephalon-mesencephalnon-olfactory transcription factor 1 65 0.008897 2.714 1 1 +64645 MFSD14A major facilitator superfamily domain containing 14A 1 protein-coding HIAT1 hippocampus abundant transcript 1 protein|hippocampus abundant gene transcript 1|putative tetracycline transporter-like protein|tetracycline transporter-like protein 26 0.003559 9.975 1 1 +64648 SPANXD SPANX family member D X protein-coding CT11.4|SPANX-C|SPANX-D|SPANX-E|SPANXE|dJ171K16.1 sperm protein associated with the nucleus on the X chromosome D|SPANX family, member E|cancer/testis antigen 11.4|cancer/testis antigen family 11, member 4|nuclear-associated protein SPAN-Xd|nuclear-associated protein SPAN-Xe|sperm protein associated with the nucleus, X chromosome, family member D|sperm protein associated with the nucleus, X chromosome, family member E 19 0.002601 1 0 +64651 CSRNP1 cysteine and serine rich nuclear protein 1 3 protein-coding AXUD1|CSRNP-1|FAM130B|TAIP-3|URAX1 cysteine/serine-rich nuclear protein 1|AXIN1 up-regulated 1|TGF-beta-induced apoptosis protein 3|axin-1 up-regulated gene 1 protein 33 0.004517 9.609 1 1 +64663 SPANXC SPANX family member C X protein-coding C|CT11.3|CTp11|SPANX-C sperm protein associated with the nucleus on the X chromosome C|SPAN-Xc protein|cancer-testis-associated protein CTp11|cancer/testis antigen 11.3|cancer/testis antigen family 11, member 3|cancer/testis-associated protein of 11 kD|nuclear-associated protein SPAN-Xc|sperm protein associated with the nucleus, X chromosome, family member C 18 0.002464 0.3474 1 1 +64682 ANAPC1 anaphase promoting complex subunit 1 2 protein-coding APC1|MCPR|TSG24 anaphase-promoting complex subunit 1|anaphase-promoting complex 1 (meiotic checkpoint regulator)|cyclosome subunit 1|mitotic checkpoint regulator|testis-specific gene 24 protein 91 0.01246 9.147 1 1 +64689 GORASP1 golgi reassembly stacking protein 1 3 protein-coding GOLPH5|GRASP65|P65 Golgi reassembly-stacking protein 1|Golgi peripheral membrane protein p65|Golgi phosphoprotein 5|Golgi reassembly and stacking protein 1|golgi reassembly stacking protein 1, 65kDa|golgi reassembly-stacking protein of 65 kDa 21 0.002874 9.934 1 1 +64693 CTAGE1 cutaneous T-cell lymphoma-associated antigen 1 18 protein-coding CT21.1|CT21.2|CTAGE|CTAGE-1|CTAGE-2 cTAGE family member 2|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 79 0.01081 2.849 1 1 +64699 TMPRSS3 transmembrane protease, serine 3 21 protein-coding DFNB10|DFNB8|ECHOS1|TADG12 transmembrane protease serine 3|serine protease TADG-12|tumor-associated differentially-expressed gene 12 protein 45 0.006159 5.59 1 1 +64708 COPS7B COP9 signalosome subunit 7B 2 protein-coding CSN7B|SGN7b COP9 signalosome complex subunit 7b|COP9 constitutive photomorphogenic homolog subunit 7B|JAB1-containing signalosome subunit 7b|signalosome subunit 7b 17 0.002327 9.455 1 1 +64710 NUCKS1 nuclear casein kinase and cyclin dependent kinase substrate 1 1 protein-coding JC7|NUCKS nuclear ubiquitous casein and cyclin-dependent kinase substrate 1|P1|nuclear ubiquitous casein kinase and cyclin-dependent kinase substrate|potential LAG1 interactor 16 0.00219 12.88 1 1 +64711 HS3ST6 heparan sulfate-glucosamine 3-sulfotransferase 6 16 protein-coding 3-OST-6|HS3ST5 heparan sulfate glucosamine 3-O-sulfotransferase 6|heparan sulfate (glucosamine) 3-O-sulfotransferase 5|heparan sulfate (glucosamine) 3-O-sulfotransferase 6|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 6|heparan sulphate D-glucosaminyl 3-O-sulfotransferase-3B like 20 0.002737 1.682 1 1 +64714 PDIA2 protein disulfide isomerase family A member 2 16 protein-coding PDA2|PDI|PDIP|PDIR protein disulfide-isomerase A2|Rho GDP dissociation inhibitor gamma|pancreas-specific protein disulfide isomerase|pancreatic protein disulfide isomerase|protein disulfide isomerase, pancreatic|protein disulfide isomerase-associated 2 39 0.005338 3.054 1 1 +64718 UNKL unkempt family like zinc finger 16 protein-coding C16orf28|ZC3H5L|ZC3HDC5L putative E3 ubiquitin-protein ligase UNKL|RING finger protein unkempt-like|unkempt family zinc finger-like|unkempt homolog-like|zinc finger CCCH domain-containing protein 5-like 31 0.004243 8.45 1 1 +64743 WDR13 WD repeat domain 13 X protein-coding MG21 WD repeat-containing protein 13 49 0.006707 10.7 1 1 +64744 SMAP2 small ArfGAP2 1 protein-coding SMAP1L stromal membrane-associated protein 2|stromal membrane-associated GTPase-activating protein 2 26 0.003559 10.16 1 1 +64745 METTL17 methyltransferase like 17 14 protein-coding METT11D1 methyltransferase-like protein 17, mitochondrial|false p73 target gene protein|methyltransferase 11 domain containing 1|methyltransferase 11 domain-containing protein 1|protein RSM22 homolog, mitochondrial 37 0.005064 9.131 1 1 +64746 ACBD3 acyl-CoA binding domain containing 3 1 protein-coding GCP60|GOCAP1|GOLPH1|PAP7 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 37 0.005064 10.46 1 1 +64747 MFSD1 major facilitator superfamily domain containing 1 3 protein-coding SMAP4 major facilitator superfamily domain-containing protein 1|smooth muscle cell-associated protein 4 35 0.004791 10.43 1 1 +64748 PLPPR2 phospholipid phosphatase related 2 19 protein-coding LPPR2|PRG4 phospholipid phosphatase-related protein type 2|PRG-4|lipid phosphate phosphatase-related protein type 2|plasticity related gene 4|plasticity-related gene 4 protein 16 0.00219 9.481 1 1 +64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 17 protein-coding - E3 ubiquitin-protein ligase SMURF2|E3 ubiquitin ligase SMURF2|SMAD ubiquitination regulatory factor 2|hSMURF2 43 0.005886 8.741 1 1 +64753 CCDC136 coiled-coil domain containing 136 7 protein-coding NAG6 coiled-coil domain-containing protein 136|nasopharyngeal carcinoma-associated gene 6 protein 77 0.01054 5.136 1 1 +64754 SMYD3 SET and MYND domain containing 3 1 protein-coding KMT3E|ZMYND1|ZNFN3A1|bA74P14.1 histone-lysine N-methyltransferase SMYD3|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 35 0.004791 8.142 1 1 +64755 C16orf58 chromosome 16 open reading frame 58 16 protein-coding RUS RUS1 family protein C16orf58|UPF0420 protein C16orf58 23 0.003148 11.21 1 1 +64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 1 protein-coding ATP11|ATP11p ATP synthase mitochondrial F1 complex assembly factor 1|homolog of yeast ATP11 18 0.002464 10.18 1 1 +64757 MARC1 mitochondrial amidoxime reducing component 1 1 protein-coding MOSC1 mitochondrial amidoxime-reducing component 1|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 25 0.003422 8.024 1 1 +64759 TNS3 tensin 3 7 protein-coding TEM6|TENS1 tensin-3|tensin-like SH2 domain containing 1|tensin-like SH2 domain-containing protein 1|thyroid specific PTB domain protein|tumor endothelial marker 6 111 0.01519 11.18 1 1 +64760 FAM160B2 family with sequence similarity 160 member B2 8 protein-coding RAI16 protein FAM160B2|retinoic acid induced 16|retinoic acid-induced protein 16 32 0.00438 10.01 1 1 +64761 PARP12 poly(ADP-ribose) polymerase family member 12 7 protein-coding ARTD12|MST109|MSTP109|ZC3H1|ZC3HDC1 poly [ADP-ribose] polymerase 12|ADP-ribosyltransferase diphtheria toxin-like 12|zinc finger CCCH type domain containing 1 42 0.005749 9.708 1 1 +64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 18 protein-coding C18orf11|FAM59A|GAREM|Gm944 GRB2-associated and regulator of MAPK protein 1|GRB2 associated regulator of MAPK1 1|GRB2 associated, regulator of MAPK1|GRB2-associated and regulator of MAPK protein|GRB2-associated and regulator of MAPK1|Grb2-associated and regulator of Erk/MAPK|family with sequence similarity 59, member A|protein FAM59A 52 0.007117 6.972 1 1 +64763 ZNF574 zinc finger protein 574 19 protein-coding FP972 zinc finger protein 574 52 0.007117 9.138 1 1 +64764 CREB3L2 cAMP responsive element binding protein 3 like 2 7 protein-coding BBF2H7 cyclic AMP-responsive element-binding protein 3-like protein 2|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 37 0.005064 10.87 1 1 +64766 S100PBP S100P binding protein 1 protein-coding S100PBPR S100P-binding protein|S100P binding protein 1 30 0.004106 8.873 1 1 +64768 IPPK inositol-pentakisphosphate 2-kinase 9 protein-coding C9orf12|INSP5K2|IP5K|IPK1|bA476B13.1 inositol-pentakisphosphate 2-kinase|IPK1 homolog|bA476B13.1 (novel protein)|inositol 1,3,4,5,6-pentakisphosphate 2-kinase|ins(1,3,4,5,6)P5 2-kinase|insP5 2-kinase 34 0.004654 8.505 1 1 +64769 MEAF6 MYST/Esa1 associated factor 6 1 protein-coding C1orf149|CENP-28|EAF6|NY-SAR-91 chromatin modification-related protein MEAF6|Esa1p-associated factor 6 homolog|centromere protein 28|protein EAF6 homolog|sarcoma antigen NY-SAR-91 16 0.00219 10.4 1 1 +64770 CCDC14 coiled-coil domain containing 14 3 protein-coding - coiled-coil domain-containing protein 14 64 0.00876 9.367 1 1 +64771 C6orf106 chromosome 6 open reading frame 106 6 protein-coding FP852|dJ391O22.4 uncharacterized protein C6orf106 13 0.001779 11.64 1 1 +64772 ENGASE endo-beta-N-acetylglucosaminidase 17 protein-coding - cytosolic endo-beta-N-acetylglucosaminidase|Di-N-acetylchitobiosyl beta-N-acetylglucosaminidase|Mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase 61 0.008349 8.951 1 1 +64773 PCED1A PC-esterase domain containing 1A 20 protein-coding C20orf81|FAM113A|bA12M19.1 PC-esterase domain-containing protein 1A|family with sequence similarity 113, member A|sarcoma antigen NY-SAR-23 39 0.005338 9.322 1 1 +64776 C11orf1 chromosome 11 open reading frame 1 11 protein-coding - UPF0686 protein C11orf1 11 0.001506 8.074 1 1 +64777 RMND5B required for meiotic nuclear division 5 homolog B 5 protein-coding GID2|GID2B protein RMD5 homolog B|GID complex subunit 2 homolog B 20 0.002737 9.384 1 1 +64778 FNDC3B fibronectin type III domain containing 3B 3 protein-coding FAD104|PRO4979|YVTM2421 fibronectin type III domain-containing protein 3B|HCV NS5A-binding protein 37|factor for adipocyte differentiation 104 78 0.01068 10.68 1 1 +64779 MTHFSD methenyltetrahydrofolate synthetase domain containing 16 protein-coding - methenyltetrahydrofolate synthase domain-containing protein|methenyltetrahydrofolate synthetase domain-containing protein 23 0.003148 8.217 1 1 +64780 MICAL1 microtubule associated monooxygenase, calponin and LIM domain containing 1 6 protein-coding MICAL|MICAL-1|NICAL protein-methionine sulfoxide oxidase MICAL1|NEDD9-interacting protein with calponin homology and LIM domains|molecule interacting with CasL protein 1 67 0.009171 9.388 1 1 +64781 CERK ceramide kinase 22 protein-coding LK4|dA59H18.2|dA59H18.3|hCERK ceramide kinase|acylsphingosine kinase|lipid kinase 4|lipid kinase LK4 32 0.00438 9.87 1 1 +64782 AEN apoptosis enhancing nuclease 15 protein-coding ISG20L1|pp12744 apoptosis-enhancing nuclease|interferon stimulated exonuclease gene 20kDa-like 1|interferon-stimulated 20 kDa exonuclease-like 1 26 0.003559 9.293 1 1 +64783 RBM15 RNA binding motif protein 15 1 protein-coding OTT|OTT1|SPEN putative RNA-binding protein 15|one twenty two protein|one twenty-two|one-twenty two protein 1 77 0.01054 7.392 1 1 +64784 CRTC3 CREB regulated transcription coactivator 3 15 protein-coding TORC-3|TORC3 CREB-regulated transcription coactivator 3|transducer of regulated CREB protein 3|transducer of regulated cAMP response element-binding protein (CREB) 3 40 0.005475 10 1 1 +64785 GINS3 GINS complex subunit 3 16 protein-coding PSF3 DNA replication complex GINS protein PSF3|GINS complex subunit 3 (Psf3 homolog) 16 0.00219 7.563 1 1 +64786 TBC1D15 TBC1 domain family member 15 12 protein-coding RAB7-GAP TBC1 domain family member 15|GAP for RAB7|GTPase-activating protein RAB7|Tre-2-budding uninhibited by benzimidazole-cell division cycle 16 domain, domain family member 15|Tre2/Bub2/Cdc16 domain family member 15 50 0.006844 9.854 1 1 +64787 EPS8L2 EPS8 like 2 11 protein-coding EPS8R2 epidermal growth factor receptor kinase substrate 8-like protein 2|EPS8-related protein 2|epidermal growth factor receptor pathway substrate 8-related protein 2 47 0.006433 10.21 1 1 +64788 LMF1 lipase maturation factor 1 16 protein-coding C16orf26|HMFN1876|JFP11|TMEM112|TMEM112A lipase maturation factor 1|transmembrane protein 112 18 0.002464 8.216 1 1 +64789 EXO5 exonuclease 5 1 protein-coding C1orf176|DEM1|Exo V|hExo5 exonuclease V|defects in morphology 1 homolog|defects in morphology protein 1 homolog|probable exonuclease V 19 0.002601 7.199 1 1 +64792 IFT22 intraflagellar transport 22 7 protein-coding RABL5 intraflagellar transport protein 22 homolog|RAB, member RAS oncogene family-like 5|RAB, member of RAS oncogene family-like 5|intraflagellar transport 22 homolog|rab-like protein 5 7 0.0009581 9.065 1 1 +64793 CEP85 centrosomal protein 85 1 protein-coding CCDC21 centrosomal protein of 85 kDa|centrosomal protein 85kDa|coiled-coil domain-containing protein 21 45 0.006159 8.386 1 1 +64794 DDX31 DEAD-box helicase 31 9 protein-coding PPP1R25 probable ATP-dependent RNA helicase DDX31|DEAD (Asp-Glu-Ala-Asp) box polypeptide 31|DEAD box protein 31|DEAD/DEXH helicase DDX31|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 31|G2 helicase|helicain|protein phosphatase 1, regulatory subunit 25 50 0.006844 8.266 1 1 +64795 RMND5A required for meiotic nuclear division 5 homolog A 2 protein-coding CTLH|GID2|GID2A|RMD5|p44CTLH protein RMD5 homolog A|44-kD protein coding for CTLH motif|C-terminal to LisH motif, 44 kDa|GID complex subunit 2 homolog A 26 0.003559 10.56 1 1 +64798 DEPTOR DEP domain containing MTOR-interacting protein 8 protein-coding DEP.6|DEPDC6 DEP domain-containing mTOR-interacting protein|DEP domain containing 6|DEP domain-containing protein 6 29 0.003969 8.526 1 1 +64799 IQCH IQ motif containing H 15 protein-coding NYDSP5 IQ domain-containing protein H|testis development protein NYD-SP5 68 0.009307 5.048 1 1 +64800 EFCAB6 EF-hand calcium binding domain 6 22 protein-coding DJBP|HSCBCIP1|dJ185D5.1 EF-hand calcium-binding domain-containing protein 6|CAP-binding protein complex-interacting protein 1|DJ-1-binding protein 121 0.01656 4.341 1 1 +64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator 1 protein-coding EIEE38 protein ARV1|ARV1 fatty acid homeostatsis modulator|ARV1 homolog, fatty acid homeostatsis modulator|hARV1 18 0.002464 8.658 1 1 +64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 1 protein-coding LCA9|NMNAT|PNAT1 nicotinamide/nicotinic acid mononucleotide adenylyltransferase 1|NMN adenylyltransferase 1|NMN/NaMN adenylyltransferase 1|NaMN adenylyltransferase 1|nicotinamide mononucleotide adenylyltransferase 1|nicotinate-nucleotide adenylyltransferase 1|pyridine nucleotide adenylyltransferase 1 20 0.002737 7.833 1 1 +64805 P2RY12 purinergic receptor P2Y12 3 protein-coding ADPG-R|BDPLT8|HORK3|P2T(AC)|P2Y(12)R|P2Y(AC)|P2Y(ADP)|P2Y(cyc)|P2Y12|SP1999 P2Y purinoceptor 12|ADP-glucose receptor|G-protein coupled receptor SP1999|Gi-coupled ADP receptor HORK3|P2Y12 platelet ADP receptor|purinergic receptor P2RY12|purinergic receptor P2Y, G-protein coupled, 12|putative G-protein coupled receptor 21 0.002874 3.658 1 1 +64806 IL25 interleukin 25 14 protein-coding IL17E interleukin-25|interleukin-17E 19 0.002601 0.3119 1 1 +64816 CYP3A43 cytochrome P450 family 3 subfamily A member 43 7 protein-coding - cytochrome P450 3A43|cytochrome P450, family 3, subfamily A, polypeptide 43|cytochrome P450, subfamily IIIA, polypeptide 43 46 0.006296 0.7637 1 1 +64834 ELOVL1 ELOVL fatty acid elongase 1 1 protein-coding CGI-88|Ssc1 elongation of very long chain fatty acids protein 1|3-keto acyl-CoA synthase ELOVL1|ELOVL FA elongase 1|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 1|very long chain 3-ketoacyl-CoA synthase 1|very long chain 3-oxoacyl-CoA synthase 1 18 0.002464 10.77 1 1 +64837 KLC2 kinesin light chain 2 11 protein-coding - kinesin light chain 2|KLC 2 44 0.006022 9.591 1 1 +64838 FNDC4 fibronectin type III domain containing 4 2 protein-coding FRCP1 fibronectin type III domain-containing protein 4|fibronectin type III repeat-containing protein 1 17 0.002327 7.305 1 1 +64839 FBXL17 F-box and leucine rich repeat protein 17 5 protein-coding FBXO13|Fbl17|Fbx13 F-box/LRR-repeat protein 17|F-box only protein 13 28 0.003832 9.083 1 1 +64840 PORCN porcupine homolog (Drosophila) X protein-coding DHOF|FODH|MG61|PORC|PPN protein-serine O-palmitoleoyltransferase porcupine|probable protein-cysteine N-palmitoyltransferase porcupine 36 0.004927 7.979 1 1 +64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 14 protein-coding GNA1|GNPNAT|Gpnat1 glucosamine 6-phosphate N-acetyltransferase|phosphoglucosamine acetylase|phosphoglucosamine transacetylase 17 0.002327 9.793 1 1 +64843 ISL2 ISL LIM homeobox 2 15 protein-coding - insulin gene enhancer protein ISL-2|ISL2 transcription factor, LIM/homeodomain, (islet-2)|islet-2 18 0.002464 2.609 1 1 +64844 MARCH7 membrane associated ring-CH-type finger 7 2 protein-coding AXO|AXOT|MARCH-VII|RNF177 E3 ubiquitin-protein ligase MARCH7|RING finger protein 177|axotrophin|membrane associated ring finger 7|membrane-associated RING finger protein 7|membrane-associated RING-CH protein VII|membrane-associated ring finger (C3HC4) 7, E3 ubiquitin protein ligase 51 0.006981 10.5 1 1 +64847 SPATA20 spermatogenesis associated 20 17 protein-coding HEL-S-98|SSP411|Tisp78 spermatogenesis-associated protein 20|epididymis secretory protein Li 98|sperm protein SSP411|sperm-specific protein 411|transcript increased in spermiogenesis 78 46 0.006296 10.22 1 1 +64848 YTHDC2 YTH domain containing 2 5 protein-coding CAHL probable ATP-dependent RNA helicase YTHDC2|CsA-associated helicase-like protein 97 0.01328 9.288 1 1 +64849 SLC13A3 solute carrier family 13 member 3 20 protein-coding NADC3|SDCT2 solute carrier family 13 member 3|Na(+)/dicarboxylate cotransporter 3|hNaDC3|naDC-3|sodium-dependent high affinity dicarboxylate transporter 3 62 0.008486 6.11 1 1 +64850 ETNPPL ethanolamine-phosphate phospho-lyase 4 protein-coding AGXT2L1 ethanolamine-phosphate phospho-lyase|alanine--glyoxylate aminotransferase 2-like 1 53 0.007254 2.474 1 1 +64852 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific 11 protein-coding PAPD2|RBM21|STARPAP|TUTase|URLC6 speckle targeted PIP5K1A-regulated poly(A) polymerase|PAP-associated domain-containing 2|RNA uridylyltransferase|RNA-binding motif protein 21|RNA-binding protein 21|TUTase 6|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|star-PAP|up-regulated in lung cancer 6 35 0.004791 9.309 1 1 +64853 AIDA axin interactor, dorsalization associated 1 protein-coding C1orf80 axin interactor, dorsalization-associated protein|axin interaction partner and dorsalization antagonist 20 0.002737 10.03 1 1 +64854 USP46 ubiquitin specific peptidase 46 4 protein-coding - ubiquitin carboxyl-terminal hydrolase 46|deubiquitinating enzyme 46|ubiquitin thioesterase 46|ubiquitin thiolesterase 46|ubiquitin-specific-processing protease 46 29 0.003969 8.859 1 1 +64855 FAM129B family with sequence similarity 129 member B 9 protein-coding C9orf88|MEG-3|MINERVA|OC58|bA356B19.6 niban-like protein 1|melanoma invasion by ERK 44 0.006022 12.16 1 1 +64856 VWA1 von Willebrand factor A domain containing 1 1 protein-coding WARP von Willebrand factor A domain-containing protein 1|von Willebrand factor A domain-related protein 14 0.001916 10.74 1 1 +64857 PLEKHG2 pleckstrin homology and RhoGEF domain containing G2 19 protein-coding ARHGEF42|CLG|LDAMD pleckstrin homology domain-containing family G member 2|CTB-60E11.4|PH domain-containing family G member 2|common-site lymphoma/leukemia guanine nucleotide exchange factor|pleckstrin homology domain containing, family G (with RhoGef domain) member 2 86 0.01177 9.189 1 1 +64858 DCLRE1B DNA cross-link repair 1B 1 protein-coding APOLLO|SNM1B|SNMIB 5' exonuclease Apollo|DNA cross-link repair 1B (PSO2 homolog, S. cerevisiae)|PSO2 homolog|SNM1 homolog B 39 0.005338 7.858 1 1 +64859 NABP1 nucleic acid binding protein 1 2 protein-coding OBFC2A|SOSS-B2|SSB2 SOSS complex subunit B2|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 11 0.001506 7.798 1 1 +64860 ARMCX5 armadillo repeat containing, X-linked 5 X protein-coding GASP5 armadillo repeat-containing X-linked protein 5 31 0.004243 8.152 1 1 +64863 METTL4 methyltransferase like 4 18 protein-coding HsT661 methyltransferase-like protein 4 25 0.003422 7.821 1 1 +64864 RFX7 regulatory factor X7 15 protein-coding RFXDC2 DNA-binding protein RFX7|regulatory factor X domain containing 2|regulatory factor X domain-containing protein 2|regulatory factor X, 7 85 0.01163 8.936 1 1 +64866 CDCP1 CUB domain containing protein 1 3 protein-coding CD318|SIMA135|TRASK CUB domain-containing protein 1|membrane glycoprotein gp140|subtractive immunization M plus HEp3-associated 135 kDa protein|transmembrane and associated with src kinases 50 0.006844 9.178 1 1 +64881 PCDH20 protocadherin 20 13 protein-coding PCDH13 protocadherin-20|protocadherin 13 124 0.01697 4.292 1 1 +64895 PAPOLG poly(A) polymerase gamma 2 protein-coding - poly(A) polymerase gamma|PAP-gamma|SRP RNA 3' adenylating enzyme/pap2|SRP RNA 3'-adenylating enzyme|SRP RNA-adenylating enzyme|neo-PAP|neo-poly(A) polymerase|nuclear poly(A) polymerase gamma|polynucleotide adenylyltransferase gamma|signal recognition particle RNA-adenylating enzyme 43 0.005886 8.342 1 1 +64897 C12orf43 chromosome 12 open reading frame 43 12 protein-coding - uncharacterized protein C12orf43 29 0.003969 8.04 1 1 +64900 LPIN3 lipin 3 20 protein-coding LIPN3L|SMP2 phosphatidate phosphatase LPIN3 54 0.007391 8.277 1 1 +64901 RANBP17 RAN binding protein 17 5 protein-coding - ran-binding protein 17 75 0.01027 5.522 1 1 +64902 AGXT2 alanine--glyoxylate aminotransferase 2 5 protein-coding AGT2|DAIBAT alanine--glyoxylate aminotransferase 2, mitochondrial|(R)-3-amino-2-methylpropionate--pyruvate transaminase|beta-ALAAT II|beta-alanine-pyruvate aminotransferase 47 0.006433 1.103 1 1 +64919 BCL11B B-cell CLL/lymphoma 11B 14 protein-coding ATL1|ATL1-alpha|ATL1-beta|ATL1-delta|ATL1-gamma|CTIP-2|CTIP2|RIT1|ZNF856B|hRIT1-alpha B-cell lymphoma/leukemia 11B|B-cell CLL/lymphoma 11B (zinc finger protein)|B-cell CLL/lymphoma 11B/T-cell receptor delta constant region fusion protein|B-cell lymphoma/leukaemia 11B|BCL-11B|BCL11B/TRDC fusion|COUP-TF-interacting protein 2|hRit1|radiation-induced tumor suppressor gene 1 protein|zinc finger protein hRit1 alpha 84 0.0115 6.621 1 1 +64921 CASD1 CAS1 domain containing 1 7 protein-coding C7orf12|NBLA04196 CAS1 domain-containing protein 1|O-acetyltransferase|WUGSC:H_GS542D18.2 65 0.008897 9.068 1 1 +64922 LRRC19 leucine rich repeat containing 19 9 protein-coding - leucine-rich repeat-containing protein 19 19 0.002601 2.395 1 1 +64924 SLC30A5 solute carrier family 30 member 5 5 protein-coding ZNT5|ZNTL1|ZTL1|ZnT-5 zinc transporter 5|solute carrier family 30 (zinc transporter), member 5|zinc transporter ZTL1|znT-like transporter 1 31 0.004243 9.86 1 1 +64925 CCDC71 coiled-coil domain containing 71 3 protein-coding - coiled-coil domain-containing protein 71|2600016J21Rik 25 0.003422 8.821 1 1 +64926 RASAL3 RAS protein activator like 3 19 protein-coding - RAS protein activator like-3 50 0.006844 7.074 1 1 +64927 TTC23 tetratricopeptide repeat domain 23 15 protein-coding HCC-8 tetratricopeptide repeat protein 23|TPR repeat protein 23|cervical cancer proto-oncogene 8 protein 28 0.003832 8.34 1 1 +64928 MRPL14 mitochondrial ribosomal protein L14 6 protein-coding L14mt|L32mt|MRP-L14|MRP-L32|MRPL32|RMPL32|RPML32 39S ribosomal protein L14, mitochondrial|39S ribosomal protein L32, mitochondrial 12 0.001642 9.879 1 1 +64940 STAG3L4 stromal antigen 3-like 4 (pseudogene) 7 pseudo STAG3L4P STAG3-like protein 4|stromal antigen 3 pseudogene 67 0.009171 7.364 1 1 +64943 NT5DC2 5'-nucleotidase domain containing 2 3 protein-coding - 5'-nucleotidase domain-containing protein 2 34 0.004654 10.1 1 1 +64946 CENPH centromere protein H 5 protein-coding - centromere protein H|CENP-H|interphase centromere complex protein 35|kinetochore protein CENP-H 24 0.003285 7.372 1 1 +64949 MRPS26 mitochondrial ribosomal protein S26 20 protein-coding C20orf193|GI008|MRP-S13|MRP-S26|MRPS13|NY-BR-87|RPMS13|dJ534B8.3 28S ribosomal protein S26, mitochondrial|28S ribosomal protein S13, mitochondrial|S13mt|S26mt|serologically defined breast cancer antigen NY-BR-87 7 0.0009581 9.934 1 1 +64951 MRPS24 mitochondrial ribosomal protein S24 7 protein-coding HSPC335|MRP-S24|S24mt|bMRP-47|bMRP47 28S ribosomal protein S24, mitochondrial|mitochondrial 28S ribosomal protein S24 16 0.00219 10.23 1 1 +64960 MRPS15 mitochondrial ribosomal protein S15 1 protein-coding DC37|MPR-S15|RPMS15|S15mt 28S ribosomal protein S15, mitochondrial|MRP-S15 28 0.003832 10.13 1 1 +64963 MRPS11 mitochondrial ribosomal protein S11 15 protein-coding HCC-2|MRP-S11|S11mt 28S ribosomal protein S11, mitochondrial|cervical cancer proto-oncogene 2 protein 7 0.0009581 9.271 1 1 +64965 MRPS9 mitochondrial ribosomal protein S9 2 protein-coding MRP-S9|RPMS9|S9mt 28S ribosomal protein S9, mitochondrial 25 0.003422 9.098 1 1 +64968 MRPS6 mitochondrial ribosomal protein S6 21 protein-coding C21orf101|MRP-S6|RPMS6|S6mt 28S ribosomal protein S6, mitochondrial 11 0.001506 9.519 1 1 +64969 MRPS5 mitochondrial ribosomal protein S5 2 protein-coding MRP-S5|S5mt 28S ribosomal protein S5, mitochondrial|mitochondrial 28S ribosomal protein S5 30 0.004106 9.935 1 1 +64975 MRPL41 mitochondrial ribosomal protein L41 9 protein-coding BMRP|MRP-L27|MRPL27|PIG3|RPML27 39S ribosomal protein L41, mitochondrial|39S ribosomal protein L27 homolog|L41mt|MRP-L27 homolog|MRP-L41|bcl-2-interacting mitochondrial ribosomal protein L41|cell proliferation-inducing gene 3 protein|proliferation-inducing gene 3 8 0.001095 9.446 1 1 +64976 MRPL40 mitochondrial ribosomal protein L40 22 protein-coding L40mt|MRP-L22|MRP-L40|MRPL22|NLVCF|URIM 39S ribosomal protein L40, mitochondrial|nuclear localization signal-containing protein deleted in velocardiofacial syndrome|up-regulated in metastasis 15 0.002053 9.47 1 1 +64978 MRPL38 mitochondrial ribosomal protein L38 17 protein-coding HSPC262|L38MT|MRP-L3|MRP-L38|RPML3 39S ribosomal protein L38, mitochondrial 21 0.002874 10.22 1 1 +64979 MRPL36 mitochondrial ribosomal protein L36 5 protein-coding BRIP1|L36mt|MRP-L36|PRPL36|RPMJ 39S ribosomal protein L36, mitochondrial|BRCA1-interacting protein 1|putative BRCA1-interacting protein 6 0.0008212 8.626 1 1 +64981 MRPL34 mitochondrial ribosomal protein L34 19 protein-coding L34mt 39S ribosomal protein L34, mitochondrial|MRP-L34 6 0.0008212 9.557 1 1 +64983 MRPL32 mitochondrial ribosomal protein L32 7 protein-coding HSPC283|L32mt|MRP-L32|bMRP-59b 39S ribosomal protein L32, mitochondrial 14 0.001916 9.669 1 1 +65003 MRPL11 mitochondrial ribosomal protein L11 11 protein-coding CGI-113|L11MT|MRP-L11 39S ribosomal protein L11, mitochondrial 13 0.001779 9.568 1 1 +65005 MRPL9 mitochondrial ribosomal protein L9 1 protein-coding L9mt 39S ribosomal protein L9, mitochondrial 16 0.00219 10.07 1 1 +65008 MRPL1 mitochondrial ribosomal protein L1 4 protein-coding BM022|L1MT|MRP-L1 39S ribosomal protein L1, mitochondrial 27 0.003696 8.461 1 1 +65009 NDRG4 NDRG family member 4 16 protein-coding BDM1|SMAP-8|SMAP8 protein NDRG4|N-myc downstream-regulated gene 4 protein|brain development-related molecule 1|smooth muscle-associated protein 8|vascular smooth muscle cell-associated protein 8 19 0.002601 7.593 1 1 +65010 SLC26A6 solute carrier family 26 member 6 3 protein-coding - solute carrier family 26 member 6|anion exchange transporter|anion transporter 1|pendrin L1|solute carrier family 26 (anion exchanger), member 6|sulfate anion transporter 28 0.003832 7.97 1 1 +65012 SLC26A10 solute carrier family 26 member 10 12 protein-coding - solute carrier family 26 member 10 52 0.007117 3.701 1 1 +65018 PINK1 PTEN induced putative kinase 1 1 protein-coding BRPK|PARK6 serine/threonine-protein kinase PINK1, mitochondrial|PTEN-induced putative kinase protein 1|protein kinase BRPK 43 0.005886 10.88 1 1 +65055 REEP1 receptor accessory protein 1 2 protein-coding C2orf23|HMN5B|SPG31|Yip2a receptor expression-enhancing protein 1 19 0.002601 6.384 1 1 +65056 GPBP1 GC-rich promoter binding protein 1 5 protein-coding GPBP|SSH6|VASCULIN vasculin|vascular wall-linked protein 33 0.004517 10.86 1 1 +65057 ACD adrenocortical dysplasia homolog 16 protein-coding PIP1|PTOP|TINT1|TPP1 adrenocortical dysplasia protein homolog|POT1 and TIN2-interacting protein|TIN2 interacting protein 1 40 0.005475 8.72 1 1 +65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 2 protein-coding ALS2CR18|ALS2CR9|LPD|PREL-2|PREL2|RMO1|RalGDS/AF-6 ras-associated and pleckstrin homology domains-containing protein 1|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 18|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 9|lamellipodin|proline-rich EVH1 ligand 2 60 0.008212 9.945 1 1 +65061 CDK15 cyclin dependent kinase 15 2 protein-coding ALS2CR7|PFTAIRE2|PFTK2 cyclin-dependent kinase 15|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 41 0.005612 1.198 1 1 +65062 TMEM237 transmembrane protein 237 2 protein-coding ALS2CR4|JBTS14 transmembrane protein 237|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 4|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 4 protein 24 0.003285 8.929 1 1 +65065 NBEAL1 neurobeachin like 1 2 protein-coding A530083I02Rik|ALS2CR16|ALS2CR17 neurobeachin-like protein 1|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 129 0.01766 6.515 1 1 +65072 CFLAR-AS1 CFLAR antisense RNA 1 2 ncRNA ALS2CR10 CFLAR antisense RNA 1 (non-protein coding)|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 10 1 0.0001369 1 0 +65078 RTN4R reticulon 4 receptor 22 protein-coding NGR|NOGOR reticulon-4 receptor|Nogo-66 receptor|UNQ330/PRO526|nogo receptor 21 0.002874 7.033 1 1 +65080 MRPL44 mitochondrial ribosomal protein L44 2 protein-coding COXPD16|L44MT|MRP-L44 39S ribosomal protein L44, mitochondrial 20 0.002737 9.338 1 1 +65082 VPS33A VPS33A, CORVET/HOPS core subunit 12 protein-coding - vacuolar protein sorting-associated protein 33A|hVPS33A|vacuolar protein sorting 33 homolog A|vacuolar protein sorting 33A 48 0.00657 9.25 1 1 +65083 NOL6 nucleolar protein 6 9 protein-coding NRAP|UTP22|bA311H10.1 nucleolar protein 6|nucleolar RNA-associated protein|nucleolar protein 6 (RNA-associated)|nucleolar protein family 6 (RNA-associated) 85 0.01163 10.3 1 1 +65084 TMEM135 transmembrane protein 135 11 protein-coding PMP52 transmembrane protein 135|peroxisomal membrane protein 52 39 0.005338 8.673 1 1 +65094 JMJD4 jumonji domain containing 4 1 protein-coding - jmjC domain-containing protein 4|2-oxoglutarate- and Fe(II)-dependent oxygenase|C4 lysyl hydroxylase|jumonji domain-containing protein 4 30 0.004106 9.112 1 1 +65095 KRI1 KRI1 homolog 19 protein-coding - protein KRI1 homolog 51 0.006981 9.69 1 1 +65108 MARCKSL1 MARCKS like 1 1 protein-coding F52|MACMARCKS|MLP|MLP1|MRP MARCKS-related protein|MARCKS-like protein 1|mac-MARCKS|macrophage myristoylated alanine-rich C kinase substrate 17 0.002327 12.05 1 1 +65109 UPF3B UPF3 regulator of nonsense transcripts homolog B (yeast) X protein-coding HUPF3B|MRX62|MRXS14|RENT3B|UPF3BP1|UPF3BP2|UPF3BP3|UPF3X|Upf3p-X regulator of nonsense transcripts 3B|UPF3B pseudogene 1|UPF3B pseudogene 2|UPF3B pseudogene 3|mental retardation, X-linked 62|nonsense mRNA reducing factor 3B|up-frameshift suppressor 3 homolog B|up-frameshift suppressor 3 homolog on chromosome X 47 0.006433 8.347 1 1 +65110 UPF3A UPF3 regulator of nonsense transcripts homolog A (yeast) 13 protein-coding HUPF3A|RENT3A|UPF3 regulator of nonsense transcripts 3A|hUpf3|nonsense mRNA reducing factor 3A|up-frameshift suppressor 3 homolog A 29 0.003969 9.287 1 1 +65117 RSRC2 arginine and serine rich coiled-coil 2 12 protein-coding - arginine/serine-rich coiled-coil protein 2|arginine/serine-rich coiled-coil 2 40 0.005475 10.37 1 1 +65121 PRAMEF1 PRAME family member 1 1 protein-coding - PRAME family member 1 49 0.006707 0.1261 1 1 +65122 PRAMEF2 PRAME family member 2 1 protein-coding DJ845O24.3 PRAME family member 2 69 0.009444 0.1182 1 1 +65123 INTS3 integrator complex subunit 3 1 protein-coding C1orf193|C1orf60|INT3|SOSS-A|SOSSA integrator complex subunit 3|SOSS complex subunit A|sensor of single-strand DNA complex subunit A|sensor of ssDNA subunit A 61 0.008349 10.93 1 1 +65124 SOWAHC sosondowah ankyrin repeat domain family member C 2 protein-coding ANKRD57|C2orf26 ankyrin repeat domain-containing protein SOWAHC|ankyrin repeat domain 57|ankyrin repeat domain-containing protein 57|protein sosondowah homolog C 19 0.002601 9.178 1 1 +65125 WNK1 WNK lysine deficient protein kinase 1 12 protein-coding HSAN2|HSN2|KDP|PPP1R167|PRKWNK1|PSK|p65 serine/threonine-protein kinase WNK1|WNK lysine deficient protein kinase 1 isoform|erythrocyte 65 kDa protein|prostate-derived sterile 20-like kinase|protein kinase with no lysine 1|protein phosphatase 1, regulatory subunit 167|serine/threonine-protein kinase WNK1 1|serine/threonine-protein kinase WNK1 2 172 0.02354 11.99 1 1 +65217 PCDH15 protocadherin related 15 10 protein-coding CDHR15|DFNB23|USH1F protocadherin-15|cadherin-related family member 15 390 0.05338 1.767 1 1 +65220 NADK NAD kinase 1 protein-coding dJ283E3.1 NAD kinase|poly(P)/ATP NAD kinase 56 0.007665 10.19 1 1 +65243 ZFP69B ZFP69 zinc finger protein B 1 protein-coding ZKSCAN23B|ZNF643|ZSCAN54B zinc finger protein ZFP69B|novel zinc finger protein|zinc finger protein 643 32 0.00438 5.215 1 1 +65244 SPATS2 spermatogenesis associated serine rich 2 12 protein-coding Nbla00526|P59SCR|SCR59|SPATA10 spermatogenesis-associated serine-rich protein 2|putative protein product of Nbla00526|serine-rich spermatocytes and round spermatid 59 kDa protein|serine-rich spermatocytes and round spermatid protein 26 0.003559 9.396 1 1 +65249 ZSWIM4 zinc finger SWIM-type containing 4 19 protein-coding - zinc finger SWIM domain-containing protein 4|zinc finger, SWIM domain containing 4 68 0.009307 8.677 1 1 +65250 C5orf42 chromosome 5 open reading frame 42 5 protein-coding Hug|JBTS17|OFD6 uncharacterized protein C5orf42|Transmembrane protein ENSP00000382582 164 0.02245 8.506 1 1 +65251 ZNF649 zinc finger protein 649 19 protein-coding - zinc finger protein 649 47 0.006433 7.502 1 1 +65258 MPPE1 metallophosphoesterase 1 18 protein-coding PGAP5 metallophosphoesterase 1|metallo phosphoesterase|post-GPI attachment to proteins factor 5 17 0.002327 9.181 1 1 +65260 COA7 cytochrome c oxidase assembly factor 7 (putative) 1 protein-coding C1orf163|RESA1|SELRC1 cytochrome c oxidase assembly factor 7|Sel1 repeat containing 1|beta-lactamase hcp-like protein|hcp beta-lactamase-like protein C1orf163|respiratory chain assembly 1|respiratory chain assembly factor 1|sel1 repeat-containing protein 1 16 0.00219 7.753 1 1 +65263 PYCRL pyrroline-5-carboxylate reductase-like 8 protein-coding PYCR3 pyrroline-5-carboxylate reductase 3|P5C reductase 3|P5CR 3 10 0.001369 8.827 1 1 +65264 UBE2Z ubiquitin conjugating enzyme E2 Z 17 protein-coding HOYS7|USE1 ubiquitin-conjugating enzyme E2 Z|E2 ubiquitin-conjugating enzyme Z|UBA6-specific enzyme E2|uba6-specific E2 conjugating enzyme 1|ubiquitin carrier protein Z|ubiquitin conjugating enzyme E2Z|ubiquitin-protein ligase Z 9 0.001232 11.41 1 1 +65265 C8orf33 chromosome 8 open reading frame 33 8 protein-coding - UPF0488 protein C8orf33 26 0.003559 10.41 1 1 +65266 WNK4 WNK lysine deficient protein kinase 4 17 protein-coding PHA2B|PRKWNK4 serine/threonine-protein kinase WNK4|protein kinase lysine-deficient 4|protein kinase with no lysine 4 96 0.01314 5.221 1 1 +65267 WNK3 WNK lysine deficient protein kinase 3 X protein-coding PRKWNK3 serine/threonine-protein kinase WNK3|protein kinase with no lysine 3 141 0.0193 4.07 1 1 +65268 WNK2 WNK lysine deficient protein kinase 2 9 protein-coding NY-CO-43|P/OKcl.13|PRKWNK2|SDCCAG43 serine/threonine-protein kinase WNK2|antigen NY-CO-43|mitogen-activated protein kinase kinase kinase|protein kinase lysine-deficient 2|protein kinase with no lysine 2|serologically defined colon cancer antigen 43 115 0.01574 7.7 1 1 +65975 STK33 serine/threonine kinase 33 11 protein-coding - serine/threonine-protein kinase 33 48 0.00657 5.06 1 1 +65977 PLEKHA3 pleckstrin homology domain containing A3 2 protein-coding FAPP1 pleckstrin homology domain-containing family A member 3|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 (phosphoinositide binding specific) member 3 27 0.003696 8.44 1 1 +65979 PHACTR4 phosphatase and actin regulator 4 1 protein-coding PPP1R124 phosphatase and actin regulator 4|protein phosphatase 1, regulatory subunit 124 57 0.007802 10.04 1 1 +65980 BRD9 bromodomain containing 9 5 protein-coding LAVS3040|PRO9856 bromodomain-containing protein 9|rhabdomyosarcoma antigen MU-RMS-40.8|sarcoma antigen NY-SAR-29 40 0.005475 9.661 1 1 +65981 CAPRIN2 caprin family member 2 12 protein-coding C1QDC1|EEG-1|EEG1|RNG140 caprin-2|C1q domain-containing protein 1|RNA granule protein 140|cytoplasmic activation/proliferation-associated protein 2|gastric cancer multidrug resistance-associated protein 72 0.009855 8.309 1 1 +65982 ZSCAN18 zinc finger and SCAN domain containing 18 19 protein-coding ZNF447 zinc finger and SCAN domain-containing protein 18|zinc finger protein 447 60 0.008212 9.465 1 1 +65983 GRAMD3 GRAM domain containing 3 5 protein-coding NS3TP2 GRAM domain-containing protein 3|HCV NS3-transactivated protein 2|hepatitis C virus nonstructural protein 3-transactivating protein 2 25 0.003422 9.004 1 1 +65985 AACS acetoacetyl-CoA synthetase 12 protein-coding ACSF1|SUR-5 acetoacetyl-CoA synthetase|acetoacetate-CoA ligase|acyl-CoA synthetase family member 1|homolog of C. elegans supressor of ras 5 (sur-5)|protein sur-5 homolog 56 0.007665 9.561 1 1 +65986 ZBTB10 zinc finger and BTB domain containing 10 8 protein-coding RINZF zinc finger and BTB domain-containing protein 10|zinc finger protein RIN ZF|zinc finger protein RINZF 41 0.005612 8.442 1 1 +65987 KCTD14 potassium channel tetramerization domain containing 14 11 protein-coding - BTB/POZ domain-containing protein KCTD14|potassium channel tetramerisation domain containing 14 16 0.00219 6.922 1 1 +65988 ZNF747 zinc finger protein 747 16 protein-coding - KRAB domain-containing protein ZNF747 17 0.002327 7.979 1 1 +65989 DLK2 delta like non-canonical Notch ligand 2 6 protein-coding DLK-2|EGFL9 protein delta homolog 2|EGF-like protein 9|EGF-like-domain, multiple 9|delta-like 2 homolog|epidermal growth factor-like protein 9 18 0.002464 4.116 1 1 +65990 FAM173A family with sequence similarity 173 member A 16 protein-coding C16orf24 protein FAM173A 1 0.0001369 7.389 1 1 +65991 FUNDC2 FUN14 domain containing 2 X protein-coding DC44|HCBP6|HCC3|PD03104 FUN14 domain-containing protein 2|HCC-3|cervical cancer oncogene 3|cervical cancer proto-oncogene 3 protein|hepatitis C virus core-binding protein 6 15 0.002053 10.33 1 1 +65992 DDRGK1 DDRGK domain containing 1 20 protein-coding C20orf116|UFBP1|dJ1187M17.3 DDRGK domain-containing protein 1|Dashurin|UFM1-binding and PCI domain-containing protein 1|UFM1-binding protein 1 containing a PCI domain 17 0.002327 10.11 1 1 +65993 MRPS34 mitochondrial ribosomal protein S34 16 protein-coding MRP-S12|MRP-S34|MRPS12 28S ribosomal protein S34, mitochondrial|S34mt|mitochondrial 28S ribosomal protein S34 12 0.001642 10.34 1 1 +65996 CENPBD1P1 CENPB DNA-binding domains containing 1 pseudogene 1 19 pseudo - CENPBD1 pseudogene 1 9.194 0 1 +65997 RASL11B RAS like family 11 member B 4 protein-coding - ras-like protein family member 11B 17 0.002327 5.515 1 1 +65998 C11orf95 chromosome 11 open reading frame 95 11 protein-coding - uncharacterized protein C11orf95 17 0.002327 8.944 1 1 +65999 LRRC61 leucine rich repeat containing 61 7 protein-coding HSPC295 leucine-rich repeat-containing protein 61 25 0.003422 8.189 1 1 +66000 TMEM108 transmembrane protein 108 3 protein-coding CT124 transmembrane protein 108|cancer/testis antigen 124 43 0.005886 5.668 1 1 +66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 19 protein-coding CYPIVF12|F22329_1 cytochrome P450 4F12|cytochrome P450, family 4, subfamily F, polypeptide 12|cytochrome P450, subfamily IVF, polypeptide 12 59 0.008076 4.125 1 1 +66004 LYNX1 Ly6/neurotoxin 1 8 protein-coding SLURP2 ly-6/neurotoxin-like protein 1|Ly-6 neurotoxin-like protein 1|SLURP-2|secreted Ly-6/uPAR domain-containing protein 2|secreted Ly-6/uPAR-related protein 2|secreted Ly6/uPAR related protein 2|testicular tissue protein Li 112 18 0.002464 8.431 1 1 +66005 CHID1 chitinase domain containing 1 11 protein-coding GL008|SI-CLP|SICLP chitinase domain-containing protein 1|stabilin-1 interacting chitinase-like protein 23 0.003148 10.64 1 1 +66008 TRAK2 trafficking kinesin protein 2 2 protein-coding ALS2CR3|CALS-C|GRIF-1|GRIF1|MILT2|OIP98 trafficking kinesin-binding protein 2|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 protein, kinesin binding 2 58 0.007939 10.23 1 1 +66035 SLC2A11 solute carrier family 2 member 11 22 protein-coding GLUT10|GLUT11 solute carrier family 2, facilitated glucose transporter member 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 25 0.003422 7.14 1 1 +66036 MTMR9 myotubularin related protein 9 8 protein-coding C8orf9|LIP-STYX|MTMR8 myotubularin-related protein 9|myotubularin related protein 8 33 0.004517 8.438 1 1 +66037 BOLL boule homolog, RNA binding protein 2 protein-coding BOULE protein boule-like|bol, boule-like|boule-like RNA binding protein 28 0.003832 0.4838 1 1 +78986 DUSP26 dual specificity phosphatase 26 (putative) 8 protein-coding DSP-4|DUSP24|LDP-4|MKP-8|MKP8|NATA1|NEAP|SKRP3 dual specificity protein phosphatase 26|MAP kinase phosphatase 8|Novel amplified gene in thyroid anaplastic cancer|dual specificity phosphatase SKRP3|low-molecular-mass dual-specificity phosphatase 4|mitogen-activated protein kinase phosphatase 8|neuroendocrine-associated phosphatase 28 0.003832 3.604 1 1 +78987 CRELD1 cysteine rich with EGF like domains 1 3 protein-coding AVSD2|CIRRIN cysteine-rich with EGF-like domain protein 1 25 0.003422 9.403 1 1 +78988 MRPL57 mitochondrial ribosomal protein L57 13 protein-coding MRP63|bMRP63 ribosomal protein 63, mitochondrial|hMRP63|mitochondrial ribosomal protein 63|mitochondrial ribosomal protein bMRP63 8 0.001095 9.817 1 1 +78989 COLEC11 collectin subfamily member 11 2 protein-coding 3MC2|CL-K1-I|CL-K1-II|CL-K1-IIa|CL-K1-IIb|CLK1 collectin-11|Collectin K1|collectin kidney protein 1|collectin sub-family member 11 38 0.005201 4.801 1 1 +78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 14 protein-coding C14orf137|OTB2|OTU2 ubiquitin thioesterase OTUB2|OTU domain, ubiquitin aldehyde binding 2|OTU domain-containing ubiquitin aldehyde-binding protein 2|deubiquitinating enzyme OTUB2|otubain-2|ubiquitin-specific protease otubain 2|ubiquitin-specific-processing protease OTUB2 11 0.001506 6.324 1 1 +78991 PCYOX1L prenylcysteine oxidase 1 like 5 protein-coding - prenylcysteine oxidase-like 28 0.003832 8.047 1 1 +78992 YIPF2 Yip1 domain family member 2 19 protein-coding FinGER2 protein YIPF2|YIP1 family member 2 21 0.002874 10.12 1 1 +78994 PRR14 proline rich 14 16 protein-coding - proline-rich protein 14 49 0.006707 9.628 1 1 +78995 C17orf53 chromosome 17 open reading frame 53 17 protein-coding - uncharacterized protein C17orf53 40 0.005475 6.329 1 1 +78996 C7orf49 chromosome 7 open reading frame 49 7 protein-coding MRI modulator of retrovirus infection homolog 17 0.002327 9.259 1 1 +78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 20 protein-coding dJ881L22.1|dJ995J12.1.1 ganglioside-induced differentiation-associated protein 1-like 1|GDAP1-L1 25 0.003422 2.371 1 1 +78998 RHPN1-AS1 RHPN1 antisense RNA 1 (head to head) 8 ncRNA C8orf51 RHPN1 antisense RNA 1 (non-protein coding) 1 0.0001369 4.925 1 1 +78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 11 protein-coding FIGLER6|SALM3|SALM3. leucine-rich repeat and fibronectin type-III domain-containing protein 4|fibronectin type III, immunoglobulin and leucine rich repeat domains 6 38 0.005201 8.406 1 1 +79000 AUNIP aurora kinase A and ninein interacting protein 1 protein-coding AIBP|C1orf135 aurora kinase A and ninein-interacting protein|aurora A-binding protein 15 0.002053 5.494 1 1 +79001 VKORC1 vitamin K epoxide reductase complex subunit 1 16 protein-coding EDTP308|MST134|MST576|VKCFD2|VKOR vitamin K epoxide reductase complex subunit 1|phylloquinone epoxide reductase|vitamin K dependent clotting factors deficiency 2|vitamin K1 2,3-epoxide reductase subunit 1|vitamin K1 epoxide reductase (warfarin-sensitive) 22 0.003011 10.52 1 1 +79002 C19orf43 chromosome 19 open reading frame 43 19 protein-coding fSAP18 uncharacterized protein C19orf43|My029 protein 10 0.001369 11.01 1 1 +79003 MIS12 MIS12, kinetochore complex component 17 protein-coding 2510025F08Rik|KNTC2AP|MTW1|hMis12 protein MIS12 homolog|MIS12 homolog|MIS12, MIND kinetochore complex component, homolog|homolog of yeast Mis12 15 0.002053 8.556 1 1 +79004 CUEDC2 CUE domain containing 2 10 protein-coding C10orf66|bA18I14.5 CUE domain-containing protein 2 19 0.002601 9.9 1 1 +79005 SCNM1 sodium channel modifier 1 1 protein-coding - sodium channel modifier 1 21 0.002874 9.091 1 1 +79006 METRN meteorin, glial cell differentiation regulator 16 protein-coding C16orf23|c380A1.2 meteorin 10 0.001369 8.25 1 1 +79007 DBNDD1 dysbindin domain containing 1 16 protein-coding - dysbindin domain-containing protein 1|dysbindin (dystrobrevin binding protein 1) domain containing 1 19 0.002601 8.783 1 1 +79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit 16 protein-coding GIYD2 structure-specific endonuclease subunit SLX1|GIY-YIG domain-containing protein 1|SLX1 structure-specific endonuclease subunit homolog B|SLX1A 1 0.0001369 9.09 1 1 +79009 DDX50 DExD-box helicase 50 10 protein-coding GU2|GUB|RH-II/GuB|mcdrh ATP-dependent RNA helicase DDX50|DEAD (Asp-Glu-Ala-Asp) box polypeptide 50|DEAD box protein 50|DEAD-box helicase 50|RNA helicase II/Gu beta|gu-beta|malignant cell derived RNA helicase|nucleolar protein GU2 65 0.008897 9.61 1 1 +79012 CAMKV CaM kinase like vesicle associated 3 protein-coding 1G5|VACAMKL caM kinase-like vesicle-associated protein|testis tissue sperm-binding protein Li 52e|vesicle-associated calmodulin-binding protein 41 0.005612 2.122 1 1 +79016 DDA1 DET1 and DDB1 associated 1 19 protein-coding C19orf58|PCIA1 DET1- and DDB1-associated protein 1|PCIA-1|cross-immune reaction antigen PCIA1|placenta cross-immune reaction antigen 1 8 0.001095 9.854 1 1 +79017 GGCT gamma-glutamylcyclotransferase 7 protein-coding C7orf24|CRF21|GCTG|GGC gamma-glutamylcyclotransferase|cytochrome c-releasing factor 21|gamma -glutamyl cyclotransferase 11 0.001506 10.19 1 1 +79018 GID4 GID complex subunit 4 homolog 17 protein-coding C17orf39|VID24 glucose-induced degradation protein 4 homolog|GID complex subunit 4, VID24 homolog|vacuolar import and degradation 24|vacuolar import and degradation protein 24 homolog 11 0.001506 8.321 1 1 +79019 CENPM centromere protein M 22 protein-coding C22orf18|CENP-M|PANE1 centromere protein M|interphase centromere complex protein 39|proliferation-associated nuclear element protein 1 7 0.0009581 7.057 1 1 +79020 C7orf25 chromosome 7 open reading frame 25 7 protein-coding - UPF0415 protein C7orf25 26 0.003559 8.337 1 1 +79022 TMEM106C transmembrane protein 106C 12 protein-coding - transmembrane protein 106C|endoplasmic reticulum membrane protein overexpressed in cancer 26 0.003559 10.45 1 1 +79023 NUP37 nucleoporin 37 12 protein-coding p37 nucleoporin Nup37|nucleoporin 37kDa|nup107-160 subcomplex subunit Nup37 24 0.003285 8.466 1 1 +79024 SMIM2 small integral membrane protein 2 13 protein-coding C13orf44 small integral membrane protein 2 1 0.0001369 1 0 +79025 FNDC11 fibronectin type III domain containing 11 20 protein-coding C20orf195 uncharacterized protein C20orf195 26 0.003559 2.656 1 1 +79026 AHNAK AHNAK nucleoprotein 11 protein-coding AHNAKRS neuroblast differentiation-associated protein AHNAK|AHNAK-related|desmoyokin 342 0.04681 13.93 1 1 +79027 ZNF655 zinc finger protein 655 7 protein-coding VIK|VIK-1 zinc finger protein 655|vav-1 interacting Kruppel-like protein 31 0.004243 9.946 1 1 +79029 SPATA5L1 spermatogenesis associated 5 like 1 15 protein-coding - spermatogenesis-associated protein 5-like protein 1 33 0.004517 7.689 1 1 +79031 PDCL3 phosducin like 3 2 protein-coding HTPHLP|PHLP2A|PHLP3|VIAF|VIAF1 phosducin-like protein 3|IAP-associated factor VIAF1|VIAF-1|phPL3|viral IAP-associated factor 1 28 0.003832 8.735 1 1 +79033 ERI3 ERI1 exoribonuclease family member 3 1 protein-coding PINT1|PRNPIP ERI1 exoribonuclease 3|enhanced RNAi three prime mRNA exonuclease homolog 3|prion interactor 1|prion protein-interacting protein 27 0.003696 10.08 1 1 +79034 C7orf26 chromosome 7 open reading frame 26 7 protein-coding - uncharacterized protein C7orf26 28 0.003832 9.287 1 1 +79035 NABP2 nucleic acid binding protein 2 12 protein-coding OBFC2B|SOSS-B1|SSB1|hSSB1 SOSS complex subunit B1|LP3587|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 14 0.001916 9.627 1 1 +79036 KXD1 KxDL motif containing 1 19 protein-coding BORCS4|C19orf50|KXDL|MST096|MSTP096 kxDL motif-containing protein 1|UPF0459 protein C19orf50 11 0.001506 10.51 1 1 +79037 PVRIG poliovirus receptor related immunoglobulin domain containing 7 protein-coding C7orf15|CD112R transmembrane protein PVRIG|poliovirus receptor-related immunoglobulin domain-containing protein 23 0.003148 5.871 1 1 +79038 ZFYVE21 zinc finger FYVE-type containing 21 14 protein-coding HCVP7TP1|ZF21 zinc finger FYVE domain-containing protein 21|FYVE domain containing 21|HCV p7-transactivated protein 1|zinc finger, FYVE domain containing 21 10 0.001369 9.81 1 1 +79039 DDX54 DEAD-box helicase 54 12 protein-coding DP97 ATP-dependent RNA helicase DDX54|ATP-dependent RNA helicase DP97|DEAD (Asp-Glu-Ala-Asp) box polypeptide 54|DEAD box RNA helicase 97 kDa|DEAD box helicase 97 KDa|DEAD box protein 54 60 0.008212 10.84 1 1 +79041 TMEM38A transmembrane protein 38A 19 protein-coding TRIC-A|TRICA trimeric intracellular cation channel type A 37 0.005064 6.033 1 1 +79042 TSEN34 tRNA splicing endonuclease subunit 34 19 protein-coding LENG5|PCH2C|SEN34|SEN34L tRNA-splicing endonuclease subunit Sen34|CTD-3093M3.1|TSEN34 tRNA splicing endonuclease subunit|hsSen34|leukocyte receptor cluster (LRC) member 5|leukocyte receptor cluster member 5|tRNA-intron endonuclease Sen34 23 0.003148 10.05 1 1 +79047 KCTD15 potassium channel tetramerization domain containing 15 19 protein-coding - BTB/POZ domain-containing protein KCTD15|potassium channel tetramerisation domain containing 15|potassium channel tetramerization domain-containing protein 15 22 0.003011 9.081 1 1 +79048 SECISBP2 SECIS binding protein 2 9 protein-coding SBP2 selenocysteine insertion sequence-binding protein 2 50 0.006844 9.814 1 1 +79050 NOC4L nucleolar complex associated 4 homolog 12 protein-coding NET49|NOC4|UTP19 nucleolar complex protein 4 homolog|NOC4 protein homolog|NOC4-like protein|nucleolar complex-associated protein 4-like protein 32 0.00438 8.871 1 1 +79053 ALG8 ALG8, alpha-1,3-glucosyltransferase 11 protein-coding CDG1H probable dolichyl pyrophosphate Glc1Man9GlcNAc2 alpha-1,3-glucosyltransferase|HUSSY-02|asparagine-linked glycosylation 8 alpha-13-glucosyltransferase-like protein|asparagine-linked glycosylation 8 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation 8 homolog (yeast, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation 8, alpha-1,3-glucosyltransferase homolog|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:Glc(1)Man(9)GlcNAc(2)-PP-dolichol alpha- 1->3-glucosyltransferase|dolichyl-P-Glc:Glc1Man9GlcNAc2-PP-dolichyl glucosyltransferase|dolichyl-P-glucose:Glc1Man9GlcNAc2-PP-dolichyl-alpha-1,3-glucosyltransferase 25 0.003422 9.556 1 1 +79054 TRPM8 transient receptor potential cation channel subfamily M member 8 2 protein-coding LTRPC6|TRPP8 transient receptor potential cation channel subfamily M member 8|LTrpC-6|long transient receptor potential channel 6|short form of the TRPM8 cationic channel|transient receptor melastatin 8 variant 1|transient receptor melastatin 8 variant 2|transient receptor potential p8|transient receptor potential subfamily M member 8|trp-p8 94 0.01287 3.074 1 1 +79056 PRRG4 proline rich and Gla domain 4 11 protein-coding PRGP4|TMG4 transmembrane gamma-carboxyglutamic acid protein 4|proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane)|proline rich Gla 4 (transmembrane) isoform 1|proline rich Gla 4 (transmembrane) isoform 2|proline rich Gla 4 (transmembrane) isoform 3|proline-rich Gla protein 4|proline-rich gamma-carboxyglutamic acid protein 4 11 0.001506 7.16 1 1 +79057 PRRG3 proline rich and Gla domain 3 X protein-coding PRGP3|TMG3 transmembrane gamma-carboxyglutamic acid protein 3|proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane)|proline-rich Gla protein 3|proline-rich gamma-carboxyglutamic acid protein 3 40 0.005475 1.335 1 1 +79058 ASPSCR1 ASPSCR1, UBX domain containing tether for SLC2A4 17 protein-coding ASPCR1|ASPL|ASPS|RCC17|TUG|UBXD9|UBXN9 tether containing UBX domain for GLUT4|UBX domain protein 9|UBX domain-containing protein 9|alveolar soft part sarcoma chromosomal region candidate gene 1 protein|alveolar soft part sarcoma chromosome region, candidate 1|alveolar soft part sarcoma locus|renal cell carcinoma gene on chromosome 17|renal cell carcinoma, papillary, 17|renal papillary cell carcinoma protein 17 46 0.006296 9.203 1 1 +79064 TMEM223 transmembrane protein 223 11 protein-coding - transmembrane protein 223 14 0.001916 8.439 1 1 +79065 ATG9A autophagy related 9A 2 protein-coding APG9L1|MGD3208|mATG9 autophagy-related protein 9A|APG9 autophagy 9-like 1|APG9-like 1|ATG9 autophagy related 9 homolog A|autophagy 9-like 1 protein 45 0.006159 10.73 1 1 +79066 METTL16 methyltransferase like 16 17 protein-coding METT10D methyltransferase-like protein 16|methyltransferase 10 domain containing|methyltransferase 10 domain-containing protein|putative methyltransferase METT10D 26 0.003559 9.543 1 1 +79068 FTO FTO, alpha-ketoglutarate dependent dioxygenase 16 protein-coding ALKBH9|BMIQ14|GDFD alpha-ketoglutarate-dependent dioxygenase FTO|AlkB homolog 9|fat mass and obesity associated|fat mass and obesity-associated protein 39 0.005338 9.952 1 1 +79070 KDELC1 KDEL motif containing 1 13 protein-coding EP58|ERp58|KDEL1 KDEL motif-containing protein 1|ER protein 58|KDEL (Lys-Asp-Glu-Leu) containing 1|endoplasmic reticulum resident protein 58 42 0.005749 7.069 1 1 +79071 ELOVL6 ELOVL fatty acid elongase 6 4 protein-coding FACE|FAE|LCE elongation of very long chain fatty acids protein 6|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)|fatty acid elongase 2|fatty acyl-CoA elongase|hELO2|long-chain fatty-acyl elongase|very long chain 3-ketoacyl-CoA synthase 6|very long chain 3-oxoacyl-CoA synthase 6 20 0.002737 8.168 1 1 +79072 FASTKD3 FAST kinase domains 3 5 protein-coding - FAST kinase domain-containing protein 3, mitochondrial|FAST kinase domain-containing protein 3 70 0.009581 7.449 1 1 +79073 TMEM109 transmembrane protein 109 11 protein-coding - transmembrane protein 109|mg23|mitsugumin-23 20 0.002737 11.19 1 1 +79074 C2orf49 chromosome 2 open reading frame 49 2 protein-coding asw ashwin 15 0.002053 6.979 1 1 +79075 DSCC1 DNA replication and sister chromatid cohesion 1 8 protein-coding DCC1 sister chromatid cohesion protein DCC1|defective in sister chromatid cohesion 1 homolog|defective in sister chromatid cohesion protein 1 homolog 20 0.002737 6.948 1 1 +79077 DCTPP1 dCTP pyrophosphatase 1 16 protein-coding CDA03|RS21C6|XTP3TPA dCTP pyrophosphatase 1|XTP3-transactivated gene A protein|XTP3-transactivated protein A|dCTPase 1|deoxycytidine-triphosphatase 1 5 0.0006844 9.712 1 1 +79078 C1orf50 chromosome 1 open reading frame 50 1 protein-coding - uncharacterized protein C1orf50 12 0.001642 7.317 1 1 +79080 CCDC86 coiled-coil domain containing 86 11 protein-coding - coiled-coil domain-containing protein 86|cyclon|cytokine-induced protein with coiled-coil domain 24 0.003285 9.51 1 1 +79081 LBHD1 LBH domain containing 1 11 protein-coding C11orf48 LBH domain-containing protein 1 9.408 0 1 +79083 MLPH melanophilin 2 protein-coding SLAC2-A melanophilin|exophilin-3|slp homolog lacking C2 domains a|synaptotagmin-like protein 2a 28 0.003832 8.473 1 1 +79084 WDR77 WD repeat domain 77 1 protein-coding HKMT1069|MEP-50|MEP50|Nbla10071|p44|p44/Mep50 methylosome protein 50|WD repeat-containing protein 77|androgen receptor cofactor p44|testis tissue sperm-binding protein Li 44a 18 0.002464 9.64 1 1 +79085 SLC25A23 solute carrier family 25 member 23 19 protein-coding APC2|MCSC2|SCaMC-3 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 (mitochondrial carrier; phosphate carrier), member 23 33 0.004517 10.79 1 1 +79086 SMIM7 small integral membrane protein 7 19 protein-coding C19orf42 small integral membrane protein 7|UPF0608 protein C19orf42 9 0.001232 10.33 1 1 +79087 ALG12 ALG12, alpha-1,6-mannosyltransferase 22 protein-coding CDG1G|ECM39|PP14673|hALG12 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase|asparagine-linked glycosylation 12 homolog (S. cerevisiae, alpha-1,6-mannosyltransferase)|asparagine-linked glycosylation 12 homolog (yeast, alpha-1,6-mannosyltransferase)|asparagine-linked glycosylation 12, alpha-1,6-mannosyltransferase homolog|asparagine-linked glycosylation protein 12 homolog|dol-P-Man dependent alpha-1,6-mannosyltransferase|dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichol 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 40 0.005475 9.237 1 1 +79088 ZNF426 zinc finger protein 426 19 protein-coding K-RBP zinc finger protein 426|CTC-543D15.7|KSHV RTA binding protein 33 0.004517 6.522 1 1 +79089 TMUB2 transmembrane and ubiquitin like domain containing 2 17 protein-coding FP2653 transmembrane and ubiquitin-like domain-containing protein 2 18 0.002464 9.806 1 1 +79090 TRAPPC6A trafficking protein particle complex 6A 19 protein-coding TRS33 trafficking protein particle complex subunit 6A|TRAPP complex subunit 6A 15 0.002053 8.556 1 1 +79091 METTL22 methyltransferase like 22 16 protein-coding C16orf68 methyltransferase-like protein 22|LP8272 30 0.004106 7.586 1 1 +79092 CARD14 caspase recruitment domain family member 14 17 protein-coding BIMP2|CARMA2|PRP|PSORS2|PSS1 caspase recruitment domain-containing protein 14|CARD-containing MAGUK protein 2|bcl10-interacting maguk protein 2 66 0.009034 5.819 1 1 +79094 CHAC1 ChaC glutathione specific gamma-glutamylcyclotransferase 1 15 protein-coding - glutathione-specific gamma-glutamylcyclotransferase 1|ChaC, cation transport regulator homolog 1|ChaC, cation transport regulator-like 1|blocks Notch protein|botch|gamma-GCG 1|gamma-GCT acting on glutathione homolog 1 12 0.001642 6.121 1 1 +79095 C9orf16 chromosome 9 open reading frame 16 9 protein-coding EST00098 UPF0184 protein C9orf16 4 0.0005475 9.939 1 1 +79096 C11orf49 chromosome 11 open reading frame 49 11 protein-coding - UPF0705 protein C11orf49 24 0.003285 9.118 1 1 +79097 TRIM48 tripartite motif containing 48 11 protein-coding RNF101 tripartite motif-containing protein 48|RING finger protein 101 57 0.007802 0.2144 1 1 +79098 C1orf116 chromosome 1 open reading frame 116 1 protein-coding SARG specifically androgen-regulated gene protein|specifically androgen-regulated protein 47 0.006433 7.976 1 1 +79100 LINC00626 long intergenic non-protein coding RNA 626 1 ncRNA - - 0 0 0.7567 1 1 +79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D 11 protein-coding JOSD3|RAFI41|TAF(I)41|TAFI41 TATA box-binding protein-associated factor RNA polymerase I subunit D|Josephin domain containing 3|RNA polymerase I-specific TBP-associated factor 41 kDa|TATA box binding protein (TBP)-associated factor, RNA polymerase I, D, 41kDa|TATA box-binding protein-associated factor 1D|TATA-box binding protein associated factor, RNA polymerase I, D|TBP-associated factor 1D|transcription initiation factor SL1/TIF-IB subunit D 28 0.003832 9.228 1 1 +79102 RNF26 ring finger protein 26 11 protein-coding - RING finger protein 26|ring finger protein with leucine zipper 26 0.003559 10.04 1 1 +79104 MEG8 maternally expressed 8 (non-protein coding) 14 ncRNA Bsr|Irm|LINC00024|NCRNA00024|Rian Imprinted RNA near Meg3/Gtl2|RNA Imprinted and Accumulated in Nucleus|long intergenic non-protein coding RNA 24|maternally expressed (in Callipyge) 8 1 0.0001369 0.3867 1 1 +79109 MAPKAP1 mitogen-activated protein kinase associated protein 1 9 protein-coding JC310|MIP1|SIN1|SIN1b|SIN1g target of rapamycin complex 2 subunit MAPKAP1|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 protein kinase-interacting 1 35 0.004791 10.74 1 1 +79132 DHX58 DExH-box helicase 58 17 protein-coding D11LGP2|D11lgp2e|LGP2|RLR-3 probable ATP-dependent RNA helicase DHX58|DEXH (Asp-Glu-X-His) box polypeptide 58|RIG-I-like receptor 3|RIG-I-like receptor LGP2|RLR|RNA helicase LGP2|ortholog of mouse D11lgp2|probable ATP-dependent helicase LGP2|protein D11Lgp2 homolog 31 0.004243 8.424 1 1 +79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 20 protein-coding C20orf7|bA526K24.2|dJ842G6.1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 5|NADH dehydrogenase (ubiquinone) complex I, assembly factor 5|probable methyltransferase C20orf7, mitochondrial 24 0.003285 7.397 1 1 +79134 TMEM185B transmembrane protein 185B 2 protein-coding FAM11B transmembrane protein 185B|ee3_2|family with sequence similarity 11, member B|putative transmembrane protein 185B|transmembrane protein 185B (pseudogene) 2 0.0002737 8.889 1 1 +79135 APOO apolipoprotein O X protein-coding FAM121B|MIC26|Mic23|My025 MICOS complex subunit MIC26|MICOS complex subunit MIC23|brain my025|family with sequence similarity 121B 11 0.001506 8.196 1 1 +79136 LY6G6E lymphocyte antigen 6 complex, locus G6E 6 pseudo C6orf22|G6e lymphocyte antigen 6 complex, locus G6E (pseudogene)|lymphocyte antigen-6 G6E 3 0.0004106 0.3655 1 1 +79137 FAM134A family with sequence similarity 134 member A 2 protein-coding C2orf17|MAG-2 protein FAM134A|metastasis associated gene-2 29 0.003969 11.5 1 1 +79139 DERL1 derlin 1 8 protein-coding DER-1|DER1|derlin-1 derlin-1|DERtrin-1|Der1-like domain family, member 1|degradation in endoplasmic reticulum protein 1 22 0.003011 11.05 1 1 +79140 CCDC28B coiled-coil domain containing 28B 1 protein-coding - coiled-coil domain-containing protein 28B 20 0.002737 6.885 1 1 +79142 PHF23 PHD finger protein 23 17 protein-coding hJUNE-1b PHD finger protein 23|PDH-containing protein JUNE-1|PHD finger protein 23a 34 0.004654 9.727 1 1 +79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 19 protein-coding BB1|LENG4|LPIAT|LRC4|MBOA7|OACT7|hMBOA-7 lysophospholipid acyltransferase 7|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|malignant cell expression-enhanced gene/tumor progression-enhanced 36 0.004927 10.7 1 1 +79144 PPDPF pancreatic progenitor cell differentiation and proliferation factor 20 protein-coding C20orf149|dJ697K14.9|exdpf pancreatic progenitor cell differentiation and proliferation factor|exocrine differentiation and proliferation factor|pancreatic progenitor cell differentiation and proliferation factor homolog 8 0.001095 12.07 1 1 +79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 8 protein-coding COX23 coiled-coil-helix-coiled-coil-helix domain-containing protein 7|COX23 cytochrome c oxidase assembly homolog 8 0.001095 9.095 1 1 +79147 FKRP fukutin related protein 19 protein-coding LGMD2I|MDC1C|MDDGA5|MDDGB5|MDDGC5 fukutin-related protein 22 0.003011 8.264 1 1 +79148 MMP28 matrix metallopeptidase 28 17 protein-coding EPILYSIN|MM28|MMP-25|MMP-28|MMP25 matrix metalloproteinase-28|matrix metalloprotease MMP25 16 0.00219 6.908 1 1 +79149 ZSCAN5A zinc finger and SCAN domain containing 5A 19 protein-coding ZNF495|ZSCAN5 zinc finger and SCAN domain-containing protein 5A|zinc finger and SCAN domain containing 5|zinc finger protein 495 43 0.005886 6.147 1 1 +79152 FA2H fatty acid 2-hydroxylase 16 protein-coding FAAH|FAH1|FAXDC1|SCS7|SPG35 fatty acid 2-hydroxylase|fatty acid alpha-hydroxylase|fatty acid hydroxylase domain containing 1|spastic paraplegia 35 (autosomal recessive) 19 0.002601 6.289 1 1 +79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 16 protein-coding GDE7 glycerophosphodiester phosphodiesterase domain-containing protein 3 25 0.003422 5.544 1 1 +79154 DHRS11 dehydrogenase/reductase 11 17 protein-coding ARPG836|SDR24C1|spDHRS11 dehydrogenase/reductase SDR family member 11|dehydrogenase/reductase (SDR family) member 11|inactive dehydrogenase/reductase isoform|short-chain dehydrogenase/reductase family 24C member 1 11 0.001506 7.79 1 1 +79155 TNIP2 TNFAIP3 interacting protein 2 4 protein-coding ABIN2|FLIP1|KLIP TNFAIP3-interacting protein 2|A20-binding inhibitor of NF-kappaB activation-2|fetal liver LKB1-interacting protein 26 0.003559 9.506 1 1 +79156 PLEKHF1 pleckstrin homology and FYVE domain containing 1 19 protein-coding APPD|LAPF|PHAFIN1|ZFYVE15 pleckstrin homology domain-containing family F member 1|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|pleckstrin homology domain containing, family F (with FYVE domain) member 1|zinc finger FYVE domain-containing protein 15 10 0.001369 7.608 1 1 +79157 MFSD11 major facilitator superfamily domain containing 11 17 protein-coding ET UNC93-like protein MFSD11|major facilitator superfamily domain-containing protein 11|protein ET 38 0.005201 8.947 1 1 +79158 GNPTAB N-acetylglucosamine-1-phosphate transferase alpha and beta subunits 12 protein-coding GNPTA|ICD N-acetylglucosamine-1-phosphotransferase subunits alpha/beta|GlcNAc phosphotransferase|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 74 0.01013 10.22 1 1 +79159 NOL12 nucleolar protein 12 22 protein-coding Nop25|dJ37E16.7 nucleolar protein 12 13 0.001779 8.351 1 1 +79161 TMEM243 transmembrane protein 243 7 protein-coding C7orf23|MM-TRAG|MMTRAG transmembrane protein 243|MDR1 and mitochondrial taxol resistance associated|transmembrane protein 243, mitochondrial|transmembrane protein C7orf23 6 0.0008212 8.296 1 1 +79165 LENG1 leukocyte receptor cluster member 1 19 protein-coding - leukocyte receptor cluster member 1|leukocyte receptor cluster (LRC) member 1 24 0.003285 7.572 1 1 +79166 LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 19 pseudo CD85m|ILT10|LILRA5 immunoglobulin-like transcript 10|leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 5 9 0.001232 0.748 1 1 +79168 LILRA6 leukocyte immunoglobulin like receptor A6 19 protein-coding CD85b|ILT-8|ILT5|ILT8|LILRB3|LILRB6 leukocyte immunoglobulin-like receptor subfamily A member 6|immunoglobulin-like transcript 5|immunoglobulin-like transcript 8|leucocyte Ig-like receptor A6|leukocyte Ig-like receptor|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 6 60 0.008212 5.255 1 1 +79169 C1orf35 chromosome 1 open reading frame 35 1 protein-coding MMTAG2 multiple myeloma tumor-associated protein 2|multiple myeloma transforming 2 26 0.003559 8.495 1 1 +79170 PRR15L proline rich 15 like 17 protein-coding ATAD4 proline-rich protein 15-like protein|ATPase family, AAA domain containing 4|testicular tissue protein Li 157 3 0.0004106 6.706 1 1 +79171 RBM42 RNA binding motif protein 42 19 protein-coding - RNA-binding protein 42 44 0.006022 10.65 1 1 +79172 CENPO centromere protein O 2 protein-coding CENP-O|ICEN-36|MCM21R centromere protein O|centromeric protein O|interphase centromere complex protein 36 20 0.002737 7.029 1 1 +79173 C19orf57 chromosome 19 open reading frame 57 19 protein-coding - uncharacterized protein C19orf57|pre-T/NK cell associated protein (3B3) 43 0.005886 5.695 1 1 +79174 CRELD2 cysteine rich with EGF like domains 2 22 protein-coding - cysteine-rich with EGF-like domain protein 2 42 0.005749 9.569 1 1 +79175 ZNF343 zinc finger protein 343 20 protein-coding dJ734P14.5 zinc finger protein 343 36 0.004927 7.969 1 1 +79176 FBXL15 F-box and leucine rich repeat protein 15 10 protein-coding FBXO37|Fbl15|JET|PSD F-box/LRR-repeat protein 15|F-box only protein 37|pleckstrin and Sec7 domain protein 12 0.001642 8.065 1 1 +79177 ZNF576 zinc finger protein 576 19 protein-coding - zinc finger protein 576 15 0.002053 7.968 1 1 +79178 THTPA thiamine triphosphatase 14 protein-coding THTP|THTPASE thiamine-triphosphatase 15 0.002053 8.412 1 1 +79180 EFHD2 EF-hand domain family member D2 1 protein-coding SWS1 EF-hand domain-containing protein D2|EF hand domain containing 2|swiprosin 1|testicular tissue protein Li 62 9 0.001232 11.08 1 1 +79183 TTPAL alpha tocopherol transfer protein like 20 protein-coding C20orf121 alpha-tocopherol transfer protein-like|tocopherol (alpha) transfer protein-like 25 0.003422 9.161 1 1 +79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 X protein-coding BRCC36|C6.1A|CXorf53 lys-63-specific deubiquitinase BRCC36|BRCA1-A complex subunit BRCC36|BRCA1/BRCA2-containing complex subunit 36|BRISC complex subunit BRCC36 26 0.003559 8.927 1 1 +79187 FSD1 fibronectin type III and SPRY domain containing 1 19 protein-coding GLFND|MIR1 fibronectin type III and SPRY domain-containing protein 1|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|microtubule-associated protein GLFND|midline 1-related protein 1 27 0.003696 3.702 1 1 +79188 TMEM43 transmembrane protein 43 3 protein-coding ARVC5|ARVD5|EDMD7|LUMA transmembrane protein 43 25 0.003422 11.09 1 1 +79190 IRX6 iroquois homeobox 6 16 protein-coding IRX-3|IRX7|IRXB3 iroquois-class homeodomain protein IRX-6|homeodomain protein IRXB3|iroquois homeobox protein 6|iroquois homeobox protein 7 66 0.009034 2.948 1 1 +79191 IRX3 iroquois homeobox 3 16 protein-coding IRX-1|IRXB1 iroquois-class homeodomain protein IRX-3|homeodomain protein IRXB1|iroquois homeobox protein 3|iroquois-class homeodomain protein IRX-1 28 0.003832 7.508 1 1 +79192 IRX1 iroquois homeobox 1 5 protein-coding IRX-5|IRXA1 iroquois-class homeodomain protein IRX-1|homeodomain protein IRXA1|iroquois homeobox protein 1 91 0.01246 2.817 1 1 +79228 THOC6 THO complex 6 16 protein-coding BBIS|WDR58|fSAP35 THO complex subunit 6 homolog|THO complex 6 homolog|WD repeat domain 58|WD repeat-containing protein 58|functional spliceosome-associated protein 35 22 0.003011 9.08 1 1 +79230 ZNF557 zinc finger protein 557 19 protein-coding - zinc finger protein 557|CTB-25J19.9 32 0.00438 7.367 1 1 +79258 MMEL1 membrane metalloendopeptidase like 1 1 protein-coding MMEL2|NEP2|NEPII|NL1|NL2|SEP membrane metallo-endopeptidase-like 1|NEP2(m)|membrane metallo-endopeptidase-like 2|neprilysin II|neprilysin-2|soluble secreted endopeptidase|zinc metallopeptidase 70 0.009581 2.941 1 1 +79269 DCAF10 DDB1 and CUL4 associated factor 10 9 protein-coding WDR32 DDB1- and CUL4-associated factor 10|WD repeat domain 32|WD repeat-containing protein 32 24 0.003285 9.784 1 1 +79273 OR7E94P olfactory receptor family 7 subfamily E member 94 pseudogene 4 pseudo - - 1 0.0001369 1 0 +79274 OR52L2P olfactory receptor family 52 subfamily L member 2 pseudogene 11 pseudo OR52L2 Olfactory receptor 52L2|olfactory receptor OR11-74|seven transmembrane helix receptor 1 0.0001369 1 0 +79290 OR13A1 olfactory receptor family 13 subfamily A member 1 10 protein-coding - olfactory receptor 13A1|olfactory receptor OR10-3|seven transmembrane helix receptor 40 0.005475 1.534 1 1 +79294 OR4C7P olfactory receptor family 4 subfamily C member 7 pseudogene 11 pseudo - - 1 0.0001369 1 0 +79295 OR5H6 olfactory receptor family 5 subfamily H member 6 (gene/pseudogene) 3 protein-coding OR3-11 olfactory receptor 5H6|olfactory receptor OR3-11|olfactory receptor, family 5, subfamily H, member 6 62 0.008486 0.04319 1 1 +79308 OR4P1P olfactory receptor family 4 subfamily P member 1 pseudogene 11 pseudo OR4P2P olfactory receptor, family 4, subfamily P, member 2 pseudogene 0 0 1 0 +79310 OR5H2 olfactory receptor family 5 subfamily H member 2 3 protein-coding OR3-10 olfactory receptor 5H2|olfactory receptor OR3-10 41 0.005612 0.02781 1 1 +79315 OR7E91P olfactory receptor family 7 subfamily E member 91 pseudogene 2 pseudo - - 1.987 0 1 +79317 OR4K5 olfactory receptor family 4 subfamily K member 5 14 protein-coding OR14-16 olfactory receptor 4K5|olfactory receptor OR14-16 70 0.009581 0.01484 1 1 +79324 OR51G1 olfactory receptor family 51 subfamily G member 1 (gene/pseudogene) 11 protein-coding OR11-29|OR51G3P olfactory receptor 51G1|olfactory receptor 51G3|olfactory receptor OR11-29|olfactory receptor, family 51, subfamily G, member 1 56 0.007665 0.01871 1 1 +79334 OR11H2 olfactory receptor family 11 subfamily H member 2 14 protein-coding C14orf15|OR11H13|OR11H2P|OR11H8P olfactory receptor 11H2|olfactory receptor OR14-1|seven transmembrane helix receptor 1 0.0001369 1 0 +79339 OR51B4 olfactory receptor family 51 subfamily B member 4 11 protein-coding HOR5'Beta1 olfactory receptor 51B4|odorant receptor HOR5'beta1 35 0.004791 0.2636 1 1 +79345 OR51B2 olfactory receptor family 51 subfamily B member 2 (gene/pseudogene) 11 protein-coding HOR5'Beta3|OR51B1P olfactory receptor 51B2|odorant receptor HOR5'beta3|olfactory receptor 51B1|olfactory receptor, family 51, subfamily B, member 2 46 0.006296 0.07963 1 1 +79346 OR4C5 olfactory receptor family 4 subfamily C member 5 (gene/pseudogene) 11 pseudo OR4C5P|OR4C5Q olfactory receptor, family 4, subfamily C, member 5 pseudogene 4 0.0005475 1 0 +79363 RSG1 REM2 and RAB like small GTPase 1 1 protein-coding C1orf89 REM2- and Rab-like small GTPase 1|Rem/Rab-Similar GTPase 1|miro domain-containing protein C1orf89 23 0.003148 6.037 1 1 +79364 ZXDC ZXD family zinc finger C 3 protein-coding ZXDL zinc finger protein ZXDC|SERH2790|ZXD-like zinc finger protein 48 0.00657 10.05 1 1 +79365 BHLHE41 basic helix-loop-helix family member e41 12 protein-coding BHLHB3|DEC2|SHARP1|hDEC2 class E basic helix-loop-helix protein 41|basic helix-loop-helix domain containing, class B, 3|differentially expressed in chondrocytes protein 2|enhancer-of-split and hairy-related protein 1 22 0.003011 9.331 1 1 +79366 HMGN5 high mobility group nucleosome binding domain 5 X protein-coding NBP-45|NSBP1 high mobility group nucleosome-binding domain-containing protein 5|nucleosomal binding protein 1|nucleosome-binding protein 1 13 0.001779 6.952 1 1 +79368 FCRL2 Fc receptor like 2 1 protein-coding CD307b|FCRH2|IFGP4|IRTA4|SPAP1|SPAP1A|SPAP1B|SPAP1C Fc receptor-like protein 2|IFGP family protein 4|SH2 domain containing phosphatase anchor protein 1|fc receptor homolog 2|immune receptor translocation-associated protein 4|immunoglobulin receptor translocation-associated protein 4|immunoglobulin superfamily Fc receptor, gp42 66 0.009034 2.16 1 1 +79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 12 protein-coding B3GN-T4|beta3Gn-T4 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase 4|BGnT-4|beta-1,3-Gn-T4|beta-1,3-N-acetylglucosaminyltransferase 4|beta-1,3-N-acetylglucosaminyltransferase bGn-T4 28 0.003832 3.663 1 1 +79370 BCL2L14 BCL2 like 14 12 protein-coding BCLG apoptosis facilitator Bcl-2-like protein 14|BCL2-like 14 (apoptosis facilitator)|apoptosis regulator BCL-G|bcl2-L-14|testicular tissue protein Li 26 24 0.003285 3.835 1 1 +79400 NOX5 NADPH oxidase 5 15 protein-coding - NADPH oxidase 5|NADPH oxidase, EF-hand calcium binding domain 5 70 0.009581 2.469 1 1 +79411 GLB1L galactosidase beta 1 like 2 protein-coding - beta-galactosidase-1-like protein|testicular tissue protein Li 74 31 0.004243 7.491 1 1 +79412 KREMEN2 kringle containing transmembrane protein 2 16 protein-coding KRM2 kremen protein 2|dickkopf receptor 2|kringle domain-containing transmembrane protein 2|kringle-containing protein marking the eye and the nose 18 0.002464 4.617 1 1 +79413 ZBED2 zinc finger BED-type containing 2 3 protein-coding - zinc finger BED domain-containing protein 2|zinc finger, BED domain containing 2 19 0.002601 4.612 1 1 +79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 19 protein-coding FIGLER1|SALM4 leucine-rich repeat and fibronectin type-III domain-containing protein 3|fibronectin type III, immunoglobulin and leucine rich repeat domains 1|synaptic adhesion-like molecule 4 54 0.007391 8.118 1 1 +79415 C17orf62 chromosome 17 open reading frame 62 17 protein-coding - uncharacterized protein C17orf62 23 0.003148 10.51 1 1 +79441 HAUS3 HAUS augmin like complex subunit 3 4 protein-coding C4orf15|IT1|dgt3 HAUS augmin-like complex subunit 3 38 0.005201 8.331 1 1 +79442 LRRC2 leucine rich repeat containing 2 3 protein-coding - leucine-rich repeat-containing protein 2 31 0.004243 4.546 1 1 +79443 FYCO1 FYVE and coiled-coil domain containing 1 3 protein-coding CATC2|CTRCT18|RUFY3|ZFYVE7 FYVE and coiled-coil domain-containing protein 1|RUN and FYVE domain containing 3|zinc finger FYVE domain-containing protein 7 77 0.01054 9.918 1 1 +79444 BIRC7 baculoviral IAP repeat containing 7 20 protein-coding KIAP|LIVIN|ML-IAP|MLIAP|RNF50 baculoviral IAP repeat-containing protein 7|RING finger protein 50|kidney inhibitor of apoptosis protein|livin inhibitor of apoptosis|melanoma inhibitor of apoptosis protein 31 0.004243 3.137 1 1 +79446 WDR25 WD repeat domain 25 14 protein-coding C14orf67 WD repeat-containing protein 25 33 0.004517 7.757 1 1 +79447 PAGR1 PAXIP1 associated glutamate rich protein 1 16 protein-coding C16orf53|GAS|PA1 PAXIP1-associated glutamate-rich protein 1|PAXIP1-associated protein 1|PTIP-associated 1 protein|PTIP-associated protein 1|glutamate-rich coactivator associated with SRC1|glutamate-rich coactivator interacting with SRC1|glutamate-rich coactivator interacting with SRC1/NCOA1 18 0.002464 10.02 1 1 +79465 ULBP3 UL16 binding protein 3 6 protein-coding N2DL-3|NKG2DL3|RAET1N NKG2D ligand 3|ALCAN-gamma|retinoic acid early transcript 1N 22 0.003011 4.54 1 1 +79469 DLEU2L deleted in lymphocytic leukemia 2-like 1 pseudo BCMSUNL BCMS upstream neighbor-like 1 0.0001369 2.311 1 1 +79470 OR51J1 olfactory receptor family 51 subfamily J member 1 (gene/pseudogene) 11 pseudo OR51J1P|OR51J2 olfactory receptor, family 51, subfamily J, member 1 pseudogene|olfactory receptor, family 51, subfamily J, member 2 5 0.0006844 1 0 +79473 OR52N1 olfactory receptor family 52 subfamily N member 1 11 protein-coding OR11-61 olfactory receptor 52N1|olfactory receptor OR11-61 39 0.005338 0.05108 1 1 +79498 OR8I1P olfactory receptor family 8 subfamily I member 1 pseudogene 11 pseudo - - 1 0.0001369 1 0 +79501 OR4F5 olfactory receptor family 4 subfamily F member 5 1 protein-coding - olfactory receptor 4F5 1 0.0001369 0.03717 1 1 +79512 OR5M6P olfactory receptor family 5 subfamily M member 6 pseudogene 11 pseudo - - 1 0.0001369 1 0 +79541 OR2A4 olfactory receptor family 2 subfamily A member 4 6 protein-coding OR2A10 olfactory receptor 2A4|olfactory receptor 2A10|olfactory receptor OR6-37|olfactory receptor, family 2, subfamily A, member 10 12 0.001642 3.954 1 1 +79544 OR4K1 olfactory receptor family 4 subfamily K member 1 14 protein-coding OR14-19 olfactory receptor 4K1|olfactory receptor OR14-19 71 0.009718 0.03005 1 1 +79549 OR6J1 olfactory receptor family 6 subfamily J member 1 (gene/pseudogene) 14 pseudo OR6J1P|OR6J2 Olfactory receptor 6J1|olfactory receptor, family 6, subfamily J, member 1 pseudogene|olfactory receptor, family 6, subfamily J, member 2|seven transmembrane helix receptor 3 0.0004106 1 0 +79567 FAM65A family with sequence similarity 65 member A 16 protein-coding - protein FAM65A 59 0.008076 10.36 1 1 +79568 MAIP1 matrix AAA peptidase interacting protein 1 2 protein-coding C2orf47 uncharacterized protein C2orf47, mitochondrial 11 0.001506 8.305 1 1 +79570 NKAIN1 Na+/K+ transporting ATPase interacting 1 1 protein-coding FAM77C sodium/potassium-transporting ATPase subunit beta-1-interacting protein 1|Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 1|family with sequence similarity 77, member C 8 0.001095 4.6 1 1 +79571 GCC1 GRIP and coiled-coil domain containing 1 7 protein-coding GCC1P|GCC88 GRIP and coiled-coil domain-containing protein 1|golgi coiled-coil 1|golgi coiled-coil protein 1|peripheral membrane Golgi protein 56 0.007665 9.3 1 1 +79572 ATP13A3 ATPase 13A3 3 protein-coding AFURS1 probable cation-transporting ATPase 13A3|ATPase family homolog up-regulated in senescence cells 1|ATPase type 13A3 86 0.01177 11.07 1 1 +79573 TTC13 tetratricopeptide repeat domain 13 1 protein-coding - tetratricopeptide repeat protein 13|TPR repeat protein 13 60 0.008212 8.31 1 1 +79574 EPS8L3 EPS8 like 3 1 protein-coding EPS8R3 epidermal growth factor receptor kinase substrate 8-like protein 3|EPS8-like protein 3|EPS8-related protein 3|epidermal growth factor receptor pathway substrate 8-related protein 3 45 0.006159 2.472 1 1 +79575 ABHD8 abhydrolase domain containing 8 19 protein-coding - protein ABHD8|abhydrolase domain-containing protein 8|alpha/beta hydrolase domain-containing protein 8 28 0.003832 8.365 1 1 +79576 NKAP NFKB activating protein X protein-coding - NF-kappa-B-activating protein|NF-kappaB activating protein 51 0.006981 8.561 1 1 +79577 CDC73 cell division cycle 73 1 protein-coding C1orf28|FIHP|HPTJT|HRPT1|HRPT2|HYX parafibromin|Paf1/RNA polymerase II complex component|cell division cycle 73 Paf1/RNA polymerase II complex component-like protein|cell division cycle 73, Paf1/RNA polymerase II complex component, homolog|cell division cycle protein 73 homolog|hyperparathyroidism 2 protein 53 0.007254 9.876 1 1 +79581 SLC52A2 solute carrier family 52 member 2 8 protein-coding BVVLS2|D15Ertd747e|GPCR41|GPR172A|PAR1|RFT3|RFVT2|hRFT3 solute carrier family 52, riboflavin transporter, member 2|G protein-coupled receptor 172A|PERV-A receptor 1|porcine endogenous retrovirus A receptor 1|putative G-protein coupled receptor GPCR41|riboflavin transporter 3|solute carrier family 52 (riboflavin transporter), member 2 32 0.00438 10.35 1 1 +79582 SPAG16 sperm associated antigen 16 2 protein-coding PF20|WDR29 sperm-associated antigen 16 protein|WD repeat domain 29|pf20 protein homolog|sperm-associated WD repeat protein 87 0.01191 8.081 1 1 +79583 TMEM231 transmembrane protein 231 16 protein-coding ALYE870|JBTS20|MKS11|PRO1886 transmembrane protein 231 8 0.001095 7.603 1 1 +79585 CORO7 coronin 7 16 protein-coding 0610011B16Rik|CRN7|POD1 coronin-7|70 kDa WD repeat tumor rejection antigen homolog 53 0.007254 9.676 1 1 +79586 CHPF chondroitin polymerizing factor 2 protein-coding CHSY2|CSS2 chondroitin sulfate synthase 2|N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase II|N-acetylgalactosaminyltransferase 2|chondroitin glucuronyltransferase 2|glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase II 47 0.006433 11.57 1 1 +79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial (putative) 13 protein-coding COXPD27|cysRS probable cysteine--tRNA ligase, mitochondrial|cysteine tRNA ligase 2, mitochondrial (putative) 33 0.004517 9.504 1 1 +79589 RNF128 ring finger protein 128, E3 ubiquitin protein ligase X protein-coding GRAIL E3 ubiquitin-protein ligase RNF128|gene related to anergy in lymphocytes protein 60 0.008212 7.348 1 1 +79590 MRPL24 mitochondrial ribosomal protein L24 1 protein-coding L24mt|MRP-L18|MRP-L24 39S ribosomal protein L24, mitochondrial 27 0.003696 10.33 1 1 +79591 C10orf76 chromosome 10 open reading frame 76 10 protein-coding - UPF0668 protein C10orf76 38 0.005201 9.355 1 1 +79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 1 protein-coding C1orf166|GIDE|MAPL|MULAN|RNF218 mitochondrial ubiquitin ligase activator of NFKB 1|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-anchored protein ligase|putative NF-kappa-B-activating protein 266|ring finger protein 218 20 0.002737 9.658 1 1 +79595 SAP130 Sin3A associated protein 130 2 protein-coding - histone deacetylase complex subunit SAP130|130 kDa Sin3-associated polypeptide|Sin3-associated polypeptide p130|Sin3A associated protein 130kDa 82 0.01122 9.518 1 1 +79596 RNF219 ring finger protein 219 13 protein-coding C13orf7 RING finger protein 219 55 0.007528 8.304 1 1 +79598 CEP97 centrosomal protein 97 3 protein-coding 2810403B08Rik|LRRIQ2 centrosomal protein of 97 kDa|centrosomal protein 97kDa|leucine-rich repeat and IQ domain-containing protein 2|leucine-rich repeats and IQ motif containing 2 55 0.007528 6.836 1 1 +79600 TCTN1 tectonic family member 1 12 protein-coding JBTS13|TECT1 tectonic-1 36 0.004927 8.897 1 1 +79602 ADIPOR2 adiponectin receptor 2 12 protein-coding ACDCR2|PAQR2 adiponectin receptor protein 2|progestin and adipoQ receptor family member II 25 0.003422 11.1 1 1 +79603 CERS4 ceramide synthase 4 19 protein-coding LASS4|Trh1 ceramide synthase 4|LAG1 homolog, ceramide synthase 4|LAG1 longevity assurance homolog 4 28 0.003832 9.425 1 1 +79605 PGBD5 piggyBac transposable element derived 5 1 protein-coding - piggyBac transposable element-derived protein 5|piggyBac domain related protein 5 51 0.006981 7.147 1 1 +79607 FAM118B family with sequence similarity 118 member B 11 protein-coding - protein FAM118B 28 0.003832 8.167 1 1 +79608 RIC3 RIC3 acetylcholine receptor chaperone 11 protein-coding AYST720|PRO1385 protein RIC-3|resistance to inhibitors of cholinesterase 3 homolog|resistance to inhibitors of cholinesterase 3-like protein|resistant to inhibitor of cholinesterase 3 47 0.006433 5.286 1 1 +79609 VCPKMT valosin containing protein lysine methyltransferase 14 protein-coding C14orf138|METTL21D|VCP-KMT protein-lysine methyltransferase METTL21D|VCP lysine methyltransferase|methyltransferase like 21D|methyltransferase-like protein 21D|valosin containing protein lysine (K) methyltransferase 10 0.001369 7.004 1 1 +79611 ACSS3 acyl-CoA synthetase short-chain family member 3 12 protein-coding - acyl-CoA synthetase short-chain family member 3, mitochondrial|AMP-binding enzyme, 33217 96 0.01314 6.578 1 1 +79612 NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit 13 protein-coding NARG1L N-alpha-acetyltransferase 16, NatA auxiliary subunit|NARG1-like protein|NMDA receptor-regulated 1-like protein 53 0.007254 7.925 1 1 +79613 TANGO6 transport and golgi organization 6 homolog 16 protein-coding TMCO7 transport and Golgi organization protein 6 homolog|transmembrane and coiled-coil domain-containing protein 7|transmembrane and coiled-coil domains 7 79 0.01081 8.224 1 1 +79614 6.189 0 1 +79616 CCNJL cyclin J like 5 protein-coding - cyclin-J-like protein 32 0.00438 6.539 1 1 +79618 HMBOX1 homeobox containing 1 8 protein-coding HNF1LA|HOT1|PBHNF homeobox-containing protein 1|homeobox telomere-binding protein 1|homeobox-containing protein PBHNF 29 0.003969 6.303 1 1 +79621 RNASEH2B ribonuclease H2 subunit B 13 protein-coding AGS2|DLEU8 ribonuclease H2 subunit B|Aicardi-Goutieres syndrome 2 protein|RNase H2 subunit B|deleted in lymphocytic leukemia 8|ribonuclease HI subunit B 16 0.00219 8.713 1 1 +79622 SNRNP25 small nuclear ribonucleoprotein U11/U12 subunit 25 16 protein-coding C16orf33 U11/U12 small nuclear ribonucleoprotein 25 kDa protein|U11/U12 snRNP 25 kDa protein|U11/U12 snRNP 25K|minus-99 protein|small nuclear ribonucleoprotein 25kDa (U11/U12)|small nuclear ribonucleoprotein, U11/U12 25kDa subunit 7 0.0009581 9.252 1 1 +79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 2 protein-coding GALNT15|GalNac-T10|GalNac-T14 polypeptide N-acetylgalactosaminyltransferase 14|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 14|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase T10|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 14 (GalNAc-T14)|polypeptide GalNAc transferase 14|polypeptide N-acetylgalactosaminyltransferase 15|pp-GaNTase 14|protein-UDP acetylgalactosaminyltransferase 14 77 0.01054 6.487 1 1 +79624 ARMT1 acidic residue methyltransferase 1 6 protein-coding C6orf211 protein-glutamate O-methyltransferase|UPF0364 protein C6orf211 31 0.004243 9.22 1 1 +79625 NDNF neuron derived neurotrophic factor 4 protein-coding C4orf31|NORD protein NDNF|fibronectin type-III domain-containing protein C4orf31 51 0.006981 4.858 1 1 +79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 1 protein-coding TIPE2 tumor necrosis factor alpha-induced protein 8-like protein 2|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 2|tumor necrosis factor, alpha-induced protein 8-like protein 2 16 0.00219 6.098 1 1 +79627 OGFRL1 opioid growth factor receptor like 1 6 protein-coding dJ331H24.1 opioid growth factor receptor-like protein 1 36 0.004927 7.835 1 1 +79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 5 protein-coding CMT4C|MNMN SH3 domain and tetratricopeptide repeat-containing protein 2|SH3 domain and tetratricopeptide repeats-containing protein 2 79 0.01081 5.113 1 1 +79629 OCEL1 occludin/ELL domain containing 1 19 protein-coding FWP009|S863-9 occludin/ELL domain-containing protein 1 20 0.002737 8.074 1 1 +79630 C1orf54 chromosome 1 open reading frame 54 1 protein-coding - uncharacterized protein C1orf54 14 0.001916 6.751 1 1 +79631 EFL1 elongation factor like GTPase 1 15 protein-coding EFTUD1|FAM42A|HsT19294|RIA1 elongation factor-like GTPase 1|elongation factor Tu GTP binding domain containing 1|elongation factor Tu GTP-binding domain-containing protein 1|elongation factor-like 1|ribosome assembly 1 homolog 53 0.007254 9.081 1 1 +79632 FAM184A family with sequence similarity 184 member A 6 protein-coding C6orf60 protein FAM184A 106 0.01451 5.608 1 1 +79633 FAT4 FAT atypical cadherin 4 4 protein-coding CDHF14|CDHR11|FAT-J|FATJ|HKLLS2|NBLA00548|VMLDS2 protocadherin Fat 4|FAT tumor suppressor homolog 4|cadherin family member 14|cadherin-related family member 11|fat-like cadherin protein FAT-J|putative protein product of Nbla00548 501 0.06857 7.315 1 1 +79634 SCRN3 secernin 3 2 protein-coding SES3 secernin-3 41 0.005612 8.227 1 1 +79635 CCDC121 coiled-coil domain containing 121 2 protein-coding - coiled-coil domain-containing protein 121 19 0.002601 6.343 1 1 +79637 ARMC7 armadillo repeat containing 7 17 protein-coding - armadillo repeat-containing protein 7 18 0.002464 8.545 1 1 +79639 TMEM53 transmembrane protein 53 1 protein-coding NET4 transmembrane protein 53|novel DUF829 domain-containing protein 21 0.002874 8.008 1 1 +79640 C22orf46 chromosome 22 open reading frame 46 22 protein-coding - uncharacterized protein C22orf46|CTA-216E10.6|putative uncharacterized protein C22orf46 4 0.0005475 8.691 1 1 +79641 ROGDI rogdi homolog 16 protein-coding KTZS protein rogdi homolog|leucine zipper domain protein 10 0.001369 9.203 1 1 +79642 ARSJ arylsulfatase family member J 4 protein-coding - arylsulfatase J|ASJ 44 0.006022 6.618 1 1 +79643 CHMP6 charged multivesicular body protein 6 17 protein-coding VPS20 charged multivesicular body protein 6|chromatin-modifying protein 6|hVps20|vacuolar protein sorting-associated protein 20 17 0.002327 9.12 1 1 +79644 SRD5A3 steroid 5 alpha-reductase 3 4 protein-coding CDG1P|CDG1Q|KRIZI|SRD5A2L|SRD5A2L1 polyprenol reductase|3-oxo-5-alpha-steroid 4-dehydrogenase 3|S5AR 3|SR type 3|probable polyprenol reductase 21 0.002874 9.036 1 1 +79645 EFCAB1 EF-hand calcium binding domain 1 8 protein-coding - EF-hand calcium-binding domain-containing protein 1 35 0.004791 3.16 1 1 +79646 PANK3 pantothenate kinase 3 5 protein-coding - pantothenate kinase 3|hPanK3|pantothenic acid kinase 3 27 0.003696 8.799 1 1 +79647 AKIRIN1 akirin 1 1 protein-coding C1orf108|STRF2 akirin-1 5 0.0006844 10.23 1 1 +79648 MCPH1 microcephalin 1 8 protein-coding BRIT1|MCT microcephalin|BRCT-repeat inhibitor of TERT expression 1|truncated microcephalin 56 0.007665 8.535 1 1 +79649 MAP7D3 MAP7 domain containing 3 X protein-coding MDP3 MAP7 domain-containing protein 3 85 0.01163 7.381 1 1 +79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 16 protein-coding C16orf57|HVSL1|Mpn1|PN|hUsb1 U6 snRNA phosphodiesterase|HVSL motif containing 1|U six biogenesis 1|U6 snRNA biogenesis 1|UPF0406 protein C16orf57|mutated in poikiloderma with neutropenia protein 1|putative U6 snRNA phosphodiesterase 16 0.00219 9.996 1 1 +79651 RHBDF2 rhomboid 5 homolog 2 17 protein-coding RHBDL5|RHBDL6|TEC|TOC|TOCG|iRhom2 inactive rhomboid protein 2|rhomboid family member 2|rhomboid veinlet-like protein 5|rhomboid veinlet-like protein 6 45 0.006159 9.44 1 1 +79652 TMEM204 transmembrane protein 204 16 protein-coding C16orf30|CLP24 transmembrane protein 204|claudin-like protein 24|claudin-like protein of 24 kDa 14 0.001916 7.924 1 1 +79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 1 protein-coding - E3 ubiquitin-protein ligase HECTD3|HECT domain containing E3 ubiquitin protein ligase 3 45 0.006159 10.22 1 1 +79656 BEND5 BEN domain containing 5 1 protein-coding C1orf165 BEN domain-containing protein 5 27 0.003696 5.562 1 1 +79657 RPAP3 RNA polymerase II associated protein 3 12 protein-coding - RNA polymerase II-associated protein 3 30 0.004106 9.104 1 1 +79658 ARHGAP10 Rho GTPase activating protein 10 4 protein-coding GRAF2|PS-GAP|PSGAP rho GTPase-activating protein 10|GTPase regulator associated with focal adhesion kinase 2|graf-related protein 2|rho-type GTPase-activating protein 10 51 0.006981 8.026 1 1 +79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 11 protein-coding ATD3|DHC1b|DHC2|DNCH2|DYH1B|SRPS2B|SRTD3|hdhc11 cytoplasmic dynein 2 heavy chain 1|dynein cytoplasmic heavy chain 2|dynein heavy chain 11|dynein heavy chain, isotype 1B|dynein, cytoplasmic, heavy polypeptide 2 237 0.03244 7.711 1 1 +79660 PPP1R3B protein phosphatase 1 regulatory subunit 3B 8 protein-coding GL|PPP1R4|PTG protein phosphatase 1 regulatory subunit 3B|PP1 subunit R4|hepatic glycogen-targeting protein phosphatase 1 regulatory subunit GL|hepatic glycogen-targeting subunit, G(L)|protein phosphatase 1 regulatory subunit 4|protein phosphatase 1, regulatory (inhibitor) subunit 3B 21 0.002874 9.773 1 1 +79661 NEIL1 nei like DNA glycosylase 1 15 protein-coding FPG1|NEI1|hFPG1 endonuclease 8-like 1|DNA endonuclease eight-like glycosylase 1|DNA glycosylase/AP lyase Neil1|DNA-(apurinic or apyrimidinic site) lyase Neil1|NEH1|endonuclease VIII|endonuclease VIII-like 1|nei endonuclease VIII-like 1|nei homolog 1|nei-like protein 1 31 0.004243 6.491 1 1 +79663 HSPBAP1 HSPB1 associated protein 1 3 protein-coding PASS1 HSPB1-associated protein 1|27 kDa heat shock protein-associated protein 1|HSPB (heat shock 27kDa) associated protein 1|protein associating with small stress protein PASS1 34 0.004654 7.444 1 1 +79664 ICE2 interactor of little elongation complex ELL subunit 2 15 protein-coding BRCC1|NARG2 little elongation complex subunit 2|NMDA receptor regulated 2|NMDA receptor-regulated gene 2|NMDA receptor-regulated protein 2|breast cancer cell 1|interactor of little elongator complex ELL subunit 2 63 0.008623 9.52 1 1 +79665 DHX40 DEAH-box helicase 40 17 protein-coding ARG147|DDX40|PAD probable ATP-dependent RNA helicase DHX40|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 40 (RNA helicase)|DEAH (Asp-Glu-Ala-His) box polypeptide 40|DEAH box protein 40 30 0.004106 10.24 1 1 +79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 8 protein-coding EAPF|PHAFIN2|ZFYVE18 pleckstrin homology domain-containing family F member 2|PH and FYVE domain-containing protein 2|PH domain-containing family F member 2|endoplasmic reticulum-associated apoptosis-involved protein containing PH and FYVE domains|pleckstrin homology domain containing, family F (with FYVE domain) member 2|zinc finger FYVE domain-containing protein 18 16 0.00219 9.168 1 1 +79667 KLF3-AS1 KLF3 antisense RNA 1 4 ncRNA - - 4.522 0 1 +79668 PARP8 poly(ADP-ribose) polymerase family member 8 5 protein-coding ARTD16|pART16 poly [ADP-ribose] polymerase 8|ADP-ribosyltransferase diphtheria toxin-like 16 78 0.01068 8.27 1 1 +79669 C3orf52 chromosome 3 open reading frame 52 3 protein-coding TTMP TPA-induced transmembrane protein|TPA induced trans-membrane protein|novel endoplasmic reticulum transmembrane protein 14 0.001916 6.583 1 1 +79670 ZCCHC6 zinc finger CCHC-type containing 6 9 protein-coding PAPD6|TUT7 terminal uridylyltransferase 7|PAP associated domain containing 6|TUTase 7|zinc finger CCHC domain-containing protein 6|zinc finger, CCHC domain containing 6 97 0.01328 9.381 1 1 +79671 NLRX1 NLR family member X1 11 protein-coding CLR11.3|DLNB26|NOD26|NOD5|NOD9 NLR family member 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 90 0.01232 8.949 1 1 +79672 FN3KRP fructosamine 3 kinase related protein 17 protein-coding FN3KL ketosamine-3-kinase|FN3K-RP|FN3K-related protein|testis secretory sperm-binding protein Li 211a 21 0.002874 9.803 1 1 +79673 ZNF329 zinc finger protein 329 19 protein-coding - zinc finger protein 329 44 0.006022 7.927 1 1 +79674 VEPH1 ventricular zone expressed PH domain containing 1 3 protein-coding MELT|VEPH ventricular zone-expressed PH domain-containing protein homolog 1|protein melted|ventricular zone expressed PH domain homolog 1 77 0.01054 4.519 1 1 +79675 FASTKD1 FAST kinase domains 1 2 protein-coding - FAST kinase domain-containing protein 1, mitochondrial|FAST kinase domain-containing protein 1 66 0.009034 8.342 1 1 +79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 12 protein-coding - 2-oxoglutarate and iron-dependent oxygenase domain-containing protein 2 10 0.001369 8.444 1 1 +79677 SMC6 structural maintenance of chromosomes 6 2 protein-coding SMC-6|SMC6L1|hSMC6 structural maintenance of chromosomes protein 6|SMC protein 6|SMC6 structural maintenance of chromosomes 6-like 1 65 0.008897 9.361 1 1 +79679 VTCN1 V-set domain containing T cell activation inhibitor 1 1 protein-coding B7-H4|B7H4|B7S1|B7X|B7h.5|PRO1291|VCTN1 V-set domain-containing T-cell activation inhibitor 1|B7 family member, H4|B7 homolog 4|B7 superfamily member 1|T cell costimulatory molecule B7x|immune costimulatory protein B7-H4 19 0.002601 5.135 1 1 +79680 C22orf29 chromosome 22 open reading frame 29 22 protein-coding BOP protein Bop|BH3-only protein 24 0.003285 9.205 1 1 +79682 CENPU centromere protein U 4 protein-coding CENP50|CENPU50|KLIP1|MLF1IP|PBIP1 centromere protein U|KSHV latent nuclear antigen interacting protein 1|MLF1 interacting protein|centromere protein of 50 kDa|interphase centromere complex protein 24|polo-box-interacting protein 1 22 0.003011 8.22 1 1 +79683 ZDHHC14 zinc finger DHHC-type containing 14 6 protein-coding NEW1CP probable palmitoyltransferase ZDHHC14|DHHC-14|NEW1 domain-containing protein|zinc finger DHHC domain-containing protein 14|zinc finger, DHHC domain containing 14 27 0.003696 7.6 1 1 +79684 MSANTD2 Myb/SANT DNA binding domain containing 2 11 protein-coding C11orf61 myb/SANT-like DNA-binding domain-containing protein 2|Myb/SANT-like DNA-binding domain containing 2 14 0.001916 7.468 1 1 +79685 SAP30L SAP30 like 5 protein-coding NS4ATP2 histone deacetylase complex subunit SAP30L|HCV non-structural protein 4A-transactivated protein 2|Sin3A associated protein p30-like|sin3 corepressor complex subunit SAP30L|sin3-associated protein p30-like 8 0.001095 9.705 1 1 +79686 LINC00341 long intergenic non-protein coding RNA 341 14 ncRNA C14orf139|NCRNA00341 - 2 0.0002737 6.022 1 1 +79689 STEAP4 STEAP4 metalloreductase 7 protein-coding STAMP2|TIARP|TNFAIP9 metalloreductase STEAP4|STEAP family member 4|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 42 0.005749 8.148 1 1 +79690 GAL3ST4 galactose-3-O-sulfotransferase 4 7 protein-coding GAL3ST-4 galactose-3-O-sulfotransferase 4|beta-galactose-3-O-sulfotransferase 4|gal-beta-1,3-GalNAc 3'-sulfotransferase|galbeta1-3GalNAc 3'-sulfotransferase 51 0.006981 7.81 1 1 +79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 3 protein-coding QTRTD1 queuine tRNA-ribosyltransferase subunit QTRTD1|queuine tRNA-ribosyltransferase domain containing 1 26 0.003559 8.886 1 1 +79692 ZNF322 zinc finger protein 322 6 protein-coding HCG12|ZNF322A|ZNF388|ZNF489 zinc finger protein 322|HLA complex group 12|zinc finger protein 322A|zinc finger protein 388|zinc finger protein 489 12 0.001642 9.362 1 1 +79693 YRDC yrdC N6-threonylcarbamoyltransferase domain containing 1 protein-coding DRIP3|IRIP|SUA5 yrdC domain-containing protein, mitochondrial|dopamine receptor interacting protein 3|hIRIP|ischemia/reperfusion inducible protein|ischemia/reperfusion-inducible protein homolog|yrdC N(6)-threonylcarbamoyltransferase domain containing|yrdC domain containing 8 0.001095 8.616 1 1 +79694 MANEA mannosidase endo-alpha 6 protein-coding ENDO|hEndo glycoprotein endo-alpha-1,2-mannosidase|alpha 1,2-endomannosidase|endo-alpha mannosidase|endomannosidase|mandaselin 54 0.007391 8.494 1 1 +79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 9 protein-coding CRCS1|GalNAc-T12 polypeptide N-acetylgalactosaminyltransferase 12|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 12|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 12 (GalNAc-T12)|colorectal cancer, susceptibility to 1|polypeptide GalNAc transferase 12|pp-GaNTase 12|protein-UDP acetylgalactosaminyltransferase 12 32 0.00438 7.508 1 1 +79696 ZC2HC1C zinc finger C2HC-type containing 1C 14 protein-coding C14orf140|FAM164C zinc finger C2HC domain-containing protein 1C|family with sequence similarity 164, member C|protein FAM164C 19 0.002601 5.786 1 1 +79697 C14orf169 chromosome 14 open reading frame 169 14 protein-coding MAPJD|NO66|ROX|URLC2|hsNO66 bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66|60S ribosomal protein L8 histidine hydroxylase|MYC-associated protein with JmjC domain|histone lysine demethylase NO66|lysine-specific demethylase NO66|nucleolar protein 66|ribosomal oxygenase NO66|up-regulated in lung cancer 2 11 0.001506 8.044 1 1 +79698 ZMAT4 zinc finger matrin-type 4 8 protein-coding - zinc finger matrin-type protein 4 44 0.006022 2.3 1 1 +79699 ZYG11B zyg-11 family member B, cell cycle regulator 1 protein-coding ZYG11 protein zyg-11 homolog B|zyg-11 homolog B 46 0.006296 9.751 1 1 +79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 17 protein-coding C17orf101 2-oxoglutarate and iron-dependent oxygenase domain-containing protein 3|PKHD domain-containing transmembrane protein C17orf101 24 0.003285 8.665 1 1 +79703 C11orf80 chromosome 11 open reading frame 80 11 protein-coding TOP6BL|TOPOVIBL type 2 DNA topoisomerase 6 subunit B-like|putative uncharacterized protein C11orf80|type 2 DNA topoisomerase VI subunit B-like|uncharacterized protein C11orf80 37 0.005064 7.976 1 1 +79705 LRRK1 leucine rich repeat kinase 1 15 protein-coding RIPK6|Roco1 leucine-rich repeat serine/threonine-protein kinase 1 128 0.01752 8.231 1 1 +79706 PRKRIP1 PRKR interacting protein 1 (IL11 inducible) 7 protein-coding C114|KRBOX3 PRKR-interacting protein 1|KRAB box domain containing 3|likely ortholog of mouse C114 dsRNA-binding protein 21 0.002874 9.292 1 1 +79707 NOL9 nucleolar protein 9 1 protein-coding Grc3|NET6 polynucleotide 5'-hydroxyl-kinase NOL9|polynucleotide 5'-kinase 48 0.00657 7.511 1 1 +79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 19 protein-coding GLT25D1 procollagen galactosyltransferase 1|Procollagen galactosyltransferase|glycosyltransferase 25 domain containing 1|glycosyltransferase 25 family member 1|hydroxylysine galactosyltransferase 1 38 0.005201 11.17 1 1 +79710 MORC4 MORC family CW-type zinc finger 4 X protein-coding ZCW4|ZCWCC2|dJ75H8.2 MORC family CW-type zinc finger protein 4|zinc finger CW-type coiled-coil domain protein 2|zinc finger CW-type domain protein 4|zinc finger, CW type with coiled-coil domain 2 56 0.007665 9.123 1 1 +79711 IPO4 importin 4 14 protein-coding Imp4 importin-4|imp4b|importin-4b|ran-binding protein 4|ranBP4 47 0.006433 10.05 1 1 +79712 GTDC1 glycosyltransferase like domain containing 1 2 protein-coding Hmat-Xa|mat-Xa glycosyltransferase-like domain-containing protein 1|glycosyltransferase-like 1|mannosyltransferase candidate|mannosyltransferase-like protein Xa 54 0.007391 8.281 1 1 +79713 IGFLR1 IGF like family receptor 1 19 protein-coding TMEM149 IGF-like family receptor 1|transmembrane protein 149 20 0.002737 7.414 1 1 +79714 CCDC51 coiled-coil domain containing 51 3 protein-coding - coiled-coil domain-containing protein 51 22 0.003011 8.369 1 1 +79716 NPEPL1 aminopeptidase-like 1 20 protein-coding bA261P9.2 probable aminopeptidase NPEPL1 39 0.005338 9.561 1 1 +79717 PPCS phosphopantothenoylcysteine synthetase 1 protein-coding - phosphopantothenate--cysteine ligase|PPC synthetase 21 0.002874 9.857 1 1 +79718 TBL1XR1 transducin beta like 1 X-linked receptor 1 3 protein-coding C21|DC42|IRA1|MRD41|TBLR1 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 64 0.00876 11.57 1 1 +79719 AAGAB alpha- and gamma-adaptin binding protein 15 protein-coding KPPP1|PPKP1|PPKP1A|p34 alpha- and gamma-adaptin-binding protein p34 20 0.002737 10.05 1 1 +79720 VPS37B VPS37B, ESCRT-I subunit 12 protein-coding - vacuolar protein sorting-associated protein 37B|ESCRT-I complex subunit VPS37B|hVps37B|vacuolar protein sorting 37 homolog B|vacuolar protein sorting 37B 37 0.005064 10.04 1 1 +79722 ANKRD55 ankyrin repeat domain 55 5 protein-coding - ankyrin repeat domain-containing protein 55 47 0.006433 1.953 1 1 +79723 SUV39H2 suppressor of variegation 3-9 homolog 2 10 protein-coding KMT1B histone-lysine N-methyltransferase SUV39H2|H3-K9-HMTase 2|histone H3-K9 methyltransferase 2|lysine N-methyltransferase 1B|su(var)3-9 homolog 2 23 0.003148 7.56 1 1 +79724 ZNF768 zinc finger protein 768 16 protein-coding - zinc finger protein 768 50 0.006844 10.15 1 1 +79725 THAP9 THAP domain containing 9 4 protein-coding hTh9 DNA transposase THAP9|THAP domain-containing protein 9 56 0.007665 6.852 1 1 +79726 WDR59 WD repeat domain 59 16 protein-coding FP977 WD repeat-containing protein 59 65 0.008897 9.546 1 1 +79727 LIN28A lin-28 homolog A 1 protein-coding CSDD1|LIN-28|LIN28|ZCCHC1|lin-28A protein lin-28 homolog A|RNA-binding protein LIN-28|zinc finger CCHC domain-containing protein 1|zinc finger, CCHC domain containing 1 20 0.002737 0.7576 1 1 +79728 PALB2 partner and localizer of BRCA2 16 protein-coding FANCN|PNCA3 partner and localizer of BRCA2 72 0.009855 8.358 1 1 +79729 SH3D21 SH3 domain containing 21 1 protein-coding C1orf113 SH3 domain-containing protein 21|SH3 domain-containing protein C1orf113 31 0.004243 6.935 1 1 +79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 4 protein-coding - putative methyltransferase NSUN7|NOL1/NOP2/Sun domain family member 7|NOP2/Sun domain family, member 7 40 0.005475 5.904 1 1 +79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial (putative) 11 protein-coding DFNB94|SLM5|asnRS probable asparagine--tRNA ligase, mitochondrial|asparagine tRNA ligase 2, mitochondrial (putative)|deafness, autosomal recessive 94|probable asparaginyl-tRNA synthetase, mitochondrial 32 0.00438 8.6 1 1 +79733 E2F8 E2F transcription factor 8 11 protein-coding E2F-8 transcription factor E2F8|E2F family member 8 65 0.008897 6.05 1 1 +79734 KCTD17 potassium channel tetramerization domain containing 17 22 protein-coding - BTB/POZ domain-containing protein KCTD17 13 0.001779 7.881 1 1 +79735 TBC1D17 TBC1 domain family member 17 19 protein-coding - TBC1 domain family member 17 40 0.005475 9.897 1 1 +79736 TEFM transcription elongation factor, mitochondrial 17 protein-coding C17orf42 transcription elongation factor, mitochondrial|transcription elongation factor of mitochondria 17 0.002327 7.39 1 1 +79738 BBS10 Bardet-Biedl syndrome 10 12 protein-coding C12orf58 Bardet-Biedl syndrome 10 protein 45 0.006159 8.352 1 1 +79739 TTLL7 tubulin tyrosine ligase like 7 1 protein-coding - tubulin polyglutamylase TTLL7|testis development protein NYD-SP30|tubulin tyrosine ligase-like family, member 7|tubulin--tyrosine ligase-like protein 7 75 0.01027 5.526 1 1 +79740 ZBBX zinc finger B-box domain containing 3 protein-coding - zinc finger B-box domain-containing protein 1 133 0.0182 1.448 1 1 +79741 CCDC7 coiled-coil domain containing 7 10 protein-coding BIOT2|BioT2-A|BioT2-B|BioT2-C|C10orf68 coiled-coil domain-containing protein 7|uncharacterized protein C10orf68 92 0.01259 2.425 1 1 +79742 CXorf36 chromosome X open reading frame 36 X protein-coding 4930578C19Rik|DIA1R|EPQL1862|PRO3743|bA435K1.1 deleted in autism-related protein 1|UPF0672 protein CXorf36|deleted in autism-1 related protein|hCG1981635 30 0.004106 8.007 1 1 +79744 ZNF419 zinc finger protein 419 19 protein-coding ZAPHIR|ZNF419A zinc finger protein 419|zinc finger protein 419A 49 0.006707 7.237 1 1 +79745 CLIP4 CAP-Gly domain containing linker protein family member 4 2 protein-coding RSNL2 CAP-Gly domain-containing linker protein 4|CAP-GLY domain containing linker protein family, member 4|restin-like protein 2 48 0.00657 8.614 1 1 +79746 ECHDC3 enoyl-CoA hydratase domain containing 3 10 protein-coding - enoyl-CoA hydratase domain-containing protein 3, mitochondrial|enoyl Coenzyme A hydratase domain containing 3|testis tissue sperm-binding protein Li 76m 17 0.002327 7.058 1 1 +79747 ADGB androglobin 6 protein-coding C6orf103|CAPN16 androglobin|calpain-7-like protein 52 0.007117 0.6219 1 1 +79748 LMAN1L lectin, mannose binding 1 like 15 protein-coding ERGIC-53L|ERGL protein ERGIC-53-like|ERGIC-53-like protein|ERGIC53-like protein|LMAN1-like protein 47 0.006433 1.042 1 1 +79750 ZNF385D zinc finger protein 385D 3 protein-coding ZNF659 zinc finger protein 385D|zinc finger protein 659 84 0.0115 3.34 1 1 +79751 SLC25A22 solute carrier family 25 member 22 11 protein-coding EIEE3|GC-1|GC1|NET44 mitochondrial glutamate carrier 1|glutamate/H(+) symporter 1|solute carrier family 25 (mitochondrial carrier: glutamate), member 22 18 0.002464 9.448 1 1 +79752 ZFAND1 zinc finger AN1-type containing 1 8 protein-coding - AN1-type zinc finger protein 1|zinc finger, AN1-type domain 1 21 0.002874 9.096 1 1 +79753 SNIP1 Smad nuclear interacting protein 1 1 protein-coding PMRED smad nuclear-interacting protein 1|FHA domain-containing protein SNIP1 32 0.00438 8.16 1 1 +79754 ASB13 ankyrin repeat and SOCS box containing 13 10 protein-coding - ankyrin repeat and SOCS box protein 13|ankyrin repeat domain-containing SOCS box protein Asb-13 15 0.002053 9.228 1 1 +79755 ZNF750 zinc finger protein 750 17 protein-coding ZFP750 zinc finger protein 750|protein ZNF750 86 0.01177 5.316 1 1 +79758 DHRS12 dehydrogenase/reductase 12 13 protein-coding SDR40C1 dehydrogenase/reductase SDR family member 12|dehydrogenase/reductase (SDR family) member 12|short-chain dehydrogenase/reductase family 40C member 1 14 0.001916 7.613 1 1 +79759 ZNF668 zinc finger protein 668 16 protein-coding - zinc finger protein 668 58 0.007939 8.238 1 1 +79760 GEMIN7 gem nuclear organelle associated protein 7 19 protein-coding SIP3 gem-associated protein 7|gemin-7 16 0.00219 8.238 1 1 +79762 C1orf115 chromosome 1 open reading frame 115 1 protein-coding - uncharacterized protein C1orf115 7 0.0009581 9.046 1 1 +79763 ISOC2 isochorismatase domain containing 2 19 protein-coding - isochorismatase domain-containing protein 2|isochorismatase domain-containing protein 2, mitochondrial 15 0.002053 9.924 1 1 +79767 ELMO3 engulfment and cell motility 3 16 protein-coding CED-12|CED12|ELMO-3 engulfment and cell motility protein 3|ced-12 homolog 3 48 0.00657 8.435 1 1 +79768 KATNBL1 katanin regulatory subunit B1 like 1 15 protein-coding C15orf29 KATNB1-like protein 1|katanin p80 subunit B-like 1 23 0.003148 8.405 1 1 +79770 TXNDC15 thioredoxin domain containing 15 5 protein-coding C5orf14|UNQ335 thioredoxin domain-containing protein 15|2310047H23Rik|disulfide isomerase 21 0.002874 10.1 1 1 +79772 MCTP1 multiple C2 and transmembrane domain containing 1 5 protein-coding - multiple C2 and transmembrane domain-containing protein 1|multiple C2 domains, transmembrane 1|multiple C2-domains with two transmembrane regions 1 79 0.01081 5.979 1 1 +79774 GRTP1 growth hormone regulated TBC protein 1 13 protein-coding TBC1D6 growth hormone-regulated TBC protein 1|TBC1 domain family member 6 20 0.002737 7.322 1 1 +79776 ZFHX4 zinc finger homeobox 4 8 protein-coding ZFH4|ZHF4 zinc finger homeobox protein 4|zinc-finger homeodomain protein 4 561 0.07679 6.605 1 1 +79777 ACBD4 acyl-CoA binding domain containing 4 17 protein-coding HMFT0700 acyl-CoA-binding domain-containing protein 4|acyl-Coenzyme A binding domain containing 4 30 0.004106 7.946 1 1 +79778 MICALL2 MICAL like 2 7 protein-coding JRAB|MICAL-L2 MICAL-like protein 2|junctional Rab13-binding protein|molecule interacting with CasL-like 2 62 0.008486 9.02 1 1 +79780 CCDC82 coiled-coil domain containing 82 11 protein-coding HSPC048 coiled-coil domain-containing protein 82 35 0.004791 8.545 1 1 +79781 IQCA1 IQ motif containing with AAA domain 1 2 protein-coding 4930465P12Rik|DRC11|IQCA IQ and AAA domain-containing protein 1|dynein regulatory complex subunit 11 62 0.008486 5.567 1 1 +79782 LRRC31 leucine rich repeat containing 31 3 protein-coding HEL-S-293 leucine-rich repeat-containing protein 31|epididymis secretory protein Li 293 48 0.00657 2.572 1 1 +79783 SUGCT succinyl-CoA:glutarate-CoA transferase 7 protein-coding C7orf10|DERP13|GA3|ORF19 succinate--hydroxymethylglutarate CoA-transferase|Russel-Silver syndrome candidate|dermal papilla-derived protein 13|succinylCoA:glutarate-CoA transferase 50 0.006844 5.695 1 1 +79784 MYH14 myosin heavy chain 14 19 protein-coding DFNA4|DFNA4A|FP17425|MHC16|MYH17|NMHC II-C|NMHC-II-C|PNMHH|myosin myosin-14|MYH14 variant protein|myosin heavy chain, non-muscle IIc|myosin, heavy chain 14, non-muscle|myosin, heavy polypeptide 14|non-muscle myosin heavy chain IIc|nonmuscle myosin heavy chain II-C 126 0.01725 10.77 1 1 +79785 RERGL RERG like 12 protein-coding - ras-related and estrogen-regulated growth inhibitor-like protein|RERG/RAS-like 29 0.003969 2.83 1 1 +79786 KLHL36 kelch like family member 36 16 protein-coding C16orf44 kelch-like protein 36|kelch-like 36 38 0.005201 8.06 1 1 +79788 ZNF665 zinc finger protein 665 19 protein-coding ZFP160L zinc finger protein 665 91 0.01246 4.318 1 1 +79789 CLMN calmin 14 protein-coding - calmin|calmin (calponin-like, transmembrane)|calponin-like transmembrane domain protein 71 0.009718 9.018 1 1 +79791 FBXO31 F-box protein 31 16 protein-coding FBX14|FBXO14|Fbx31|MRT45|pp2386 F-box only protein 31|SCF ubiquitin ligase specificity factor|putative breast cancer tumor-suppressor 42 0.005749 9.502 1 1 +79792 GSDMD gasdermin D 8 protein-coding DF5L|DFNA5L|FKSG10|GSDMDC1 gasdermin-D|gasdermin domain containing 1|gasdermin domain-containing protein 1 31 0.004243 10.24 1 1 +79794 C12orf49 chromosome 12 open reading frame 49 12 protein-coding - UPF0454 protein C12orf49 16 0.00219 9.203 1 1 +79796 ALG9 ALG9, alpha-1,2-mannosyltransferase 11 protein-coding CDG1L|DIBD1|GIKANIS|LOH11CR1J alpha-1,2-mannosyltransferase ALG9|asparagine-linked glycosylation 9 alpha-12-mannosyltransferase-like protein|asparagine-linked glycosylation 9 homolog (S. cerevisiae, alpha- 1,2-mannosyltransferase)|asparagine-linked glycosylation 9 homolog (yeast, alpha- 1,2-mannosyltransferase)|asparagine-linked glycosylation 9, alpha-1,2-mannosyltransferase homolog|asparagine-linked glycosylation protein 9 homolog|disrupted in bipolar affective disorder 1|disrupted in bipolar disorder protein 1|dol-P-Man dependent alpha-1,2-mannosyltransferase|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|dolichyl-P-Man:Man(6)GlcNAc(2)-PP-dolichol alpha-1,2-mannosyltransferase|dolichyl-P-Man:Man(8)GlcNAc(2)-PP-dolichol alpha-1,2-mannosyltransferase|loss of heterozygosity, 11, chromosomal region 1 gene J product 39 0.005338 9.02 1 1 +79797 ZNF408 zinc finger protein 408 11 protein-coding EVR6|RP72 zinc finger protein 408|PR domain zinc finger protein 17 43 0.005886 8.355 1 1 +79798 ARMC5 armadillo repeat containing 5 16 protein-coding AIMAH2 armadillo repeat-containing protein 5 76 0.0104 8.666 1 1 +79799 UGT2A3 UDP glucuronosyltransferase family 2 member A3 4 protein-coding - UDP-glucuronosyltransferase 2A3|UDP glucuronosyltransferase 2 family, polypeptide A3|UDPGT 2A3 63 0.008623 1.94 1 1 +79800 CARF calcium responsive transcription factor 2 protein-coding ALS2CR8|NYD-SP24 calcium-responsive transcription factor|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 8|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 8 protein|calcium-response factor|testis development protein NYD-SP24 53 0.007254 6.875 1 1 +79801 SHCBP1 SHC binding and spindle associated 1 16 protein-coding PAL SHC SH2 domain-binding protein 1|Protein expressed in Activated Lymphocytes 32 0.00438 7.151 1 1 +79802 HHIPL2 HHIP like 2 1 protein-coding KIAA1822L HHIP-like protein 2|hedgehog interacting protein-like 2 96 0.01314 2.618 1 1 +79803 HPS6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 10 protein-coding BLOC2S3 Hermansky-Pudlak syndrome 6 protein|Hermansky-Pudlak syndrome 6|Hermansky-Pudlak syndrome-6 protein (HPS6)|ruby-eye protein homolog 39 0.005338 8.9 1 1 +79804 HAND2-AS1 HAND2 antisense RNA 1 (head to head) 4 ncRNA DEIN|NBLA00301 differentially expressed in neuroblastoma|neuroblastoma transcript 301 8 0.001095 2.534 1 1 +79805 VASH2 vasohibin 2 1 protein-coding - vasohibin-2|testicular tissue protein Li 222|vasohibin-like protein 19 0.002601 5.662 1 1 +79807 GSTCD glutathione S-transferase C-terminal domain containing 4 protein-coding - glutathione S-transferase C-terminal domain-containing protein 30 0.004106 7.778 1 1 +79809 TTC21B tetratricopeptide repeat domain 21B 2 protein-coding ATD4|IFT139|IFT139B|JBTS11|NPHP12|Nbla10696|SRTD4|THM1 tetratricopeptide repeat protein 21B|TPR repeat protein 21B|putative protein product of Nbla10696 89 0.01218 8.29 1 1 +79810 PTCD2 pentatricopeptide repeat domain 2 5 protein-coding - pentatricopeptide repeat-containing protein 2, mitochondrial|CTC-365E16.1 18 0.002464 6.927 1 1 +79811 SLTM SAFB like transcription modulator 15 protein-coding Met SAFB-like transcription modulator|modulator of estrogen-induced transcription 67 0.009171 10.74 1 1 +79812 MMRN2 multimerin 2 10 protein-coding EMILIN-3|EMILIN3|ENDOGLYX-1 multimerin-2|EMILIN-like protein EndoGlyx-1|elastin microfibril interface located protein 3|elastin microfibril interfacer 3|endoGlyx-1 p125/p140 subunit 46 0.006296 8.97 1 1 +79813 EHMT1 euchromatic histone lysine methyltransferase 1 9 protein-coding EUHMTASE1|Eu-HMTase1|FP13812|GLP|GLP1|KMT1D|bA188C12.1 histone-lysine N-methyltransferase EHMT1|G9a-like protein 1|H3-K9-HMTase 5|euchromatic histone-lysine N-methyltransferase 1|histone H3-K9 methyltransferase 5|histone-lysine N-methyltransferase, H3 lysine-9 specific 5|lysine N-methyltransferase 1D 88 0.01204 10.24 1 1 +79814 AGMAT agmatinase 1 protein-coding - agmatinase, mitochondrial|AUH|agmatine ureohydrolase (agmatinase) 23 0.003148 5.87 1 1 +79815 NIPAL2 NIPA like domain containing 2 8 protein-coding NPAL2 NIPA-like protein 2 19 0.002601 6.929 1 1 +79816 TLE6 transducin like enhancer of split 6 19 protein-coding GRG6|PREMBL transducin-like enhancer protein 6|transducin-like enhancer of split 6 (E(sp1) homolog, Drosophila) 38 0.005201 4.675 1 1 +79817 MOB3B MOB kinase activator 3B 9 protein-coding C9orf35|MOB1D|MOBKL2B MOB kinase activator 3B|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 11 0.001506 8.314 1 1 +79818 ZNF552 zinc finger protein 552 19 protein-coding - zinc finger protein 552 21 0.002874 7.438 1 1 +79819 WDR78 WD repeat domain 78 1 protein-coding DIC4 WD repeat-containing protein 78 69 0.009444 5.734 1 1 +79820 CATSPERB cation channel sperm associated auxiliary subunit beta 14 protein-coding C14orf161|CatSper(beta) cation channel sperm-associated protein subunit beta|catSper-beta|cation channel, sperm associated beta|catsper channel auxiliary subunit beta 76 0.0104 2.669 1 1 +79822 ARHGAP28 Rho GTPase activating protein 28 18 protein-coding - rho GTPase-activating protein 28|rho-type GTPase-activating protein 28 75 0.01027 6.393 1 1 +79823 CAMKMT calmodulin-lysine N-methyltransferase 2 protein-coding C2orf34|CLNMT|CaM KMT|Cam|KMT calmodulin-lysine N-methyltransferase 20 0.002737 6.591 1 1 +79825 EFCC1 EF-hand and coiled-coil domain containing 1 3 protein-coding C3orf73|CCDC48 EF-hand and coiled-coil domain-containing protein 1|EF-hand domain-containing protein ENSP00000381169|coiled-coil domain containing 48|coiled-coil domain-containing protein 48 24 0.003285 5.106 1 1 +79827 CLMP CXADR like membrane protein 11 protein-coding ACAM|ASAM|CSBM|CSBS CXADR-like membrane protein|CAR-like membrane protein|adipocyte-specific adhesion molecule|coxsackie- and adenovirus receptor-like membrane protein 20 0.002737 5.428 1 1 +79828 METTL8 methyltransferase like 8 2 protein-coding TIP methyltransferase-like protein 8|tension-induced/inhibited protein 20 0.002737 8.392 1 1 +79829 NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit 11 protein-coding NAT11|PATT1 N-alpha-acetyltransferase 40|N(alpha)-acetyltransferase 40, NatD catalytic subunit, homolog|N-acetyltransferase 11 (GCN5-related, putative)|N-alpha acetyl transferase 40|natD catalytic subunit 17 0.002327 8.93 1 1 +79830 ZMYM1 zinc finger MYM-type containing 1 1 protein-coding MYM zinc finger MYM-type protein 1|zinc finger, MYM domain containing 1|zinc finger, MYM-type 1 63 0.008623 7.834 1 1 +79831 KDM8 lysine demethylase 8 16 protein-coding JMJD5 lysine-specific demethylase 8|jmjC domain-containing protein 5|jumonji domain containing 5|jumonji domain-containing protein 5|lysine (K)-specific demethylase 8 18 0.002464 6.709 1 1 +79832 QSER1 glutamine and serine rich 1 11 protein-coding - glutamine and serine-rich protein 1 101 0.01382 9.765 1 1 +79833 GEMIN6 gem nuclear organelle associated protein 6 2 protein-coding - gem-associated protein 6|SIP2|gemin-6 7 0.0009581 7.613 1 1 +79834 PEAK1 pseudopodium enriched atypical kinase 1 15 protein-coding SGK269 pseudopodium-enriched atypical kinase 1|NKF3 kinase family member|sugen kinase 269|tyrosine-protein kinase SgK269 120 0.01642 9.737 1 1 +79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 X protein-coding RNF127 LON peptidase N-terminal domain and RING finger protein 3|ring finger protein 127 65 0.008897 4.987 1 1 +79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma 12 protein-coding PIP5K2C phosphatidylinositol 5-phosphate 4-kinase type-2 gamma|PI(5)P 4-kinase type II gamma|PIP4KII-gamma|phosphatidylinositol 4-phosphate 5-kinase|phosphatidylinositol 5-phosphate 4-kinase type II gamma|phosphatidylinositol-4-phosphate 5-kinase, type II, gamma 33 0.004517 10.23 1 1 +79838 TMC5 transmembrane channel like 5 16 protein-coding - transmembrane channel-like protein 5 94 0.01287 6.413 1 1 +79839 CCDC102B coiled-coil domain containing 102B 18 protein-coding ACY1L|AN|C18orf14|HsT1731 coiled-coil domain-containing protein 102B 54 0.007391 6.03 1 1 +79840 NHEJ1 non-homologous end joining factor 1 2 protein-coding XLF non-homologous end-joining factor 1|XRCC4-like factor|nonhomologous end-joining factor 1|protein cernunnos 18 0.002464 7.907 1 1 +79841 AGBL2 ATP/GTP binding protein like 2 11 protein-coding CCP2 cytosolic carboxypeptidase 2|cytoplasmic carboxypeptidase 2|testis tissue sperm-binding protein Li 96mP 58 0.007939 3.802 1 1 +79842 ZBTB3 zinc finger and BTB domain containing 3 11 protein-coding - zinc finger and BTB domain-containing protein 3 43 0.005886 6.612 1 1 +79843 FAM124B family with sequence similarity 124 member B 2 protein-coding - protein FAM124B|family with sequence similarity 124B 42 0.005749 4.458 1 1 +79844 ZDHHC11 zinc finger DHHC-type containing 11 5 protein-coding ZNF399 probable palmitoyltransferase ZDHHC11|DHHC-11|zinc finger DHHC domain-containing protein 11|zinc finger protein 399|zinc finger, DHHC domain containing 11 36 0.004927 5.352 1 1 +79845 RNF122 ring finger protein 122 8 protein-coding - RING finger protein 122 15 0.002053 7.389 1 1 +79846 CFAP69 cilia and flagella associated protein 69 7 protein-coding C7orf63|FAP69 cilia- and flagella-associated protein 69 67 0.009171 5.748 1 1 +79847 MFSD13A major facilitator superfamily domain containing 13A 10 protein-coding C10orf77|TMEM180|bA18I14.8 transmembrane protein 180 24 0.003285 7.244 1 1 +79848 CSPP1 centrosome and spindle pole associated protein 1 8 protein-coding CSPP|JBTS21 centrosome and spindle pole-associated protein 1 107 0.01465 8.075 1 1 +79849 PDZD3 PDZ domain containing 3 11 protein-coding IKEPP|NHERF4|PDZK2 Na(+)/H(+) exchange regulatory cofactor NHE-RF4|NHERF-4|PDZ domain containing 2|PDZ domain-containing protein 2|PDZ domain-containing protein 3|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 31 0.004243 1.883 1 1 +79850 FAM57A family with sequence similarity 57 member A 17 protein-coding CT120 protein FAM57A|membrane protein expressed in epithelial-like lung adenocarcinoma 12 0.001642 8.722 1 1 +79852 EPHX3 epoxide hydrolase 3 19 protein-coding ABHD9|EH3 epoxide hydrolase 3|abhydrolase domain containing 9|abhydrolase domain-containing protein 9 21 0.002874 4.801 1 1 +79853 TM4SF20 transmembrane 4 L six family member 20 2 protein-coding PRO994|SLI5|TCCE518 transmembrane 4 L6 family member 20 12 0.001642 1.322 1 1 +79854 LINC00115 long intergenic non-protein coding RNA 115 1 ncRNA NCRNA00115 - 9 0.001232 4.575 1 1 +79856 SNX22 sorting nexin 22 15 protein-coding - sorting nexin-22 11 0.001506 8.204 1 1 +79857 FLJ13224 uncharacterized LOC79857 12 ncRNA - - 1.483 0 1 +79858 NEK11 NIMA related kinase 11 3 protein-coding - serine/threonine-protein kinase Nek11|NIMA (never in mitosis gene a)- related kinase 11 60 0.008212 7.085 1 1 +79861 TUBAL3 tubulin alpha like 3 10 protein-coding - tubulin alpha chain-like 3 34 0.004654 2.219 1 1 +79862 ZNF669 zinc finger protein 669 1 protein-coding - zinc finger protein 669 30 0.004106 6.485 1 1 +79863 RBFA ribosome binding factor A (putative) 18 protein-coding C18orf22|HsT169 putative ribosome-binding factor A, mitochondrial 19 0.002601 8.41 1 1 +79864 C11orf63 chromosome 11 open reading frame 63 11 protein-coding - uncharacterized protein C11orf63 79 0.01081 5.819 1 1 +79865 TREML2 triggering receptor expressed on myeloid cells like 2 6 protein-coding C6orf76|TLT-2|TLT2|dJ238O23.1 trem-like transcript 2 protein|triggering receptor expressed on myeloid cells-like protein 2 39 0.005338 2.635 1 1 +79866 BORA bora, aurora kinase A activator 13 protein-coding C13orf34 protein aurora borealis 38 0.005201 7.159 1 1 +79867 TCTN2 tectonic family member 2 12 protein-coding C12orf38|JBTS24|MKS8|TECT2 tectonic-2 49 0.006707 8.489 1 1 +79868 ALG13 ALG13, UDP-N-acetylglucosaminyltransferase subunit X protein-coding CDG1S|CXorf45|EIEE36|GLT28D1|MDS031|TDRD13|YGL047W putative bifunctional UDP-N-acetylglucosamine transferase and deubiquitinase ALG13|N-acetylglucosaminyldiphosphodolichol N-acetylglucosaminyltransferase|UDP-N-acetylglucosamine transferase subunit ALG13 homolog|asparagine-linked glycosylation 13 homolog|glycosyltransferase 28 domain-containing protein 1|hematopoietic stem/progenitor cells protein MDS031|tudor domain containing 13 74 0.01013 8.84 1 1 +79869 CPSF7 cleavage and polyadenylation specific factor 7 11 protein-coding CFIm59 cleavage and polyadenylation specificity factor subunit 7|CPSF 59 kDa subunit|cleavage and polyadenylation specific factor 7, 59kDa|cleavage and polyadenylation specificity factor 59 kDa subunit|cleavage factor Im complex 59 kDa subunit|pre-mRNA cleavage factor I, 59 kDa subunit|pre-mRNA cleavage factor Im 59 kDa subunit 32 0.00438 10.93 1 1 +79870 BAALC brain and acute leukemia, cytoplasmic 8 protein-coding - brain and acute leukemia cytoplasmic protein 15 0.002053 6.083 1 1 +79871 RPAP2 RNA polymerase II associated protein 2 1 protein-coding C1orf82|Rtr1 putative RNA polymerase II subunit B1 CTD phosphatase RPAP2 41 0.005612 7.756 1 1 +79872 CBLL1 Cbl proto-oncogene like 1 7 protein-coding HAKAI|RNF188 E3 ubiquitin-protein ligase Hakai|Cas-Br-M (murine) ecotropic retroviral transforming sequence-like 1|Cbl proto-oncogene like 1, E3 ubiquitin protein ligase|Cbl proto-oncogene, E3 ubiquitin protein ligase-like 1|E-cadherin binding protein E7|RING finger protein 188|c-Cbl-like protein 1|casitas B-lineage lymphoma-transforming sequence-like protein 1 40 0.005475 9.345 1 1 +79873 NUDT18 nudix hydrolase 18 8 protein-coding MTH3 8-oxo-dGDP phosphatase NUDT18|2-hydroxy-dADP phosphatase|7,8-dihydro-8-oxoguanine phosphatase|mutT homolog 3|mutT human homolog 3|nucleoside diphosphate-linked moiety X motif 18|nudix (nucleoside diphosphate linked moiety X)-type motif 18|nudix motif 18 14 0.001916 7.32 1 1 +79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 16 protein-coding FRA rab GTPase-binding effector protein 2|Rabaptin-5 beta|rabaptin-5beta 45 0.006159 9.053 1 1 +79875 THSD4 thrombospondin type 1 domain containing 4 15 protein-coding ADAMTSL-6|ADAMTSL6|FVSY9334|PRO34005 thrombospondin type-1 domain-containing protein 4|A disintegrin and metalloproteinase with thrombospondin motifs-like protein 6|ADAMTS-like protein 6|thrombospondin, type I, domain containing 4 76 0.0104 9.013 1 1 +79876 UBA5 ubiquitin like modifier activating enzyme 5 3 protein-coding THIFP1|UBE1DC1 ubiquitin-like modifier-activating enzyme 5|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 22 0.003011 9.629 1 1 +79877 DCAKD dephospho-CoA kinase domain containing 17 protein-coding - dephospho-CoA kinase domain-containing protein 18 0.002464 9.697 1 1 +79879 CCDC134 coiled-coil domain containing 134 22 protein-coding - coiled-coil domain-containing protein 134 14 0.001916 5.956 1 1 +79882 ZC3H14 zinc finger CCCH-type containing 14 14 protein-coding MRT56|MSUT-2|NY-REN-37|SUT2|UKp68 zinc finger CCCH domain-containing protein 14|mammalian suppressor of tau pathology-2|nuclear protein UKp68|renal carcinoma antigen NY-REN-37 63 0.008623 10.1 1 1 +79883 PODNL1 podocan like 1 19 protein-coding SLRR5B podocan-like protein 1 20 0.002737 5.794 1 1 +79884 MAP9 microtubule associated protein 9 4 protein-coding ASAP microtubule-associated protein 9|aster-associated protein 63 0.008623 7.534 1 1 +79885 HDAC11 histone deacetylase 11 3 protein-coding HD11 histone deacetylase 11 33 0.004517 9.162 1 1 +79886 CAAP1 caspase activity and apoptosis inhibitor 1 9 protein-coding C9orf82|CAAP caspase activity and apoptosis inhibitor 1|conserved anti-apoptotic protein 16 0.00219 8.584 1 1 +79887 PLBD1 phospholipase B domain containing 1 12 protein-coding - phospholipase B-like 1|LAMA-like protein 1|PLB homolog 1|lamina ancestor homolog 1|phospholipase B domain-containing protein 1|putative phospholipase B-like 1 32 0.00438 8.784 1 1 +79888 LPCAT1 lysophosphatidylcholine acyltransferase 1 5 protein-coding AGPAT10|AGPAT9|AYTL2|LPCAT-1|PFAAP3|lpcat|lysoPAFAT lysophosphatidylcholine acyltransferase 1|1-acylglycerophosphocholine O-acyltransferase|1-alkylglycerophosphocholine O-acetyltransferase|LPC acyltransferase 1|acetyl-CoA:lyso-PAF acetyltransferase|acetyl-CoA:lyso-platelet-activating factor acetyltransferase|acyltransferase-like 2|lyso-PAF acetyltransferase|lysoPC acyltransferase 1|phosphonoformate immuno-associated protein 3 37 0.005064 10.87 1 1 +79890 RIN3 Ras and Rab interactor 3 14 protein-coding - ras and Rab interactor 3|RAB5 interacting protein 3|ras interaction/interference protein 3 80 0.01095 9.001 1 1 +79891 ZNF671 zinc finger protein 671 19 protein-coding - zinc finger protein 671 47 0.006433 6.635 1 1 +79892 MCMBP minichromosome maintenance complex binding protein 10 protein-coding C10orf119|MCM-BP mini-chromosome maintenance complex-binding protein|MCM-binding protein 34 0.004654 10.44 1 1 +79893 GGNBP2 gametogenetin binding protein 2 17 protein-coding DIF-3|DIF3|LCRG1|LZK1|ZFP403|ZNF403 gametogenetin-binding protein 2|C3HC4-type zinc finger protein|laryngeal carcinoma related gene 1|laryngeal carcinoma-related protein 1|zinc finger protein 403 59 0.008076 10.31 1 1 +79894 ZNF672 zinc finger protein 672 1 protein-coding - zinc finger protein 672 21 0.002874 9.794 1 1 +79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) 15 protein-coding ATPIM probable phospholipid-transporting ATPase IM|ATPase, class I, type 8B, member 4|P4-ATPase flippase complex alpha subunit ATP8B4|potential phospholipid-transporting ATPase IM 119 0.01629 5.798 1 1 +79896 THNSL1 threonine synthase like 1 10 protein-coding TSH1 threonine synthase-like 1 41 0.005612 7.789 1 1 +79897 RPP21 ribonuclease P/MRP subunit p21 6 protein-coding C6orf135|CAT60 ribonuclease P protein subunit p21|RNaseP protein p21|ribonuclease P/MRP 21kDa subunit|ribonucleoprotein V 6 0.0008212 8.645 1 1 +79898 ZNF613 zinc finger protein 613 19 protein-coding - zinc finger protein 613 55 0.007528 6.815 1 1 +79899 PRR5L proline rich 5 like 11 protein-coding PROTOR2 proline-rich protein 5-like|Protein observed with Rictor-2|protor-2 31 0.004243 7.426 1 1 +79901 CYBRD1 cytochrome b reductase 1 2 protein-coding CYB561A2|DCYTB|FRRS3 cytochrome b reductase 1|cytochrome b561 family, member A2|duodenal cytochrome b|ferric-chelate reductase 3 22 0.003011 10.73 1 1 +79902 NUP85 nucleoporin 85 17 protein-coding FROUNT|Nup75 nuclear pore complex protein Nup85|nucleoporin 85kDa|nucleoporin Nup75|nucleoporin Nup85 40 0.005475 9.538 1 1 +79903 NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit 16 protein-coding HAT4|NAT15 N-alpha-acetyltransferase 60|N-acetyltransferase 15 (GCN5-related, putative)|histone acetyltransferase type B protein 4 20 0.002737 10.56 1 1 +79905 TMC7 transmembrane channel like 7 16 protein-coding - transmembrane channel-like protein 7 51 0.006981 6.434 1 1 +79906 MORN1 MORN repeat containing 1 1 protein-coding - MORN repeat-containing protein 1 36 0.004927 5.772 1 1 +79908 BTNL8 butyrophilin like 8 5 protein-coding BTN9.2 butyrophilin-like protein 8|B7-H5 costimulatory molecule 64 0.00876 2.128 1 1 +79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 12 protein-coding - pyridine nucleotide-disulfide oxidoreductase domain-containing protein 1 28 0.003832 8.508 1 1 +79913 ACTR5 ARP5 actin-related protein 5 homolog 20 protein-coding Arp5|INO80M actin-related protein 5|INO80 complex subunit M|hARP5|sarcoma antigen NY-SAR-16 37 0.005064 7.863 1 1 +79915 ATAD5 ATPase family, AAA domain containing 5 17 protein-coding C17orf41|ELG1|FRAG1 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 138 0.01889 6.361 1 1 +79917 MAGIX MAGI family member, X-linked X protein-coding JM10|PDZX PDZ domain-containing protein MAGIX|PDZ domain containing, X chromosome 30 0.004106 6.311 1 1 +79918 SETD6 SET domain containing 6 16 protein-coding - N-lysine methyltransferase SETD6|SET domain-containing protein 6 25 0.003422 8.132 1 1 +79919 C2orf54 chromosome 2 open reading frame 54 2 protein-coding - uncharacterized protein C2orf54 17 0.002327 4.826 1 1 +79921 TCEAL4 transcription elongation factor A like 4 X protein-coding NPD017|WEX7 transcription elongation factor A protein-like 4|TCEA-like protein 4|transcription elongation factor A (SII)-like 4|transcription elongation factor S-II protein-like 4 12 0.001642 10.84 1 1 +79922 MRM1 mitochondrial rRNA methyltransferase 1 17 protein-coding - rRNA methyltransferase 1, mitochondrial|16S rRNA (guanosine(1145)-2'-O)-methyltransferase|16S rRNA [Gm1145] 2'-O-methyltransferase|CTB-75G16.3|mitochondrial large ribosomal RNA ribose methylase|mitochondrial rRNA methyltransferase 1 homolog 30 0.004106 7.222 1 1 +79923 NANOG Nanog homeobox 12 protein-coding - homeobox protein NANOG|homeobox transcription factor Nanog|homeobox transcription factor Nanog-delta 48 18 0.002464 1.115 1 1 +79924 ADM2 adrenomedullin 2 22 protein-coding AM2|dJ579N16.4 ADM2|intermedin 19 0.002601 7.106 1 1 +79925 SPEF2 sperm flagellar 2 5 protein-coding CT122|KPL2 sperm flagellar protein 2|cancer/testis antigen 122|testis tissue sperm-binding protein Li 47a 194 0.02655 6.355 1 1 +79927 FAM110D family with sequence similarity 110 member D 1 protein-coding GRRP1 protein FAM110D|glycine/arginine-rich protein 1 5 0.0006844 4.605 1 1 +79929 MAP6D1 MAP6 domain containing 1 3 protein-coding MAPO6D1|SL21 MAP6 domain-containing protein 1|21 kDa STOP-like protein|STOP-Like protein 21 kD 5 0.0006844 6.096 1 1 +79930 DOK3 docking protein 3 5 protein-coding DOKL docking protein 3|Dok-like protein|downstream of tyrosine kinase 3 32 0.00438 7.137 1 1 +79931 TNIP3 TNFAIP3 interacting protein 3 4 protein-coding ABIN-3|LIND TNFAIP3-interacting protein 3|A20-binding inhibitor of NF-kappa-B activation 3|ABIN-3 beta|Listeria induced|TNFAIP3-interacting protein 3 beta|TNIP3 beta|listeria-induced gene protein 52 0.007117 2.719 1 1 +79932 KIAA0319L KIAA0319 like 1 protein-coding AAVR dyslexia-associated protein KIAA0319-like protein|AAV receptor|adeno-associated virus receptor|polycystic kidney disease 1-related 74 0.01013 10.92 1 1 +79933 SYNPO2L synaptopodin 2 like 10 protein-coding - synaptopodin 2-like protein 50 0.006844 2.497 1 1 +79934 COQ8B coenzyme Q8B 19 protein-coding ADCK4|NPHS9 aarF domain-containing protein kinase 4|aarF domain containing kinase 4 39 0.005338 9.388 1 1 +79935 CNTD2 cyclin N-terminal domain containing 2 19 protein-coding CCNP cyclin N-terminal domain-containing protein 2|cyclin P 18 0.002464 4.146 1 1 +79937 CNTNAP3 contactin associated protein-like 3 9 protein-coding CASPR3|CNTNAP3A contactin-associated protein-like 3|cell recognition molecule Caspr3 61 0.008349 4.96 1 1 +79939 SLC35E1 solute carrier family 35 member E1 19 protein-coding - solute carrier family 35 member E1 11 0.001506 10.76 1 1 +79940 LINC00472 long intergenic non-protein coding RNA 472 6 ncRNA C6orf155 - 1 0.0001369 3.554 1 1 +79943 ZNF696 zinc finger protein 696 8 protein-coding - zinc finger protein 696 15 0.002053 7.892 1 1 +79944 L2HGDH L-2-hydroxyglutarate dehydrogenase 14 protein-coding C14orf160|L2HGA L-2-hydroxyglutarate dehydrogenase, mitochondrial|2-hydroxyglutarate dehydrogenase|L-alpha-hydroxyglutarate dehydrogenase|alpha-hydroxyglutarate oxidoreductase|alpha-ketoglutarate reductase|duranin 31 0.004243 7.771 1 1 +79946 C10orf95 chromosome 10 open reading frame 95 10 protein-coding - uncharacterized protein C10orf95 15 0.002053 3.773 1 1 +79947 DHDDS dehydrodolichyl diphosphate synthase subunit 1 protein-coding CIT|CPT|DS|HDS|RP59 dehydrodolichyl diphosphate synthase complex subunit DHDDS|cis-IPTase|cis-isoprenyltransferase|cis-prenyl transferase|dedol-PP synthase|dehydrodolichyl diphosphate syntase complex subunit DHDDS|epididymis tissue protein Li 189m 29 0.003969 9.496 1 1 +79948 PLPPR3 phospholipid phosphatase related 3 19 protein-coding LPPR3|LPR3|PRG-2|PRG2 phospholipid phosphatase-related protein type 3|PAP-2-like protein 2|lipid phosphate phosphatase-related protein type 3|plasticity-related gene 2 protein 30 0.004106 2.676 1 1 +79949 PLEKHS1 pleckstrin homology domain containing S1 10 protein-coding C10orf81|HEL185|bA211N11.2 pleckstrin homology domain-containing family S member 1|PH domain-containing family S member 1|PH domain-containing protein C10orf81|epididymis luminal protein 185 43 0.005886 4.942 1 1 +79953 SYNDIG1 synapse differentiation inducing 1 20 protein-coding C20orf39|DSPC2|IFITMD5|TMEM90B synapse differentiation-inducing gene protein 1|dispanin subfamily C member 2|interferon induced transmembrane protein domain containing 5|synapse differentiation induced gene 1|transmembrane protein 90B 43 0.005886 5.518 1 1 +79954 NOL10 nucleolar protein 10 2 protein-coding PQBP5 nucleolar protein 10|H_NH0074G24.1|polyglutamine binding protein 5 35 0.004791 9.454 1 1 +79955 PDZD7 PDZ domain containing 7 10 protein-coding PDZK7 PDZ domain-containing protein 7 52 0.007117 3.612 1 1 +79956 ERMP1 endoplasmic reticulum metallopeptidase 1 9 protein-coding FXNA|KIAA1815|bA207C16.3 endoplasmic reticulum metallopeptidase 1|Felix-ina|aminopeptidase Fxna|bA207C16.3 (novel protein similar to predicted yeast, plant and worm proteins) 39 0.005338 10.16 1 1 +79957 PAQR6 progestin and adipoQ receptor family member 6 1 protein-coding PRdelta progestin and adipoQ receptor family member 6|progestin and adipoQ receptor family member VI variant 3|progestin and adipoQ receptor family member VI variant 4|progestin and adipoQ receptor family member VI variant 5 33 0.004517 6.169 1 1 +79958 DENND1C DENN domain containing 1C 19 protein-coding FAM31C DENN domain-containing protein 1C|DENN/MADD domain containing 1C|connecdenn 3|family with sequence similarity 31, member C 49 0.006707 7.672 1 1 +79959 CEP76 centrosomal protein 76 18 protein-coding C18orf9|HsT1705 centrosomal protein of 76 kDa|centrosomal protein 76kDa 42 0.005749 7.082 1 1 +79960 JADE1 jade family PHD finger 1 4 protein-coding PHF17 protein Jade-1|PHD finger protein 17|PHD protein Jade-1|gene for apoptosis and differentiation in epithelia|jade family PHD finger protein 1 60 0.008212 9.628 1 1 +79961 DENND2D DENN domain containing 2D 1 protein-coding - DENN domain-containing protein 2D|DENN/MADD domain containing 2D|RP5-1180E21.2 37 0.005064 8.695 1 1 +79962 DNAJC22 DnaJ heat shock protein family (Hsp40) member C22 12 protein-coding wus dnaJ homolog subfamily C member 22|DnaJ (Hsp40) homolog, subfamily C, member 22|wurst homolog 26 0.003559 5.76 1 1 +79963 ABCA11P ATP binding cassette subfamily A member 11, pseudogene 4 pseudo ABCA11|EST1133530 ATP-binding cassette, sub-family A (ABC1), member 11 (pseudogene) 33 0.004517 6.434 1 1 +79966 SCD5 stearoyl-CoA desaturase 5 4 protein-coding ACOD4|FADS4|HSCD5|SCD2|SCD4 stearoyl-CoA desaturase 5|acyl-CoA-desaturase 4|stearoyl-CoA 9-desaturase|stearoyl-CoA desaturase 2|stearoyl-CoA desaturase 4 33 0.004517 9.02 1 1 +79968 WDR76 WD repeat domain 76 15 protein-coding CDW14 WD repeat-containing protein 76 31 0.004243 7.389 1 1 +79969 ATAT1 alpha tubulin acetyltransferase 1 6 protein-coding C6orf134|MEC17|Nbla00487|TAT|alpha-TAT|alpha-TAT1 alpha-tubulin N-acetyltransferase 1|acetyltransferase mec-17 homolog 22 0.003011 8.069 1 1 +79970 ZNF767P zinc finger family member 767, pseudogene 7 pseudo ZNF767 - 17 0.002327 7.615 1 1 +79971 WLS wntless Wnt ligand secretion mediator 1 protein-coding C1orf139|EVI|GPR177|MRP|mig-14 protein wntless homolog|G protein-coupled receptor 177|integral membrane protein GPR177|protein evenness interrupted homolog|putative NF-kappa-B-activating protein 373|putative NFkB activating protein 373 38 0.005201 10.25 1 1 +79973 ZNF442 zinc finger protein 442 19 protein-coding - zinc finger protein 442 55 0.007528 4.632 1 1 +79974 CPED1 cadherin like and PC-esterase domain containing 1 7 protein-coding C7orf58 cadherin-like and PC-esterase domain-containing protein 1 134 0.01834 6.697 1 1 +79977 GRHL2 grainyhead like transcription factor 2 8 protein-coding BOM|DFNA28|ECTDS|TFCP2L3 grainyhead-like protein 2 homolog|brother of mammalian grainyhead|grainyhead-like 2|transcription factor CP2-like 3 55 0.007528 7.428 1 1 +79979 TRMT2B tRNA methyltransferase 2 homolog B X protein-coding CXorf34|dJ341D10.3 tRNA (uracil(54)-C(5))-methyltransferase homolog|TRM2 homolog|TRM2 tRNA methyltransferase 2 homolog B|tRNA (uracil-5-)-methyltransferase homolog 31 0.004243 8.38 1 1 +79980 DSN1 DSN1 homolog, MIS12 kinetochore complex component 20 protein-coding C20orf172|KNL3|MIS13|dJ469A13.2|hKNL-3 kinetochore-associated protein DSN1 homolog|DSN1, MIND kinetochore complex component, homolog|DSN1, MIS12 kinetochore complex component|kinetochore null 3 homolog 30 0.004106 8.717 1 1 +79981 FRMD1 FERM domain containing 1 6 protein-coding bA164L23.1 FERM domain-containing protein 1 44 0.006022 1.411 1 1 +79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 4 protein-coding EGNR9427|PRO34683 dnaJ homolog subfamily B member 14|DnaJ (Hsp40) homolog, subfamily B, member 14 17 0.002327 8.005 1 1 +79983 POF1B premature ovarian failure, 1B X protein-coding POF|POF2B protein POF1B|premature ovarian failure protein 1B 56 0.007665 5.618 1 1 +79986 ZNF702P zinc finger protein 702, pseudogene 19 pseudo ZNF702 - 5 0.0006844 5.897 1 1 +79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 9 protein-coding C9orf13|CCP22|POLYDOM|SEL-OB|SELOB sushi, von Willebrand factor type A, EGF and pentraxin domain-containing protein 1|CCP module-containing protein 22|selectin-like osteoblast-derived protein|selectin-like protein|serologically defined breast cancer antigen NY-BR-38 270 0.03696 7.28 1 1 +79989 TTC26 tetratricopeptide repeat domain 26 7 protein-coding DYF13|IFT56|dyf-13 intraflagellar transport protein 56|TPR repeat protein 26|tetratricopeptide repeat protein 26 36 0.004927 6.482 1 1 +79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 17 protein-coding - pleckstrin homology domain-containing family H member 3|PH domain-containing family H member 3|pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 55 0.007528 9.228 1 1 +79991 OBFC1 oligonucleotide/oligosaccharide binding fold containing 1 10 protein-coding AAF-44|AAF44|RPA-32|STN1|bA541N10.2 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 24 0.003285 9.012 1 1 +79992 AGPAT4-IT1 AGPAT4 intronic transcript 1 6 ncRNA C6orf59|NCRNA00241 AGPAT4 intronic transcript 1 (non-protein coding) 2.113 0 1 +79993 ELOVL7 ELOVL fatty acid elongase 7 5 protein-coding - elongation of very long chain fatty acids protein 7|3-keto acyl-CoA synthase ELOVL7|ELOVL FA elongase 7|ELOVL family member 7, elongation of long chain fatty acids|very long chain 3-ketoacyl-CoA synthase 7|very long chain 3-oxoacyl-CoA synthase 7 20 0.002737 7.862 1 1 +79998 ANKRD53 ankyrin repeat domain 53 2 protein-coding - ankyrin repeat domain-containing protein 53 29 0.003969 3.501 1 1 +80000 GREB1L growth regulation by estrogen in breast cancer 1 like 18 protein-coding C18orf6|KIAA1772 GREB1-like protein|growth regulation by estrogen in breast cancer-like 47 0.006433 3.878 1 1 +80003 PCNX2 pecanex homolog 2 (Drosophila) 1 protein-coding PCNXL2 pecanex-like protein 2 173 0.02368 8.153 1 1 +80004 ESRP2 epithelial splicing regulatory protein 2 16 protein-coding RBM35B epithelial splicing regulatory protein 2|RNA binding motif protein 35A|RNA-binding motif protein 35B|RNA-binding protein 35B 50 0.006844 9.559 1 1 +80005 DOCK5 dedicator of cytokinesis 5 8 protein-coding - dedicator of cytokinesis protein 5 128 0.01752 7.957 1 1 +80006 TRAPPC13 trafficking protein particle complex 13 5 protein-coding C5orf44 trafficking protein particle complex subunit 13|Trs65-related|UPF0533 protein C5orf44 20 0.002737 8.759 1 1 +80007 C10orf88 chromosome 10 open reading frame 88 10 protein-coding - uncharacterized protein C10orf88 39 0.005338 7.547 1 1 +80008 TMEM156 transmembrane protein 156 4 protein-coding - transmembrane protein 156 20 0.002737 4.248 1 1 +80010 RMI1 RecQ mediated genome instability 1 9 protein-coding BLAP75|C9orf76|FAAP75 recQ-mediated genome instability protein 1|BLM-associated polypeptide, 75 kDa|BLM-associated protein 75 kDa|RMI1, RecQ mediated genome instability 1, homolog|homolog of yeast RecQ-mediated genome instability 1 (RMI1) 30 0.004106 8.216 1 1 +80011 FAM192A family with sequence similarity 192 member A 16 protein-coding C16orf94|CDA018|CDA10|NIP30 protein FAM192A|NEFA-interacting nuclear protein NIP30 13 0.001779 10.38 1 1 +80012 PHC3 polyhomeotic homolog 3 3 protein-coding EDR3|HPH3 polyhomeotic-like protein 3|early development regulator 3|early development regulatory protein 3|homolog of polyhomeotic 3|polyhomeotic like 3 53 0.007254 10.13 1 1 +80013 FAM188A family with sequence similarity 188 member A 10 protein-coding C10orf97|CARP|DERP5|MST126|MSTP126|my042 protein FAM188A|CARD-containing protein|caspase recruitment domain containing pro-apoptotic protein|dermal papilla-derived protein 5 36 0.004927 8.589 1 1 +80014 WWC2 WW and C2 domain containing 2 4 protein-coding BOMB protein WWC2|BH3-only member B protein|WW, C2 and coiled-coil domain containing 2 60 0.008212 8.637 1 1 +80017 C14orf159 chromosome 14 open reading frame 159 14 protein-coding - UPF0317 protein C14orf159, mitochondrial 42 0.005749 9.527 1 1 +80018 NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit 12 protein-coding C12orf30|MDM20|NAP1 N-alpha-acetyltransferase 25, NatB auxiliary subunit|N-terminal acetyltransferase B complex subunit NAA25|mitochondrial distribution and morphology 20|natB complex subunit MDM20 75 0.01027 9.098 1 1 +80019 UBTD1 ubiquitin domain containing 1 10 protein-coding - ubiquitin domain-containing protein 1 13 0.001779 8.452 1 1 +80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 22 protein-coding ERFAD FAD-dependent oxidoreductase domain-containing protein 2|ER flavoprotein associated with degradation|endoplasmic reticulum flavoprotein associated with degradation 43 0.005886 9.45 1 1 +80021 TMEM62 transmembrane protein 62 15 protein-coding - transmembrane protein 62 32 0.00438 8.809 1 1 +80022 MYO15B myosin XVB 17 protein-coding MYO15BP myosin XVB|myosin XVB pseudogene|unconventional myosin XVBP pseudogene 10 0.001369 8.955 1 1 +80023 NRSN2 neurensin 2 20 protein-coding C20orf98|dJ1103G7.6 neurensin-2 20 0.002737 9.653 1 1 +80024 SLC8B1 solute carrier family 8 member B1 12 protein-coding NCKX6|NCLX|SLC24A6 sodium/potassium/calcium exchanger 6, mitochondrial|Na(+)/K(+)/Ca(2+)-exchange protein 6|sodium/calcium exchanger protein, mitochondrial|solute carrier family 24 (sodium/lithium/calcium exchanger), member 6|solute carrier family 24 (sodium/potassium/calcium exchanger), member 6|solute carrier family 24 member 6|solute carrier family 8 (sodium/lithium/calcium exchanger), member B1 34 0.004654 9.45 1 1 +80025 PANK2 pantothenate kinase 2 20 protein-coding C20orf48|HARP|HSS|NBIA1|PKAN pantothenate kinase 2, mitochondrial|Hallervorden-Spatz syndrome|pantothenic acid kinase 2 33 0.004517 8.889 1 1 +80028 FBXL18 F-box and leucine rich repeat protein 18 7 protein-coding Fbl18 F-box/LRR-repeat protein 18 49 0.006707 8.825 1 1 +80031 SEMA6D semaphorin 6D 15 protein-coding - semaphorin-6D|sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D 133 0.0182 6.892 1 1 +80032 ZNF556 zinc finger protein 556 19 protein-coding - zinc finger protein 556 51 0.006981 1.667 1 1 +80034 CSRNP3 cysteine and serine rich nuclear protein 3 2 protein-coding FAM130A2|PPP1R73|TAIP-2|TAIP2 cysteine/serine-rich nuclear protein 3|TGF-beta induced apoptosis protein 2|family with sequence similarity 130, member A2|protein phosphatase 1, regulatory subunit 73 69 0.009444 2.89 1 1 +80035 ANP32A-IT1 ANP32A intronic transcript 1 15 ncRNA C15orf28|HsT18971|NCRNA00321 ANP32A intronic transcript 1 (non-protein coding) 2.042 0 1 +80036 TRPM3 transient receptor potential cation channel subfamily M member 3 9 protein-coding GON-2|LTRPC3|MLSN2 transient receptor potential cation channel subfamily M member 3|LTrpC-3|long transient receptor potential channel 3|melastatin-2 176 0.02409 2.015 1 1 +80039 FAM106A family with sequence similarity 106 member A 17 ncRNA - - 1.512 0 1 +80045 GPR157 G protein-coupled receptor 157 1 protein-coding - probable G-protein coupled receptor 157 10 0.001369 4.563 1 1 +80054 CEBPA-AS1 CEBPA antisense RNA 1 (head to head) 19 ncRNA - CEBPA antisense RNA 1 (non-protein coding) 5.622 0 1 +80055 PGAP1 post-GPI attachment to proteins 1 2 protein-coding Bst1|ISPD3024|MRT42|SPG67 GPI inositol-deacylase|post-GPI attachment to proteins factor 1 64 0.00876 8.417 1 1 +80059 LRRTM4 leucine rich repeat transmembrane neuronal 4 2 protein-coding - leucine-rich repeat transmembrane neuronal protein 4 133 0.0182 2.192 1 1 +80063 ATF7IP2 activating transcription factor 7 interacting protein 2 16 protein-coding MCAF2 activating transcription factor 7-interacting protein 2|ATF7-interacting protein 2|MBD1-containing chromatin associated factor 2 41 0.005612 6.523 1 1 +80067 DCAF17 DDB1 and CUL4 associated factor 17 2 protein-coding C2orf37 DDB1- and CUL4-associated factor 17 39 0.005338 8.52 1 1 +80069 LINC00574 long intergenic non-protein coding RNA 574 6 ncRNA C6orf208|dJ182D15.1 - 2 0.0002737 1.988 1 1 +80070 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif 20 12 protein-coding ADAM-TS20|ADAMTS-20|GON-1 A disintegrin and metalloproteinase with thrombospondin motifs 20|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 20 235 0.03217 1.33 1 1 +80071 CCDC15 coiled-coil domain containing 15 11 protein-coding - coiled-coil domain-containing protein 15 62 0.008486 5.66 1 1 +80072 HEXA-AS1 HEXA antisense RNA 1 15 ncRNA C15orf34 HEXA antisense RNA 1 (non-protein coding) 3.516 0 1 +80086 TUBA4B tubulin alpha 4b 2 pseudo TUBA4 putative tubulin-like protein alpha-4B|alpha-tubulin 4B|tubulin, alpha 4|tubulin, alpha 4b (pseudogene) 23 0.003148 1.481 1 1 +80094 BIN3-IT1 BIN3 intronic transcript 1 8 ncRNA - BIN3 intronic transcript 1 (non-protein coding) 0.8938 0 1 +80095 ZNF606 zinc finger protein 606 19 protein-coding ZNF328 zinc finger protein 606|zinc finger protein 328 66 0.009034 7.794 1 1 +80097 MZT2B mitotic spindle organizing protein 2B 2 protein-coding FAM128B|MOZART2B mitotic-spindle organizing protein 2B|family with sequence similarity 128, member B|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 2B 10 0.001369 10.67 1 1 +80099 C7orf69 chromosome 7 open reading frame 69 7 protein-coding - uncharacterized protein C7orf69 3 0.0004106 0.5275 1 1 +80108 ZFP2 ZFP2 zinc finger protein 5 protein-coding ZNF751|zfp-2 zinc finger protein 2 homolog|zinc finger protein 751 46 0.006296 4.806 1 1 +80110 ZNF614 zinc finger protein 614 19 protein-coding - zinc finger protein 614 44 0.006022 7.775 1 1 +80111 C3orf36 chromosome 3 open reading frame 36 3 protein-coding - uncharacterized protein C3orf36 18 0.002464 3.115 1 1 +80114 BICC1 BicC family RNA binding protein 1 10 protein-coding BICC|CYSRD protein bicaudal C homolog 1|FGFR2-BICC1 fusion kinase protein|bicaudal C homolog 1 104 0.01423 5.666 1 1 +80115 BAIAP2L2 BAI1 associated protein 2 like 2 22 protein-coding - brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 2|BAI1-associated protein 2-like protein 2|pinkbar|planar intestinal- and kidney-specific BAR domain protein 34 0.004654 5.818 1 1 +80117 ARL14 ADP ribosylation factor like GTPase 14 3 protein-coding ARF7 ADP-ribosylation factor-like protein 14|ADP-ribosylation factor 7|ADP-ribosylation factor-like 14 14 0.001916 2.74 1 1 +80119 PIF1 PIF1 5'-to-3' DNA helicase 15 protein-coding C15orf20|PIF ATP-dependent DNA helicase PIF1|DNA repair and recombination helicase PIF1|PIF1 5'-to-3' DNA helicase homolog|PIF1/RRM3 DNA helicase-like protein|petite integration frequency 1 34 0.004654 5.626 1 1 +80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 2 protein-coding RCK|YSK4 mitogen-activated protein kinase kinase kinase 19|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 122 0.0167 1.231 1 1 +80124 VCPIP1 valosin containing protein interacting protein 1 8 protein-coding DUBA3|VCIP135 deubiquitinating protein VCIP135|VCP/p47 complex-interacting 135-kDa protein|valosin-containing protein p97/p47 complex-interacting protein 1|valosin-containing protein p97/p47 complex-interacting protein p135 84 0.0115 9.342 1 1 +80125 CCDC33 coiled-coil domain containing 33 15 protein-coding CT61|HP11097 coiled-coil domain-containing protein 33|cancer/testis antigen 61|hypothetical protein HP11097 64 0.00876 1.227 1 1 +80127 BBOF1 basal body orientation factor 1 14 protein-coding C14orf45|CCDC176 basal body-orientation factor 1|coiled-coil domain containing 176|coiled-coil domain-containing protein 176 23 0.003148 6.838 1 1 +80128 TRIM46 tripartite motif containing 46 1 protein-coding GENEY|TRIFIC tripartite motif-containing protein 46|gene Y protein|tripartite, fibronectin type-III and C-terminal SPRY motif protein 65 0.008897 5.426 1 1 +80129 CCDC170 coiled-coil domain containing 170 6 protein-coding C6orf97|bA282P11.1 coiled-coil domain-containing protein 170 72 0.009855 5.716 1 1 +80131 LRRC8E leucine rich repeat containing 8 family member E 19 protein-coding - volume-regulated anion channel subunit LRRC8E|leucine-rich repeat-containing protein 8E 33 0.004517 7.24 1 1 +80133 MROH9 maestro heat like repeat family member 9 1 protein-coding ARMC11|C1orf129 maestro heat-like repeat-containing protein family member 9|armadillo repeat containing 11 91 0.01246 0.3771 1 1 +80135 RPF1 ribosome production factor 1 homolog 1 protein-coding BXDC5 ribosome production factor 1|2310066N05Rik|RNA processing factor 1 (RPF1)|brix domain containing 5|brix domain-containing protein 5|ribosome biogenesis protein RPF1 21 0.002874 9.309 1 1 +80139 ZNF703 zinc finger protein 703 8 protein-coding NLZ1|ZEPPO1|ZNF503L|ZPO1 zinc finger protein 703|zinc finger elbow-related proline domain protein 1 18 0.002464 7.78 1 1 +80142 PTGES2 prostaglandin E synthase 2 9 protein-coding C9orf15|GBF-1|GBF1|PGES2|mPGES-2 prostaglandin E synthase 2|GATE-binding factor 1|gamma-interferon-activated transcriptional element-binding factor 1|mPGE synthase-2|membrane-associated prostaglandin E synthase 2|microsomal prostaglandin E synthase-2|prostaglandin-H(2) E-isomerase 19 0.002601 9.994 1 1 +80143 SIKE1 suppressor of IKBKE 1 1 protein-coding SIKE suppressor of IKBKE 1|suppressor of IKK epsilon 10 0.001369 9.444 1 1 +80144 FRAS1 Fraser extracellular matrix complex subunit 1 4 protein-coding - extracellular matrix protein FRAS1|Fraser syndrome 1 284 0.03887 7.355 1 1 +80145 THOC7 THO complex 7 3 protein-coding NIF3L1BP1|fSAP24|hTREX30 THO complex subunit 7 homolog|NIF3L1-binding protein 1|Ngg1 interacting factor 3 like 1 binding protein 1|THO complex 7 homolog|functional spliceosome-associated protein 24|ngg1-interacting factor 3-like protein 1-binding protein 1 11 0.001506 9.643 1 1 +80146 UXS1 UDP-glucuronate decarboxylase 1 2 protein-coding SDR6E1|UGD UDP-glucuronic acid decarboxylase 1|UXS-1|short chain dehydrogenase/reductase family 6E, member 12 37 0.005064 9.828 1 1 +80148 PQLC1 PQ loop repeat containing 1 18 protein-coding - PQ-loop repeat-containing protein 1 21 0.002874 10.01 1 1 +80149 ZC3H12A zinc finger CCCH-type containing 12A 1 protein-coding MCPIP|MCPIP1|dJ423B22.1 bifunctional endoribonuclease and deubiquitinase ZC3H12A|MCP-1 treatment-induced protein|MCP-induced protein 1|ribonuclease ZC3H12A|zinc finger CCCH domain-containing protein 12A 58 0.007939 8.234 1 1 +80150 ASRGL1 asparaginase like 1 11 protein-coding ALP|ALP1|CRASH isoaspartyl peptidase/L-asparaginase|L-asparaginase|L-asparagine amidohydrolase|asparaginase-like 1 protein|asparaginase-like protein 1|beta-aspartyl-peptidase|isoaspartyl dipeptidase|testis secretory sperm-binding protein Li 242mP 22 0.003011 7.844 1 1 +80152 CENPT centromere protein T 16 protein-coding C16orf56|CENP-T centromere protein T|interphase centromere complex protein 22 35 0.004791 9.119 1 1 +80153 EDC3 enhancer of mRNA decapping 3 15 protein-coding LSM16|MRT50|YJDC|YJEFN2 enhancer of mRNA-decapping protein 3|LSM16 homolog (EDC3, S. cerevisiae)|enhancer of mRNA decapping 3 homolog|hYjeF_N2|hYjeF_N2-15q23|yjeF N-terminal domain-containing protein 2|yjeF domain containing|yjeF domain-containing protein 1|yjeF_N2 23 0.003148 9.631 1 1 +80154 GOLGA2P10 golgin A2 pseudogene 10 15 pseudo - antigen SK1, colon cancer-associated|golgin subfamily A member 2-like 9.078 0 1 +80155 NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit 4 protein-coding Ga19|NARG1|NAT1P|NATH|TBDN|TBDN100 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 68 0.009307 9.926 1 1 +80157 CWH43 cell wall biogenesis 43 C-terminal homolog 4 protein-coding CWH43-C PGAP2-interacting protein|cell wall biogenesis protein 43 C-terminal homolog 79 0.01081 2.699 1 1 +80161 ASMTL-AS1 ASMTL antisense RNA 1 X|Y ncRNA ASMTL-AS|ASMTLAS|CXYorf2|NCRNA00105 ASMTL antisense RNA 1 (non-protein coding) 5.733 0 1 +80162 PGGHG protein-glucosylgalactosylhydroxylysine glucosidase 11 protein-coding ATHL1 acid trehalase-like protein 1|ATH1, acid trehalase-like 1|testicular tissue protein Li 25 33 0.004517 9.118 1 1 +80167 ABHD18 abhydrolase domain containing 18 4 protein-coding C4orf29 protein ABHD18|abhydrolase domain-containing protein 18|alpha/beta hydrolase domain-containing protein 18|uncharacterized protein C4orf29 24 0.003285 6.59 1 1 +80168 MOGAT2 monoacylglycerol O-acyltransferase 2 11 protein-coding DGAT2L5|DGAT2L5.|MGAT2|hDC5 2-acylglycerol O-acyltransferase 2|acyl-CoA:monoacylglycerol acyltransferase 2|diacylglycerol O-acyltransferase candidate 5|diacylglycerol acyltransferase 2-like protein 5 32 0.00438 1.801 1 1 +80169 CTC1 CTS telomere maintenance complex component 1 17 protein-coding AAF-132|AAF132|C17orf68|CRMCC|tmp494178 CST complex subunit CTC1|HBV DNAPTP1-transactivated protein B|alpha accessory factor 132|conserved telomere capping protein 1 69 0.009444 8.911 1 1 +80173 IFT74 intraflagellar transport 74 9 protein-coding BBS20|CCDC2|CMG-1|CMG1 intraflagellar transport protein 74 homolog|capillary morphogenesis gene 1 protein|capillary morphogenesis protein 1|coiled-coil domain containing 2|coiled-coil domain-containing protein 2|intraflagellar transport 74 homolog 28 0.003832 7.919 1 1 +80174 DBF4B DBF4 zinc finger B 17 protein-coding ASKL1|CHIFB|DRF1|ZDBF1B protein DBF4 homolog B|ASK-like protein 1|DBF4 homolog B|Dbf4-related factor 1|activator of S-phase kinase-like protein 1|chiffon homolog B|zinc finger, DBF-type containing 1B 33 0.004517 7.319 1 1 +80176 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 1 protein-coding SSB-1|SSB1 SPRY domain-containing SOCS box protein 1|SPRY domain-containing SOCS box protein SSB-1|novel SPRY domain containing protein 23 0.003148 9.496 1 1 +80177 MYCT1 myc target 1 6 protein-coding MTLC myc target protein 1|myc target in myeloid cells 1|myc target in myeloid cells protein 1 45 0.006159 6.836 1 1 +80178 C16orf59 chromosome 16 open reading frame 59 16 protein-coding - uncharacterized protein C16orf59 21 0.002874 6.627 1 1 +80179 MYO19 myosin XIX 17 protein-coding MYOHD1 unconventional myosin-XIX|myosin head domain containing 1|myosin head domain-containing protein 1 55 0.007528 9.487 1 1 +80183 RUBCNL RUN and cysteine rich domain containing beclin 1 interacting protein like 13 protein-coding C13orf18|KIAA0226L uncharacterized protein KIAA0226-like|KIAA0226 like 45 0.006159 6.2 1 1 +80184 CEP290 centrosomal protein 290 12 protein-coding 3H11Ag|BBS14|CT87|JBTS5|LCA10|MKS4|NPHP6|POC3|SLSN6|rd16 centrosomal protein of 290 kDa|Bardet-Biedl syndrome 14 protein|CTCL tumor antigen se2-2|Meckel syndrome, type 4|POC3 centriolar protein homolog|cancer/testis antigen 87|centrosomal protein 290kDa|monoclonal antibody 3H11 antigen|nephrocytsin-6|prostate cancer antigen T21|tumor antigen se2-2 124 0.01697 8.408 1 1 +80185 TTI2 TELO2 interacting protein 2 8 protein-coding C8orf41|MRT39 TELO2-interacting protein 2|Tel2 interacting protein 2 homolog 28 0.003832 8.049 1 1 +80194 TMEM134 transmembrane protein 134 11 protein-coding - transmembrane protein 134 9 0.001232 9.323 1 1 +80195 TMEM254 transmembrane protein 254 10 protein-coding C10orf57|bA369J21.6 transmembrane protein 254|transmembrane protein C10orf57 13 0.001779 9.475 1 1 +80196 RNF34 ring finger protein 34 12 protein-coding CARP-1|CARP1|RFI|RIF|RIFF|hRFI 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|ring finger protein 34, E3 ubiquitin protein ligase 21 0.002874 9.29 1 1 +80198 MUS81 MUS81 structure-specific endonuclease subunit 11 protein-coding SLX3 crossover junction endonuclease MUS81|MUS81 endonuclease homolog|SLX3 structure-specific endonuclease subunit homolog 36 0.004927 9.237 1 1 +80199 FUZ fuzzy planar cell polarity protein 19 protein-coding FY|NTD protein fuzzy homolog|fuzzy homolog 28 0.003832 8.102 1 1 +80201 HKDC1 hexokinase domain containing 1 10 protein-coding - putative hexokinase HKDC1|hexokinase domain-containing protein 1 71 0.009718 5.419 1 1 +80204 FBXO11 F-box protein 11 2 protein-coding FBX11|PRMT9|UBR6|UG063H01|VIT1 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 68 0.009307 10.31 1 1 +80205 CHD9 chromodomain helicase DNA binding protein 9 16 protein-coding AD013|CHD-9|CReMM|KISH2|PRIC320 chromodomain-helicase-DNA-binding protein 9|ATP-dependent helicase CHD9|PPAR-alpha-interacting complex protein 320 kDa|PPAR{gamma}-interacting cofactor 320 kDa|chromatin remodeling factor CHROM1|chromatin-related mesenchymal modulator|ciprofibrate bound protein p240|kismet homolog 2|peroxisomal proliferator-activated receptor A-interacting complex 320 kDa protein|proteinx0008 152 0.0208 9.774 1 1 +80206 FHOD3 formin homology 2 domain containing 3 18 protein-coding FHOS2|Formactin2 FH1/FH2 domain-containing protein 3|formactin-2|formin homolog overexpressed in spleen 2 144 0.01971 7.665 1 1 +80207 OPA3 optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) 19 protein-coding MGA3 optic atrophy 3 protein|Optic atrophy 3 (Iraqi-Jewish 'optic atrophy plus') 25 0.003422 9.145 1 1 +80208 SPG11 spastic paraplegia 11 (autosomal recessive) 15 protein-coding ALS5|CMT2X|KIAA1840 spatacsin|colorectal carcinoma-associated protein|spastic paraplegia 11 protein 124 0.01697 10.45 1 1 +80209 PROSER1 proline and serine rich 1 13 protein-coding C13orf23 proline and serine-rich protein 1 74 0.01013 9.748 1 1 +80210 ARMC9 armadillo repeat containing 9 2 protein-coding ARM|KU-MEL-1|NS21 lisH domain-containing protein ARMC9|armadillo/beta-catenin-like repeats|melanoma/melanocyte specific protein KU-MEL-1|melanoma/melanocyte-specific tumor antigen KU-MEL-1 45 0.006159 7.861 1 1 +80212 CCDC92 coiled-coil domain containing 92 12 protein-coding - coiled-coil domain-containing protein 92|limkain beta 2 26 0.003559 9.804 1 1 +80213 TM2D3 TM2 domain containing 3 15 protein-coding BLP2 TM2 domain-containing protein 3|BBP-like protein 2|beta-amyloid-binding protein-like protein 2 19 0.002601 9.575 1 1 +80215 RUNX1-IT1 RUNX1 intronic transcript 1 21 ncRNA C21orf96 RUNX1 intronic transcript 1 (non-protein coding) 0.5875 0 1 +80216 ALPK1 alpha kinase 1 4 protein-coding 8430410J10Rik|LAK alpha-protein kinase 1|chromosome 4 kinase|lymphocyte alpha-kinase|lymphocyte alpha-protein kinase 97 0.01328 8.29 1 1 +80217 CFAP43 cilia and flagella associated protein 43 10 protein-coding C10orf79|WDR96|bA373N18.2 cilia- and flagella-associated protein 43|WD repeat domain 96|WD repeat-containing protein 96|WD repeat-containing protein C10orf79 113 0.01547 4.291 1 1 +80218 NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit 3 protein-coding MAK3|NAT13|NAT13P|NAT5|NAT5P|SAN N-alpha-acetyltransferase 50|N-acetyltransferase 13 (GCN5-related)|N-acetyltransferase 5|N-acetyltransferase san homolog|natE catalytic subunit 5 0.0006844 11.34 1 1 +80219 COQ10B coenzyme Q10B 2 protein-coding - coenzyme Q-binding protein COQ10 homolog B, mitochondrial|coenzyme Q10 homolog B 13 0.001779 9.268 1 1 +80221 ACSF2 acyl-CoA synthetase family member 2 17 protein-coding ACSMW|AVYV493 acyl-CoA synthetase family member 2, mitochondrial|PPARG binding, long chain fatty acid acyl Co-A ligase like 42 0.005749 8.893 1 1 +80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial (putative) 1 protein-coding COXPD21|TARSL1|thrRS threonine--tRNA ligase, mitochondrial|threonyl-tRNA synthetase-like 1 66 0.009034 9.368 1 1 +80223 RAB11FIP1 RAB11 family interacting protein 1 8 protein-coding NOEL1A|RCP|rab11-FIP1 rab11 family-interacting protein 1|RAB11 coupling protein|RAB11 family interacting protein 1 (class I)|Rab effector protein|Rab-interacting recycling protein 91 0.01246 10.46 1 1 +80224 NUBPL nucleotide binding protein like 14 protein-coding C14orf127|IND1|huInd1 iron-sulfur protein NUBPL|IND1 homolog|iron-sulfur protein required for NADH dehydrogenase 18 0.002464 7.898 1 1 +80227 PAAF1 proteasomal ATPase associated factor 1 11 protein-coding PAAF|Rpn14|WDR71 proteasomal ATPase-associated factor 1|WD repeat domain 71|WD repeat-containing protein 71 26 0.003559 8.777 1 1 +80228 ORAI2 ORAI calcium release-activated calcium modulator 2 7 protein-coding C7orf19|CBCIP2|MEM142B|TMEM142B protein orai-2|CAP-binding protein complex interacting protein 2|H_NH0514P08.8|putative protein ORAI2-2|transmembrane protein 142B 19 0.002601 9.783 1 1 +80230 RUFY1 RUN and FYVE domain containing 1 5 protein-coding RABIP4|ZFYVE12 RUN and FYVE domain-containing protein 1|FYVE-finger protein EIP1|la-binding protein 1|rab4-interacting protein|zinc finger FYVE domain-containing protein 12 49 0.006707 10.07 1 1 +80231 CXorf21 chromosome X open reading frame 21 X protein-coding - uncharacterized protein CXorf21|5430427O19Rik 37 0.005064 4.672 1 1 +80232 WDR26 WD repeat domain 26 1 protein-coding CDW2|GID7|MIP2 WD repeat-containing protein 26|CUL4- and DDB1-associated WDR protein 2|GID complex subunit 7 homolog|myocardial ischemic preconditioning upregulated protein 2 33 0.004517 11.32 1 1 +80233 FAAP100 Fanconi anemia core complex associated protein 100 17 protein-coding C17orf70 Fanconi anemia core complex-associated protein 100|Fanconi anemia associated protein 100 kDa subunit|Fanconi anemia core complex 100 kDa subunit|Fanconi anemia-associated protein, 100kDa|fanconi anemia-associated protein of 100 kDa 54 0.007391 9.877 1 1 +80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z 3 protein-coding GPI-MT-IV|PIG-Z|SMP3 GPI mannosyltransferase 4|GPI mannosyltransferase IV|SMP3 mannosyltransferase|dol-P-Man dependent GPI mannosyltransferase|phosphatidylinositol glycan, class Z|phosphatidylinositol-glycan biosynthesis class Z protein 35 0.004791 6.684 1 1 +80237 ELL3 elongation factor for RNA polymerase II 3 15 protein-coding - RNA polymerase II elongation factor ELL3|elongation factor RNA polymerase II-like 3 28 0.003832 7.234 1 1 +80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 8 protein-coding DEP.2|DEPDC2|P-REX2|PPP1R129 phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 2 protein|DEP domain-containing protein 2|PtdIns(3,4,5)-dependent Rac exchanger 2|protein phosphatase 1, regulatory subunit 129 240 0.03285 4.686 1 1 +80254 CEP63 centrosomal protein 63 3 protein-coding SCKL6 centrosomal protein of 63 kDa|centrosomal protein 63kDa|centrosome protein CEP63 58 0.007939 8.957 1 1 +80255 SLC35F5 solute carrier family 35 member F5 2 protein-coding - solute carrier family 35 member F5|HCV NS5A-transactivated protein 3|hepatitis C virus NS5A-transactivated protein 3 37 0.005064 9.587 1 1 +80256 FAM214B family with sequence similarity 214 member B 9 protein-coding KIAA1539 protein FAM214B 38 0.005201 9.068 1 1 +80258 EFHC2 EF-hand domain containing 2 X protein-coding MRX74|dJ1158H2.1 EF-hand domain-containing family member C2|EF-hand domain (C-terminal) containing 2|mental retardation, X-linked 74 45 0.006159 3.865 1 1 +80262 C16orf70 chromosome 16 open reading frame 70 16 protein-coding C16orf6|LIN10|lin-10 UPF0183 protein C16orf70|lin-10 homolog 36 0.004927 9.022 1 1 +80263 TRIM45 tripartite motif containing 45 1 protein-coding RNF99 tripartite motif-containing protein 45|ring finger protein 99 40 0.005475 6.999 1 1 +80264 ZNF430 zinc finger protein 430 19 protein-coding - zinc finger protein 430 46 0.006296 6.636 1 1 +80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 1 protein-coding C1orf22 ER degradation-enhancing alpha-mannosidase-like protein 3|ER degradation enhancer, mannosidase alpha-like 3|ER degradation-enhancing -mannosidase-like protein 3|ER degradation-enhancing alpha-mannosidase-like 3|alpha-1,2-mannosidase EDEM3 53 0.007254 10.16 1 1 +80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 16 protein-coding CBAS1|PFIC4|SDR11E3 3 beta-hydroxysteroid dehydrogenase type 7|3 beta-hydroxy-delta 5-C27-steroid oxidoreductase|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 30 0.004106 9.176 1 1 +80271 ITPKC inositol-trisphosphate 3-kinase C 19 protein-coding IP3-3KC|IP3KC inositol-trisphosphate 3-kinase C|IP3 3-kinase C|IP3K C|InsP 3 kinase C|inositol 1,4,5-trisphosphate 3-kinase C|insP 3-kinase C 28 0.003832 9.923 1 1 +80273 GRPEL1 GrpE like 1, mitochondrial 4 protein-coding GrpE|HMGE|mt-GrpE#1 grpE protein homolog 1, mitochondrial|GrpE-like protein cochaperone 14 0.001916 9.484 1 1 +80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 22 protein-coding - signal peptide, CUB and EGF-like domain-containing protein 1|signal peptide, CUB domain, EGF-like 1|signal peptide-CUB domain-EGF-related 1 79 0.01081 4.318 1 1 +80279 CDK5RAP3 CDK5 regulatory subunit associated protein 3 17 protein-coding C53|HSF-27|IC53|LZAP|MST016|OK/SW-cl.114|PP1553 CDK5 regulatory subunit-associated protein 3|CDK5 regulatory subunit associated protein IC53-2|LXXLL/leucine-zipper-containing ARF-binding protein|LXXLL/leucine-zipper-containing ARFbinding protein|ischemic heart CDK5 activator-binding protein C53 24 0.003285 11.07 1 1 +80298 MTERF2 mitochondrial transcription termination factor 2 12 protein-coding MTERFD3|mTERFL transcription termination factor 2, mitochondrial|MTERF domain containing 3|mTERF domain-containing protein 3, mitochondrial|mTERF-like|mitochondrial transcription termination factor-like protein 28 0.003832 8.104 1 1 +80301 PLEKHO2 pleckstrin homology domain containing O2 15 protein-coding PLEKHQ1|PP1628|pp9099 pleckstrin homology domain-containing family O member 2|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 33 0.004517 9.917 1 1 +80303 EFHD1 EF-hand domain family member D1 2 protein-coding MST133|MSTP133|PP3051|SWS2 EF-hand domain-containing protein D1|EF-hand domain-containing protein 1|swiprosin-2 22 0.003011 8.364 1 1 +80304 WDCP WD repeat and coiled coil containing 2 protein-coding C2orf44|PP384 WD repeat and coiled-coil-containing protein|WD repeat and coiled-coil-containing protein C2orf44|WD repeat-containing protein C2orf44 41 0.005612 7.828 1 1 +80305 TRABD TraB domain containing 22 protein-coding LP6054|PP2447 traB domain-containing protein 17 0.002327 9.794 1 1 +80306 MED28 mediator complex subunit 28 4 protein-coding 1500003D12Rik|EG1|magicin mediator of RNA polymerase II transcription subunit 28|endothelial-derived gene 1|endothelial-derived protein 1|mediator of RNA polymerase II transcription, subunit 28 homolog|merlin and Grb2-interacting cytoskeletal protein|tumor angiogenesis marker EG-1 15 0.002053 9.041 1 1 +80307 FER1L4 fer-1 like family member 4, pseudogene 20 pseudo C20orf124 fer-1 like family member 4, pseudogene (functional)|fer-1-like 4, pseudogene (functional) 13 0.001779 5.798 1 1 +80308 FLAD1 flavin adenine dinucleotide synthetase 1 1 protein-coding FAD1|FADS|LSMFLAD|PP591 FAD synthase|FAD pyrophosphorylase|FAD-synthetase|FMN adenylyltransferase|Fad1, flavin adenine dinucleotide synthetase, homolog 51 0.006981 9.861 1 1 +80309 SPHKAP SPHK1 interactor, AKAP domain containing 2 protein-coding SKIP 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 255 0.0349 1.399 1 1 +80310 PDGFD platelet derived growth factor D 11 protein-coding IEGF|MSTP036|SCDGF-B|SCDGFB platelet-derived growth factor D|PDGF-D|iris-expressed growth factor|spinal cord-derived growth factor B 55 0.007528 7.583 1 1 +80311 KLHL15 kelch like family member 15 X protein-coding HEL-S-305 kelch-like protein 15|epididymis secretory protein Li 305|kelch-like 15 24 0.003285 8.042 1 1 +80312 TET1 tet methylcytosine dioxygenase 1 10 protein-coding CXXC6|LCX|MLL-TET1|TET1-MLL|bA119F7.1 methylcytosine dioxygenase TET1|CXXC finger 6|CXXC zinc finger 6|CXXC-type zinc finger protein 6|TET1 splice variant VP_DE4|TET1 splice variant VP_DE456|leukemia-associated protein with a CXXC domain|ten-eleven translocation 1 gene protein|ten-eleven translocation-1|tet oncogene 1 149 0.02039 5.632 1 1 +80313 LRRC27 leucine rich repeat containing 27 10 protein-coding - leucine-rich repeat-containing protein 27|testicular tissue protein Li 108 45 0.006159 7.377 1 1 +80314 EPC1 enhancer of polycomb homolog 1 10 protein-coding Epl1 enhancer of polycomb homolog 1 62 0.008486 8.4 1 1 +80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 5 protein-coding CPE-BP4|hCPEB-4 cytoplasmic polyadenylation element-binding protein 4|CPE-binding protein 4 56 0.007665 9.689 1 1 +80316 PPP1R2P9 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 9 X pseudo I-4 type 1 protein phosphatase inhibitor 0.189 0 1 +80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 6 protein-coding ZF47|ZFP306|ZNF306|ZNF309|ZSCAN13|ZSCAN35|Zfp47|dJ874C20.1|dJ874C20.1.|zfp-47 zinc finger protein with KRAB and SCAN domains 3|zinc finger and SCAN domain-containing protein 13|zinc finger protein 306|zinc finger protein 309|zinc finger protein 47 homolog|zinc finger protein zfp47 41 0.005612 6.063 1 1 +80318 GKAP1 G kinase anchoring protein 1 9 protein-coding FKSG21|GKAP42 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 20 0.002737 6.495 1 1 +80319 CXXC4 CXXC finger protein 4 4 protein-coding IDAX CXXC-type zinc finger protein 4|CXXC finger 4|Dvl-binding protein IDAX (inhibition of the Dvl and Axin complex)|inhibition of the Dvl and axin complex protein 20 0.002737 2.528 1 1 +80320 SP6 Sp6 transcription factor 17 protein-coding EPFN|EPIPROFIN|KLF14 transcription factor Sp6|Kruppel-like factor 14|krueppel-like factor 14 27 0.003696 6.386 1 1 +80321 CEP70 centrosomal protein 70 3 protein-coding BITE centrosomal protein of 70 kDa|centrosomal protein 70kDa|p10-binding protein|testicular tissue protein Li 36 35 0.004791 8.516 1 1 +80323 CCDC68 coiled-coil domain containing 68 18 protein-coding SE57-1 coiled-coil domain-containing protein 68|CTCL tumor antigen se57-1|CTCL-associated antigen se57-1|cutaneous T-cell lymphoma associated antigen|cutaneous T-cell lymphoma-associated antigen se57-1 29 0.003969 5.526 1 1 +80324 PUS1 pseudouridylate synthase 1 12 protein-coding MLASA1 tRNA pseudouridine synthase A, mitochondrial|mitochondrial tRNA pseudouridine synthase A|tRNA pseudouridine(38-40) synthase|tRNA pseudouridylate synthase I|tRNA uridine isomerase I 26 0.003559 8.727 1 1 +80325 ABTB1 ankyrin repeat and BTB domain containing 1 3 protein-coding BPOZ|BTB3|BTBD21|EF1ABP|PP2259 ankyrin repeat and BTB/POZ domain-containing protein 1|ankyrin repeat and BTB (POZ) domain containing 1|elongation factor 1A-binding protein 37 0.005064 8.988 1 1 +80326 WNT10A Wnt family member 10A 2 protein-coding OODD|SSPS|STHAG4 protein Wnt-10a|wingless-type MMTV integration site family, member 10A 26 0.003559 5.169 1 1 +80328 ULBP2 UL16 binding protein 2 6 protein-coding ALCAN-alpha|N2DL2|NKG2DL2|RAET1H NKG2D ligand 2|retinoic acid early transcript 1H 15 0.002053 5.028 1 1 +80329 ULBP1 UL16 binding protein 1 6 protein-coding N2DL-1|NKG2DL1|RAET1I NKG2D ligand 1|alcan-beta|retinoic acid early transcript 1I 20 0.002737 3.883 1 1 +80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 20 protein-coding CLN4|CLN4B|CSP|DNAJC5A|NCL|mir-941-2|mir-941-3|mir-941-4|mir-941-5 dnaJ homolog subfamily C member 5|DnaJ (Hsp40) homolog, subfamily C, member 5|ceroid-lipofuscinosis neuronal protein 4|cysteine string protein alpha 17 0.002327 11.28 1 1 +80332 ADAM33 ADAM metallopeptidase domain 33 20 protein-coding C20orf153|DJ964F7.1 disintegrin and metalloproteinase domain-containing protein 33|ADAM 33|a disintegrin and metalloprotease 33|a disintegrin and metalloproteinase domain 33|disintegrin and reprolysin metalloproteinase family protein 58 0.007939 5.223 1 1 +80333 KCNIP4 potassium voltage-gated channel interacting protein 4 4 protein-coding CALP|KCHIP4 Kv channel-interacting protein 4|Kv channel interacting protein 4|a-type potassium channel modulatory protein 4|calsenilin-like protein|potassium channel interacting protein 4 40 0.005475 4.504 1 1 +80335 WDR82 WD repeat domain 82 3 protein-coding MST107|MSTP107|PRO2730|PRO34047|SWD2|TMEM113|WDR82A WD repeat-containing protein 82|transmembrane protein 113 15 0.002053 11.37 1 1 +80336 PABPC1L poly(A) binding protein cytoplasmic 1 like 20 protein-coding C20orf119|EPAB|PABPC1L1|dJ1069P2.3 polyadenylate-binding protein 1-like|embryonic poly(A) binding protein 45 0.006159 7.896 1 1 +80339 PNPLA3 patatin like phospholipase domain containing 3 22 protein-coding ADPN|C22orf20|iPLA(2)epsilon patatin-like phospholipase domain-containing protein 3|acylglycerol O-acyltransferase|adiponutrin|calcium-independent phospholipase A2-epsilon|iPLA2-epsilon|iPLA2epsilon 24 0.003285 3.474 1 1 +80341 BPIFB2 BPI fold containing family B member 2 20 protein-coding BPIL1|C20orf184|LPLUNC2|RYSR|dJ726C3.2 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 45 0.006159 1.936 1 1 +80342 TRAF3IP3 TRAF3 interacting protein 3 1 protein-coding T3JAM TRAF3-interacting JNK-activating modulator|TRAF3 interacting Jun N terminal kinase (JNK) activating modulator 56 0.007665 6.155 1 1 +80343 SEL1L2 SEL1L2 ERAD E3 ligase adaptor subunit 20 protein-coding C20orf50 protein sel-1 homolog 2|sel-1 suppressor of lin-12-like 2|sel-1L2|suppressor of lin-12-like protein 2 91 0.01246 0.3531 1 1 +80344 DCAF11 DDB1 and CUL4 associated factor 11 14 protein-coding GL014|PRO2389|WDR23 DDB1- and CUL4-associated factor 11|WD repeat domain 23|WD repeat-containing protein 23 43 0.005886 10.9 1 1 +80345 ZSCAN16 zinc finger and SCAN domain containing 16 6 protein-coding ZNF392|ZNF435|dJ265C24.3 zinc finger and SCAN domain-containing protein 16|zinc finger protein 392|zinc finger protein 435 19 0.002601 6.611 1 1 +80346 REEP4 receptor accessory protein 4 8 protein-coding C8orf20|PP432|Yip2c receptor expression-enhancing protein 4 21 0.002874 9.123 1 1 +80347 COASY Coenzyme A synthase 17 protein-coding DPCK|NBIA6|NBP|PPAT|UKR1|pOV-2 bifunctional coenzyme A synthase|CoA synthase|bifunctional phosphopantetheine adenylyl transferase/dephospho CoA kinase|nucleotide binding protein|phosphopantetheine adenylyltransferase / dephosphocoenzyme A kinase 36 0.004927 10.71 1 1 +80349 WDR61 WD repeat domain 61 15 protein-coding REC14|SKI8 WD repeat-containing protein 61|SKI8 homolog|meiotic recombination REC14 protein homolog|recombination protein REC14 13 0.001779 9.684 1 1 +80350 LPAL2 lipoprotein(a) like 2, pseudogene 6 pseudo APOA2|APOAL|APOARGC|apo(a)rg-C apolipoprotein (a) related gene C|apolipoprotein A-II|lipoprotein, Lp(a)-like 2, pseudogene 72 0.009855 2.187 1 1 +80351 TNKS2 tankyrase 2 10 protein-coding ARTD6|PARP-5b|PARP-5c|PARP5B|PARP5C|TANK2|TNKL|pART6 tankyrase-2|ADP-ribosyltransferase diphtheria toxin-like 6|TNKS-2|TRF1-interacting ankyrin-related ADP-ribose polymerase 2|poly [ADP-ribose] polymerase 5B|tankyrase II|tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2|tankyrase-like protein|tankyrase-related protein 76 0.0104 10.42 1 1 +80352 RNF39 ring finger protein 39 6 protein-coding HZF|HZFW|LIRF RING finger protein 39|LTP (long-term potentiation) induced RING finger protein|protein HZFw 33 0.004517 5.547 1 1 +80380 PDCD1LG2 programmed cell death 1 ligand 2 9 protein-coding B7DC|Btdc|CD273|PD-L2|PDCD1L2|PDL2|bA574F11.2 programmed cell death 1 ligand 2|B7 dendritic cell molecule|B7-DC|PD-1-ligand 2|PDCD1 ligand 2|butyrophilin B7-DC|programmed death ligand 2 13 0.001779 5.49 1 1 +80381 CD276 CD276 molecule 15 protein-coding 4Ig-B7-H3|B7-H3|B7H3|B7RP-2 CD276 antigen|B7 homolog 3|costimulatory molecule 30 0.004106 11.11 1 1 +80700 UBXN6 UBX domain protein 6 19 protein-coding UBXD1|UBXDC2 UBX domain-containing protein 6|CTB-50L17.16|UBX domain containing 1|UBX domain-containing 2|UBX domain-containing protein 1 43 0.005886 10.95 1 1 +80704 SLC19A3 solute carrier family 19 member 3 2 protein-coding BBGD|THMD2|THTR2 thiamine transporter 2|solute carrier family 19 (thiamine transporter), member 3|thTr-2 35 0.004791 4.797 1 1 +80705 TSGA10 testis specific 10 2 protein-coding CEP4L|CT79 testis-specific gene 10 protein|cancer/testis antigen 79|testis development protein NYD-SP7 74 0.01013 5.581 1 1 +80709 AKNA AT-hook transcription factor 9 protein-coding - AT-hook-containing transcription factor|AKNA transcript F2|AT-hook transcription factor AKNA 87 0.01191 9.513 1 1 +80712 ESX1 ESX homeobox 1 X protein-coding ESX1L|ESXR1 homeobox protein ESX1|ESX1-related protein|extraembryonic, spermatogenesis, homeobox 1 homolog 60 0.008212 0.3618 1 1 +80714 PBX4 PBX homeobox 4 19 protein-coding - pre-B-cell leukemia transcription factor 4|homeobox protein PBX4|pre-B-cell leukemia homeobox 4 22 0.003011 4.432 1 1 +80723 SLC35G2 solute carrier family 35 member G2 3 protein-coding TMEM22 solute carrier family 35 member G2|transmembrane protein 22 29 0.003969 6.411 1 1 +80724 ACAD10 acyl-CoA dehydrogenase family member 10 12 protein-coding - acyl-CoA dehydrogenase family member 10|ACAD-10|acyl-Coenzyme A dehydrogenase family, member 10 74 0.01013 9.18 1 1 +80725 SRCIN1 SRC kinase signaling inhibitor 1 17 protein-coding P140|SNIP SRC kinase signaling inhibitor 1|P130Cas-associated protein|SNAP-25-interacting protein|SNAP25-interacting protein|p140Cap 75 0.01027 7.252 1 1 +80726 KIAA1683 KIAA1683 19 protein-coding - uncharacterized protein KIAA1683 75 0.01027 6.14 1 1 +80727 TTYH3 tweety family member 3 7 protein-coding - protein tweety homolog 3|hTTY3|tweety homolog 3 24 0.003285 11.36 1 1 +80728 ARHGAP39 Rho GTPase activating protein 39 8 protein-coding CrGAP|Vilse rho GTPase-activating protein 39|RhoGAP93B homolog|crossGAP homolog 68 0.009307 8.297 1 1 +80731 THSD7B thrombospondin type 1 domain containing 7B 2 protein-coding - thrombospondin type-1 domain-containing protein 7B|thrombospondin, type I, domain containing 7B 229 0.03134 3.467 1 1 +80736 SLC44A4 solute carrier family 44 member 4 6 protein-coding C6orf29|CTL4|NG22|TPPT choline transporter-like protein 4|testicular tissue protein Li 48|thiamine pyrophosphate transporter 59 0.008076 7.311 1 1 +80737 VWA7 von Willebrand factor A domain containing 7 6 protein-coding C6orf27|G7c|NG37 von Willebrand factor A domain-containing protein 7|protein G7c 69 0.009444 5.395 1 1 +80739 C6orf25 chromosome 6 open reading frame 25 6 protein-coding G6b|NG31 protein G6b|immunoglobulin receptor 33 0.004517 0.712 1 1 +80740 LY6G6C lymphocyte antigen 6 complex, locus G6C 6 protein-coding C6orf24|G6c|NG24 lymphocyte antigen 6 complex locus protein G6c|lymphocyte antigen-6 G6C 8 0.001095 2.752 1 1 +80741 LY6G5C lymphocyte antigen 6 complex, locus G5C 6 protein-coding C6orf20|G5C|LY6G5CA|LY6G5CB|NG33 lymphocyte antigen 6 complex locus protein G5c|lymphocyte antigen-6 G5C 6 0.0008212 4.985 1 1 +80742 PRR3 proline rich 3 6 protein-coding CAT56 proline-rich protein 3|MHC class I region proline-rich protein CAT56|proline-rich polypeptide 3 12 0.001642 8.143 1 1 +80745 THUMPD2 THUMP domain containing 2 2 protein-coding C2orf8 THUMP domain-containing protein 2|SAM-dependent methyltransferase 31 0.004243 7.645 1 1 +80746 TSEN2 tRNA splicing endonuclease subunit 2 3 protein-coding PCH2B|SEN2|SEN2L tRNA-splicing endonuclease subunit Sen2|TSEN2 tRNA splicing endonuclease subunit|hsSen2|tRNA-intron endonuclease Sen2 34 0.004654 7.456 1 1 +80755 AARSD1 alanyl-tRNA synthetase domain containing 1 17 protein-coding - alanyl-tRNA editing protein Aarsd1|alanyl-tRNA synthetase domain-containing protein 1 19 0.002601 9.159 1 1 +80757 TMEM121 transmembrane protein 121 14 protein-coding hole transmembrane protein 121|hole 19 0.002601 5.351 1 1 +80758 PRR7 proline rich 7, synaptic 5 protein-coding - proline-rich protein 7|synaptic proline-rich membrane protein 7 0.0009581 6.051 1 1 +80759 KHDC1 KH homology domain containing 1 6 protein-coding C6orf147|C6orf148|Em:AC019205.8|NDG1|bA257K9.4 KH homology domain-containing protein 1 15 0.002053 4.877 1 1 +80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain family member 5 10 protein-coding ITI-HC5|PP14776 inter-alpha-trypsin inhibitor heavy chain H5|ITI heavy chain H5|inter-alpha (globulin) inhibitor H5 116 0.01588 8.24 1 1 +80761 UPK3B uroplakin 3B 7 protein-coding P35|UP3B|UPIIIB uroplakin-3b|uroplakin IIIb 16 0.00219 4.153 1 1 +80762 NDFIP1 Nedd4 family interacting protein 1 5 protein-coding N4WBP5 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 12 0.001642 11.67 1 1 +80763 SPX spexin hormone 12 protein-coding C12orf39 spexin|NPQ|neuropeptide Q 14 0.001916 1.696 1 1 +80764 THAP7 THAP domain containing 7 22 protein-coding - THAP domain-containing protein 7 22 0.003011 8.732 1 1 +80765 STARD5 StAR related lipid transfer domain containing 5 15 protein-coding - stAR-related lipid transfer protein 5|START domain containing 5|START domain-containing protein 5|StAR-related lipid transfer (START) domain containing 5 13 0.001779 6.641 1 1 +80772 CPTP ceramide-1-phosphate transfer protein 1 protein-coding GLTPD1 ceramide-1-phosphate transfer protein|GLTP domain-containing protein 1|glycolipid transfer protein domain containing 1|glycolipid transfer protein domain-containing protein 1 11 0.001506 9.507 1 1 +80774 LIMD2 LIM domain containing 2 17 protein-coding - LIM domain-containing protein 2|testicular tissue protein Li 106 8 0.001095 8.679 1 1 +80775 TMEM177 transmembrane protein 177 2 protein-coding - transmembrane protein 177 30 0.004106 7.771 1 1 +80776 B9D2 B9 protein domain 2 19 protein-coding ICIS-1|MKS10|MKSR2 B9 domain-containing protein 2|MKS1-related protein 2|involved in cIlia stability-1 16 0.00219 6.691 1 1 +80777 CYB5B cytochrome b5 type B 16 protein-coding CYB5-M|CYPB5M|OMB5 cytochrome b5 type B|cytochrome b5 outer mitochondrial membrane isoform|cytochrome b5 type B (outer mitochondrial membrane)|outer mitochondrial membrane cytochrome b5|type 2 cyt-b5 11 0.001506 10.71 1 1 +80778 ZNF34 zinc finger protein 34 8 protein-coding KOX32 zinc finger protein 34|zinc finger protein 34 (KOX 32)|zinc finger protein KOX32 33 0.004517 6.983 1 1 +80781 COL18A1 collagen type XVIII alpha 1 chain 21 protein-coding KNO|KNO1|KS collagen alpha-1(XVIII) chain|antiangiogenic agent|collagen alpha-1(XVIII) chain isoform 1 preproprotein|collagen, type XVIII, alpha 1|endostatin|multi-functional protein MFP 129 0.01766 12.04 1 1 +80789 INTS5 integrator complex subunit 5 11 protein-coding INT5|KIAA1698 integrator complex subunit 5 54 0.007391 9.625 1 1 +80790 CMIP c-Maf inducing protein 16 protein-coding TCMIP C-Maf-inducing protein|tc-Mip 44 0.006022 10.54 1 1 +80816 ASXL3 additional sex combs like 3, transcriptional regulator 18 protein-coding BRPS|KIAA1713 putative Polycomb group protein ASXL3|additional sex combs like 3|additional sex combs like transcriptional regulator 3|additional sex combs-like protein 3 250 0.03422 3.168 1 1 +80817 CEP44 centrosomal protein 44 4 protein-coding KIAA1712|PS1TP3 centrosomal protein of 44 kDa|HBV PreS1-transactivated protein 3|centrosomal protein 44kDa 30 0.004106 8.088 1 1 +80818 ZNF436 zinc finger protein 436 1 protein-coding ZNF|Zfp46 zinc finger protein 436|DNA-binding protein 34 0.004654 9.067 1 1 +80820 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 7 protein-coding HSPC107 endonuclease/exonuclease/phosphatase family domain-containing protein 1 42 0.005749 8.037 1 1 +80821 DDHD1 DDHD domain containing 1 14 protein-coding PA-PLA1|PAPLA1|SPG28 phospholipase DDHD1|phosphatidic acid-preferring phospholipase A1 homolog|phosphatidic acid-preferring phospholipase A1-like protein|spastic paraplegia 28 (autosomal recessive) 72 0.009855 8.541 1 1 +80823 BHLHB9 basic helix-loop-helix domain containing, class B, 9 X protein-coding GASP3|p60TRP protein BHLHb9|p60-like protein|transcription regulator of 60 kDa 50 0.006844 7.029 1 1 +80824 DUSP16 dual specificity phosphatase 16 12 protein-coding MKP-7|MKP7 dual specificity protein phosphatase 16|MAP kinase phosphatase 7|MAPK phosphatase-7|mitogen-activated protein kinase phosphatase 7 48 0.00657 10.28 1 1 +80829 ZFP91 ZFP91 zinc finger protein 11 protein-coding DMS-8|DSM-8|FKSG11|PZF|ZFP-91|ZNF757 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 54 0.007391 10.89 1 1 +80830 APOL6 apolipoprotein L6 22 protein-coding APOL-VI|APOLVI apolipoprotein L6|apolipoprotein L, 6|apolipoprotein L-VI 24 0.003285 10.48 1 1 +80831 APOL5 apolipoprotein L5 22 protein-coding APOL-V|APOLV apolipoprotein L5|apolipoprotein L, 5|apolipoprotein L-V 37 0.005064 0.4948 1 1 +80832 APOL4 apolipoprotein L4 22 protein-coding APOL-IV|APOLIV apolipoprotein L4|apolipoprotein L, 4|apolipoprotein L-IV 15 0.002053 7.469 1 1 +80833 APOL3 apolipoprotein L3 22 protein-coding APOLIII|CG121|CG12_1|apoL-III apolipoprotein L3|TNF-inducible protein CG12-1|apolipoprotein L, 3|apolipoprotein L-III 26 0.003559 8.912 1 1 +80834 TAS1R2 taste 1 receptor member 2 1 protein-coding GPR71|T1R2|TR2 taste receptor type 1 member 2|G-protein coupled receptor 71|sweet taste receptor T1R2|taste receptor, type 1, member 2 98 0.01341 0.1265 1 1 +80835 TAS1R1 taste 1 receptor member 1 1 protein-coding GM148|GPR70|T1R1|TR1 taste receptor type 1 member 1|G-protein coupled receptor 70|seven transmembrane helix receptor|taste receptor, type 1, member 1 52 0.007117 1.935 1 1 +80851 SH3BP5L SH3 binding domain protein 5 like 1 protein-coding - SH3 domain-binding protein 5-like|SH3BP-5-like 31 0.004243 9.793 1 1 +80852 GRIP2 glutamate receptor interacting protein 2 3 protein-coding - glutamate receptor-interacting protein 2 94 0.01287 2.996 1 1 +80853 KDM7A lysine demethylase 7A 7 protein-coding JHDM1D lysine-specific demethylase 7A|histone lysine demethylase JHDM1D|jmjC domain-containing histone demethylation protein 1D|jumonji C domain containing histone demethylase 1 homolog D|lysine (K)-specific demethylase 7A|lysine-specific demethylase 7 63 0.008623 9.185 1 1 +80854 SETD7 SET domain containing lysine methyltransferase 7 4 protein-coding KMT7|SET7|SET7/9|SET9 histone-lysine N-methyltransferase SETD7|H3-K4-HMTase SETD7|SET domain-containing protein 7|histone H3-K4 methyltransferase SETD7|histone H3-lysine 4-specific methyltransferase|lysine N-methyltransferase 7 28 0.003832 10.61 1 1 +80856 LNPK lunapark, ER junction formation factor 2 protein-coding KIAA1715|LNP|LNP1|Ul|ulnaless protein lunapark|2310011O18Rik|4921514L11Rik|Lunapark|limb and neural patterns 42 0.005749 9.19 1 1 +80862 ZNRD1ASP zinc ribbon domain containing 1 antisense, pseudogene 6 ncRNA C6orf12|HTEX4|NCRNA00171|TCTEX4|ZNRD1-AS|ZNRD1-AS1|ZNRD1AS|ZNRD1AS1 ZNRD1 antisense RNA (non-protein coding)|ZNRD1 antisense RNA 1 (non-protein coding) 106 0.01451 4.757 1 1 +80863 PRRT1 proline rich transmembrane protein 1 6 protein-coding C6orf31|DSPD1|IFITMD7|NG5 proline-rich transmembrane protein 1|dispanin subfamily D member 1|interferon induced transmembrane protein domain containing 7 24 0.003285 5.52 1 1 +80864 EGFL8 EGF like domain multiple 8 6 protein-coding C6orf8|NG3 epidermal growth factor-like protein 8|EGF-like protein 8|VE-statin-2|vascular endothelial statin-2 24 0.003285 6.558 1 1 +80867 2.089 0 1 +80868 HCG4B HLA complex group 4B (non-protein coding) 6 ncRNA HCG4P6|HCGIV-06|HCGIV-6|HCGIV.5|bCX67J3.3|bPG309N1.1|bQB90C11.3 HCGIV-6 pseudogene|HLA complex group 4 pseudogene 6 2.64 0 1 +80895 ILKAP ILK associated serine/threonine phosphatase 2 protein-coding ILKAP2|ILKAP3|PP2C-DELTA|PPM1O integrin-linked kinase-associated serine/threonine phosphatase 2C|integrin-linked kinase associated phosphatase|protein phosphatase 2c, delta isozyme|protein phosphatase, Mg2+/Mn2+ dependent 1O 27 0.003696 8.921 1 1 +80896 NPL N-acetylneuraminate pyruvate lyase 1 protein-coding C112|C1orf13|NAL|NPL1 N-acetylneuraminate lyase|N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase)|N-acetylneuraminic acid aldolase|NALase|dihydrodipicolinate synthetase homolog 1|sialate-pyruvate lyase|sialic acid aldolase 20 0.002737 7.819 1 1 +80975 TMPRSS5 transmembrane protease, serine 5 11 protein-coding SPINESIN transmembrane protease serine 5 18 0.002464 3.101 1 1 +81025 GJA9 gap junction protein alpha 9 1 protein-coding CX58|CX59|GJA10 gap junction alpha-9 protein|connexin 59|connexin-58|gap junction alpha 10|gap junction protein, alpha 9, 59kDa 34 0.004654 2.875 1 1 +81027 TUBB1 tubulin beta 1 class VI 20 protein-coding - tubulin beta-1 chain|tubulin, beta 1 43 0.005886 4.209 1 1 +81029 WNT5B Wnt family member 5B 12 protein-coding - protein Wnt-5b|WNT-5B protein|wingless-type MMTV integration site family, member 5B 34 0.004654 6.808 1 1 +81030 ZBP1 Z-DNA binding protein 1 20 protein-coding C20orf183|DAI|DLM-1|DLM1 Z-DNA-binding protein 1|DNA-dependent activator of IRFs|tumor stroma and activated macrophage protein DLM-1 46 0.006296 4.582 1 1 +81031 SLC2A10 solute carrier family 2 member 10 20 protein-coding ATS|GLUT10 solute carrier family 2, facilitated glucose transporter member 10|GLUT-10|glucose transporter type 10|solute carrier family 2 (facilitated glucose transporter), member 10 45 0.006159 8.739 1 1 +81033 KCNH6 potassium voltage-gated channel subfamily H member 6 17 protein-coding ERG-2|ERG2|HERG2|Kv11.2|hERG-2 potassium voltage-gated channel subfamily H member 6|eag-related gene member 2|ether-a-go-go-related protein 2|potassium channel, voltage gated eag related subfamily H, member 6|potassium voltage-gated channel, subfamily H (eag-related), member 6|voltage-gated potassium channel subunit Kv11.2 93 0.01273 1.752 1 1 +81034 SLC25A32 solute carrier family 25 member 32 8 protein-coding MFT|MFTC|RREI mitochondrial folate transporter/carrier|solute carrier family 25 (mitochondrial folate carrier), member 32 24 0.003285 9.055 1 1 +81035 COLEC12 collectin subfamily member 12 18 protein-coding CLP1|NSR2|SCARA4|SRCL collectin-12|collectin placenta protein 1|collectin sub-family member 12|hCL-P1|nurse cell scavenger receptor 2|scavenger receptor class A, member 4|scavenger receptor with C-type lectin 80 0.01095 7.633 1 1 +81037 CLPTM1L CLPTM1 like 5 protein-coding CRR9 cleft lip and palate transmembrane protein 1-like protein|CLPTM1-like protein|cisplatin resistance related protein CRR9p|cisplatin resistance-related protein 9 42 0.005749 11.34 1 1 +81050 OR5AC2 olfactory receptor family 5 subfamily AC member 2 3 protein-coding HSA1 olfactory receptor 5AC2 48 0.00657 0.01894 1 1 +81061 OR11H1 olfactory receptor family 11 subfamily H member 1 22 protein-coding OR11H12|OR22-1 olfactory receptor 11H1|olfactory receptor OR22-1|seven transmembrane helix receptor 29 0.003969 0.006379 1 1 +81099 OR4F17 olfactory receptor family 4 subfamily F member 17 19 protein-coding OR4F11P|OR4F18|OR4F19 olfactory receptor 4F17|olfactory receptor 4F11|olfactory receptor 4F18|olfactory receptor 4F19|olfactory receptor, family 4, subfamily F, member 11 pseudogene|olfactory receptor, family 4, subfamily F, member 19 9 0.001232 0.008353 1 1 +81127 OR4K15 olfactory receptor family 4 subfamily K member 15 14 protein-coding OR14-20|OR4K15Q olfactory receptor 4K15|olfactory receptor OR14-20 50 0.006844 0.02791 1 1 +81168 OR8J3 olfactory receptor family 8 subfamily J member 3 11 protein-coding OR11-173 olfactory receptor 8J3|olfactory receptor OR11-173 88 0.01204 0.005345 1 1 +81191 OR5G5P olfactory receptor family 5 subfamily G member 5 pseudogene 11 pseudo - - 4 0.0005475 1 0 +81194 OR5F2P olfactory receptor family 5 subfamily F member 2 pseudogene 11 pseudo - - 1 0.0001369 1 0 +81228 OR5AK3P olfactory receptor family 5 subfamily AK member 3 pseudogene 11 pseudo OR5AK3 Olfactory receptor 5AK3 1 0.0001369 1 0 +81282 OR51G2 olfactory receptor family 51 subfamily G member 2 11 protein-coding OR11-28 olfactory receptor 51G2|olfactory receptor OR11-28 56 0.007665 0.02471 1 1 +81285 OR51E2 olfactory receptor family 51 subfamily E member 2 11 protein-coding OR51E3P|OR52A2|PSGR olfactory receptor 51E2|HPRAJ|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 43 0.005886 2.644 1 1 +81300 OR4P4 olfactory receptor family 4 subfamily P member 4 11 protein-coding OR4P3P olfactory receptor 4P4|olfactory receptor 4P3|olfactory receptor, family 4, subfamily P, member 3 pseudogene 66 0.009034 0.006514 1 1 +81309 OR4C15 olfactory receptor family 4 subfamily C member 15 11 protein-coding OR11-127|OR11-134 olfactory receptor 4C15|olfactory receptor OR11-127|olfactory receptor OR11-134 111 0.01519 0.01153 1 1 +81318 OR4A5 olfactory receptor family 4 subfamily A member 5 11 protein-coding OR11-111 olfactory receptor 4A5|olfactory receptor OR11-111|seven transmembrane helix receptor 86 0.01177 0.006398 1 1 +81327 OR4A16 olfactory receptor family 4 subfamily A member 16 11 protein-coding OR11-117|OR4A16Q olfactory receptor 4A16|olfactory receptor OR11-117 85 0.01163 0.02758 1 1 +81328 OR4A15 olfactory receptor family 4 subfamily A member 15 11 protein-coding OR11-118 olfactory receptor 4A15|olfactory receptor OR11-118 115 0.01574 0.005467 1 1 +81330 OR4A13P olfactory receptor family 4 subfamily A member 13 pseudogene 11 pseudo - - 1 0.0001369 1 0 +81341 OR10W1 olfactory receptor family 10 subfamily W member 1 11 protein-coding OR10W1P|OR10W1Q|OR11-236|UNQ6469 olfactory receptor 10W1|olfactory receptor OR11-236|olfactory receptor, family 10, subfamily W, member 1 pseudogene 40 0.005475 0.0578 1 1 +81392 OR2AE1 olfactory receptor family 2 subfamily AE member 1 7 protein-coding OR2AE2 olfactory receptor 2AE1|olfactory receptor 2AE2|olfactory receptor, family 2, subfamily AE, member 2 24 0.003285 0.3138 1 1 +81431 OR5AC1 olfactory receptor family 5 subfamily AC member 1 (gene/pseudogene) 3 pseudo OR5AC1P Olfactory receptor 5AC1|olfactory receptor, family 5, subfamily AC, member 1 pseudogene 1 0.0001369 1 0 +81442 OR6N2 olfactory receptor family 6 subfamily N member 2 1 protein-coding OR1-23 olfactory receptor 6N2|olfactory receptor OR1-23 58 0.007939 0.01126 1 1 +81448 OR6K2 olfactory receptor family 6 subfamily K member 2 1 protein-coding OR1-17 olfactory receptor 6K2|olfactory receptor OR1-17 86 0.01177 0.01432 1 1 +81458 OR2T7 olfactory receptor family 2 subfamily T member 7 1 pseudo OR2T7P|OST723 Olfactory receptor 2T7|olfactory receptor OR1-44|olfactory receptor, family 2, subfamily T, member 7 pseudogene 12 0.001642 1 0 +81466 OR2L5 olfactory receptor family 2 subfamily L member 5 1 protein-coding OR2L11|OR2L5P olfactory receptor 2L5|olfactory receptor 2L11|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 13 0.001779 1 0 +81469 OR2G3 olfactory receptor family 2 subfamily G member 3 1 protein-coding OR1-33 olfactory receptor 2G3|olfactory receptor OR1-33 68 0.009307 0.02659 1 1 +81470 OR2G2 olfactory receptor family 2 subfamily G member 2 1 protein-coding OR1-32 olfactory receptor 2G2|olfactory receptor OR1-32|olfactory receptor, family 2, subfamily G, member 2 pseudogene 78 0.01068 0.01899 1 1 +81472 OR2C3 olfactory receptor family 2 subfamily C member 3 1 protein-coding OR2C4|OR2C5P|OST742 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 51 0.006981 0.2393 1 1 +81488 POLR2M RNA polymerase II subunit M 15 protein-coding GCOM1|GRINL1A|Gdown|Gdown1 protein GRINL1A|DNA-directed RNA polymerase II subunit M, isoforms 4/5|GRINL1A downstream protein Gdown4|glutamate receptor, ionotropic, N-methyl D-aspartate-like 1A|polymerase (RNA) II (DNA directed) polypeptide M|polymerase (RNA) II subunit M|protein GRINL1A, isoforms 4/5 15 0.002053 9.86 1 1 +81490 PTDSS2 phosphatidylserine synthase 2 11 protein-coding PSS2 phosphatidylserine synthase 2|PSS-2|ptdSer synthase 2|serine-exchange enzyme II 22 0.003011 9.258 1 1 +81491 GPR63 G protein-coupled receptor 63 6 protein-coding PSP24(beta)|PSP24B probable G-protein coupled receptor 63|PSP24-2|PSP24-beta|brain expressed G-protein-coupled receptor PSP24 beta 44 0.006022 3.027 1 1 +81492 RSPH6A radial spoke head 6 homolog A 19 protein-coding RSHL1|RSP4|RSP6|RSPH4B radial spoke head protein 6 homolog A|ortholog of mouse radial spokehead-like 1|radial spoke head-like protein 1|radial spokehead-like 1 70 0.009581 0.8158 1 1 +81493 SYNC syncoilin, intermediate filament protein 1 protein-coding SYNC1|SYNCOILIN syncoilin|intermediate filament protein syncoilin|syncoilin intermediate filament 1|syncoilin-1 17 0.002327 7.416 1 1 +81494 CFHR5 complement factor H related 5 1 protein-coding CFHL5|CFHR5D|FHR-5|FHR5 complement factor H-related protein 5|factor H-related protein 5 84 0.0115 0.706 1 1 +81501 DCSTAMP dendrocyte expressed seven transmembrane protein 8 protein-coding FIND|TM7SF4|hDC-STAMP dendritic cell-specific transmembrane protein|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|transmembrane 7 superfamily member 4 76 0.0104 3.035 1 1 +81502 HM13 histocompatibility minor 13 20 protein-coding H13|IMP1|IMPAS|IMPAS-1|MSTP086|PSENL3|PSL3|SPP|SPPL1 minor histocompatibility antigen H13|intramembrane protease 1|minor histocompatibility antigen 13|presenilin-like protein 3|signal peptide peptidase beta|signal peptide peptidase like 1 26 0.003559 11.85 1 1 +81532 MOB2 MOB kinase activator 2 11 protein-coding HCCA2 MOB kinase activator 2|MOB2 Mps One Binder homolog|Mps one binder kinase activator-like 2 16 0.00219 9.179 1 1 +81533 ITFG1 integrin alpha FG-GAP repeat containing 1 16 protein-coding 2310047C21Rik|CDA08|LNKN-1|TIP T-cell immunomodulatory protein|LINKIN|integrin-alpha FG-GAP repeat-containing protein 1 35 0.004791 9.883 1 1 +81537 SGPP1 sphingosine-1-phosphate phosphatase 1 14 protein-coding SPPase1 sphingosine-1-phosphate phosphatase 1|hSPP1|hSPPase1|sphingosine-1-phosphatase 1|spp1 32 0.00438 8.764 1 1 +81539 SLC38A1 solute carrier family 38 member 1 12 protein-coding ATA1|NAT2|SAT1|SNAT1 sodium-coupled neutral amino acid transporter 1|N-system amino acid transporter 2|amino acid transporter A1|amino acid transporter system A1|system A amino acid transporter 1|system N amino acid transporter 1 43 0.005886 11.37 1 1 +81542 TMX1 thioredoxin related transmembrane protein 1 14 protein-coding PDIA11|TMX|TXNDC|TXNDC1 thioredoxin-related transmembrane protein 1|protein disulfide isomerase family A, member 11|thioredoxin domain containing 1|thioredoxin domain-containing protein 1|transmembrane Trx-related protein 10 0.001369 10.06 1 1 +81543 LRRC3 leucine rich repeat containing 3 21 protein-coding C21orf102 leucine-rich repeat-containing protein 3 25 0.003422 5.256 1 1 +81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 11 protein-coding GDE2|PP1665 glycerophosphodiester phosphodiesterase domain-containing protein 5|glycerophosphodiester phosphodiesterase 2 32 0.00438 7.787 1 1 +81545 FBXO38 F-box protein 38 5 protein-coding Fbx38|HMN2D|MOKA|SP329 F-box only protein 38|modulator of KLF7 activity homolog 63 0.008623 9.474 1 1 +81550 TDRD3 tudor domain containing 3 13 protein-coding - tudor domain-containing protein 3 66 0.009034 8.363 1 1 +81551 STMN4 stathmin 4 8 protein-coding RB3 stathmin-4|stathmin-like 4|stathmin-like protein B3|stathmin-like-protein RB3 27 0.003696 1.838 1 1 +81552 VOPP1 vesicular, overexpressed in cancer, prosurvival protein 1 7 protein-coding ECOP|GASP vesicular, overexpressed in cancer, prosurvival protein 1|EGFR-coamplified and overexpressed protein|Glioblastoma-amplified secreted protein|hypothetical protein DKFZp564K0822|putative NF-kappa-B-activating protein 055N 6 0.0008212 10.15 1 1 +81553 FAM49A family with sequence similarity 49 member A 2 protein-coding - protein FAM49A 39 0.005338 6.531 1 1 +81554 RCC1L RCC1 like 7 protein-coding WBSCR16 Williams-Beuren syndrome chromosomal region 16 protein|RCC1-like G exchanging factor-like protein|Williams-Beuren syndrome chromosome region 16 5 0.0006844 10.11 1 1 +81555 YIPF5 Yip1 domain family member 5 5 protein-coding FinGER5|SB140|SMAP-5|SMAP5|YIP1A protein YIPF5|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|smooth muscle cell associated protein 5 14 0.001916 9.943 1 1 +81556 VWA9 von Willebrand factor A domain containing 9 15 protein-coding C15orf44 von Willebrand factor A domain-containing protein 9|UPF0464 protein C15orf44 19 0.002601 9.834 1 1 +81557 MAGED4B MAGE family member D4B X protein-coding - melanoma-associated antigen D4|MAGE-D4 antigen|MAGE-E1 antigen|melanoma antigen family D, 4B|melanoma antigen family D4B 2 0.0002737 7.838 1 1 +81558 FAM117A family with sequence similarity 117 member A 17 protein-coding - protein FAM117A|C/EBP-induced protein 27 0.003696 8.299 1 1 +81559 TRIM11 tripartite motif containing 11 1 protein-coding BIA1|RNF92 E3 ubiquitin-protein ligase TRIM11|RING finger protein 92|tripartite motif-containing protein 11 36 0.004927 9.322 1 1 +81562 LMAN2L lectin, mannose binding 2 like 2 protein-coding MRT52|VIPL VIP36-like protein|LMAN2-like protein 23 0.003148 9.357 1 1 +81563 C1orf21 chromosome 1 open reading frame 21 1 protein-coding PIG13 uncharacterized protein C1orf21|cell proliferation-inducing gene 13 protein|proliferation-inducing protein 13 8 0.001095 9.846 1 1 +81565 NDEL1 nudE neurodevelopment protein 1 like 1 17 protein-coding EOPA|MITAP1|NDE1L1|NDE2|NUDEL nuclear distribution protein nudE-like 1|endooligopeptidase A|mitosin-associated protein 1|mitosin-associated protein MITAP1|nudE nuclear distribution E homolog-like 1|nudE nuclear distribution gene E homolog-like 1|protein Nudel 16 0.00219 9.675 1 1 +81566 CSRNP2 cysteine and serine rich nuclear protein 2 12 protein-coding C12orf2|C12orf22|FAM130A1|PPP1R72|TAIP-12 cysteine/serine-rich nuclear protein 2|CSRNP-2|TGF-beta-induced apoptosis protein 12|family with sequence similarity 130, member A1|protein phosphatase 1, regulatory subunit 72 38 0.005201 9.601 1 1 +81567 TXNDC5 thioredoxin domain containing 5 6 protein-coding ENDOPDI|ERP46|HCC-2|HCC2|PDIA15|STRF8|UNQ364 thioredoxin domain-containing protein 5|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 5 (endoplasmic reticulum)|thioredoxin related protein|thioredoxin-like protein p46 19 0.002601 12.25 1 1 +81569 ACTL8 actin like 8 1 protein-coding CT57 actin-like protein 8|actin like protein|cancer/testis antigen 57 44 0.006022 1.756 1 1 +81570 CLPB ClpB homolog, mitochondrial AAA ATPase chaperonin 11 protein-coding ANKCLB|HSP78|MEGCANN|MGCA7|SKD3 caseinolytic peptidase B protein homolog|ClpB caseinolytic peptidase B homolog|ankyrin-repeat containing bacterial clp fusion|suppressor of potassium transport defect 3|testicular secretory protein Li 11 41 0.005612 8.491 1 1 +81571 MIR600HG MIR600 host gene 9 ncRNA C9orf45|GL012|NCRNA00287 MIR600 host gene (non-protein coding) 9 0.001232 6.671 1 1 +81572 PDRG1 p53 and DNA damage regulated 1 20 protein-coding C20orf126|PDRG p53 and DNA damage-regulated protein 1 11 0.001506 9.021 1 1 +81573 ANKRD13C ankyrin repeat domain 13C 1 protein-coding dJ677H15.3 ankyrin repeat domain-containing protein 13C 33 0.004517 8.994 1 1 +81575 APOLD1 apolipoprotein L domain containing 1 12 protein-coding VERGE apolipoprotein L domain-containing protein 1|vascular early response gene protein 13 0.001779 9.124 1 1 +81576 CCDC130 coiled-coil domain containing 130 19 protein-coding - coiled-coil domain-containing protein 130|9 kDa protein 21 0.002874 8.839 1 1 +81577 GFOD2 glucose-fructose oxidoreductase domain containing 2 16 protein-coding - glucose-fructose oxidoreductase domain-containing protein 2 31 0.004243 9.181 1 1 +81578 COL21A1 collagen type XXI alpha 1 chain 6 protein-coding COLA1L|FP633 collagen alpha-1(XXI) chain|alpha 1 chain-like collagen|collagen, type XXI, alpha 1 110 0.01506 5.081 1 1 +81579 PLA2G12A phospholipase A2 group XIIA 4 protein-coding GXII|PLA2G12|ROSSY group XIIA secretory phospholipase A2|GXII sPLA2|group XII secreted phospholipase A2|group XIIA secreted phospholipase A2|phosphatidylcholine 2-acylhydrolase 12A|phospholipase A2, group XII|sPLA2-XII 10 0.001369 9.567 1 1 +81602 CDADC1 cytidine and dCMP deaminase domain containing 1 13 protein-coding NYD-SP15|bA103J18.1 cytidine and dCMP deaminase domain-containing protein 1|protein kinase NYD-SP15|testis development protein NYD-SP15 24 0.003285 7.219 1 1 +81603 TRIM8 tripartite motif containing 8 10 protein-coding GERP|RNF27 probable E3 ubiquitin-protein ligase TRIM8|glioblastoma-expressed RING finger protein|ring finger protein 27|tripartite motif protein TRIM8 34 0.004654 11.21 1 1 +81605 URM1 ubiquitin related modifier 1 9 protein-coding C9orf74 ubiquitin-related modifier 1|ubiquitin-related modifier 1 homolog 14 0.001916 10.32 1 1 +81606 LBH limb bud and heart development 2 protein-coding - protein LBH|hLBH|limb bud and heart development homolog 10 0.001369 10.5 1 1 +81607 NECTIN4 nectin cell adhesion molecule 4 1 protein-coding EDSS1|LNIR|PRR4|PVRL4|nectin-4 nectin-4|Ig superfamily receptor LNIR|nectin 4|poliovirus receptor-related 4|poliovirus receptor-related protein 4 40 0.005475 7.571 1 1 +81608 FIP1L1 factor interacting with PAPOLA and CPSF1 4 protein-coding FIP1|Rhe|hFip1 pre-mRNA 3'-end-processing factor FIP1|FIP1 like 1|FIP1-like 1 protein|FIP1L1 cleavage and polyadenylation specific factor subunit|factor interacting with PAP|rearranged in hypereosinophilia 45 0.006159 9.501 1 1 +81609 SNX27 sorting nexin family member 27 1 protein-coding MRT1|MY014 sorting nexin-27|methamphetamine-responsive transcript 1 44 0.006022 10.14 1 1 +81610 FAM83D family with sequence similarity 83 member D 20 protein-coding C20orf129|CHICA|dJ616B8.3 protein FAM83D|spindle protein CHICA 55 0.007528 7.83 1 1 +81611 ANP32E acidic nuclear phosphoprotein 32 family member E 1 protein-coding LANP-L|LANPL acidic leucine-rich nuclear phosphoprotein 32 family member E|LANP-like protein|acidic (leucine-rich) nuclear phosphoprotein 32 family, member E|leucine-rich acidic nuclear protein like 21 0.002874 10.5 1 1 +81614 NIPA2 non imprinted in Prader-Willi/Angelman syndrome 2 15 protein-coding - magnesium transporter NIPA2|non-imprinted in Prader-Willi/Angelman syndrome region protein 2 27 0.003696 10.06 1 1 +81615 TMEM163 transmembrane protein 163 2 protein-coding DC29|SV31 transmembrane protein 163 15 0.002053 5.939 1 1 +81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 19 protein-coding BGR|BRGL|PRTD-NY3|PRTDNY3 long-chain-fatty-acid--CoA ligase ACSBG2|bubblegum-related protein|testicular tissue protein Li 8 50 0.006844 1.03 1 1 +81617 CAB39L calcium binding protein 39 like 13 protein-coding MO25-BETA|MO2L|bA103J18.3 calcium-binding protein 39-like|MO25beta|U937-associated antigen|antigen MLAA-34|mo25-like protein|sarcoma antigen NY-SAR-79 32 0.00438 8.361 1 1 +81618 ITM2C integral membrane protein 2C 2 protein-coding BRI3|BRICD2C|E25|E25C|ITM3 integral membrane protein 2C|BRICHOS domain containing 2C|cerebral protein 14|integral membrane protein 3|transmembrane protein BRI3 17 0.002327 11.52 1 1 +81619 TSPAN14 tetraspanin 14 10 protein-coding DC-TM4F2|TM4SF14 tetraspanin-14|tetraspanin similar to TM4SF9|transmembrane 4 superfamily member 14|tspan-14 19 0.002601 11.21 1 1 +81620 CDT1 chromatin licensing and DNA replication factor 1 16 protein-coding DUP|RIS2 DNA replication factor Cdt1|Double parked, Drosophila, homolog of 29 0.003969 8.259 1 1 +81621 KAZALD1 Kazal type serine peptidase inhibitor domain 1 10 protein-coding BONO1|FKSG28|FKSG40|IGFBP-rP10 kazal-type serine protease inhibitor domain-containing protein 1|IGFBP-related protein 10|bone- and odontoblast-expressed gene 1|novel kazal-type serine protease inhibitor domain and immunoglobulin domain containing protein 14 0.001916 5.862 1 1 +81622 UNC93B1 unc-93 homolog B1 (C. elegans) 11 protein-coding IIAE1|UNC93|UNC93B|Unc-93B1 protein unc-93 homolog B1|unc-93 related protein|unc93 homolog B1 35 0.004791 9.677 1 1 +81623 DEFB126 defensin beta 126 20 protein-coding C20orf8|DEFB-26|DEFB26|HBD26|bA530N10.1|hBD-26 beta-defensin 126|epididymal secretory protein ESP13.2 11 0.001506 0.4151 1 1 +81624 DIAPH3 diaphanous related formin 3 13 protein-coding AN|AUNA1|DIA2|DRF3|NSDAN|diap3|mDia2 protein diaphanous homolog 3|diaphanous homolog 3 103 0.0141 6.625 1 1 +81626 SHCBP1L SHC binding and spindle associated 1 like 1 protein-coding C1orf14|GE36 testicular spindle-associated protein SHCBP1L|SHC SH2 domain-binding protein 1-like protein|SHC SH2-domain binding protein 1-like 47 0.006433 0.309 1 1 +81627 TRMT1L tRNA methyltransferase 1 like 1 protein-coding C1orf25|MST070|MSTP070|TRM1L|bG120K12.3 TRMT1-like protein|TRM1 tRNA methyltransferase 1-like|TRM1-like protein|tRNA methyltransferase 1 homolog (S. cerevisiae)-like 42 0.005749 9.026 1 1 +81628 TSC22D4 TSC22 domain family member 4 7 protein-coding THG-1|THG1|TILZ2 TSC22 domain family protein 4|TSC22-related-inducible leucine zipper protein 2|tsc-22-like protein THG-1 20 0.002737 10.54 1 1 +81629 TSSK3 testis specific serine kinase 3 1 protein-coding SPOGA3|STK22C|STK22D|TSK3 testis-specific serine/threonine-protein kinase 3|TSK-3|TSSK-3|serine/threonine-protein kinase 22C|spermiogenesis associated 3|testis-specific kinase 3|testis-specific serine/threonine kinase 22C 15 0.002053 4.353 1 1 +81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta 16 protein-coding ATG8F|LC3B|MAP1A/1BLC3|MAP1LC3B-a microtubule-associated proteins 1A/1B light chain 3B|MAP1 light chain 3-like protein 2|MAP1A/MAP1B LC3 B|MAP1A/MAP1B light chain 3 B|autophagy-related ubiquitin-like modifier LC3 B 5 0.0006844 10.91 1 1 +81669 CCNL2 cyclin L2 1 protein-coding ANIA-6B|CCNM|CCNS|HCLA-ISO|HLA-ISO|PCEE|SB138 cyclin-L2|cyclin M|cyclin S|paneth cell-enhanced expression protein 46 0.006296 10.8 1 1 +81671 VMP1 vacuole membrane protein 1 17 protein-coding EPG3|TANGO5|TMEM49 vacuole membrane protein 1|ectopic P-granules autophagy protein 3 homolog|transmembrane protein 49|transport and golgi organization 5 homolog 33 0.004517 11.14 1 1 +81688 C6orf62 chromosome 6 open reading frame 62 6 protein-coding Nbla00237|XTP12|dJ30M3.2 uncharacterized protein C6orf62|HBV X-transactivated gene 12 protein|HBV X-transactivated protein 12|HBV XAg-transactivated protein 12 27 0.003696 11.68 1 1 +81689 ISCA1 iron-sulfur cluster assembly 1 9 protein-coding HBLD2|ISA1|hIscA iron-sulfur cluster assembly 1 homolog, mitochondrial|HESB like domain containing 2|HESB-like domain-containing protein 2|iron-sulfur assembly protein IscA 6 0.0008212 9.417 1 1 +81691 LOC81691 exonuclease NEF-sp 16 protein-coding - putative RNA exonuclease NEF-sp 13 0.001779 6.627 1 1 +81693 AMN amnion associated transmembrane protein 14 protein-coding PRO1028|amnionless protein amnionless|amnionless homolog|visceral endoderm-specific type 1 transmembrane protein 20 0.002737 4.283 1 1 +81696 OR5V1 olfactory receptor family 5 subfamily V member 1 6 protein-coding 6M1-21|hs6M1-21 olfactory receptor 5V1|olfactory receptor OR6-26 53 0.007254 0.0298 1 1 +81697 OR2B2 olfactory receptor family 2 subfamily B member 2 6 protein-coding OR2B2Q|OR2B9|OR6-1|dJ193B12.4|hs6M1-10 olfactory receptor 2B2|olfactory receptor 2B9|olfactory receptor 6-1|olfactory receptor OR6-2|olfactory receptor, family 2, subfamily B, member 9 39 0.005338 0.1166 1 1 +81698 LINC00597 long intergenic non-protein coding RNA 597 15 ncRNA C15orf5 - 0.4745 0 1 +81704 DOCK8 dedicator of cytokinesis 8 9 protein-coding HEL-205|MRD2|ZIR8 dedicator of cytokinesis protein 8|1200017A24Rik|epididymis luminal protein 205 138 0.01889 8.882 1 1 +81706 PPP1R14C protein phosphatase 1 regulatory inhibitor subunit 14C 6 protein-coding CPI17-like|KEPI|NY-BR-81 protein phosphatase 1 regulatory subunit 14C|PKC-potentiated PP1 inhibitory protein|kinase C-enhanced PP1 inhibitor|kinase-enhanced PP1 inhibitor|serologically defined breast cancer antigen NY-BR-81 6 0.0008212 6.511 1 1 +81786 TRIM7 tripartite motif containing 7 5 protein-coding GNIP|RNF90 tripartite motif-containing protein 7|RING finger protein 90|glycogenin-interacting protein|tripartite motif protein TRIM7 43 0.005886 5.679 1 1 +81788 NUAK2 NUAK family kinase 2 1 protein-coding SNARK NUAK family SNF1-like kinase 2|NUAK family, SNF1-like kinase, 2|SNF1/AMP activated protein kinase|SNF1/AMP kinase-related kinase|omphalocele kinase 2 46 0.006296 8.023 1 1 +81789 TIGD6 tigger transposable element derived 6 5 protein-coding - tigger transposable element-derived protein 6 16 0.00219 7.269 1 1 +81790 RNF170 ring finger protein 170 8 protein-coding ADSA|SNAX1 E3 ubiquitin-protein ligase RNF170|putative LAG1-interacting protein 8 0.001095 9.022 1 1 +81792 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif 12 5 protein-coding PRO4389 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 282 0.0386 5.722 1 1 +81793 TLR10 toll like receptor 10 4 protein-coding CD290 toll-like receptor 10 64 0.00876 3.997 1 1 +81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 19 protein-coding ADAM-TS10|ADAMTS-10|WMS|WMS1 A disintegrin and metalloproteinase with thrombospondin motifs 10|ADAM-TS 10|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 10|zinc metalloendopeptidase 86 0.01177 6.677 1 1 +81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 8 protein-coding OATP-J|OATP-RP4|OATP5A1|OATPJ|OATPRP4|SLC21A15 solute carrier organic anion transporter family member 5A1|organic anion transporter polypeptide-related protein 4|solute carrier family 21 (organic anion transporter), member 15|solute carrier family 21 member 15 119 0.01629 3.509 1 1 +81797 OR12D3 olfactory receptor family 12 subfamily D member 3 6 protein-coding hs6M1-27 olfactory receptor 12D3|olfactory receptor OR6-27 31 0.004243 0.03642 1 1 +81831 NETO2 neuropilin and tolloid like 2 16 protein-coding BTCL2|NEOT2 neuropilin and tolloid-like protein 2|brain-specific transmembrane protein containing 2 CUB and 1 LDL-receptor class A domains protein 2|neuropilin (NRP) and tolloid (TLL)-like 2 37 0.005064 8.127 1 1 +81832 NETO1 neuropilin and tolloid like 1 18 protein-coding BCTL1|BTCL1 neuropilin and tolloid-like protein 1|brain-specific transmembrane protein containing 2 CUB and 1 LDL-receptor class A domains protein 1|neuropilin (NRP) and tolloid (TLL)-like 1 106 0.01451 2.438 1 1 +81833 SPACA1 sperm acrosome associated 1 6 protein-coding SAMP32 sperm acrosome membrane-associated protein 1|sperm acrosomal membrane-associated protein 32 40 0.005475 0.1375 1 1 +81839 VANGL1 VANGL planar cell polarity protein 1 1 protein-coding KITENIN|LPP2|STB2|STBM2 vang-like protein 1|KAI1 C-terminal interacting tetraspanin|loop-tail protein 2 homolog|strabismus 2|van Gogh-like protein 1|vang-like 1 (van gogh, Drosophila) 39 0.005338 9.297 1 1 +81844 TRIM56 tripartite motif containing 56 7 protein-coding RNF109 E3 ubiquitin-protein ligase TRIM56|RING finger protein 109|tripartite motif-containing protein 56 54 0.007391 8.078 1 1 +81846 SBF2 SET binding factor 2 11 protein-coding CMT4B2|DENND7B|MTMR13 myotubularin-related protein 13|DENN/MADD domain containing 7B 104 0.01423 9.571 1 1 +81847 RNF146 ring finger protein 146 6 protein-coding - E3 ubiquitin-protein ligase RNF146|dactylidin|iduna 24 0.003285 9.275 1 1 +81848 SPRY4 sprouty RTK signaling antagonist 4 5 protein-coding HH17 protein sprouty homolog 4|sprouty homolog 4 26 0.003559 9.412 1 1 +81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 1 protein-coding SIAT7-E|SIAT7E|ST6GalNAcV alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5|GD1 alpha synthase|GalNAc alpha-2,6-sialyltransferase V|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5|ST6 GalNAc alpha-2,6-sialyltransferase 5|ST6 neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5|ST6GalNAc V|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 7E 46 0.006296 5.482 1 1 +81850 KRTAP1-3 keratin associated protein 1-3 17 protein-coding KAP1.2|KAP1.3|KAP1.6|KAP1.8A|KAP1.8B|KAP1.9|KRTAP1.3 keratin-associated protein 1-3|keratin associated protein 1.6|keratin-associated protein 1.8|keratin-associated protein 1.9 23 0.003148 0.06505 1 1 +81851 KRTAP1-1 keratin associated protein 1-1 17 protein-coding HB2A|KAP1.1|KAP1.1A|KAP1.1B|KAP1.6|KAP1.7|KRTAP1.1|KRTAP1A|hKAP1.7 keratin-associated protein 1-1|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.6 23 0.003148 0.2913 1 1 +81853 TMEM14B transmembrane protein 14B 6 protein-coding - transmembrane protein 14B 14 0.001916 9.861 1 1 +81854 ZNF205-AS1 ZNF205 antisense RNA 1 16 ncRNA - - 3.429 0 1 +81855 SFXN3 sideroflexin 3 10 protein-coding BA108L7.2|SFX3 sideroflexin-3 14 0.001916 9.748 1 1 +81856 ZNF611 zinc finger protein 611 19 protein-coding - zinc finger protein 611 57 0.007802 7.137 1 1 +81857 MED25 mediator complex subunit 25 19 protein-coding ACID1|ARC92|BVSYS|CMT2B2|P78|PTOV2|TCBAP0758 mediator of RNA polymerase II transcription subunit 25|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 homolog|prostate-derived protein 78 kDa 51 0.006981 10.13 1 1 +81858 SHARPIN SHANK associated RH domain interactor 8 protein-coding SIPL1 sharpin|hSIPL1|shank-associated RH domain-interacting protein|shank-interacting protein-like 1 17 0.002327 10.3 1 1 +81870 KRTAP9-9 keratin associated protein 9-9 17 protein-coding KAP9.5|KAP9.9|KRTAP9-5|KRTAP9.9 keratin-associated protein 9-9|keratin-associated protein 9-5|keratin-associated protein 9.5|ultrahigh sulfur keratin-associated protein 9.9 27 0.003696 0.01547 1 1 +81871 KRTAP4-6 keratin associated protein 4-6 17 protein-coding KAP4.15|KAP4.6|KRTAP4-15|KRTAP4.15 keratin-associated protein 4-6|keratin associated protein 4-15|keratin-associated protein 4.6|ultrahigh sulfur keratin-associated protein 4.15 56 0.007665 1 0 +81872 KRTAP2-1 keratin associated protein 2-1 17 protein-coding KAP2.1A|KRTAP2.1A keratin-associated protein 2-1|high sulfur keratin-associated protein 2.1|keratin associated protein KRTAP2.1A|keratin-associated protein 2.1 2 0.0002737 0.2022 1 1 +81873 ARPC5L actin related protein 2/3 complex subunit 5 like 9 protein-coding ARC16-2 actin-related protein 2/3 complex subunit 5-like protein|arp2/3 complex 16 kDa subunit 2 8 0.001095 9.863 1 1 +81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 1 protein-coding HSD38 interferon-stimulated 20 kDa exonuclease-like 2|interferon stimulated exonuclease gene 20kDa like 2 40 0.005475 9.398 1 1 +81876 RAB1B RAB1B, member RAS oncogene family 11 protein-coding - ras-related protein Rab-1B|small GTP-binding protein 11 0.001506 12.31 1 1 +81887 LAS1L LAS1 like, ribosome biogenesis factor X protein-coding Las1-like|WTS|dJ475B7.2 ribosomal biogenesis protein LAS1L|protein LAS1 homolog 52 0.007117 9.93 1 1 +81888 HYI hydroxypyruvate isomerase (putative) 1 protein-coding HT036 putative hydroxypyruvate isomerase|endothelial cell apoptosis protein E-CE1|hydroxypyruvate isomerase homolog 11 0.001506 8.392 1 1 +81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 16 protein-coding C16orf36|YISKL acylpyruvase FAHD1, mitochondrial|FAH domain-containing protein 1|OAA decarboxylase|YISK like/RJD15|acylpyruvate hydrolase|fumarylacetoacetate hydrolase domain-containing protein 1|oxaloacetate decarboxylase|yisK-like protein 6 0.0008212 9.407 1 1 +81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 19 protein-coding FP3235|TGT|TGUT queuine tRNA-ribosyltransferase|TGT, 43-KD subunit|TGT, catalytic subunit|guanine insertion enzyme|queuine tRNA-ribosyltransferase 1|tRNA-guanine transglycosylase 26 0.003559 9.321 1 1 +81892 SLIRP SRA stem-loop interacting RNA binding protein 14 protein-coding C14orf156|DC50|PD04872 SRA stem-loop-interacting RNA-binding protein, mitochondrial 6 0.0008212 9.276 1 1 +81893 SLC7A5P1 solute carrier family 7 member 5 pseudogene 1 16 pseudo DC49|LAT1-3TM|MLAS|hLAT1-3TM SLC7A5 pseudogene|hLAT1 3-transmembrane protein MLAS|putative L-type amino acid transporter 1-like protein MLAS|solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 1|solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 pseudogene 1 2 0.0002737 0.986 1 1 +81894 SLC25A28 solute carrier family 25 member 28 10 protein-coding MFRN2|MRS3/4|MRS4L|NPD016 mitoferrin-2|hMRS3/4|mitochondrial RNA splicing protein 3/4|mitochondrial RNA-splicing protein 3/4 homolog|mitochondrial iron transporter 2|putative mitochondrial solute carrier|solute carrier family 25 (mitochondrial iron transporter), member 28 20 0.002737 9.318 1 1 +81926 ABHD17A abhydrolase domain containing 17A 19 protein-coding C19orf27|FAM108A1 protein ABHD17A|abhydrolase domain-containing protein 17A|abhydrolase domain-containing protein FAM108A1|alpha/beta hydrolase domain-containing protein 17A|family with sequence similarity 108, member A1 19 0.002601 9.225 1 1 +81928 CABLES2 Cdk5 and Abl enzyme substrate 2 20 protein-coding C20orf150|dJ908M14.2|ik3-2 CDK5 and ABL1 enzyme substrate 2|interactor with CDK3 2 25 0.003422 8.167 1 1 +81929 SEH1L SEH1 like nucleoporin 18 protein-coding SEC13L|SEH1A|SEH1B|Seh1 nucleoporin SEH1|SEC13-like protein|nup107-160 subcomplex subunit SEH1|sec13 like protein 19 0.002601 9.746 1 1 +81930 KIF18A kinesin family member 18A 11 protein-coding MS-KIF18A|PPP1R99 kinesin-like protein KIF18A|protein phosphatase 1, regulatory subunit 99 61 0.008349 6.54 1 1 +81931 ZNF93 zinc finger protein 93 19 protein-coding HPF34|HTF34|TF34|ZNF505 zinc finger protein 93|zinc finger protein 505|zinc finger protein HTF34 56 0.007665 5.914 1 1 +81932 HDHD3 haloacid dehalogenase like hydrolase domain containing 3 9 protein-coding 2810435D12Rik|C9orf158 haloacid dehalogenase-like hydrolase domain-containing protein 3 15 0.002053 9.069 1 1 +83259 PCDH11Y protocadherin 11 Y-linked Y protein-coding PCDH-PC|PCDH22|PCDHX|PCDHY protocadherin-11 Y-linked|protocadherin 22|protocadherin on the Y chromosome|protocadherin prostate cancer|protocadherin-PC 71 0.009718 0.8462 1 1 +83394 PITPNM3 PITPNM family member 3 17 protein-coding ACKR6|CORD5|NIR1|RDGBA3 membrane-associated phosphatidylinositol transfer protein 3|NIR-1|PITPnm 3|PYK2 N-terminal domain-interacting receptor 1|atypical chemokine receptor 6|cone rod dystrophy 5|phosphatidylinositol transfer protein, membrane-associated 3|retinal degeneration B alpha 3 70 0.009581 7.148 1 1 +83401 ELOVL3 ELOVL fatty acid elongase 3 10 protein-coding CIG-30|CIG30 elongation of very long chain fatty acids protein 3|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|very long chain 3-ketoacyl-CoA synthase 3|very long chain 3-oxoacyl-CoA synthase 3 24 0.003285 2.579 1 1 +83416 FCRL5 Fc receptor like 5 1 protein-coding BXMAS1|CD307|CD307e|FCRH5|IRTA2|PRO820 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) 133 0.0182 3.949 1 1 +83417 FCRL4 Fc receptor like 4 1 protein-coding CD307d|FCRH4|IGFP2|IRTA1 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 67 0.009171 0.9972 1 1 +83439 TCF7L1 transcription factor 7 like 1 2 protein-coding TCF-3|TCF3 transcription factor 7-like 1|HMG box transcription factor 3|transcription factor 7-like 1 (T-cell specific, HMG-box) 39 0.005338 8.417 1 1 +83440 ADPGK ADP dependent glucokinase 15 protein-coding 2610017G09Rik|ADP-GK ADP-dependent glucokinase|ATP-dependent glucokinase|rbBP-35 26 0.003559 10 1 1 +83442 SH3BGRL3 SH3 domain binding glutamate rich protein like 3 1 protein-coding HEL-S-297|SH3BP-1|TIP-B1 SH3 domain-binding glutamic acid-rich-like protein 3|SH3 domain binding glutamic acid-rich protein like 3|SH3 domain-binding protein 1|SH3BGRL3-like protein|TNF inhibitory protein|epididymis secretory protein Li 297 5 0.0006844 11.96 1 1 +83443 SF3B5 splicing factor 3b subunit 5 6 protein-coding SF3b10|Ysf3 splicing factor 3B subunit 5|pre-mRNA-splicing factor SF3b 10 kDa subunit|splicing factor 3b, subunit 5, 10kDa 8 0.001095 10.54 1 1 +83444 INO80B INO80 complex subunit B 2 protein-coding HMGA1L4|HMGIYL4|IES2|PAP-1BP|PAPA-1|PAPA1|ZNHIT4|hIes2 INO80 complex subunit B|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 20 0.002737 8.43 1 1 +83445 GSG1 germ cell associated 1 12 protein-coding - germ cell-specific gene 1 protein|testicular secretory protein Li 20 31 0.004243 0.6626 1 1 +83446 CCDC70 coiled-coil domain containing 70 13 protein-coding - coiled-coil domain-containing protein 70 33 0.004517 0.09106 1 1 +83447 SLC25A31 solute carrier family 25 member 31 4 protein-coding AAC4|ANT 4|ANT4|SFEC35kDa ADP/ATP translocase 4|ADP,ATP carrier protein 4|adenine nucleotide translocase 4|adenine nucleotide translocator 4|solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31|sperm flagellar energy carrier protein 27 0.003696 0.2322 1 1 +83448 PUS7L pseudouridylate synthase 7 like 12 protein-coding - pseudouridylate synthase 7 homolog-like protein|pseudouridylate synthase 7 homolog (S. cerevisiae)-like 43 0.005886 7.297 1 1 +83449 PMFBP1 polyamine modulated factor 1 binding protein 1 16 protein-coding - polyamine-modulated factor 1-binding protein 1|PMF-1 binding protein 96 0.01314 3.024 1 1 +83450 DRC3 dynein regulatory complex subunit 3 17 protein-coding CFAP134|LRRC48 dynein regulatory complex subunit 3|leucine rich repeat containing 48|leucine-rich repeat-containing protein 48 28 0.003832 5.085 1 1 +83451 ABHD11 abhydrolase domain containing 11 7 protein-coding PP1226|WBSCR21 protein ABHD11|Williams Beuren syndrome chromosome region 21|abhydrolase domain-containing protein 11|alpha/beta hydrolase domain-containing protein 11 16 0.00219 9.419 1 1 +83452 RAB33B RAB33B, member RAS oncogene family 4 protein-coding SMC2 ras-related protein Rab-33B 11 0.001506 7.953 1 1 +83460 EMC6 ER membrane protein complex subunit 6 17 protein-coding TMEM93 ER membrane protein complex subunit 6|transmembrane protein 93 2 0.0002737 8.511 1 1 +83461 CDCA3 cell division cycle associated 3 12 protein-coding GRCC8|TOME-1 cell division cycle-associated protein 3|gene-rich cluster protein C8|trigger of mitotic entry protein 1 15 0.002053 7.412 1 1 +83463 MXD3 MAX dimerization protein 3 5 protein-coding BHLHC13|MAD3|MYX max dimerization protein 3|Max-associated protein 3|Max-interacting transcriptional repressor MAD3|class C basic helix-loop-helix protein 13|max dimerizer 3 19 0.002601 7.753 1 1 +83464 APH1B aph-1 homolog B, gamma-secretase subunit 15 protein-coding APH-1B|PRO1328|PSFL|TAAV688 gamma-secretase subunit APH-1B|APH1B gamma secretase subunit|anterior pharynx defective 1 homolog B|aph-1beta 13 0.001779 8.543 1 1 +83468 GLT8D2 glycosyltransferase 8 domain containing 2 12 protein-coding - glycosyltransferase 8 domain-containing protein 2 30 0.004106 6.809 1 1 +83473 KATNAL2 katanin catalytic subunit A1 like 2 18 protein-coding - katanin p60 ATPase-containing subunit A-like 2|katanin catalytic subunit A like 2|katanin p60 subunit A like 2|p60 katanin-like 2 42 0.005749 5.561 1 1 +83475 DOHH deoxyhypusine hydroxylase/monooxygenase 19 protein-coding HLRC1|hDOHH deoxyhypusine hydroxylase|HEAT-like (PBS lyase) repeat containing 1|HEAT-like repeat-containing protein 1|deoxyhypusine dioxygenase|deoxyhypusine monooxygenase 9 0.001232 8.288 1 1 +83478 ARHGAP24 Rho GTPase activating protein 24 4 protein-coding FILGAP|RC-GAP72|RCGAP72|p73|p73RhoGAP rho GTPase-activating protein 24|RAC1- and CDC42-specific GTPase-activating protein of 72 kDa|filamin-A-associated RhoGAP|rhoGAP of 73 kDa|sarcoma antigen NY-SAR-88 48 0.00657 7.788 1 1 +83479 DDX59 DEAD-box helicase 59 1 protein-coding OFD5|ZNHIT5 probable ATP-dependent RNA helicase DDX59|DEAD (Asp-Glu-Ala-Asp) box polypeptide 59|DEAD box protein 59|zinc finger HIT domain-containing protein 5 52 0.007117 8.453 1 1 +83480 PUS3 pseudouridylate synthase 3 11 protein-coding 2610020J05Rik|FKSG32|MRT55 tRNA pseudouridine(38/39) synthase|tRNA pseudouridine synthase 3|tRNA pseudouridylate synthase 3|tRNA-uridine isomerase 3 27 0.003696 7.778 1 1 +83481 EPPK1 epiplakin 1 8 protein-coding EPIPL|EPIPL1 epiplakin|450 kDa epidermal antigen|epidermal autoantigen 450K 181 0.02477 7.883 1 1 +83482 SCRT1 scratch family transcriptional repressor 1 8 protein-coding SCRT|ZNF898 transcriptional repressor scratch 1|scratch family zinc finger 1|scratch homolog 1, zinc finger protein 13 0.001779 1.796 1 1 +83483 PLVAP plasmalemma vesicle associated protein 19 protein-coding FELS|PV-1|PV1|gp68 plasmalemma vesicle-associated protein|fenestrated endothelial-linked structure protein|fenestrated-endothelial linked structure protein; PV-1 protein|plasmalemma vesicle protein 1 52 0.007117 10.68 1 1 +83538 TTC25 tetratricopeptide repeat domain 25 17 protein-coding CILD35 tetratricopeptide repeat protein 25|TPR repeat protein 25 58 0.007939 4.53 1 1 +83539 CHST9 carbohydrate sulfotransferase 9 18 protein-coding GALNAC4ST-2|GalNAc4ST2 carbohydrate sulfotransferase 9|GalNAc-4-sulfotransferase 2|N-acetylgalactosamine 4-O-sulfotransferase 2|carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9|galNAc-4-O-sulfotransferase 2 43 0.005886 4.268 1 1 +83540 NUF2 NUF2, NDC80 kinetochore complex component 1 protein-coding CDCA1|CT106|NUF2R kinetochore protein Nuf2|NUF2, NDC80 kinetochore complex component, homolog|cancer/testis antigen 106|cell division cycle associated 1|cell division cycle-associated protein 1|hNuf2|hNuf2R|hsNuf2 50 0.006844 7.099 1 1 +83541 FAM110A family with sequence similarity 110 member A 20 protein-coding C20orf55|F10|bA371L19.3 protein FAM110A 11 0.001506 8.512 1 1 +83543 AIF1L allograft inflammatory factor 1 like 9 protein-coding C9orf58|IBA2 allograft inflammatory factor 1-like|ionized calcium binding adapter molecule 2 6 0.0008212 9.191 1 1 +83544 DNAL1 dynein axonemal light chain 1 14 protein-coding C14orf168|CILD16 dynein light chain 1, axonemal 15 0.002053 8.385 1 1 +83546 RTBDN retbindin 19 protein-coding - retbindin 24 0.003285 2.345 1 1 +83547 RILP Rab interacting lysosomal protein 17 protein-coding PP10141 rab-interacting lysosomal protein 15 0.002053 7.361 1 1 +83548 COG3 component of oligomeric golgi complex 3 13 protein-coding SEC34 conserved oligomeric Golgi complex subunit 3|COG complex subunit 3|p94|tethering factor SEC34|vesicle-docking protein SEC34 homolog 49 0.006707 9.377 1 1 +83549 UCK1 uridine-cytidine kinase 1 9 protein-coding URK1 uridine-cytidine kinase 1|cytidine monophosphokinase 1|uridine monophosphokinase 1 19 0.002601 9.556 1 1 +83550 GPR101 G protein-coupled receptor 101 X protein-coding GPCR6|PAGH2 probable G-protein coupled receptor 101 68 0.009307 0.1488 1 1 +83551 TAAR8 trace amine associated receptor 8 6 protein-coding GPR102|TA5|TAR5|TRAR5|TaR-5|TaR-8 trace amine-associated receptor 8|G-protein coupled receptor 102|trace amine receptor 5|trace amine receptor 8 20 0.002737 0.04582 1 1 +83552 MFRP membrane frizzled-related protein 11 protein-coding MCOP5|NNO2|RD6 membrane frizzled-related protein|membrane-type frizzled-related protein 48 0.00657 8.783 1 1 +83590 TMUB1 transmembrane and ubiquitin like domain containing 1 7 protein-coding C7orf21|DULP|SB144 transmembrane and ubiquitin-like domain-containing protein 1|dendritic cell-derived ubiquitin-like protein|hepatocyte odd protein shuttling protein|ubiquitin-like protein DULP|ubiquitin-like protein SB144 8 0.001095 9.695 1 1 +83591 THAP2 THAP domain containing 2 12 protein-coding - THAP domain-containing protein 2|THAP domain containing, apoptosis associated protein 2 8 0.001095 6.85 1 1 +83592 AKR1E2 aldo-keto reductase family 1 member E2 10 protein-coding AKR1CL2|AKRDC1|LoopADR|hTSP|htAKR 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 26 0.003559 3.954 1 1 +83593 RASSF5 Ras association domain family member 5 1 protein-coding Maxp1|NORE1|NORE1A|NORE1B|RAPL|RASSF3 ras association domain-containing protein 5|Rap1-binding protein|Ras association (RalGDS/AF-6) domain family 5|Ras association (RalGDS/AF-6) domain family member 5|Ras effector-like protein|new ras effector 1|novel Ras effector 1|regulator for cell adhesion and polarization enriched in lymphoid tissue|tumor suppressor RASSF3 28 0.003832 8.892 1 1 +83594 NUDT12 nudix hydrolase 12 5 protein-coding - peroxisomal NADH pyrophosphatase NUDT12|nucleoside diphosphate linked moiety X-type motif 12|nucleoside diphosphate-linked moiety X motif 12|nudix (nucleoside diphosphate linked moiety X)-type motif 12|nudix motif 12 37 0.005064 8.28 1 1 +83595 SOX7 SRY-box 7 8 protein-coding - transcription factor SOX-7|SRY (sex determining region Y)-box 7 61 0.008349 7.046 1 1 +83596 BCL2L12 BCL2 like 12 19 protein-coding - bcl-2-like protein 12|BCL2-like 12 (proline rich)|Bcl-2 related proline-rich protein 18 0.002464 8.088 1 1 +83597 RTP3 receptor transporter protein 3 3 protein-coding LTM1|TMEM7|Z3CXXC3 receptor-transporting protein 3|3CxxC-type zinc finger protein 3|receptor (chemosensory) transporter protein 3|transmembrane protein 7|zinc finger, 3CxxC-type 3 22 0.003011 0.9085 1 1 +83604 TMEM47 transmembrane protein 47 X protein-coding BCMP1|TM4SF10 transmembrane protein 47|brain cell membrane protein 1|transmembrane 4 superfamily member 10 19 0.002601 8.788 1 1 +83605 CCM2 CCM2 scaffolding protein 7 protein-coding C7orf22|OSM|PP10187 cerebral cavernous malformations 2 protein|cerebral cavernous malformation 2|malcavernin|osmosensing scaffold for MEKK3 32 0.00438 10.17 1 1 +83606 GUCD1 guanylyl cyclase domain containing 1 22 protein-coding C22orf13|LLN4 protein GUCD1|CG13760 gene product [Drosophila melanogaster] homolog|guanylyl cyclase domain-containing protein 1 11 0.001506 11.05 1 1 +83607 AMMECR1L AMMECR1 like 2 protein-coding - AMMECR1-like protein|AMME chromosomal region gene 1-like 27 0.003696 9.425 1 1 +83608 C18orf21 chromosome 18 open reading frame 21 18 protein-coding HsT3108|PNAS-124|PNAS-131|XTP13 UPF0711 protein C18orf21|HBV X-transactivated gene 13 protein|HBV X-transactivated protein 13|HBV XAg-transactivated protein 13 7 0.0009581 7.951 1 1 +83636 C19orf12 chromosome 19 open reading frame 12 19 protein-coding NBIA3|NBIA4|SPG43 protein C19orf12|neurodegeneration with brain iron accumulation 3 15 0.002053 9.127 1 1 +83637 ZMIZ2 zinc finger MIZ-type containing 2 7 protein-coding NET27|TRAFIP20|ZIMP7|hZIMP7 zinc finger MIZ domain-containing protein 2|PIAS-like protein Zimp7 72 0.009855 11.29 1 1 +83638 C11orf68 chromosome 11 open reading frame 68 11 protein-coding BLES03|P5326 UPF0696 protein C11orf68|basophilic leukemia expressed protein BLES03|basophilic leukemia-expressed protein Bles03|protein p5326 10 0.001369 9.813 1 1 +83639 TEX101 testis expressed 101 19 protein-coding CT131|GTPR867|NYD-SP8|PRO1884|SGRG|SPATA44|TES101RP testis-expressed sequence 101 protein|cancer/testis antigen 131|cell surface receptor NYD-SP8|scleroderma-associated autoantigen|spermatogenesis associated 44|spermatogenesis-related gene protein|testis expressed sequence 101|testis-expressed protein 101|testis-specific protein TES101RP 22 0.003011 0.6377 1 1 +83640 FAM103A1 family with sequence similarity 103 member A1 15 protein-coding C15orf18|HsT19360|RAM RNMT-activating mini protein|protein FAM103A1 3 0.0004106 8.479 1 1 +83641 FAM107B family with sequence similarity 107 member B 10 protein-coding C10orf45 protein FAM107B 36 0.004927 10.34 1 1 +83642 SELENOO selenoprotein O 22 protein-coding SELO selenoprotein O 11 0.001506 8.924 1 1 +83643 CCDC3 coiled-coil domain containing 3 10 protein-coding - coiled-coil domain-containing protein 3|fat/vessel-derived secretory protein|favine 28 0.003832 8.345 1 1 +83647 LINC00529 long intergenic non-protein coding RNA 529 8 ncRNA C8orf8 - 7 0.0009581 1 0 +83648 FAM167A family with sequence similarity 167 member A 8 protein-coding C8orf13|D8S265 protein FAM167A 19 0.002601 6.638 1 1 +83650 SLC35G5 solute carrier family 35 member G5 8 protein-coding AMAC|AMAC1L2 solute carrier family 35 member G5|acyl-malonyl condensing enzyme 1-like 2|acyl-malonyl-condensing enzyme 1-like protein 2|protein AMAC1L2 44 0.006022 1.033 1 1 +83655 LINC00208 long intergenic non-protein coding RNA 208 8 ncRNA C8orf14|NCRNA00208|VIR35 - 1 0.0001369 1 0 +83656 FAM167A-AS1 FAM167A antisense RNA 1 8 ncRNA C8orf12 - 3 0.0004106 0.6725 1 1 +83657 DYNLRB2 dynein light chain roadblock-type 2 16 protein-coding DNCL2B|DNLC2B|ROBLD2 dynein light chain roadblock-type 2|bithoraxoid-like protein|dynein light chain 2B, cytoplasmic|dynein, cytoplasmic, light polypeptide 2B|roadblock domain-containing protein 2|testicular tissue protein Li 53 10 0.001369 2.648 1 1 +83658 DYNLRB1 dynein light chain roadblock-type 1 20 protein-coding BITH|BLP|DNCL2A|DNLC2A|ROBLD1 dynein light chain roadblock-type 1|ROBL/LC7-like 1|bithoraxoid-like protein|dynein, cytoplasmic, light polypeptide 2A|dynein-associated protein Km23|roadblock domain-containing protein 1 14 0.001916 11.28 1 1 +83659 TEKT1 tektin 1 17 protein-coding - tektin-1 39 0.005338 1.099 1 1 +83660 TLN2 talin 2 15 protein-coding ILWEQ talin-2 161 0.02204 9.156 1 1 +83661 MS4A8 membrane spanning 4-domains A8 11 protein-coding 4SPAN4|CD20L5|MS4A4|MS4A8B membrane-spanning 4-domains subfamily A member 8|four-span transmembrane protein 4|membrane-spanning 4-domains, subfamily A, member 8B 25 0.003422 2.364 1 1 +83666 PARP9 poly(ADP-ribose) polymerase family member 9 3 protein-coding ARTD9|BAL|BAL1|MGC:7868 poly [ADP-ribose] polymerase 9|ADP-ribosyltransferase diphtheria toxin-like 9|PARP-9|b aggressive lymphoma protein|poly (ADP-ribose) polymerase 9 49 0.006707 10.54 1 1 +83667 SESN2 sestrin 2 1 protein-coding HI95|SES2|SEST2 sestrin-2|hypoxia induced gene 95|hypoxia-induced 36 0.004927 8.834 1 1 +83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 8 protein-coding CRISP-10|CRISP10|LCRISP1 cysteine-rich secretory protein LCCL domain-containing 1|CocoaCrisp|LCCL domain-containing cysteine-rich secretory protein 1|cysteine-rich secretory protein 10|trypsin inhibitor Hl 79 0.01081 7.258 1 1 +83692 CD99L2 CD99 molecule like 2 X protein-coding CD99B|MIC2L1 CD99 antigen-like protein 2|MIC2 like 1|MIC2-like protein 1 32 0.00438 10.23 1 1 +83693 HSDL1 hydroxysteroid dehydrogenase like 1 16 protein-coding SDR12C3 inactive hydroxysteroid dehydrogenase-like protein 1|short chain dehydrogenase/reductase family 12C member 3|steroid dehydrogenase-like protein 17 0.002327 9.133 1 1 +83694 RPS6KL1 ribosomal protein S6 kinase like 1 14 protein-coding RSKL2 ribosomal protein S6 kinase-like 1 39 0.005338 6.153 1 1 +83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 12 protein-coding C12orf32|HKMT1188|RHINO RAD9, HUS1, RAD1-interacting nuclear orphan protein 1|Rad9, Rad1, Hus1 interacting nuclear orphan|rAD9, RAD1, HUS1-interacting nuclear orphan protein 12 0.001642 9.387 1 1 +83696 TRAPPC9 trafficking protein particle complex 9 8 protein-coding IBP|IKBKBBP|MRT13|NIBP|T1|TRS120 trafficking protein particle complex subunit 9|IKK2 binding protein|NIK and IKK-beta binding protein|NIK- and IKBKB-binding protein|TRAPP 120 kDa subunit|tularik gene 1 protein 86 0.01177 9.787 1 1 +83697 SLC4A9 solute carrier family 4 member 9 5 protein-coding AE4 anion exchange protein 4|anion exchanger 4|sodium bicarbonate cotransporter 5|solute carrier family 4, sodium bicarbonate cotransporter, member 9 44 0.006022 0.91 1 1 +83698 CALN1 calneuron 1 7 protein-coding CABP8 calcium-binding protein 8|calcium-binding protein CABP8|calneuron I 54 0.007391 2.465 1 1 +83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 6 protein-coding - SH3 domain-binding glutamic acid-rich-like protein 2|SH3 domain binding glutamic acid-rich protein like 2|fovea-associated SH3 domain-binding protein 10 0.001369 9.275 1 1 +83700 JAM3 junctional adhesion molecule 3 11 protein-coding JAM-2|JAM-3|JAM-C|JAMC junctional adhesion molecule C 30 0.004106 9.013 1 1 +83706 FERMT3 fermitin family member 3 11 protein-coding KIND3|MIG-2|MIG2B|UNC112C|URP2|URP2SF fermitin family homolog 3|MIG2-like protein|UNC-112 related protein 2|kindlin 3|unc-112-related protein 2 51 0.006981 8.531 1 1 +83707 TRPT1 tRNA phosphotransferase 1 11 protein-coding - tRNA 2'-phosphotransferase 1|tRNA splicing 2' phosphotransferase 1 10 0.001369 8.701 1 1 +83714 NRIP2 nuclear receptor interacting protein 2 12 protein-coding - nuclear receptor-interacting protein 2 19 0.002601 6.049 1 1 +83715 ESPN espin 1 protein-coding DFNB36|LP2654 espin|autosomal recessive deafness type 36 protein|ectoplasmic specialization protein 41 0.005612 6.818 1 1 +83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 16 protein-coding CRISP11|LCRISP2 cysteine-rich secretory protein LCCL domain-containing 2|CRISP-11|LCCL domain-containing cysteine-rich secretory protein 2|cysteine-rich secretory protein 11|testis secretory sperm-binding protein Li 207a|trypsin inhibitor 25 0.003422 9.421 1 1 +83719 YPEL3 yippee like 3 16 protein-coding - protein yippee-like 3 6 0.0008212 9.937 1 1 +83723 FAM57B family with sequence similarity 57 member B 16 protein-coding FP1188 protein FAM57B 24 0.003285 3.109 1 1 +83729 INHBE inhibin beta E subunit 12 protein-coding - inhibin beta E chain|activin beta-E chain 29 0.003969 3.058 1 1 +83732 RIOK1 RIO kinase 1 6 protein-coding AD034|RRP10|bA288G3.1 serine/threonine-protein kinase RIO1 30 0.004106 8.851 1 1 +83733 SLC25A18 solute carrier family 25 member 18 22 protein-coding GC2 mitochondrial glutamate carrier 2|glutamate/H(+) symporter 2|solute carrier family 25 (glutamate carrier), member 18|solute carrier family 25 (mitochondrial carrier), member 18 23 0.003148 4.591 1 1 +83734 ATG10 autophagy related 10 5 protein-coding APG10|APG10L|pp12616 ubiquitin-like-conjugating enzyme ATG10|ATG10 autophagy related 10 homolog|autophagy-related protein 10 16 0.00219 6.677 1 1 +83737 ITCH itchy E3 ubiquitin protein ligase 20 protein-coding ADMFD|AIF4|AIP4|NAPP1 E3 ubiquitin-protein ligase Itchy homolog|NFE2-associated polypeptide 1|atrophin-1 interacting protein 4|itchy E3 ubiquitin protein ligase homolog 53 0.007254 10.36 1 1 +83740 H2AFB3 H2A histone family member B3 X protein-coding H2ABBD|H2AFB histone H2A-Bbd type 2/3|H2A Barr body-deficient|H2A.Bbd|histone variant H2A, Barr-body deficient 1 0.0001369 1 0 +83741 TFAP2D transcription factor AP-2 delta 6 protein-coding TFAP2BL1 transcription factor AP-2-delta|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 delta (activating enhancer binding protein 2 delta)|transcription factor AP-2-beta-like 1 85 0.01163 0.2299 1 1 +83742 MARVELD1 MARVEL domain containing 1 10 protein-coding GB14|MARVD1|MRVLDC1|bA548K23.8 MARVEL domain-containing protein 1|MARVEL (membrane-associating) domain containing 1|putative MARVEL domain-containing protein 1 9.286 0 1 +83743 GRWD1 glutamate rich WD repeat containing 1 19 protein-coding CDW4|GRWD|RRB1|WDR28 glutamate-rich WD repeat-containing protein 1|CUL4- and DDB1-associated WDR protein 4|WD repeat domain 28|glutamate rich WD repeat protein GRWD|regulator of ribosome biogenesis 1 homolog 21 0.002874 9.753 1 1 +83744 ZNF484 zinc finger protein 484 9 protein-coding BA526D8.4 zinc finger protein 484|KRAB box containing C2H2 type zinc finger bA526D8.4 51 0.006981 6.214 1 1 +83746 L3MBTL2 L3MBTL2 polycomb repressive complex 1 subunit 22 protein-coding H-l(3)mbt-l|L3MBT lethal(3)malignant brain tumor-like protein 2|H-l(3)mbt-like protein 2|L(3)mbt-like protein 2|l(3)mbt-like 2|lmbt-like 2 (Drosophila) isoform 1|lmbt-like 2 (Drosophila) isoform 2 41 0.005612 9.723 1 1 +83752 LONP2 lon peptidase 2, peroxisomal 16 protein-coding LONP|LONPL lon protease homolog 2, peroxisomal|lon protease 2|lon protease-like protein 2|peroxisomal LON protease like|peroxisomal Lon protease homolog 2 64 0.00876 10.36 1 1 +83755 KRTAP4-12 keratin associated protein 4-12 17 protein-coding KAP4.12|KRTAP4.12 keratin-associated protein 4-12|keratin-associated protein 4.12|ultrahigh sulfur keratin-associated protein 4.12 21 0.002874 0.05773 1 1 +83756 TAS1R3 taste 1 receptor member 3 1 protein-coding T1R3 taste receptor type 1 member 3|sweet taste receptor T1R3|taste receptor, type 1, member 3 58 0.007939 3.602 1 1 +83758 RBP5 retinol binding protein 5 12 protein-coding CRBP-III|CRBP3|CRBPIII|HRBPiso retinol-binding protein 5|cellular retinol-binding protein III|putative cellular retinol-binding protein CRBP III|retinol binding protein 5, cellular 7 0.0009581 5.528 1 1 +83759 RBM4B RNA binding motif protein 4B 11 protein-coding RBM30|RBM4L|ZCCHC15|ZCCHC21B|ZCRB3B RNA-binding protein 4B|RNA-binding motif protein 30|zinc finger CCHC-type and RNA binding motif 3B 18 0.002464 8.25 1 1 +83786 FRMD8 FERM domain containing 8 11 protein-coding FKSG44 FERM domain-containing protein 8 33 0.004517 9.997 1 1 +83787 ARMC10 armadillo repeat containing 10 7 protein-coding PNAS-112|PNAS112|PSEC0198|SVH armadillo repeat-containing protein 10|specific splicing variant involved in hepatocarcinogenesis|splicing variant involved in hepatocarcinogenesis protein 20 0.002737 9.442 1 1 +83795 KCNK16 potassium two pore domain channel subfamily K member 16 6 protein-coding K2p16.1|TALK-1|TALK1 potassium channel subfamily K member 16|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|potassium channel, two pore domain subfamily K, member 16 42 0.005749 0.4015 1 1 +83844 USP26 ubiquitin specific peptidase 26 X protein-coding - ubiquitin carboxyl-terminal hydrolase 26|deubiquitinating enzyme 26|ubiquitin specific protease 26|ubiquitin thioesterase 26|ubiquitin thiolesterase 26|ubiquitin-specific processing protease 26 90 0.01232 0.2487 1 1 +83849 SYT15 synaptotagmin 15 10 protein-coding CHR10SYT|sytXV synaptotagmin-15|chr10 synaptotagmin|synaptotagmin XV|synaptotagmin XV-a 39 0.005338 5.406 1 1 +83850 ESYT3 extended synaptotagmin 3 3 protein-coding CHR3SYT|E-Syt3|FAM62C extended synaptotagmin-3|chr3 synaptotagmin|extended synaptotagmin protein 3|family with sequence similarity 62 (C2 domain containing), member C 71 0.009718 4.514 1 1 +83851 SYT16 synaptotagmin 16 14 protein-coding CHR14SYT|SYT14L|Strep14|syt14r|yt14r synaptotagmin-16|CTD-2277K2.1|chr14 synaptotagmin|synaptotagmin 14-like protein|synaptotagmin XIV-related protein|synaptotagmin XVI 79 0.01081 1.493 1 1 +83852 SETDB2 SET domain bifurcated 2 13 protein-coding C13orf4|CLLD8|CLLL8|KMT1F histone-lysine N-methyltransferase SETDB2|chronic lymphocytic leukemia deletion region gene 8 protein|lysine N-methyltransferase 1F 38 0.005201 8.093 1 1 +83853 ROPN1L rhophilin associated tail protein 1 like 5 protein-coding ASP|RSPH11 ropporin-1-like protein|AKAP-associated sperm protein|ROPN1-like protein|radial spoke head 11 homolog 21 0.002874 2.503 1 1 +83854 ANGPTL6 angiopoietin like 6 19 protein-coding AGF|ARP5 angiopoietin-related protein 6|angiopoietin-like protein 6|angiopoietin-related growth factor|angiopoietin-related protein 5 29 0.003969 2.989 1 1 +83855 KLF16 Kruppel like factor 16 19 protein-coding BTEB4|DRRF|NSLP2 Krueppel-like factor 16|BTE-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 7 0.0009581 9.19 1 1 +83856 FSD1L fibronectin type III and SPRY domain containing 1 like 9 protein-coding CCDC10|CSDUFD1|FSD1CL|FSD1NL|MIR1 FSD1-like protein|FSD1 C-terminal like|FSD1 N-terminal like|coiled-coil domain containing 10|cystatin and DUF19 domain containing 1 13 0.001779 5.864 1 1 +83857 TMTC1 transmembrane and tetratricopeptide repeat containing 1 12 protein-coding ARG99|OLF|TMTC1A transmembrane and TPR repeat-containing protein 1|transmembrane and tetratricopeptide repeat containing 1A 99 0.01355 8.225 1 1 +83858 ATAD3B ATPase family, AAA domain containing 3B 1 protein-coding AAA-TOB3|TOB3 ATPase family AAA domain-containing protein 3B|AAA-ATPase TOB3 46 0.006296 8.419 1 1 +83860 TAF3 TATA-box binding protein associated factor 3 10 protein-coding TAF140|TAFII-140|TAFII140 transcription initiation factor TFIID subunit 3|140 kDa TATA box-binding protein-associated factor|RNA polymerase II transcription factor TAFII140|TAF(II)140|TAF3 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 140kDa|TBP-associated factor 3|transcription initiation factor TFIID 140 kDa subunit 75 0.01027 7.55 1 1 +83861 RSPH3 radial spoke 3 homolog 6 protein-coding CILD32|RSHL2|RSP3|dJ111C20.1 radial spoke head protein 3 homolog|A-kinase anchor protein RSPH3|radial spoke head 3 homolog|radial spoke head-like protein 2|radial spoke protein 3|radial spokehead-like 2 37 0.005064 6.982 1 1 +83862 TMEM120A transmembrane protein 120A 7 protein-coding NET29|TMPIT transmembrane protein 120A|transmembrane protein induced by tumor necrosis factor alpha 23 0.003148 9.544 1 1 +83863 TTTY5 testis-specific transcript, Y-linked 5 (non-protein coding) Y ncRNA LINC00126|NCRNA00126|TTY5 long intergenic non-protein coding RNA 126|transcript Y 5 1 0.0001369 0.008173 1 1 +83866 TTTY11 testis-specific transcript, Y-linked 11 (non-protein coding) Y ncRNA NCRNA00134|TTY11 testis transcript Y 11|transcript Y 11 1 0.0001369 0.00387 1 1 +83867 TTTY12 testis-specific transcript, Y-linked 12 (non-protein coding) Y ncRNA NCRNA00135|TTY11|TTY12 testis transcript Y 12|transcript Y 12 0.0009681 0 1 +83868 TTTY13 testis-specific transcript, Y-linked 13 (non-protein coding) Y ncRNA NCRNA00136|TTY13 testis transcript Y 13|transcript Y 13 0.001974 0 1 +83869 TTTY14 testis-specific transcript, Y-linked 14 (non-protein coding) Y ncRNA CYorf14|NCRNA00137|NCRNA00185|PRO2834|TTY14 - 1.091 0 1 +83871 RAB34 RAB34, member RAS oncogene family 17 protein-coding RAB39|RAH ras-related protein Rab-34|ras-related protein Rab-39|ras-related protein Rah 32 0.00438 9.936 1 1 +83872 HMCN1 hemicentin 1 1 protein-coding ARMD1|FBLN6|FIBL-6|FIBL6 hemicentin-1|fibulin-6 512 0.07008 7.612 1 1 +83873 GPR61 G protein-coupled receptor 61 1 protein-coding BALGR|GPCR3 probable G-protein coupled receptor 61|biogenic amine receptor-like G-protein coupled receptor|biogenic amine receptor-like GPCR 36 0.004927 1.424 1 1 +83874 TBC1D10A TBC1 domain family member 10A 22 protein-coding EPI64|TBC1D10|dJ130H16.1|dJ130H16.2 TBC1 domain family member 10A|EBP50-PDX interactor of 64 kDa|EBP50-PDZ interactor of 64 kD|rab27A-GAP-alpha 45 0.006159 9.127 1 1 +83875 BCO2 beta-carotene oxygenase 2 11 protein-coding B-DIOX-II|BCDO2 beta,beta-carotene 9',10'-oxygenase|b,b-carotene-9',10'-dioxygenase|beta,beta-carotene 9',10'-dioxygenase variant 1|beta,beta-carotene 9',10'-dioxygenase variant 2|beta,beta-carotene 9',10'-dioxygenase variant 3|beta-carotene 9',10' oxygenase|beta-carotene dioxygenase 2|carotenoid-9',10'-cleaving dioxygenase 49 0.006707 4.468 1 1 +83876 MRO maestro 18 protein-coding B29|C18orf3 protein maestro|beside the Ma29 deletion|male-specific transcription in the developing reproductive organs 18 0.002464 4.637 1 1 +83877 TM2D2 TM2 domain containing 2 8 protein-coding BLP1 TM2 domain-containing protein 2|BBP-like protein 1|beta-amyloid-binding protein-like protein 1 13 0.001779 9.912 1 1 +83878 USHBP1 USH1 protein network component harmonin binding protein 1 19 protein-coding AIEBP|MCC2 Usher syndrome type-1C protein-binding protein 1|AIE-75-binding protein|USH1C-binding protein 1|Usher syndrome 1C binding protein 1|mutated in colon cancer protein 2 44 0.006022 5.118 1 1 +83879 CDCA7 cell division cycle associated 7 2 protein-coding ICF3|JPO1 cell division cycle-associated protein 7|c-Myc target JPO1 35 0.004791 7.556 1 1 +83881 MIXL1 Mix paired-like homeobox 1 protein-coding MILD1|MIX|MIXL homeobox protein MIXL1|MIX1 homeobox-like protein 1|Mix-like homeobox protein 1|homeodomain protein MIX|mix.1 homeobox-like protein 9 0.001232 0.8582 1 1 +83882 TSPAN10 tetraspanin 10 17 protein-coding OCSP tetraspanin-10|oculospanin|tspan-10 39 0.005338 4.67 1 1 +83884 SLC25A2 solute carrier family 25 member 2 5 protein-coding ORC2|ORNT2 mitochondrial ornithine transporter 2|solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 2 37 0.005064 0.7886 1 1 +83886 PRSS27 protease, serine 27 16 protein-coding CAPH2|MPN serine protease 27|channel-activating protease 2|marapsin|pancreasin 14 0.001916 5.295 1 1 +83887 TTLL2 tubulin tyrosine ligase like 2 6 protein-coding C6orf104|NYD-TSPG|dJ366N23.3 probable tubulin polyglutamylase TTLL2|testis-specific protein NYD-TSPG|tubulin tyrosine ligase-like family, member 2|tubulin--tyrosine ligase-like protein 2 51 0.006981 1.715 1 1 +83888 FGFBP2 fibroblast growth factor binding protein 2 4 protein-coding HBP17RP|KSP37 fibroblast growth factor-binding protein 2|37 kDa killer-specific secretory protein|FGF-BP2|FGF-binding protein 2|FGFBP-2|HBp17-RP|HBp17-related protein|killer-specific secretory protein of 37 kDa 18 0.002464 3.121 1 1 +83889 WDR87 WD repeat domain 87 19 protein-coding NYD-SP11 WD repeat-containing protein 87|testis development protein NYD-SP11 92 0.01259 1.223 1 1 +83890 SPATA9 spermatogenesis associated 9 5 protein-coding NYD-SP16 spermatogenesis-associated protein 9|CTD-2154I11.2|testicular tissue protein Li 179|testis development protein NYD-SP16 26 0.003559 2.642 1 1 +83891 SNX25 sorting nexin 25 4 protein-coding MSTP043|SBBI31 sorting nexin-25 60 0.008212 8.407 1 1 +83892 KCTD10 potassium channel tetramerization domain containing 10 12 protein-coding BTBD28|MSTP028|ULRO61|hBACURD3 BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 3|BTB/POZ domain-containing protein KCTD10|potassium channel tetramerisation domain containing 10|potassium channel tetramerization domain-containing protein 10 33 0.004517 10.49 1 1 +83893 SPATA16 spermatogenesis associated 16 3 protein-coding NYD-SP12|SPGF6 spermatogenesis-associated protein 16|testicular tissue protein Li 185|testis development protein NYD-SP12|testis-specific Golgi protein 69 0.009444 0.1225 1 1 +83894 TTC29 tetratricopeptide repeat domain 29 4 protein-coding NYD-SP14|TBPP2A tetratricopeptide repeat protein 29|TPR repeat protein 29|testicular secretory protein Li 62|testis development protein NYD-SP14 56 0.007665 0.8906 1 1 +83895 KRTAP1-5 keratin associated protein 1-5 17 protein-coding KAP1.5|KRTAP1.5 keratin-associated protein 1-5|high sulfur keratin-associated protein 1.5|keratin associated protein 1.5 72 0.009855 0.4983 1 1 +83896 KRTAP3-1 keratin associated protein 3-1 17 protein-coding KAP3.1|KRTAP3.1 keratin-associated protein 3-1|high sulfur keratin-associated protein 3.1|keratin-associated protein 3.1 7 0.0009581 0.4726 1 1 +83897 KRTAP3-2 keratin associated protein 3-2 17 protein-coding KAP3.2|KRTAP3.2 keratin-associated protein 3-2|high sulfur keratin-associated protein 3.2|keratin associated protein 3.2 8 0.001095 0.1752 1 1 +83899 KRTAP9-2 keratin associated protein 9-2 17 protein-coding KAP9.2|KRTAP9.2 keratin-associated protein 9-2|keratin-associated protein 9.2|ultrahigh sulfur keratin-associated protein 9.2 22 0.003011 0.05443 1 1 +83900 KRTAP9-3 keratin associated protein 9-3 17 protein-coding KAP9.3|KRTAP9.3 keratin-associated protein 9-3|keratin associated protein 9.3|ultrahigh sulfur keratin-associated protein 9.3 15 0.002053 1 0 +83901 KRTAP9-8 keratin associated protein 9-8 17 protein-coding KAP9.8|KRTAP9.8 keratin-associated protein 9-8|keratin associated protein 9.8|ultrahigh sulfur keratin-associated protein 9.8 27 0.003696 0.03849 1 1 +83902 KRTAP17-1 keratin associated protein 17-1 17 protein-coding KAP17.1|KRTAP16.1|KRTAP17.1 keratin-associated protein 17-1|keratin associated protein 16.1 20 0.002737 0.1528 1 1 +83903 GSG2 germ cell associated 2, haspin 17 protein-coding HASPIN serine/threonine-protein kinase haspin|H-haspin|germ cell-specific gene 2 protein|haploid germ cell-specific nuclear protein kinase 59 0.008076 5.352 1 1 +83930 STARD3NL STARD3 N-terminal like 7 protein-coding MENTHO MLN64 N-terminal domain homolog|STARD3 N-terminal-like protein 21 0.002874 9.463 1 1 +83931 STK40 serine/threonine kinase 40 1 protein-coding SHIK|SgK495 serine/threonine-protein kinase 40|SINK-homologous serine/threonine-protein kinase|Ser/Thr-like kinase|sugen kinase 495 26 0.003559 10.28 1 1 +83932 SPRTN SprT-like N-terminal domain 1 protein-coding C1orf124|DVC1|PRO4323|spartan sprT-like domain-containing protein Spartan|DNA damage protein targeting VCP|DNA damage-targeting VCP (p97) adaptor|zinc finger RAD18 domain-containing protein 39 0.005338 7.683 1 1 +83933 HDAC10 histone deacetylase 10 22 protein-coding HD10 histone deacetylase 10 28 0.003832 8.904 1 1 +83935 TMEM133 transmembrane protein 133 11 protein-coding AD031 transmembrane protein 133 8 0.001095 6.621 1 1 +83937 RASSF4 Ras association domain family member 4 10 protein-coding AD037 ras association domain-containing protein 4|Ras association (RalGDS/AF-6) domain family 4|Ras association (RalGDS/AF-6) domain family member 4|Ras association domain family 4|tumor suppressor RASSF4 27 0.003696 9.629 1 1 +83938 C10orf11 chromosome 10 open reading frame 11 10 protein-coding CDA017 leucine-rich repeat-containing protein C10orf11 15 0.002053 5.641 1 1 +83939 EIF2A eukaryotic translation initiation factor 2A 3 protein-coding CDA02|EIF-2A|MST089|MSTP004|MSTP089 eukaryotic translation initiation factor 2A|65 kDa eukaryotic translation initiation factor 2A|eukaryotic translation initiation factor 2A, 65kDa 27 0.003696 10.88 1 1 +83940 TATDN1 TatD DNase domain containing 1 8 protein-coding CDA11 putative deoxyribonuclease TATDN1|hepatocarcinoma high expression protein 16 0.00219 8.357 1 1 +83941 TM2D1 TM2 domain containing 1 1 protein-coding BBP TM2 domain-containing protein 1|beta-amyloid-binding protein|hBBP 24 0.003285 8.387 1 1 +83942 TSSK1B testis specific serine kinase 1B 5 protein-coding FKSG81|SPOGA4|STK22D|TSK1|TSSK1 testis-specific serine/threonine-protein kinase 1|TSK-1|TSSK-1|serine/threonine kinase 22D (spermiogenesis associated)|serine/threonine kinase FKSG81|serine/threonine-protein kinase 22A|spermiogenesis associated 4|testis tissue sperm-binding protein Li 55e|testis-specific kinase 1|testis-specific serine kinase 1 41 0.005612 1.151 1 1 +83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 7 protein-coding IMMP2L-IT1|IMP2|IMP2-LIKE mitochondrial inner membrane protease subunit 2|IMP2 inner mitochondrial membrane peptidase-like|inner mitochondrial membrane peptidase 2 like 21 0.002874 6.873 1 1 +83953 FCAMR Fc fragment of IgA and IgM receptor 1 protein-coding CD351|FCA/MR|FKSG87 high affinity immunoglobulin alpha and immunoglobulin mu Fc receptor|Fc alpha/mu receptor|Fc receptor, IgA, IgM, high affinity|immunity related factor|receptor for Fc fragment of IgA and IgM 32 0.00438 1.927 1 1 +83954 0.05625 0 1 +83955 NACAP1 nascent polypeptide associated complex alpha subunit pseudogene 1 8 pseudo FKSG17 FKSG17|nascent-polypeptide-associated complex alpha polypeptide pseudogene 1 21 0.002874 6.656 1 1 +83956 RACGAP1P Rac GTPase activating protein 1 pseudogene 12 pseudo FKSG42 FKSG42 2 0.0002737 1.565 1 1 +83959 SLC4A11 solute carrier family 4 member 11 20 protein-coding BTR1|CDPD1|CHED|CHED2|NABC1|dJ794I6.2 sodium bicarbonate transporter-like protein 11|bicarbonate transporter related protein 1|sodium-coupled borate cotransporter 1|solute carrier family 4, sodium bicarbonate transporter-like, member 11|solute carrier family 4, sodium borate transporter, member 11 87 0.01191 6.938 1 1 +83982 IFI27L2 interferon alpha inducible protein 27 like 2 14 protein-coding FAM14A|ISG12B|TLH29 interferon alpha-inducible protein 27-like protein 2|ISG12(b) protein|family with sequence similarity 14, member A|interferon-stimulated gene 12b protein|pIFI27-like protein 9 0.001232 8.404 1 1 +83983 TSSK6 testis specific serine kinase 6 19 protein-coding CT72|FKSG82|SSTK|TSSK4 testis-specific serine/threonine-protein kinase 6|TSK-6|cancer/testis antigen 72|serine/threonine protein kinase SSTK|small serine/threonine kinase|testis secretory sperm-binding protein Li 205a 25 0.003422 4.67 1 1 +83985 SPNS1 sphingolipid transporter 1 (putative) 16 protein-coding HSpin1|LAT|PP2030|SPIN1|SPINL|nrs protein spinster homolog 1|SPNS sphingolipid transporter 1 (putative)|spinster homolog 1|spinster-like protein 1 44 0.006022 10.12 1 1 +83986 FAM234A family with sequence similarity 234 member A 16 protein-coding C16orf9|ITFG3|gs19 protein FAM234A|integrin alpha FG-GAP repeat containing 3|protein ITFG3 37 0.005064 11.18 1 1 +83987 CCDC8 coiled-coil domain containing 8 19 protein-coding 3M3|PPP1R20|p90 coiled-coil domain-containing protein 8|protein phosphatase 1, regulatory subunit 20 42 0.005749 7.274 1 1 +83988 NCALD neurocalcin delta 8 protein-coding - neurocalcin-delta 21 0.002874 8.435 1 1 +83989 FAM172A family with sequence similarity 172 member A 5 protein-coding C5orf21 protein FAM172A 27 0.003696 8.786 1 1 +83990 BRIP1 BRCA1 interacting protein C-terminal helicase 1 17 protein-coding BACH1|FANCJ|OF Fanconi anemia group J protein|ATP-dependent RNA helicase BRIP1|BRCA1-associated C-terminal helicase 1|BRCA1-binding helicase-like protein BACH1|BRCA1/BRCA2-associated helicase 1 95 0.013 5.869 1 1 +83992 CTTNBP2 cortactin binding protein 2 7 protein-coding C7orf8|CORTBP2|Orf4 cortactin-binding protein 2 147 0.02012 6.134 1 1 +83998 REG4 regenerating family member 4 1 protein-coding GISP|REG-IV|RELP regenerating islet-derived protein 4|REG-4|REG-like protein|gastrointestinal secretory protein|reg IV|regenerating gene type IV|regenerating islet-derived family, member 4|regenerating islet-derived protein IV 13 0.001779 2.28 1 1 +83999 KREMEN1 kringle containing transmembrane protein 1 22 protein-coding KREMEN|KRM1 kremen protein 1|dickkopf receptor|kringle domain-containing transmembrane protein 1|kringle-coding gene marking the eye and the nose|kringle-containing protein marking the eye and the nose 33 0.004517 9.583 1 1 +84000 TMPRSS13 transmembrane protease, serine 13 11 protein-coding MSP|MSPL|MSPS|TMPRSS11 transmembrane protease serine 13|membrane-type mosaic serine protease|transmembrane protease, serine 11 98 0.01341 5.965 1 1 +84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 3 protein-coding B3GN-T5|beta3Gn-T5 lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase|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|lactotriaosylceramide synthase|lc(3)Cer synthase|lc3 synthase 38 0.005201 8.601 1 1 +84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF 1 protein-coding ARHGEF30|UNC89 obscurin|obscurin, myosin light chain kinase|obscurin-MLCK 560 0.07665 8.407 1 1 +84034 EMILIN2 elastin microfibril interfacer 2 18 protein-coding EMILIN-2|FOAP-10 EMILIN-2|elastin microfibril interface-located protein 2|extracellular glycoprotein EMILIN-2 78 0.01068 8.323 1 1 +84054 PCDHB19P protocadherin beta 19 pseudogene 5 pseudo PCDH-PSI5|PCDHB19 - 0 0 2.561 1 1 +84056 KATNAL1 katanin catalytic subunit A1 like 1 13 protein-coding - katanin p60 ATPase-containing subunit A-like 1|katanin catalytic subunit A like 1|katanin p60 subunit A like 1|p60 katanin-like 1 30 0.004106 8.068 1 1 +84057 MND1 meiotic nuclear divisions 1 4 protein-coding GAJ meiotic nuclear division protein 1 homolog|homolog of yeast MND1|meiotic nuclear divisions 1 homolog 16 0.00219 5.46 1 1 +84058 WDR54 WD repeat domain 54 2 protein-coding - WD repeat-containing protein 54 23 0.003148 7.979 1 1 +84059 ADGRV1 adhesion G protein-coupled receptor V1 5 protein-coding FEB4|GPR98|MASS1|USH2B|USH2C|VLGR1|VLGR1b G-protein coupled receptor 98|monogenic audiogenic seizure susceptibility protein 1 homolog|usher syndrome type-2C protein|very large G-protein coupled receptor 1 463 0.06337 6.302 1 1 +84060 RBM48 RNA binding motif protein 48 7 protein-coding C7orf64|HSPC304|MGC16142 RNA-binding protein 48|UPF0712 protein C7orf64 28 0.003832 7.999 1 1 +84061 MAGT1 magnesium transporter 1 X protein-coding IAP|MRX95|OST3B|PRO0756|XMEN|bA217H1.1 magnesium transporter protein 1|implantation-associated protein|oligosaccharyltransferase 3 homolog B 30 0.004106 11.19 1 1 +84062 DTNBP1 dystrobrevin binding protein 1 6 protein-coding BLOC1S8|DBND|HPS7|My031|SDY dysbindin|BLOC-1 subunit 8|Hermansky-Pudlak syndrome 7 protein|biogenesis of lysosomal organelles complex-1, subunit 8|biogenesis of lysosome-related organelles complex 1 subunit 8|dysbindin-1 35 0.004791 8.447 1 1 +84063 KIRREL2 kin of IRRE like 2 (Drosophila) 19 protein-coding FILTRIN|NEPH3|NLG1 kin of IRRE-like protein 2|kin of irregular chiasm-like protein 2|nephrin-like gene 1|nephrin-like protein 3 90 0.01232 2.449 1 1 +84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 18 protein-coding 3110052N05Rik|HEL-S-301 haloacid dehalogenase-like hydrolase domain-containing protein 2|epididymis secretory protein Li 301 12 0.001642 9.378 1 1 +84065 TMEM222 transmembrane protein 222 1 protein-coding C1orf160 transmembrane protein 222 11 0.001506 9.859 1 1 +84066 TEX35 testis expressed 35 1 protein-coding C1orf49|TSC24 testis-expressed sequence 35 protein|Testis-Specific Conserved gene 24kDa 27 0.003696 0.4469 1 1 +84067 FAM160A2 family with sequence similarity 160 member A2 11 protein-coding C11orf56 FTS and Hook-interacting protein|FHIP 74 0.01013 9.43 1 1 +84068 SLC10A7 solute carrier family 10 member 7 4 protein-coding C4orf13|P7 sodium/bile acid cotransporter 7|Na(+)/bile acid cotransporter 7|SBF-domain containing protein|solute carrier family 10 (sodium/bile acid cotransporter family), member 7 29 0.003969 7.529 1 1 +84069 PLEKHN1 pleckstrin homology domain containing N1 1 protein-coding - pleckstrin homology domain-containing family N member 1|PH domain-containing family N member 1 34 0.004654 5.266 1 1 +84070 FAM186B family with sequence similarity 186 member B 12 protein-coding C12orf25 protein FAM186B 46 0.006296 3.513 1 1 +84071 ARMC2 armadillo repeat containing 2 6 protein-coding bA787I22.1 armadillo repeat-containing protein 2 34 0.004654 5.233 1 1 +84072 HORMAD1 HORMA domain containing 1 1 protein-coding CT46|NOHMA HORMA domain-containing protein 1|cancer/testis antigen 46|newborn ovary HORMA protein|testis tissue sperm-binding protein Li 86P 50 0.006844 1.988 1 1 +84073 MYCBPAP MYCBP associated protein 17 protein-coding AMAP-1|AMAP1 MYCBP-associated protein|AMAM-1|AMY-1-binding protein 1|AMY1-associating protein 1|testis secretory sperm-binding protein Li 214e 64 0.00876 2.777 1 1 +84074 QRICH2 glutamine rich 2 17 protein-coding - glutamine-rich protein 2 101 0.01382 5.842 1 1 +84075 FSCB fibrous sheath CABYR binding protein 14 protein-coding C14orf155 fibrous sheath CABYR-binding protein 136 0.01861 0.1262 1 1 +84076 TKTL2 transketolase like 2 4 protein-coding - transketolase-like protein 2|testis tissue sperm-binding protein Li 39a 81 0.01109 0.5279 1 1 +84077 C3orf20 chromosome 3 open reading frame 20 3 protein-coding - uncharacterized protein C3orf20 77 0.01054 0.5446 1 1 +84078 KBTBD7 kelch repeat and BTB domain containing 7 13 protein-coding - kelch repeat and BTB domain-containing protein 7|kelch repeat and BTB (POZ) domain containing 7 40 0.005475 6.831 1 1 +84079 ANKRD27 ankyrin repeat domain 27 19 protein-coding PP12899|VARP ankyrin repeat domain-containing protein 27|VPS9 domain-containing protein|VPS9-ankyrin-repeat protein|Vps9 domain and ankyrin-repeat-containing protein|ankyrin repeat domain 27 (VPS9 domain) 70 0.009581 9.596 1 1 +84080 ENKD1 enkurin domain containing 1 16 protein-coding C16orf48|DAKV6410 enkurin domain-containing protein 1 27 0.003696 8.17 1 1 +84081 NSRP1 nuclear speckle splicing regulatory protein 1 17 protein-coding CCDC55|HSPC095|NSrp70 nuclear speckle splicing regulatory protein 1|coiled-coil domain containing 55|coiled-coil domain-containing protein 55|nuclear speckle-related protein 70 32 0.00438 9.409 1 1 +84083 ZRANB3 zinc finger RANBP2-type containing 3 2 protein-coding 4933425L19Rik|AH2 DNA annealing helicase and endonuclease ZRANB3|annealing helicase 2|zinc finger Ran-binding domain-containing protein 3|zinc finger, RAN-binding domain containing 3 68 0.009307 5.966 1 1 +84084 RAB6C RAB6C, member RAS oncogene family 2 protein-coding WTH3 ras-related protein Rab-6C|rab6-like protein WTH3 11 0.001506 5.899 1 1 +84085 FBXO30 F-box protein 30 6 protein-coding Fbx30 F-box only protein 30|F-box domain protein|F-box only protein, helicase, 18 46 0.006296 8.554 1 1 +84099 ID2B inhibitor of DNA binding 2B, HLH protein (pseudogene) 3 pseudo - inhibitor of DNA binding 2B, dominant negative helix-loop-helix protein (pseudogene)|inhibitor of differentiation 2B|striated muscle contraction regulatory protein 2.228 0 1 +84100 ARL6 ADP ribosylation factor like GTPase 6 3 protein-coding BBS3|RP55 ADP-ribosylation factor-like protein 6|Bardet-Biedl syndrome 3 protein 15 0.002053 5.94 1 1 +84101 USP44 ubiquitin specific peptidase 44 12 protein-coding - ubiquitin carboxyl-terminal hydrolase 44|deubiquitinating enzyme 44|ubiquitin specific protease 44|ubiquitin thioesterase 44|ubiquitin thiolesterase 44|ubiquitin-specific-processing protease 44 38 0.005201 2.89 1 1 +84102 SLC41A2 solute carrier family 41 member 2 12 protein-coding SLC41A1-L1 solute carrier family 41 member 2|SLC41A1-like 1|solute carrier family 41 (magnesium transporter), member 2 26 0.003559 7.536 1 1 +84103 C4orf17 chromosome 4 open reading frame 17 4 protein-coding - uncharacterized protein C4orf17 33 0.004517 0.1662 1 1 +84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 5 protein-coding DCOH2|DCOHM|PHS2 pterin-4-alpha-carbinolamine dehydratase 2|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/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 8 0.001095 8.216 1 1 +84106 PRAM1 PML-RARA regulated adaptor molecule 1 19 protein-coding PML-RAR|PRAM-1 PML-RARA-regulated adapter molecule 1|PML-RARA target gene encoding an Adaptor Molecule-1|PRAM 54 0.007391 5.065 1 1 +84107 ZIC4 Zic family member 4 3 protein-coding - zinc finger protein ZIC 4|zinc family member 4 protein HZIC4|zinc finger protein of the cerebellum 4 97 0.01328 1.934 1 1 +84108 PCGF6 polycomb group ring finger 6 10 protein-coding MBLR|RNF134 polycomb group RING finger protein 6|Mel18 and Bmi1-like RING finger protein|ring finger protein 134 29 0.003969 7.351 1 1 +84109 QRFPR pyroglutamylated RFamide peptide receptor 4 protein-coding AQ27|GPR103|SP9155 pyroglutamylated RFamide peptide receptor|G-protein coupled receptor 103|QRFP receptor|orexigenic neuropeptide QRFP receptor|peptide P518 receptor 41 0.005612 2.087 1 1 +84124 ZNF394 zinc finger protein 394 7 protein-coding ZKSCAN14|ZSCAN46 zinc finger protein 394|zinc finger protein 99|zinc finger protein with KRAB and SCAN domains 14 53 0.007254 8.769 1 1 +84125 LRRIQ1 leucine rich repeats and IQ motif containing 1 12 protein-coding - leucine-rich repeat and IQ domain-containing protein 1|testicular tissue protein Li 111 208 0.02847 3.115 1 1 +84126 ATRIP ATR interacting protein 3 protein-coding - ATR-interacting protein|ATM and Rad3-related-interacting protein 44 0.006022 7.876 1 1 +84127 5.104 0 1 +84128 WDR75 WD repeat domain 75 2 protein-coding NET16|UTP17 WD repeat-containing protein 75|U3 small nucleolar RNA-associated protein 17 homolog|UTP17, small subunit (SSU) processome component, homolog 30 0.004106 9.683 1 1 +84129 ACAD11 acyl-CoA dehydrogenase family member 11 3 protein-coding ACAD-11 acyl-CoA dehydrogenase family member 11|acyl-Coenzyme A dehydrogenase family, member 11 56 0.007665 8.633 1 1 +84131 CEP78 centrosomal protein 78 9 protein-coding C9orf81|IP63 centrosomal protein of 78 kDa|centrosomal protein 78kDa 40 0.005475 7.956 1 1 +84132 USP42 ubiquitin specific peptidase 42 7 protein-coding - ubiquitin carboxyl-terminal hydrolase 42|deubiquitinating enzyme 42|ubiquitin specific protease 42|ubiquitin thioesterase 42|ubiquitin thiolesterase 42|ubiquitin-specific-processing protease 42 69 0.009444 8.595 1 1 +84133 ZNRF3 zinc and ring finger 3 22 protein-coding BK747E2.3|RNF203 E3 ubiquitin-protein ligase ZNRF3|CTA-292E10.6|RING finger protein 203|novel C3HC4 type Zinc finger (ring finger)|zinc/RING finger protein 3 69 0.009444 8.782 1 1 +84134 TOMM40L translocase of outer mitochondrial membrane 40 like 1 protein-coding TOMM40B mitochondrial import receptor subunit TOM40B|protein TOMM40-like|translocase of outer mitochondrial membrane 40 homolog (yeast)-like|translocase of outer mitochondrial membrane 40 homolog-like 16 0.00219 8.803 1 1 +84135 UTP15 UTP15, small subunit processome component 5 protein-coding NET21 U3 small nucleolar RNA-associated protein 15 homolog|Src-associated protein SAW|UTP15 SSU processome component|UTP15, U3 small nucleolar ribonucleoprotein, homolog 25 0.003422 7.964 1 1 +84138 SLC7A6OS solute carrier family 7 member 6 opposite strand 16 protein-coding - probable RNA polymerase II nuclear localization protein SLC7A6OS|ADAMS proteinase-related protein|protein SLC7A6OS|solute carrier family 7 member 6 opposite strand transcript 16 0.00219 7.473 1 1 +84140 FAM161A family with sequence similarity 161 member A 2 protein-coding RP28 protein FAM161A|retinitis pigmentosa 28 (autosomal recessive) 48 0.00657 6.609 1 1 +84141 EVA1A eva-1 homolog A, regulator of programmed cell death 2 protein-coding FAM176A|TMEM166 protein eva-1 homolog A|eva-1 homolog A|family with sequence similarity 176, member A|protein FAM176A|transmembrane protein 166 18 0.002464 6.577 1 1 +84142 FAM175A family with sequence similarity 175 member A 4 protein-coding ABRA1|CCDC98 BRCA1-A complex subunit Abraxas|abraxas protein|coiled-coil domain containing 98 19 0.002601 7.483 1 1 +84144 SYDE2 synapse defective Rho GTPase homolog 2 1 protein-coding - rho GTPase-activating protein SYDE2|protein syd-1 homolog 2|synapse defective 1, Rho GTPase, homolog 2|synapse defective protein 1 homolog 2 57 0.007802 5.647 1 1 +84146 ZNF644 zinc finger protein 644 1 protein-coding BM-005|MYP21|NatF|ZEP-2 zinc finger protein 644|zinc finger motif enhancer binding protein 2 85 0.01163 9.638 1 1 +84148 KAT8 lysine acetyltransferase 8 16 protein-coding MOF|MYST1|ZC2HC8|hMOF histone acetyltransferase KAT8|K(lysine) acetyltransferase 8|MOZ, YBF2/SAS3, SAS2 and TIP60 protein 1|MYST histone acetyltransferase 1|MYST-1|histone acetyltransferase MYST1|ortholog of Drosophila males absent on the first (MOF)|probable histone acetyltransferase MYST1 42 0.005749 9.449 1 1 +84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B 17 protein-coding DARPP-32|DARPP32 protein phosphatase 1 regulatory subunit 1B|dopamine and cAMP-regulated neuronal phosphoprotein 32 8 0.001095 7.018 1 1 +84153 RNASEH2C ribonuclease H2 subunit C 11 protein-coding AGS3|AYP1 ribonuclease H2 subunit C|RNase H1 small subunit|RNase H2 subunit C|aicardi-Goutieres syndrome 3 protein|ribonuclease HI subunit C 5 0.0006844 9.528 1 1 +84154 RPF2 ribosome production factor 2 homolog 6 protein-coding BXDC1|bA397G5.4 ribosome production factor 2 homolog|brix domain containing 1|brix domain-containing protein 1|homolog of Rpf2|ribosomal processing factor 2 homolog|ribosome biogenesis protein RPF2 homolog 18 0.002464 8.573 1 1 +84159 ARID5B AT-rich interaction domain 5B 10 protein-coding DESRT|MRF-2|MRF2 AT-rich interactive domain-containing protein 5B|ARID domain-containing protein 5B|AT-rich interactive domain 5B (MRF1-like)|MRF1-like protein|modulator recognition factor 2 (MRF2) 77 0.01054 10.1 1 1 +84162 KIAA1109 KIAA1109 4 protein-coding FSA|Tweek uncharacterized protein KIAA1109|fragile site-associated protein 301 0.0412 10.26 1 1 +84163 GTF2IRD2 GTF2I repeat domain containing 2 7 protein-coding FP630|GTF2IRD2 alpha|GTF2IRD2A general transcription factor II-I repeat domain-containing protein 2A|GTF2I repeat domain-containing protein 2, alpha|GTF2I repeat domain-containing protein 2A|general transcription factor II i repeat domain 2 alpha|transcription factor GTF2IRD2-alpha 18 0.002464 8.286 1 1 +84164 ASCC2 activating signal cointegrator 1 complex subunit 2 22 protein-coding ASC1p100|p100 activating signal cointegrator 1 complex subunit 2|ASC-1 complex subunit P100|trip4 complex subunit p100 43 0.005886 10.55 1 1 +84166 NLRC5 NLR family CARD domain containing 5 16 protein-coding CLR16.1|NOD27|NOD4 protein NLRC5|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 142 0.01944 9.272 1 1 +84167 C19orf44 chromosome 19 open reading frame 44 19 protein-coding - uncharacterized protein C19orf44 43 0.005886 7.408 1 1 +84168 ANTXR1 anthrax toxin receptor 1 2 protein-coding ATR|GAPO|TEM8 anthrax toxin receptor 1|2310008J16Rik|2810405N18Rik|tumor endothelial marker 8 51 0.006981 11.04 1 1 +84171 LOXL4 lysyl oxidase like 4 10 protein-coding LOXC lysyl oxidase homolog 4|lysyl oxidase related C|lysyl oxidase-like 4 pseudogene|lysyl oxidase-like protein 4|lysyl oxidase-related protein C 40 0.005475 6.727 1 1 +84172 POLR1B RNA polymerase I subunit B 2 protein-coding RPA135|RPA2|Rpo1-2 DNA-directed RNA polymerase I subunit RPA2|DNA-directed RNA polymerase I 135 kDa polypeptide|DNA-directed RNA polymerase I 135kDa polypeptide|RNA polymerase I subunit 2|polymerase (RNA) I polypeptide B|polymerase (RNA) I polypeptide B, 128kDa|polymerase (RNA) I subunit B 59 0.008076 9.28 1 1 +84173 ELMOD3 ELMO domain containing 3 2 protein-coding DFNB88|LST3|RBED1|RBM29 ELMO domain-containing protein 3|ELMO/CED-12 domain containing 3|RNA binding motif and ELMO/CED-12 domain 1|RNA-binding motif and ELMO domain-containing protein 1|RNA-binding motif protein 29|deafness, autosomal recessive 88|liver-specific organic anion transporter 3TM12|organic anion transporter LST-3b 19 0.002601 8.247 1 1 +84174 SLA2 Src like adaptor 2 20 protein-coding C20orf156|MARS|SLAP-2|SLAP2 src-like-adapter 2|Src-like adapter protein-2|modulator of antigen receptor signaling 20 0.002737 4.967 1 1 +84176 MYH16 myosin heavy chain 16 pseudogene 7 pseudo MHC20|MYH16P|MYH5 Putative uncharacterized protein MYH16|myosin heavy polypeptide 5|myosin, heavy chain 16|myosin, heavy polypeptide 16|sarcomeric myosin 5 0.0006844 0.7883 1 1 +84179 MFSD7 major facilitator superfamily domain containing 7 4 protein-coding LP2561 major facilitator superfamily domain-containing protein 7|MYL5|myosin light polypeptide 5 regulatory protein 29 0.003969 6.624 1 1 +84181 CHD6 chromodomain helicase DNA binding protein 6 20 protein-coding CHD-6|CHD5|RIGB chromodomain-helicase-DNA-binding protein 6|ATP-dependent helicase CHD6|helicase C-terminal domain- and SNF2 N-terminal domain-containing protein|radiation-induced gene B protein 222 0.03039 10.21 1 1 +84182 FAM188B family with sequence similarity 188 member B 7 protein-coding C7orf67 protein FAM188B 60 0.008212 7.417 1 1 +84186 ZCCHC7 zinc finger CCHC-type containing 7 9 protein-coding AIR1|HSPC086 zinc finger CCHC domain-containing protein 7|TRAMP-like complex RNA-binding factor ZCCHC7|zinc finger, CCHC domain containing 7 33 0.004517 8.689 1 1 +84187 TMEM164 transmembrane protein 164 X protein-coding bB360B22.3 transmembrane protein 164|RP13-360B22.2 20 0.002737 9.292 1 1 +84188 FAR1 fatty acyl-CoA reductase 1 11 protein-coding MLSTD2|PFCRD|SDR10E1 fatty acyl-CoA reductase 1|male sterility domain-containing protein 2|short chain dehydrogenase/reductase family 10E, member 1 32 0.00438 10.1 1 1 +84189 SLITRK6 SLIT and NTRK like family member 6 13 protein-coding DFNMYP SLIT and NTRK-like protein 6|4832410J21Rik|slit and trk like gene 6 124 0.01697 4.899 1 1 +84190 METTL25 methyltransferase like 25 12 protein-coding C12orf26 methyltransferase-like protein 25 52 0.007117 6.404 1 1 +84191 FAM96A family with sequence similarity 96 member A 15 protein-coding CIA2A MIP18 family protein FAM96A 12 0.001642 9.699 1 1 +84193 SETD3 SET domain containing 3 14 protein-coding C14orf154 histone-lysine N-methyltransferase setd3|SET domain-containing protein 3 36 0.004927 10.46 1 1 +84196 USP48 ubiquitin specific peptidase 48 1 protein-coding RAP1GA1|USP31 ubiquitin carboxyl-terminal hydrolase 48|deubiquitinating enzyme 48|ubiquitin specific protease 31|ubiquitin thioesterase 48|ubiquitin thiolesterase 48|ubiquitin-specific-processing protease 48 79 0.01081 10.14 1 1 +84197 POMK protein-O-mannose kinase 8 protein-coding MDDGA12|MDDGC12|SGK196 protein O-mannose kinase|Sugen kinase 196|probable inactive protein kinase-like protein SgK196|protein kinase-like protein SgK196 27 0.003696 4.668 1 1 +84203 TXNDC2 thioredoxin domain containing 2 18 protein-coding SPTRX|SPTRX1 thioredoxin domain-containing protein 2|sperm-specific thioredoxin 1|spermatid-specific thioredoxin-1|sptrx-1|testicular tissue protein Li 215|thioredoxin domain containing 2 (spermatozoa) 54 0.007391 1.256 1 1 +84206 MEX3B mex-3 RNA binding family member B 15 protein-coding MEX-3B|RKHD3|RNF195 RNA-binding protein MEX3B|RING finger protein 195|ring finger and KH domain containing 3 39 0.005338 6.203 1 1 +84210 ANKRD20A1 ankyrin repeat domain 20 family member A1 9 protein-coding ANKRD20A ankyrin repeat domain-containing protein 20A1|ankyrin repeat domain 20A 18 0.002464 1 0 +84215 ZNF541 zinc finger protein 541 19 protein-coding - zinc finger protein 541 34 0.004654 3.45 1 1 +84216 TMEM117 transmembrane protein 117 12 protein-coding - transmembrane protein 117 46 0.006296 7.111 1 1 +84217 ZMYND12 zinc finger MYND-type containing 12 1 protein-coding - zinc finger MYND domain-containing protein 12|zinc finger, MYND domain containing 12 33 0.004517 5.009 1 1 +84218 TBC1D3F TBC1 domain family member 3F 17 protein-coding TBC1D3 TBC1 domain family member 3F|TBC1 domain family member 3|prostate cancer gene 17 protein|protein TRE17-alpha 5 0.0006844 1 0 +84219 WDR24 WD repeat domain 24 16 protein-coding C16orf21|JFP7 WD repeat-containing protein 24 33 0.004517 8.721 1 1 +84220 RGPD5 RANBP2-like and GRIP domain containing 5 2 protein-coding BS-63|BS63|HEL161|RGP5 RANBP2-like and GRIP domain-containing protein 5/6|RANBP2-like and GRIP domain-containing protein 5|epididymis luminal protein 161|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 9 0.001232 5.403 1 1 +84221 SPATC1L spermatogenesis and centriole associated 1-like 21 protein-coding C21orf56 speriolin-like protein|spermatogenesis and centriole-associated protein 1-like protein 16 0.00219 7.24 1 1 +84222 TMEM191A transmembrane protein 191A (pseudogene) 22 pseudo TMEM191AP - 7 0.0009581 4.368 1 1 +84223 IQCG IQ motif containing G 3 protein-coding CFAP122|DRC9 IQ domain-containing protein G|dynein regulatory complex subunit 9 43 0.005886 7.619 1 1 +84224 NBPF3 neuroblastoma breakpoint family member 3 1 protein-coding AE2 neuroblastoma breakpoint family member 3|protein SHIIIa4 39 0.005338 6.578 1 1 +84225 ZMYND15 zinc finger MYND-type containing 15 17 protein-coding SPGF14 zinc finger MYND domain-containing protein 15 34 0.004654 5.982 1 1 +84226 C2orf16 chromosome 2 open reading frame 16 2 protein-coding - uncharacterized protein C2orf16|P-S-E-R-S-H-H-S repeats containing 130 0.01779 5.171 1 1 +84229 DRC7 dynein regulatory complex subunit 7 16 protein-coding C16orf50|CCDC135|CFAP50|FAP50 dynein regulatory complex subunit 7|coiled-coil domain containing 135|coiled-coil domain-containing protein 135|coiled-coil domain-containing protein lobo homolog 81 0.01109 1.934 1 1 +84230 LRRC8C leucine rich repeat containing 8 family member C 1 protein-coding AD158|FAD158 volume-regulated anion channel subunit LRRC8C|factor for adipocyte differentiation 158|hypothetical protein AD158|leucine rich repeat containing 8C|leucine-rich repeat-containing protein 8C 66 0.009034 8.419 1 1 +84231 TRAF7 TNF receptor associated factor 7 16 protein-coding RFWD1|RNF119 E3 ubiquitin-protein ligase TRAF7|RING finger and WD repeat-containing protein 1|RING finger protein 119|TNF receptor-associated factor 7, E3 ubiquitin protein ligase|ring finger and WD repeat domain 1 46 0.006296 11.24 1 1 +84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III 8 protein-coding - repressor of RNA polymerase III transcription MAF1 homolog|MAF1 negative regulator of RNA polymerase III|homolog of yeast MAF1 17 0.002327 11.23 1 1 +84233 TMEM126A transmembrane protein 126A 11 protein-coding OPA7 transmembrane protein 126A 6 0.0008212 8.101 1 1 +84236 RHBDD1 rhomboid domain containing 1 2 protein-coding RRP4 rhomboid-related protein 4|rhomboid domain-containing protein 1|rhomboid-like protein 4 24 0.003285 8.104 1 1 +84239 ATP13A4 ATPase 13A4 3 protein-coding - probable cation-transporting ATPase 13A4|ATPase type 13A4|P5-ATPase|cation-transporting P5-ATPase 108 0.01478 4.761 1 1 +84240 ZCCHC9 zinc finger CCHC-type containing 9 5 protein-coding PPP1R41 zinc finger CCHC domain-containing protein 9|protein phosphatase 1, regulatory subunit 41|zinc finger, CCHC domain containing 9 19 0.002601 8.42 1 1 +84243 ZDHHC18 zinc finger DHHC-type containing 18 1 protein-coding DHHC-18|DHHC18 palmitoyltransferase ZDHHC18|zinc finger DHHC domain-containing protein 18|zinc finger, DHHC domain containing 18 14 0.001916 9.576 1 1 +84245 MRI1 methylthioribose-1-phosphate isomerase 1 19 protein-coding M1Pi|MRDI|MTNA|Ypr118w methylthioribose-1-phosphate isomerase|MTR-1-P isomerase|S-methyl-5-thioribose-1-phosphate isomerase 1|mediator of RhoA-dependent invasion|methylthioribose-1-phosphate isomerase homolog|translation initiation factor eIF-2B subunit alpha/beta/delta-like protein 23 0.003148 8.792 1 1 +84246 MED10 mediator complex subunit 10 5 protein-coding L6|NUT2|TRG20 mediator of RNA polymerase II transcription subunit 10|TRG-17|TRG-20|mediator of RNA polymerase II transcription, subunit 10|transformation-related gene 17 protein|transformation-related gene 20 protein 10 0.001369 9.014 1 1 +84247 LDOC1L leucine zipper down-regulated in cancer 1 like 22 protein-coding Mar6|Mart6|dJ1033E15.2 protein LDOC1L|leucine zipper protein down-regulated in cancer cells-like|mammalian retrotransposon-derived protein 6 18 0.002464 9.728 1 1 +84248 FYTTD1 forty-two-three domain containing 1 3 protein-coding UIF UAP56-interacting factor|forty-two-three domain-containing protein 1|protein 40-2-3 17 0.002327 10.55 1 1 +84249 PSD2 pleckstrin and Sec7 domain containing 2 5 protein-coding EFA6C PH and SEC7 domain-containing protein 2|6330404E20Rik|pleckstrin homology and SEC7 domain-containing protein 2 86 0.01177 3.518 1 1 +84250 SLF1 SMC5-SMC6 complex localization factor 1 5 protein-coding ANKRD32|BRCTD1|BRCTx SMC5-SMC6 complex localization factor protein 1|BRCT domain containing 1|BRCT domain-containing protein 1|ankyrin repeat domain 32|ankyrin repeat domain-containing protein 32|smc5/6 localization factor 1 60 0.008212 7.069 1 1 +84251 SGIP1 SH3 domain GRB2 like endophilin interacting protein 1 1 protein-coding - SH3-containing GRB2-like protein 3-interacting protein 1|endophilin-3-interacting protein 117 0.01601 5.712 1 1 +84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 9 protein-coding bA356B19.1 GTPase-activating Rap/Ran-GAP domain-like protein 3|GTPase activating RANGAP domain-like 3 65 0.008897 6.434 1 1 +84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 17 protein-coding CAMKKA calcium/calmodulin-dependent protein kinase kinase 1|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, alpha|calcium/calmodulin-dependent protein kinase kinase alpha 35 0.004791 7.849 1 1 +84255 SLC37A3 solute carrier family 37 member 3 7 protein-coding - sugar phosphate exchanger 3|solute carrier family 37 (glycerol-3-phosphate transporter), member 3 33 0.004517 9.574 1 1 +84256 FLYWCH1 FLYWCH-type zinc finger 1 16 protein-coding - FLYWCH-type zinc finger-containing protein 1 40 0.005475 9.586 1 1 +84258 SYT3 synaptotagmin 3 19 protein-coding SytIII synaptotagmin-3|synaptotagmin III 60 0.008212 3.055 1 1 +84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 11 protein-coding SCCRO5 DCN1-like protein 5|DCN1, defective in cullin neddylation 1, domain containing 5|DCUN1 domain-containing protein 5|defective in cullin neddylation protein 1-like protein 5 11 0.001506 8.662 1 1 +84260 TCHP trichoplein keratin filament binding 12 protein-coding TpMs trichoplein keratin filament-binding protein|mitochondrial protein with oncostatic activity|mitostatin|tumor suppressor protein 40 0.005475 8.648 1 1 +84261 FBXW9 F-box and WD repeat domain containing 9 19 protein-coding Fbw9 F-box/WD repeat-containing protein 9|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|specificity factor for SCF ubiquitin ligase 36 0.004927 7.916 1 1 +84262 PSMG3 proteasome assembly chaperone 3 7 protein-coding C7orf48|PAC3 proteasome assembly chaperone 3|PAC-3|hPAC3|proteasome (prosome, macropain) assembly chaperone 3|proteasome assembling chaperone 3 8 0.001095 9.311 1 1 +84263 HSDL2 hydroxysteroid dehydrogenase like 2 9 protein-coding C9orf99|SDR13C1 hydroxysteroid dehydrogenase-like protein 2|short chain dehydrogenase/reductase family 13C member 1 30 0.004106 10.12 1 1 +84264 HAGHL hydroxyacylglutathione hydrolase-like 16 protein-coding - hydroxyacylglutathione hydrolase-like protein|GLO2-like/ RJD12 20 0.002737 6.496 1 1 +84265 POLR3GL RNA polymerase III subunit G like 1 protein-coding RPC32HOM|flj32422 DNA-directed RNA polymerase III subunit RPC7-like|DNA-directed RNA polymerase III subunit G-like|RNA polymerase III subunit C7-like|RPC32-like protein|alternative RNA polymerase III subunit 32|polymerase (RNA) III (DNA directed) polypeptide G (32kD)-like|polymerase (RNA) III subunit G like 14 0.001916 8.949 1 1 +84266 ALKBH7 alkB homolog 7 19 protein-coding ABH7|SPATA11|UNQ6002 alpha-ketoglutarate-dependent dioxygenase alkB homolog 7, mitochondrial|alkB, alkylation repair homolog 7|alkylated DNA repair protein alkB homolog 7|probable alpha-ketoglutarate-dependent dioxygenase ABH7|spermatogenesis associated 11|spermatogenesis cell proliferation related protein|spermatogenesis-associated protein 11 12 0.001642 9.538 1 1 +84267 C9orf64 chromosome 9 open reading frame 64 9 protein-coding - UPF0553 protein C9orf64 18 0.002464 8.422 1 1 +84268 RPAIN RPA interacting protein 17 protein-coding HRIP|RIP RPA-interacting protein|RAP interaction protein|nuclear transporter 18 0.002464 9.135 1 1 +84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 2 protein-coding C2orf9|MIC14 coiled-coil-helix-coiled-coil-helix domain-containing protein 5|mitochondrial intermembrane space cysteine motif protein of 14 kDa homolog 8 0.001095 8.553 1 1 +84270 CARD19 caspase recruitment domain family member 19 9 protein-coding BinCARD|C9orf89 caspase recruitment domain-containing protein 19|Bcl10-interacting protein with CARD|bcl10-interacting CARD protein 12 0.001642 8.287 1 1 +84271 POLDIP3 DNA polymerase delta interacting protein 3 22 protein-coding PDIP46|SKAR polymerase delta-interacting protein 3|46 kDa DNA polymerase delta interaction protein|RNA-binding protein P46|S6K1 Aly/REF-like target|polymerase (DNA) delta interacting protein 3|polymerase (DNA-directed), delta interacting protein 3 27 0.003696 10.95 1 1 +84272 YIPF4 Yip1 domain family member 4 2 protein-coding FinGER4|Nbla11189 protein YIPF4|YIP1 family member 4|putative protein product of Nbla11189 22 0.003011 9.341 1 1 +84273 NOA1 nitric oxide associated 1 4 protein-coding C4orf14|MTG3|hAtNOS1|hNOA1|mAtNOS1 nitric oxide-associated protein 1|mitochondrial GTPase 3 homolog|nitric oxide synthase, mitochondrial (putative)|putative ortholog of Arabidopsis mitochondrial nitric oxide synthase 34 0.004654 9.288 1 1 +84274 COQ5 coenzyme Q5, methyltransferase 12 protein-coding - 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|coenzyme Q5 homolog, methyltransferase|ubiquinone biosynthesis methyltransferase COQ5, mitochondrial 24 0.003285 9.175 1 1 +84275 SLC25A33 solute carrier family 25 member 33 1 protein-coding BMSC-MCP|PNC1 solute carrier family 25 member 33|PNC1 protein|bone marrow stromal cell mitochondrial carrier protein|huBMSC-MCP|mitochondrial carrier protein|novel mitochondrial carrier protein|solute carrier family 25 (pyrimidine nucleotide carrier), member 33 16 0.00219 7.588 1 1 +84276 NICN1 nicolin 1 3 protein-coding - nicolin-1|NPCEDRG|PGs5|tubulin polyglutamylase complex subunit 5 9 0.001232 8.213 1 1 +84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 7 protein-coding WBSCR18 dnaJ homolog subfamily C member 30|DnaJ (Hsp40) homolog, subfamily C, member 30|Williams Beuren syndrome chromosome region 18|williams-Beuren syndrome chromosomal region 18 protein 9 0.001232 8.615 1 1 +84278 MFSD14C major facilitator superfamily domain containing 14C 9 pseudo HIATL2 hippocampus abundant gene transcript-like 2|hippocampus abundant transcript-like 2 3 0.0004106 4.69 1 1 +84279 PRADC1 protease associated domain containing 1 2 protein-coding C2orf7|PAP21 protease-associated domain-containing protein 1|protease-associated domain-containing glycoprotein 21 kDa|protease-associated domain-containing protein of 21 kDa 12 0.001642 8.46 1 1 +84280 BTBD10 BTB domain containing 10 11 protein-coding GMRP-1|GMRP1 BTB/POZ domain-containing protein 10|BTB (POZ) domain containing 10|BTB (broad-complex tramtrack and bric-a-brac/pox virus and zinc finger) domain-containing protein 10|K+ channel tetramerization protein|glucose metabolism-related protein 1 33 0.004517 9.208 1 1 +84281 C2orf88 chromosome 2 open reading frame 88 2 protein-coding smAKAP small membrane A-kinase anchor protein|small A-kinase anchoring protein|small membrane AKAP 8 0.001095 6.301 1 1 +84282 RNF135 ring finger protein 135 17 protein-coding L13|MMFD|REUL|Riplet E3 ubiquitin-protein ligase RNF135|RIG-I E3 ubiquitin ligase 18 0.002464 8.805 1 1 +84283 TMEM79 transmembrane protein 79 1 protein-coding MATT transmembrane protein 79|mattrin 42 0.005749 8.275 1 1 +84284 NTPCR nucleoside-triphosphatase, cancer-related 1 protein-coding C1orf57|HCR-NTPase cancer-related nucleoside-triphosphatase|human cancer-related NTPase|nucleoside triphosphate phosphohydrolase|nucleoside-triphosphatase C1orf57 13 0.001779 9.156 1 1 +84285 EIF1AD eukaryotic translation initiation factor 1A domain containing 11 protein-coding haponin probable RNA-binding protein EIF1AD|eukaryotic translation initiation factor 1A domain-containing protein 10 0.001369 9.121 1 1 +84286 TMEM175 transmembrane protein 175 4 protein-coding hTMEM175 endosomal/lysomomal potassium channel TMEM175 51 0.006981 8.825 1 1 +84287 ZDHHC16 zinc finger DHHC-type containing 16 10 protein-coding APH2|DHHC-16 probable palmitoyltransferase ZDHHC16|Abl-philin 2|zinc finger DHHC domain-containing protein 16|zinc finger, DHHC domain containing 16 29 0.003969 9.364 1 1 +84288 EFCAB2 EF-hand calcium binding domain 2 1 protein-coding CFAP200|DRC8 EF-hand calcium-binding domain-containing protein 2|dynein regulatory complex subunit 8 13 0.001779 6.943 1 1 +84289 ING5 inhibitor of growth family member 5 2 protein-coding p28ING5 inhibitor of growth protein 5 23 0.003148 8.723 1 1 +84290 CAPNS2 calpain small subunit 2 16 protein-coding - calpain small subunit 2|CSS2|calcium-dependent protease small subunit 2 14 0.001916 2.294 1 1 +84292 WDR83 WD repeat domain 83 19 protein-coding MORG1 WD repeat domain-containing protein 83|MAPK organizer 1|mitogen-activated protein kinase organizer 1 22 0.003011 7.665 1 1 +84293 FAM213A family with sequence similarity 213 member A 10 protein-coding C10orf58|PAMM redox-regulatory protein FAM213A|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 PAMM 20 0.002737 10.77 1 1 +84294 UTP23 UTP23, small subunit processome component 8 protein-coding C8orf53 rRNA-processing protein UTP23 homolog|UTP23, small subunit (SSU) processome component, homolog 14 0.001916 8.735 1 1 +84295 PHF6 PHD finger protein 6 X protein-coding BFLS|BORJ|CENP-31 PHD finger protein 6|PHD-like zinc finger protein|centromere protein 31 25 0.003422 9.389 1 1 +84296 GINS4 GINS complex subunit 4 8 protein-coding SLD5 DNA replication complex GINS protein SLD5|GINS complex subunit 4 (Sld5 homolog)|SLD5 homolog 16 0.00219 7.138 1 1 +84298 LLPH LLP homolog, long-term synaptic facilitation 12 protein-coding C12orf31|hLLP protein LLP homolog|LLP homolog, long-term synaptic facilitation (Aplysia)|human LAPS18-like protein 7 0.0009581 9.172 1 1 +84299 MIEN1 migration and invasion enhancer 1 17 protein-coding C17orf37|C35|ORB3|RDX12|XTP4 migration and invasion enhancer 1|HBV X-transactivated gene 4 protein|HBV XAg-transactivated protein 4|protein C17orf37 13 0.001779 9.944 1 1 +84300 UQCC2 ubiquinol-cytochrome c reductase complex assembly factor 2 6 protein-coding C6orf125|Cbp6|M19|MNF1|bA6B20.2 ubiquinol-cytochrome-c reductase complex assembly factor 2|breast cancer-associated protein SGA-81M|cytochrome B protein synthesis 6 homolog|mitochondrial nucleoid factor 1|mitochondrial protein M19 7 0.0009581 10.04 1 1 +84301 DDI2 DNA damage inducible 1 homolog 2 1 protein-coding - protein DDI1 homolog 2|DDI1, DNA-damage inducible 1, homolog 2|DNA-damage inducible protein 2 (DDI2) 27 0.003696 5.907 1 1 +84302 TMEM246 transmembrane protein 246 9 protein-coding C9orf125 transmembrane protein 246|transmembrane protein C9orf125 40 0.005475 6.997 1 1 +84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 3 protein-coding CHCM1|Mic25|PPP1R23 MICOS complex subunit MIC25|coiled coil helix cristae morphology 1|coiled-coil-helix cristae morphology protein 1|coiled-coil-helix-coiled-coil-helix domain-containing protein 6, mitochondrial|protein phosphatase 1, regulatory subunit 23 14 0.001916 7.498 1 1 +84304 NUDT22 nudix hydrolase 22 11 protein-coding - nucleoside diphosphate-linked moiety X motif 22|nudix (nucleoside diphosphate linked moiety X)-type motif 22|nudix motif 22 17 0.002327 8.949 1 1 +84305 PYM1 PYM homolog 1, exon junction complex associated factor 12 protein-coding PYM|WIBG partner of Y14 and mago|protein wibg homolog|within bgcn homolog 7 0.0009581 9.228 1 1 +84306 PDCD2L programmed cell death 2 like 19 protein-coding - programmed cell death protein 2-like 23 0.003148 7.389 1 1 +84307 ZNF397 zinc finger protein 397 18 protein-coding ZNF47|ZSCAN15 zinc finger protein 397|zinc finger and SCAN domain-containing protein 15|zinc finger protein 47 30 0.004106 7.805 1 1 +84309 NUDT16L1 nudix hydrolase 16 like 1 16 protein-coding SDOS protein syndesmos|NUDT16-like protein 1|nudix (nucleoside diphosphate linked moiety X)-type motif 16-like 1|syndesmos 9 0.001232 9.334 1 1 +84310 C7orf50 chromosome 7 open reading frame 50 7 protein-coding YCR016W uncharacterized protein C7orf50 25 0.003422 10.32 1 1 +84311 MRPL45 mitochondrial ribosomal protein L45 17 protein-coding L45mt|MRP-L45 39S ribosomal protein L45, mitochondrial 23 0.003148 9.72 1 1 +84312 BRMS1L breast cancer metastasis-suppressor 1-like 14 protein-coding BRMS1 breast cancer metastasis-suppressor 1-like protein|BRMS1-homolog protein p40|BRMS1-like protein p40|breast cancer metastasis-suppressor 1 14 0.001916 7.728 1 1 +84313 VPS25 vacuolar protein sorting 25 homolog 17 protein-coding DERP9|EAP20|FAP20 vacuolar protein-sorting-associated protein 25|ELL-associated protein of 20 kDa|ESCRT-II complex subunit VPS25|dermal papilla-derived protein 9 13 0.001779 10.08 1 1 +84314 TMEM107 transmembrane protein 107 17 protein-coding GRVS638|PRO1268 transmembrane protein 107 11 0.001506 7.599 1 1 +84315 MON1A MON1 homolog A, secretory trafficking associated 3 protein-coding SAND1 vacuolar fusion protein MON1 homolog A|MON1 homolog A|MON1 secretory trafficking family member A 20 0.002737 8.005 1 1 +84316 NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit 17 protein-coding LSMD1|PFAAP2 N-alpha-acetyltransferase 38, NatC auxiliary subunit|LSM domain containing 1|LSM domain-containing protein 1|phosphonoformate immuno-associated protein 2 12 0.001642 9.271 1 1 +84317 CCDC115 coiled-coil domain containing 115 2 protein-coding CDG2O|ccp1 coiled-coil domain-containing protein 115 16 0.00219 9.811 1 1 +84318 CCDC77 coiled-coil domain containing 77 12 protein-coding - coiled-coil domain-containing protein 77 36 0.004927 7.444 1 1 +84319 CMSS1 cms1 ribosomal small subunit homolog (yeast) 3 protein-coding C3orf26 protein CMSS1 31 0.004243 8.635 1 1 +84320 ACBD6 acyl-CoA binding domain containing 6 1 protein-coding - acyl-CoA-binding domain-containing protein 6|acyl-Coenzyme A binding domain containing 6 13 0.001779 9.009 1 1 +84321 THOC3 THO complex 3 5 protein-coding THO3|hTREX45 THO complex subunit 3|TEX1 homolog 13 0.001779 9.74 1 1 +84324 SARNP SAP domain containing ribonucleoprotein 12 protein-coding CIP29|HCC1|HSPC316|THO1 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 8 0.001095 9.8 1 1 +84326 METTL26 methyltransferase like 26 16 protein-coding C16orf13|JFP2 UPF0585 protein C16orf13 5 0.0006844 9.568 1 1 +84327 ZBED3 zinc finger BED-type containing 3 5 protein-coding - zinc finger BED domain-containing protein 3|2610005H11Rik|axin-interacting protein|zinc finger, BED domain containing 3 1 0.0001369 5.075 1 1 +84328 LZIC leucine zipper and CTNNBIP1 domain containing 1 protein-coding - protein LZIC|leucine zipper and CTNNBIP1 domain-containing protein|leucine zipper and ICAT homologous domain-containing protein|leucine zipper domain and ICAT homologous domain containing 10 0.001369 8.328 1 1 +84329 HVCN1 hydrogen voltage gated channel 1 12 protein-coding HV1|VSOP voltage-gated hydrogen channel 1|voltage sensor domain-only protein 26 0.003559 6.949 1 1 +84330 ZNF414 zinc finger protein 414 19 protein-coding ZFP414 zinc finger protein 414 23 0.003148 7.807 1 1 +84331 MCRIP2 MAPK regulated corepressor interacting protein 2 16 protein-coding C16orf14|FAM195A|c349E10.1 protein FAM195A|MAPK regulated co-repressor interacting protein 2|family with sequence similarity 195, member A 4 0.0005475 8.808 1 1 +84332 DYDC2 DPY30 domain containing 2 10 protein-coding - DPY30 domain-containing protein 2 11 0.001506 2.27 1 1 +84333 PCGF5 polycomb group ring finger 5 10 protein-coding RNF159 polycomb group RING finger protein 5|RING finger protein 159|ring finger protein (C3HC4 type) 159 25 0.003422 10.11 1 1 +84334 APOPT1 apoptogenic 1, mitochondrial 14 protein-coding APOP|APOP1|C14orf153 apoptogenic protein 1, mitochondrial|UPF0671 protein C14orf153 9 0.001232 8.912 1 1 +84335 AKT1S1 AKT1 substrate 1 19 protein-coding Lobe|PRAS40 proline-rich AKT1 substrate 1|40 kDa proline-rich AKT substrate|AKT1 substrate 1 (proline rich) 14 0.001916 10.3 1 1 +84336 TMEM101 transmembrane protein 101 17 protein-coding - transmembrane protein 101|putative NF-kappa-B-activating protein 130 7 0.0009581 9.465 1 1 +84337 ELOF1 elongation factor 1 homolog 19 protein-coding ELF1 transcription elongation factor 1 homolog|ELF1 homolog, elongation factor 1|elongation factor 1 homolog (ELF1, S. cerevisiae) 5 0.0006844 9.962 1 1 +84340 GFM2 G elongation factor mitochondrial 2 5 protein-coding EF-G2mt|EFG2|MRRF2|MST027|MSTP027|RRF2|RRF2mt|hEFG2|mEF-G 2 ribosome-releasing factor 2, mitochondrial|EF-G2mt|RRF2mt|mEF-G 2|mitochondrial elongation factor G2|mitochondrial ribosome recycling factor 2 45 0.006159 9.199 1 1 +84342 COG8 component of oligomeric golgi complex 8 16 protein-coding CDG2H|DOR1 conserved oligomeric Golgi complex subunit 8|COG complex subunit 8|conserved oligomeric golgi complex component 8|dependent on RIC1 40 0.005475 8.757 1 1 +84343 HPS3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 3 protein-coding BLOC2S1|SUTAL Hermansky-Pudlak syndrome 3 protein 70 0.009581 9.605 1 1 +84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 11 protein-coding IRZ|NBLA10535|ZFP289|ZNF289 ADP-ribosylation factor GTPase-activating protein 2|GTPase-activating protein ZNF289|zinc finger protein 289, ID1 regulated 38 0.005201 10.96 1 1 +84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 2 protein-coding MKI67IP|Nopp34 MKI67 FHA domain-interacting nucleolar phosphoprotein|hNIFK|nucleolar phosphoprotein Nopp34|nucleolar protein interacting with the FHA domain of pKi-67 25 0.003422 9.742 1 1 +84366 PRAC1 prostate cancer susceptibility candidate 1 17 protein-coding C17orf92|PRAC small nuclear protein PRAC1|prostate cancer susceptibility candidate protein 1|prostate, rectum and colon expressed gene protein|small nuclear protein PRAC 6 0.0008212 0.8764 1 1 +84376 HOOK3 hook microtubule tethering protein 3 8 protein-coding HK3 protein Hook homolog 3|h-hook3|hHK3|hook homolog 3 48 0.00657 10.05 1 1 +84417 C2orf40 chromosome 2 open reading frame 40 2 protein-coding ECRG4 augurin|esophageal cancer related gene 4 protein 19 0.002601 4.326 1 1 +84418 CYSTM1 cysteine rich transmembrane module containing 1 5 protein-coding C5orf32|ORF1-FL49 cysteine-rich and transmembrane domain-containing protein 1|UPF0467 protein C5orf32|putative nuclear protein ORF1-FL49 8 0.001095 10.09 1 1 +84419 C15orf48 chromosome 15 open reading frame 48 15 protein-coding FOAP-11|NMES1 normal mucosa of esophagus-specific gene 1 protein|normal mucosa of esophagus specific 1 2 0.0002737 7.089 1 1 +84432 PROK1 prokineticin 1 1 protein-coding EGVEGF|PK1|PRK1 prokineticin-1|EG-VEGF|black mamba toxin-related protein|endocrine-gland-derived vascular endothelial growth factor|mambakine 12 0.001642 1.624 1 1 +84433 CARD11 caspase recruitment domain family member 11 7 protein-coding BENTA|BIMP3|CARMA1|IMD11|PPBL caspase recruitment domain-containing protein 11|CARD-containing MAGUK protein 1|bcl10-interacting maguk protein 3|carma 1 158 0.02163 7.494 1 1 +84435 ADGRA1 adhesion G protein-coupled receptor A1 10 protein-coding GPR123 adhesion G protein-coupled receptor A1|G-protein coupled receptor 123|probable G-protein coupled receptor 123 74 0.01013 1.901 1 1 +84436 ZNF528 zinc finger protein 528 19 protein-coding - zinc finger protein 528 70 0.009581 7.46 1 1 +84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils 11 protein-coding KIAA1826 myb/SANT-like DNA-binding domain-containing protein 4|Myb/SANT-like DNA-binding domain containing 4 with coiled-coils 30 0.004106 8.309 1 1 +84439 HHIPL1 HHIP like 1 14 protein-coding KIAA1822|UNQ9245 HHIP-like protein 1|ARAR9245 43 0.005886 5.748 1 1 +84440 RAB11FIP4 RAB11 family interacting protein 4 17 protein-coding RAB11-FIP4 rab11 family-interacting protein 4|FIP4-Rab11|RAB11 family interacting protein 4 (class II)|arfophilin-2 43 0.005886 9.478 1 1 +84441 MAML2 mastermind like transcriptional coactivator 2 11 protein-coding MAM-3|MAM2|MAM3|MLL-MAML2 mastermind-like protein 2|mam-2|mastermind-like 2 81 0.01109 7.997 1 1 +84443 FRMPD3 FERM and PDZ domain containing 3 X protein-coding - FERM and PDZ domain-containing protein 3|RP5-1070B1.1 61 0.008349 1 0 +84444 DOT1L DOT1 like histone lysine methyltransferase 19 protein-coding DOT1|KMT4 histone-lysine N-methyltransferase, H3 lysine-79 specific|DOT1 like histone H3K79 methyltransferase|DOT1-like histone methyltransferase|DOT1-like protein|DOT1-like, histone H3 methyltransferase|H3-K79-HMTase|histone H3-K79 methyltransferase|histone methyltransferase DOT1L|lysine N-methyltransferase 4 114 0.0156 9.665 1 1 +84445 LZTS2 leucine zipper tumor suppressor 2 10 protein-coding LAPSER1 leucine zipper putative tumor suppressor 2|leucine zipper, putative tumor suppressor 2|protein LAPSER1 39 0.005338 10.64 1 1 +84446 BRSK1 BR serine/threonine kinase 1 19 protein-coding hSAD1 serine/threonine-protein kinase BRSK1|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 SAD-B|synapses of Amphids Defective homolog 1 76 0.0104 6.143 1 1 +84447 SYVN1 synoviolin 1 11 protein-coding DER3|HRD1 E3 ubiquitin-protein ligase synoviolin|HMG-coA reductase degradation 1 homolog|synovial apoptosis inhibitor 1, synoviolin 34 0.004654 10.86 1 1 +84448 ABLIM2 actin binding LIM protein family member 2 4 protein-coding - actin-binding LIM protein 2|abLIM-2|testis tissue sperm-binding protein Li 35a 45 0.006159 6.805 1 1 +84449 ZNF333 zinc finger protein 333 19 protein-coding - zinc finger protein 333 36 0.004927 7.472 1 1 +84450 ZNF512 zinc finger protein 512 2 protein-coding - zinc finger protein 512 37 0.005064 9.48 1 1 +84451 MLK4 mixed lineage kinase 4 1 protein-coding KIAA1804|dJ862P8.3 mitogen-activated protein kinase kinase kinase MLK4 66 0.009034 7.165 1 1 +84455 EFCAB7 EF-hand calcium binding domain 7 1 protein-coding - EF-hand calcium-binding domain-containing protein 7 39 0.005338 6.811 1 1 +84456 L3MBTL3 l(3)mbt-like 3 (Drosophila) 6 protein-coding MBT-1|MBT1 lethal(3)malignant brain tumor-like protein 3|H-l(3)mbt-like protein 3|l(3)mbt-like protein 3 67 0.009171 7.539 1 1 +84457 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein like 10 protein-coding - phytanoyl-CoA hydroxylase-interacting protein-like 27 0.003696 5.155 1 1 +84458 LCOR ligand dependent nuclear receptor corepressor 10 protein-coding MLR2 ligand-dependent corepressor|mblk1-related protein 2 23 0.003148 6.061 1 1 +84460 ZMAT1 zinc finger matrin-type 1 X protein-coding - zinc finger matrin-type protein 1 66 0.009034 7.403 1 1 +84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 17 protein-coding - neuralized-like protein 4|neuralized homolog 4 78 0.01068 9.07 1 1 +84464 SLX4 SLX4 structure-specific endonuclease subunit 16 protein-coding BTBD12|FANCP|MUS312 structure-specific endonuclease subunit SLX4|BTB/POZ domain-containing protein 12 122 0.0167 8.038 1 1 +84465 MEGF11 multiple EGF like domains 11 15 protein-coding - multiple epidermal growth factor-like domains protein 11|multiple EGF-like domains protein 11 52 0.007117 2.984 1 1 +84466 MEGF10 multiple EGF like domains 10 5 protein-coding EMARDD multiple epidermal growth factor-like domains protein 10 90 0.01232 4.226 1 1 +84467 FBN3 fibrillin 3 19 protein-coding - fibrillin-3 233 0.03189 3.402 1 1 +84498 FAM120B family with sequence similarity 120B 6 protein-coding CCPG|KIAA1838|PGCC1|dJ894D12.1 constitutive coactivator of peroxisome proliferator-activated receptor gamma|PPARG constitutive coactivator 1|PPARgamma constitutive coactivator 1|constitutive coactivator of PPAR-gamma 56 0.007665 9.21 1 1 +84501 SPIRE2 spire type actin nucleation factor 2 16 protein-coding Spir-2 protein spire homolog 2|spire actin nucleation factor 2|spire family actin nucleation factor 2|spire homolog 2 52 0.007117 7.499 1 1 +84502 JPH4 junctophilin 4 14 protein-coding JP4|JPHL1 junctophilin-4|JP-4|junctophilin like 1|junctophilin-like 1 protein 57 0.007802 4.744 1 1 +84503 ZNF527 zinc finger protein 527 19 protein-coding - zinc finger protein 527 64 0.00876 6.665 1 1 +84504 NKX6-2 NK6 homeobox 2 10 protein-coding GTX|NKX6.2|NKX6B homeobox protein Nkx-6.2|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 10 0.001369 0.8998 1 1 +84513 PLPP5 phospholipid phosphatase 5 8 protein-coding DPPL1|HTPAP|PPAPDC1B phospholipid phosphatase 5|diacylglycerol pyrophosphate like 1|diacylglycerol pyrophosphate phosphatase-like 1|phosphatidate phosphatase PPAPDC1B|phosphatidic acid phosphatase type 2 domain containing 1B|phosphatidic acid phosphatase type 2 domain-containing protein 1B|testicular secretory protein Li 38 9 0.001232 9.293 1 1 +84514 GHDC GH3 domain containing 17 protein-coding D11LGP1|LGP1 GH3 domain-containing protein|homolog of mouse LGP1 30 0.004106 9.637 1 1 +84515 MCM8 minichromosome maintenance 8 homologous recombination repair factor 20 protein-coding C20orf154|POF10|dJ967N21.5 DNA helicase MCM8|DNA replication licensing factor MCM8|MCM8 minichromosome maintenance deficient 8|REC homolog|minichromosome maintenance complex component 8 55 0.007528 7.803 1 1 +84516 DCTN5 dynactin subunit 5 16 protein-coding - dynactin subunit 5|dynactin 4|dynactin 5 (p25)|dynactin subunit p25 16 0.00219 10.41 1 1 +84517 ACTRT3 actin related protein T3 3 protein-coding ARP-T3|ARPM1 actin-related protein T3|actin-related protein M1 20 0.002737 5.131 1 1 +84518 CNFN cornifelin 19 protein-coding PLAC8L2 cornifelin|cornefied envelope protein cornefilin 7 0.0009581 5.447 1 1 +84519 ACRBP acrosin binding protein 12 protein-coding CT23|OY-TES-1|SP32 acrosin-binding protein|cancer/testis antigen 23|cancer/testis antigen OY-TES-1|proacrosin binding protein sp32|testicular tissue protein Li 10 34 0.004654 4.89 1 1 +84520 GON7 GON7, KEOPS complex subunit homolog 14 protein-coding C14orf142|PNAS-127 uncharacterized protein C14orf142 6 0.0008212 7.77 1 1 +84522 JAGN1 jagunal homolog 1 3 protein-coding GL009|SCN6 protein jagunal homolog 1 10 0.001369 9.675 1 1 +84524 ZC3H8 zinc finger CCCH-type containing 8 2 protein-coding Fliz1|ZC3HDC8 zinc finger CCCH domain-containing protein 8|zinc finger CCCH-type domain containing 8 11 0.001506 7.066 1 1 +84525 HOPX HOP homeobox 4 protein-coding CAMEO|HOD|HOP|LAGY|NECC1|OB1|SMAP31|TOTO homeodomain-only protein|lung cancer-associated Y protein|not expressed in choriocarcinoma clone 1|odd homeobox protein 1 10 0.001369 8.557 1 1 +84527 ZNF559 zinc finger protein 559 19 protein-coding NBLA00121 zinc finger protein 559|putative protein product of Nbla00121 50 0.006844 7.915 1 1 +84528 RHOXF2 Rhox homeobox family member 2 X protein-coding CT107|PEPP-2|PEPP2|THG1 rhox homeobox family member 2|PEPP subfamily gene 2|cancer/testis antigen 107|homeobox protein from AL590526|paired-like homeobox protein PEPP-2|testis homeobox gene 1 12 0.001642 1 0 +84529 C15orf41 chromosome 15 open reading frame 41 15 protein-coding HH114 uncharacterized protein C15orf41 20 0.002737 7.209 1 1 +84530 SRRM4 serine/arginine repetitive matrix 4 12 protein-coding KIAA1853|MU-MB-2.76|nSR100 serine/arginine repetitive matrix protein 4|medulloblastoma antigen MU-MB-2.76|neural-specific SR-related protein of 100 kDa|neural-specific serine/arginine repetitive splicing factor of 100 kDa 80 0.01095 1.884 1 1 +84532 ACSS1 acyl-CoA synthetase short-chain family member 1 20 protein-coding ACAS2L|ACECS1|AceCS2L acetyl-coenzyme A synthetase 2-like, mitochondrial|acetate--CoA ligase 2 53 0.007254 9.742 1 1 +84536 LINC01547 long intergenic non-protein coding RNA 1547 21 ncRNA C21orf67|C21orf69|PRED54 - 1 0.0001369 5.517 1 1 +84539 MCHR2 melanin concentrating hormone receptor 2 6 protein-coding GPR145|GPRv17|MCH-2R|MCH-R2|MCH2|MCH2R|MCHR-2|SLT melanin-concentrating hormone receptor 2|G protein-coupled receptor slt|G-protein coupled receptor 145|MCH receptor 2|melanin-concentrating hormone 2 62 0.008486 0.3821 1 1 +84541 KBTBD8 kelch repeat and BTB domain containing 8 3 protein-coding TA-KRP|TAKRP kelch repeat and BTB domain-containing protein 8|T-cell activation kelch repeat protein|kelch repeat and BTB (POZ) domain containing 8 47 0.006433 5.427 1 1 +84542 KIAA1841 KIAA1841 2 protein-coding - uncharacterized protein KIAA1841 56 0.007665 7.627 1 1 +84545 MRPL43 mitochondrial ribosomal protein L43 10 protein-coding L43mt|MRP-L43|bMRP36a 39S ribosomal protein L43, mitochondrial|mitochondrial ribosomal protein bMRP36a 14 0.001916 10.13 1 1 +84546 SNORD35B small nucleolar RNA, C/D box 35B 19 snoRNA RNU35B|U35B RNA, U35B small nucleolar|RNA, small nucleolar|snoRNA 0 0 1 +84547 PGBD1 piggyBac transposable element derived 1 6 protein-coding HUCEP-4|SCAND4|dJ874C20.4 piggyBac transposable element-derived protein 1|cerebral protein 4 79 0.01081 6.653 1 1 +84548 TMEM185A transmembrane protein 185A X protein-coding CXorf13|FAM11A|FRAXF|ee3 transmembrane protein 185A|family with sequence similarity 11, member A|fragile site, folic acid type, rare, fra(X)(q28) F 17 0.002327 9.002 1 1 +84549 MAK16 MAK16 homolog 8 protein-coding MAK16L|RBM13 protein MAK16 homolog|NNP78|RNA binding motif protein 13|RNA binding protein 19 0.002601 8.695 1 1 +84552 PARD6G par-6 family cell polarity regulator gamma 18 protein-coding PAR-6G|PAR6gamma partitioning defective 6 homolog gamma|PAR-6 gamma protein|PAR6D|par-6 partitioning defective 6 homolog gamma 19 0.002601 7.719 1 1 +84553 FAXC failed axon connections homolog 6 protein-coding C6orf168|dJ273F20 failed axon connections homolog 25 0.003422 6.383 1 1 +84557 MAP1LC3A microtubule associated protein 1 light chain 3 alpha 20 protein-coding ATG8E|LC3|LC3A|MAP1ALC3|MAP1BLC3 microtubule-associated proteins 1A/1B light chain 3A|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 21 0.002874 8.367 1 1 +84560 MT4 metallothionein 4 16 protein-coding MT-4|MT-IV|MTIV metallothionein-4|metallothionein-IV 10 0.001369 0.09973 1 1 +84561 SLC12A8 solute carrier family 12 member 8 3 protein-coding CCC9 solute carrier family 12 member 8|cation-chloride cotransporter 9|solute carrier family 12 (sodium/potassium/chloride transporters), member 8 46 0.006296 8.042 1 1 +84569 LYZL1 lysozyme like 1 10 protein-coding KAAG648|LYC2|LYZD1|PRO1278|bA534G20.1 lysozyme-like protein 1|lysozyme D1 26 0.003559 0.06389 1 1 +84570 COL25A1 collagen type XXV alpha 1 chain 4 protein-coding AMY|CFEOM5|CLAC|CLAC-P|CLACP collagen alpha-1(XXV) chain|alzheimer disease amyloid-associated protein|collagen-like Alzheimer amyloid plaque component|collagenous Alzheimer amyloid plaque component 103 0.0141 2.695 1 1 +84572 GNPTG N-acetylglucosamine-1-phosphate transferase gamma subunit 16 protein-coding C16orf27|GNPTAG|LP2537|RJD9 N-acetylglucosamine-1-phosphotransferase subunit gamma|UDP-N-acetylglucosamine-1-phosphotransferase subunit gamma|glcNAc-1-phosphotransferase subunit gamma 16 0.00219 10.31 1 1 +84612 PARD6B par-6 family cell polarity regulator beta 20 protein-coding PAR6B partitioning defective 6 homolog beta|PAR-6 beta|par-6 partitioning defective 6 homolog beta 35 0.004791 7.656 1 1 +84614 ZBTB37 zinc finger and BTB domain containing 37 1 protein-coding D430004I08Rik|ZNF908 zinc finger and BTB domain-containing protein 37 27 0.003696 4.479 1 1 +84616 KRTAP4-4 keratin associated protein 4-4 17 protein-coding KAP4.13|KAP4.4|KRTAP4-13|KRTAP4.13|KRTAP4.4 keratin-associated protein 4-4|keratin associated protein 4.4|keratin-associated protein 4-13|keratin-associated protein 4.13|ultrahigh sulfur keratin-associated protein 4.13|ultrahigh sulfur keratin-associated protein 4.4 13 0.001779 0.03301 1 1 +84617 TUBB6 tubulin beta 6 class V 18 protein-coding HsT1601|TUBB-5 tubulin beta-6 chain|class V beta-tubulin|tubulin beta MGC4083|tubulin beta class V|tubulin, beta 6 30 0.004106 10.44 1 1 +84618 NT5C1A 5'-nucleotidase, cytosolic IA 1 protein-coding CN-I|CN-IA|CN1|CN1A|CNI cytosolic 5'-nucleotidase 1A|AMP-specific 5'-NT|cytosolic 5' nucleotidase, type 1A|cytosolic 5'-nucleotidase IA 44 0.006022 0.8428 1 1 +84619 ZGPAT zinc finger CCCH-type and G-patch domain containing 20 protein-coding GPATC6|GPATCH6|KIAA1847|ZC3H9|ZC3HDC9|ZIP zinc finger CCCH-type with G patch domain-containing protein|g patch domain-containing protein 6|zinc finger CCCH domain-containing protein 9|zinc finger and G patch domain-containing protein|zinc finger, CCCH-type with G patch domain 39 0.005338 9.479 1 1 +84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 2 protein-coding SIAT2|ST6GalII beta-galactoside alpha-2,6-sialyltransferase 2|CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,6-sialyltransferase 2|ST6 beta-galactosamide alpha-2,6-sialyltranferase 2|alpha 2,6-ST 2|beta-galactoside alpha-2,6-sialyltransferase II|sialyltransferase|sialyltransferase 2 (monosialoganglioside sialyltransferase) 106 0.01451 5.745 1 1 +84622 ZNF594 zinc finger protein 594 17 protein-coding - zinc finger protein 594|zinc finger protein HZF18 69 0.009444 6.877 1 1 +84623 KIRREL3 kin of IRRE like 3 (Drosophila) 11 protein-coding KIRRE|MRD4|NEPH2|PRO4502 kin of IRRE-like protein 3|kin of irregular chiasm-like protein 3|nephrin-like 2|nephrin-like protein 2 44 0.006022 2.667 1 1 +84624 FNDC1 fibronectin type III domain containing 1 6 protein-coding AGS8|FNDC2|MEL4B3|bA243O10.1|dJ322A24.1 fibronectin type III domain-containing protein 1|activation-associated cDNA protein|expressed in synovial lining protein|fibronectin type III domain containing 2 179 0.0245 7.58 1 1 +84626 KRBA1 KRAB-A domain containing 1 7 protein-coding - protein KRBA1 68 0.009307 7.696 1 1 +84627 ZNF469 zinc finger protein 469 16 protein-coding BCS|BCS1 zinc finger protein 469 104 0.01423 7.403 1 1 +84628 NTNG2 netrin G2 9 protein-coding LHLL9381|Lmnt2|NTNG1|bA479K20.1 netrin-G2|bA479K20.1 (novel protein)|laminet 2|netrin G1 56 0.007665 4.961 1 1 +84629 TNRC18 trinucleotide repeat containing 18 7 protein-coding CAGL79|TNRC18A trinucleotide repeat-containing gene 18 protein|long CAG trinucleotide repeat-containing gene 79 protein 167 0.02286 11.63 1 1 +84630 TTBK1 tau tubulin kinase 1 6 protein-coding BDTK tau-tubulin kinase 1|brain-derived tau kinase 107 0.01465 4.283 1 1 +84631 SLITRK2 SLIT and NTRK like family member 2 X protein-coding CXorf2|SLITL1 SLIT and NTRK-like protein 2|slit and trk like gene 2|slit-like 1 151 0.02067 3.228 1 1 +84632 AFAP1L2 actin filament associated protein 1 like 2 10 protein-coding CTB-1144G6.4|KIAA1914|XB130 actin filament-associated protein 1-like 2|AFAP1-like protein 2|CTB-1144G6.6 49 0.006707 8.753 1 1 +84634 KISS1R KISS1 receptor 19 protein-coding AXOR12|CPPB1|GPR54|HH8|HOT7T175|KISS-1R kiSS-1 receptor|G protein-coupled receptor 54|G-protein coupled receptor OT7T175|hypogonadotropin-1|kisspeptins receptor|metastin receptor 2 0.0002737 2.244 1 1 +84636 GPR174 G protein-coupled receptor 174 X protein-coding FKSG79|GPCR17|LYPSR3 probable G-protein coupled receptor 174 58 0.007939 2.391 1 1 +84639 IL1F10 interleukin 1 family member 10 (theta) 2 protein-coding FIL1-theta|FKSG75|IL-1HY2|IL-38|IL1-theta|IL1HY2 interleukin-1 family member 10|FIL1 theta|IL-1 theta|IL-1F10 (canonical form IL-1F10a)|family of interleukin 1-theta|interleukin-1 HY2|interleukin-1 receptor antagonist FKSG75|interleukin-1 receptor antagonist-like FIL1 theta|interleukin-38 18 0.002464 0.4003 1 1 +84640 USP38 ubiquitin specific peptidase 38 4 protein-coding HP43.8KD ubiquitin carboxyl-terminal hydrolase 38|deubiquitinating enzyme 38|ubiquitin specific protease 38|ubiquitin thioesterase 38|ubiquitin thiolesterase 38|ubiquitin-specific-processing protease 38 56 0.007665 9.452 1 1 +84641 MFSD14B major facilitator superfamily domain containing 14B 9 protein-coding HIATL1 hippocampus abundant transcript-like protein 1|hippocampus abundant transcript-like 1 25 0.003422 10.44 1 1 +84643 KIF2B kinesin family member 2B 17 protein-coding - kinesin-like protein KIF2B|kinesin protein|testis tissue sperm-binding protein Li 82P 157 0.02149 0.04718 1 1 +84645 C22orf23 chromosome 22 open reading frame 23 22 protein-coding EVG1|dJ1039K5.6 UPF0193 protein EVG1 11 0.001506 5.622 1 1 +84647 PLA2G12B phospholipase A2 group XIIB 10 protein-coding FKSG71|GXIIB|GXIIIsPLA2|PLA2G13|sPLA2-GXIIB group XIIB secretory phospholipase A2-like protein|group XIII secreted phospholipase A2|phospholipase A2, group XIII 13 0.001779 1.736 1 1 +84648 LCE3D late cornified envelope 3D 1 protein-coding LEP16|SPRL6A|SPRL6B 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 16 0.00219 1.026 1 1 +84649 DGAT2 diacylglycerol O-acyltransferase 2 11 protein-coding ARAT|GS1999FULL|HMFN1045 diacylglycerol O-acyltransferase 2|acyl-CoA retinol O-fatty-acyltransferase|diacylglycerol O-acyltransferase homolog 2|diacylglycerol O-acyltransferase-like protein 2|diglyceride acyltransferase 2 18 0.002464 8.098 1 1 +84650 EBPL emopamil binding protein like 13 protein-coding EBRP emopamil-binding protein-like|emopamil binding related protein, delta8-delta7 sterol isomerase related protein|emopamil-binding-related protein 29 0.003969 8.957 1 1 +84651 SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) 5 protein-coding ECG2|ECRG2 serine protease inhibitor Kazal-type 7|ECRG-2|esophagus cancer-related gene 2 protein|esophagus cancer-related gene-2 4 0.0005475 0.9144 1 1 +84654 SPZ1 spermatogenic leucine zipper 1 5 protein-coding NYD-TSP1|PPP1R148 spermatogenic leucine zipper protein 1|protein phosphatase 1, regulatory subunit 148|spermatogenic zip 1|testis secretory sperm-binding protein Li 232m|testis-specific protein 1 42 0.005749 0.2352 1 1 +84656 GLYR1 glyoxylate reductase 1 homolog 16 protein-coding BM045|HIBDL|N-PAC|NP60 putative oxidoreductase GLYR1|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 59 0.008076 11.12 1 1 +84657 LINC00852 long intergenic non-protein coding RNA 852 3 ncRNA C3orf42|GHRL-AS2|GHRLOS2|NAG73 GHRL antisense RNA 2 (non-protein coding)|NPC-related protein NAG73|ghrelin opposite strand RNA 2 (non-protein coding)|ghrelin opposite strand/antisense RNA 2 (tail to tail) 2 0.0002737 3.897 1 1 +84658 ADGRE3 adhesion G protein-coupled receptor E3 19 protein-coding EMR3 adhesion G protein-coupled receptor E3|EGF-like module receptor 3|EGF-like module-containing mucin-like hormone receptor-like 3|egf-like module containing, mucin-like, hormone receptor-like 3|egf-like module-containing mucin-like receptor 3 60 0.008212 1.413 1 1 +84659 RNASE7 ribonuclease A family member 7 14 protein-coding RAE1 ribonuclease 7|RNase 7|SAP-2|ribonuclease, RNase A family, 7|skin-derived antimicrobial protein 2 10 0.001369 2.314 1 1 +84660 CCDC62 coiled-coil domain containing 62 12 protein-coding CT109|ERAP75|TSP-NY coiled-coil domain-containing protein 62|aaa-protein|cancer/testis antigen 109|coiled-coil domain-containing protein 60|testis-specific protein TSP-NY 49 0.006707 2.144 1 1 +84661 DPY30 dpy-30, histone methyltransferase complex regulatory subunit 2 protein-coding Cps25|HDPY-30|Saf19 protein dpy-30 homolog|dpy-30 homolog|dpy-30-like protein|dpy-30L 4 0.0005475 9.501 1 1 +84662 GLIS2 GLIS family zinc finger 2 16 protein-coding NKL|NPHP7 zinc finger protein GLIS2|GLI-similar 2|Kruppel-like zinc finger protein GLIS2|nephrocystin-7|neuronal Krueppel-like protein 23 0.003148 9.432 1 1 +84663 3.289 0 1 +84664 CSPG4P2Y chondroitin sulfate proteoglycan 4 pseudogene 2, Y-linked Y pseudo CSPG4LYP2|CSPG4P2|CSPG4PY2 chondroitin sulfate proteoglycan 4-like, Y-linked pseudogene 2|chondroitin sulfate proteoglycan 4-like, Y-linked, centromeric 0.02809 0 1 +84665 MYPN myopalladin 10 protein-coding CMD1DD|CMH22|MYOP|RCM4 myopalladin|sarcomeric protein myopalladin, 145 kDa (MYOP) 120 0.01642 1.332 1 1 +84666 RETNLB resistin like beta 3 protein-coding FIZZ1|FIZZ2|HXCP2|RELM-beta|RELMb|RELMbeta|XCP2 resistin-like beta|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 16 0.00219 0.3877 1 1 +84667 HES7 hes family bHLH transcription factor 7 17 protein-coding SCDO4|bHLHb37 transcription factor HES-7|bHLH factor Hes7|class B basic helix-loop-helix protein 37|hHes7|hairy and enhancer of split 7 3 0.0004106 1.47 1 1 +84668 FAM126A family with sequence similarity 126 member A 7 protein-coding DRCTNNB1A|HCC|HLD5|HYCC1 hyccin|down regulated by Ctnnb1, a|down-regulated by CTNNB1 protein A 32 0.00438 8.568 1 1 +84669 USP32 ubiquitin specific peptidase 32 17 protein-coding NY-REN-60|USP10 ubiquitin carboxyl-terminal hydrolase 32|deubiquitinating enzyme 32|renal carcinoma antigen NY-REN-60|ubiquitin specific protease 32|ubiquitin thioesterase 32|ubiquitin thiolesterase 32|ubiquitin-specific-processing protease 32 79 0.01081 10.02 1 1 +84671 ZNF347 zinc finger protein 347 19 protein-coding ZNF1111 zinc finger protein 347|CTD-2620I22.7|zinc finger 1111|zinc finger protein 1111 92 0.01259 6.292 1 1 +84672 TTTY6 testis-specific transcript, Y-linked 6 (non-protein coding) Y ncRNA LINC00127|NCRNA00127|TTTY6A|TTY6 long intergenic non-protein coding RNA 127|testis transcript Y 6 0.02347 0 1 +84673 TTTY8 testis-specific transcript, Y-linked 8 (non-protein coding) Y ncRNA LINC00130|NCRNA00130|TTY8 long intergenic non-protein coding RNA 130|testis transcript Y 8|transcript Y 8 0.004874 0 1 +84674 CARD6 caspase recruitment domain family member 6 5 protein-coding CINCIN1 caspase recruitment domain-containing protein 6|CARD-containing inhibitor of Nod1 and Cardiak-induced NF-kB activation|caspase recruitment domain protein 6 92 0.01259 7.677 1 1 +84675 TRIM55 tripartite motif containing 55 8 protein-coding MURF-2|RNF29|muRF2 tripartite motif-containing protein 55|muscle specific ring finger 2|muscle-specific RING finger protein 2|ring finger protein 29 64 0.00876 2.547 1 1 +84676 TRIM63 tripartite motif containing 63 1 protein-coding IRF|MURF1|MURF2|RNF28|SMRZ 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, E3 ubiquitin protein ligase|tripartite motif-containing protein 63 23 0.003148 2.072 1 1 +84677 DSCR8 Down syndrome critical region 8 21 ncRNA C21orf65|CT25.1a|CT25.1b|MMA-1|MMA-1a|MMA-1b|MMA1|MTAG2 Down syndrome critical region gene 8|cancer/testis antigen family 25, member 1a|cancer/testis antigen family 25, member 1b|malignant melanoma associated protein 1|malignant melanoma-associated 1|melanoma-testis-associated protein 2 1 0.0001369 0.9023 1 1 +84678 KDM2B lysine demethylase 2B 12 protein-coding CXXC2|FBXL10|Fbl10|JHDM1B|PCCX2 lysine-specific demethylase 2B|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|lysine (K)-specific demethylase 2B|protein-containing CXXC domain 2 104 0.01423 9.506 1 1 +84679 SLC9A7 solute carrier family 9 member A7 X protein-coding NHE-7|NHE7|SLC9A6 sodium/hydrogen exchanger 7|Na(+)/H(+) exchanger 7|nonselective sodium potassium/proton exchanger|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 43 0.005886 6.042 1 1 +84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) 11 protein-coding ACS|PHACS 1-aminocyclopropane-1-carboxylate synthase-like protein 1|1-aminocyclopropane-1-carboxylate synthase-like protein (non-functional) isoform 1|1-aminocyclopropane-1-carboxylate synthase-like protein (non-functional) isoform 2|1-aminocyclopropane-1-carboxylate synthase-like protein (non-functional) isoform 4|ACC synthase-like protein 1 51 0.006981 7.424 1 1 +84681 HINT2 histidine triad nucleotide binding protein 2 9 protein-coding HIT-17 histidine triad nucleotide-binding protein 2, mitochondrial|HINT-2|HINT-3|HIT-17kDa|PKCI-1-related HIT protein|protein kinase C inhibitor-2 7 0.0009581 8.893 1 1 +84684 INSM2 INSM transcriptional repressor 2 14 protein-coding IA-6|IA6|mlt1 insulinoma-associated protein 2|INSM2 variant 1|insulinoma-associated 2|insulinoma-associated protein IA-6|zinc finger protein IA-6 30 0.004106 1.083 1 1 +84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B 17 protein-coding PPP1R6|PPP1R9|SPINO|Spn neurabin-2|neurabin-II|protein phosphatase 1, regulatory (inhibitor) subunit 9B|protein phosphatase 1, regulatory subunit 9B, spinophilin 22 0.003011 10.8 1 1 +84688 C9orf24 chromosome 9 open reading frame 24 9 protein-coding CBE1|NYD-SP22|SMRP1|bA573M23.4 spermatid-specific manchette-related protein 1|ciliated bronchial epithelial protein 1|ciliated bronchial epithelium 1|testis development protein NYD-SP22 17 0.002327 3.116 1 1 +84689 MS4A14 membrane spanning 4-domains A14 11 protein-coding MS4A16|NYD-SP21 membrane-spanning 4-domains subfamily A member 14|MS4A13 protein|membrane-spanning 4-domains, subfamily A, member 16|testes development-related NYD-SP21|testis development protein NYD-SP21 98 0.01341 4.681 1 1 +84690 SPATA22 spermatogenesis associated 22 17 protein-coding NYD-SP20|NYDSP20 spermatogenesis-associated protein 22|testicular tissue protein Li 186|testis development protein NYD-SP20 31 0.004243 0.9472 1 1 +84691 FAM71F1 family with sequence similarity 71 member F1 7 protein-coding FAM137A|NYD-SP18 protein FAM71F1|family with sequence similarity 137, member A|testes development-related NYD-SP18|testicular tissue protein Li 67|testis development protein NYD-SP18 27 0.003696 0.9877 1 1 +84692 CCDC54 coiled-coil domain containing 54 3 protein-coding NYD-SP17|SP17 coiled-coil domain-containing protein 54|sperm protein 17|testes development-related NYD-SP17|testicular tissue protein Li 33|testis development protein NYD-SP17 42 0.005749 0.5318 1 1 +84693 MCEE methylmalonyl-CoA epimerase 2 protein-coding GLOD2 methylmalonyl-CoA epimerase, mitochondrial|DL-methylmalonyl-CoA racemase|glyoxalase domain containing 2 17 0.002327 7.032 1 1 +84694 GJA10 gap junction protein alpha 10 6 protein-coding CX62 gap junction alpha-10 protein|connexin 62|gap junction protein, alpha 10, 62kDa 55 0.007528 0.2461 1 1 +84695 LOXL3 lysyl oxidase like 3 2 protein-coding LOXL lysyl oxidase homolog 3|lysyl oxidase-like protein 3 55 0.007528 6.718 1 1 +84696 ABHD1 abhydrolase domain containing 1 2 protein-coding LABH1 protein ABHD1|abhydrolase domain-containing protein 1|alpha/beta hydrolase domain-containing protein 1|lung alpha/beta hydrolase 1|testicular tissue protein Li 5 27 0.003696 3.358 1 1 +84698 CAPS2 calcyphosine 2 12 protein-coding UG0636c06 calcyphosin-2|calcyphosphine 2 63 0.008623 4.537 1 1 +84699 CREB3L3 cAMP responsive element binding protein 3 like 3 19 protein-coding CREB-H|CREBH|HYST1481 cyclic AMP-responsive element-binding protein 3-like protein 3|CREB/ATF family transcription factor 57 0.007802 2.248 1 1 +84700 MYO18B myosin XVIIIB 22 protein-coding KFS4 unconventional myosin-XVIIIb|myosin 18B 242 0.03312 2.394 1 1 +84701 COX4I2 cytochrome c oxidase subunit 4I2 20 protein-coding COX4|COX4-2|COX4B|COX4L2|COXIV-2|dJ857M17.2 cytochrome c oxidase subunit 4 isoform 2, mitochondrial|COX IV-2|cytochrome c oxidase subunit IV isoform 2 (lung)|cytochrome c oxidase subunit IV-like 2 14 0.001916 4.737 1 1 +84705 GTPBP3 GTP binding protein 3 (mitochondrial) 19 protein-coding COXPD23|GTPBG3|MSS1|MTGP1|THDF1 tRNA modification GTPase GTPBP3, mitochondrial|mitochondrial GTP-binding protein 1 29 0.003969 8.467 1 1 +84706 GPT2 glutamic--pyruvic transaminase 2 16 protein-coding ALT2|GPT 2|MRT49 alanine aminotransferase 2|glutamate pyruvate transaminase 2|glutamic pyruvate transaminase (alanine aminotransferase) 2|glutamic pyruvate transaminase 2|glutamic--alanine transaminase 2 37 0.005064 9.777 1 1 +84707 BEX2 brain expressed X-linked 2 X protein-coding BEX1|DJ79P11.1 protein BEX2|brain-expressed X-linked protein 2|hBex2 15 0.002053 7.472 1 1 +84708 LNX1 ligand of numb-protein X 1 4 protein-coding LNX|MPDZ|PDZRN2 E3 ubiquitin-protein ligase LNX|PDZ domain-containing ring finger protein 2|ligand of numb-protein X 1, E3 ubiquitin protein ligase|multi-PDZ-domain-containing protein, E3 ubiquitin-protein ligase LNX|numb-binding protein 1 47 0.006433 7.691 1 1 +84709 MGARP mitochondria localized glutamic acid rich protein 4 protein-coding C4orf49|CESP-1|HUMMR|OSAP protein MGARP|corneal endothelium-specific protein 1|hypoxia up-regulated mitochondrial movement regulator protein|ovary-specific acidic protein 12 0.001642 3.194 1 1 +84717 HDGFRP2 hepatoma-derived growth factor-related protein 2 19 protein-coding HDGF-2|HDGF2|HRP-2 hepatoma-derived growth factor-related protein 2 52 0.007117 10.3 1 1 +84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O 9 protein-coding HPMRS2 GPI ethanolamine phosphate transferase 3|phosphatidylinositol-glycan biosynthesis class O protein 81 0.01109 9.749 1 1 +84722 PSRC1 proline and serine rich coiled-coil 1 1 protein-coding DDA3|FP3214 proline/serine-rich coiled-coil protein 1|differential display and activated by p53|p53-regulated DDA3|proline/serine-rich coiled-coil 1 14 0.001916 7.445 1 1 +84725 PLEKHA8 pleckstrin homology domain containing A8 7 protein-coding FAPP2 pleckstrin homology domain-containing family A member 8|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 (phosphoinositide binding specific) member 8|serologically defined breast cancer antigen NY-BR-86 42 0.005749 6.294 1 1 +84726 PRRC2B proline rich coiled-coil 2B 9 protein-coding BAT2L|BAT2L1|KIAA0515|LQFBS-1 protein PRRC2B|HLA-B associated transcript 2-like|HLA-B-associated transcript 2-like 1|proline-rich coiled-coil protein 2B|protein BAT2-like 1 134 0.01834 12.12 1 1 +84727 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 12 protein-coding GRCC9|SSB2 SPRY domain-containing SOCS box protein 2|SPRY domain-containing SOCS box protein SSB-2|gene-rich cluster protein C9 25 0.003422 7.633 1 1 +84733 CBX2 chromobox 2 17 protein-coding CDCA6|M33|SRXY5 chromobox protein homolog 2|Pc class homolog|cell division cycle associated 6|chromobox homolog 2 (Pc class homolog, Drosophila)|modifier 3 32 0.00438 7.512 1 1 +84734 FAM167B family with sequence similarity 167 member B 1 protein-coding C1orf90 protein FAM167B 12 0.001642 6.256 1 1 +84735 CNDP1 carnosine dipeptidase 1 18 protein-coding CN1|CPGL2|HsT2308 beta-Ala-His dipeptidase|CNDP dipeptidase 1|carnosinase 1|carnosine dipeptidase 1 (metallopeptidase M20 family)|glutamate carboxypeptidase-like protein 2|serum carnosinase 52 0.007117 2.176 1 1 +84740 AFAP1-AS1 AFAP1 antisense RNA 1 4 ncRNA AFAP1-AS|AFAP1AS AFAP1 antisense RNA 1 (non-protein coding) 4.284 0 1 +84747 UNC119B unc-119 lipid binding chaperone B 12 protein-coding POC7B protein unc-119 homolog B|POC7 centriolar protein homolog B|unc-119 homolog B 16 0.00219 9.88 1 1 +84749 USP30 ubiquitin specific peptidase 30 12 protein-coding - ubiquitin carboxyl-terminal hydrolase 30|deubiquitinating enzyme 30|ub-specific protease 30|ubiquitin thioesterase 30|ubiquitin thiolesterase 30|ubiquitin-specific protease 30|ubiquitin-specific-processing protease 30 35 0.004791 8.617 1 1 +84750 FUT10 fucosyltransferase 10 8 protein-coding FUCTX alpha-(1,3)-fucosyltransferase 10|alpha (1,3) fucosyltransferase|alpha 1,3-fucosyl transferase|fuc-TX|fucT-X|fucosyltransferase 10 (alpha (1,3) fucosyltransferase)|fucosyltransferase X|galactoside 3-L-fucosyltransferase 10 37 0.005064 6.765 1 1 +84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 16 protein-coding - UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9|BGnT-9|beta-1,3-Gn-T9|beta-1,3-N-acetylglucosaminyltransferase 9|beta-1,3-galactosyltransferase-related protein|beta3Gn-T9 13 0.001779 8.572 1 1 +84759 PCGF1 polycomb group ring finger 1 2 protein-coding 2010002K04Rik|NSPC1|RNF3A-2|RNF68 polycomb group RING finger protein 1|RING finger protein 68|nervous system Polycomb-1 17 0.002327 8.016 1 1 +84765 ZNF577 zinc finger protein 577 19 protein-coding - zinc finger protein 577 38 0.005201 6.904 1 1 +84766 CRACR2A calcium release activated channel regulator 2A 12 protein-coding EFCAB4B EF-hand calcium-binding domain-containing protein 4B|CRAC channel regulator 2A|CRAC regulator 2A|Ca2+ release-activated Ca2+ (CRAC) channel regulator 2A|EF-hand calcium binding domain 4B|calcium release-activated calcium channel regulator 2A 55 0.007528 5.548 1 1 +84767 TRIM51 tripartite motif-containing 51 11 protein-coding SPRYD5|TRIM51A tripartite motif-containing protein 51|SPRY domain containing 5|SPRY domain-containing protein 5 109 0.01492 0.2384 1 1 +84769 MPV17L2 MPV17 mitochondrial inner membrane protein like 2 19 protein-coding FKSG24 mpv17-like protein 2|MPV17 mitochondrial membrane protein-like 2 19 0.002601 8.343 1 1 +84771 DDX11L2 DEAD/H-box helicase 11 like 2 2 pseudo - DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 2|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 2|DEAD/H box polypeptide 11 like 2 1 0.0001369 3.626 1 1 +84775 ZNF607 zinc finger protein 607 19 protein-coding - zinc finger protein 607 67 0.009171 7.322 1 1 +84779 NAA11 N(alpha)-acetyltransferase 11, NatA catalytic subunit 4 protein-coding ARD1B|ARD2|hARD2 N-alpha-acetyltransferase 11|=N-terminal acetyltransferase complex ARD1 subunit homolog B|ARD1 homolog B|N-terminal acetyltransferase complex ARD1 subunit homolog B|human arrest defective 2|natA catalytic subunit Naa11 28 0.003832 0.4987 1 1 +84787 KMT5C lysine methyltransferase 5C 19 protein-coding SUV420H2|Suv4-20h2 histone-lysine N-methyltransferase KMT5C|histone-lysine N-methyltransferase SUV420H2|lysine (K)-specific methyltransferase 5C|lysine N-methyltransferase 5C|lysine-specific methyltransferase 5C|su(var)4-20 homolog 2|suppressor of variegation 4-20 homolog 2 23 0.003148 7.546 1 1 +84789 MGC2889 uncharacterized protein MGC2889 3 ncRNA - - 1.512 0 1 +84790 TUBA1C tubulin alpha 1c 12 protein-coding TUBA6|bcm948 tubulin alpha-1C chain|alpha-tubulin 6|tubulin alpha-6 chain|tubulin, alpha 6 52 0.007117 11.98 1 1 +84791 LINC00467 long intergenic non-protein coding RNA 467 1 ncRNA C1orf97 - 4 0.0005475 6.821 1 1 +84792 FAM220A family with sequence similarity 220 member A 7 protein-coding ACPIN1|C7orf70|SIPAR protein FAM220A|STAT3-interacting protein as a repressor 21 0.002874 8.907 1 1 +84793 FOXD2-AS1 FOXD2 antisense RNA 1 (head to head) 1 ncRNA - FOXD2 antisense RNA 1 (non-protein coding)|uncharacterized protein MGC12982 5.843 0 1 +84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 10 protein-coding C10orf33|FP3420 pyridine nucleotide-disulfide oxidoreductase domain-containing protein 2 22 0.003011 6.417 1 1 +84798 C19orf48 chromosome 19 open reading frame 48 19 protein-coding - uncharacterized protein C19orf48|multidrug resistance-related protein 9 0.001232 10.21 1 1 +84803 GPAT3 glycerol-3-phosphate acyltransferase 3 4 protein-coding AGPAT 10|AGPAT10|AGPAT8|AGPAT9|HMFN0839|LPAAT-theta|MAG1 glycerol-3-phosphate acyltransferase 3|1-AGP acyltransferase 9|1-AGPAT 9|1-acyl-sn-glycerol-3-phosphate O-acyltransferase 10|1-acyl-sn-glycerol-3-phosphate O-acyltransferase 9|1-acylglycerol-3-phosphate O-acyltransferase 8|1-acylglycerol-3-phosphate O-acyltransferase 9|GPAT-3|MAG-1|acyl-CoA:glycerol-3-phosphate acyltransferase 3|endoplasmic reticulum associated GPAT|hGPAT3|lung cancer metastasis-associated protein 1|lysophosphatidic acid acyltransferase theta|testis secretory sperm-binding protein Li 213e 30 0.004106 6.171 1 1 +84804 MFSD9 major facilitator superfamily domain containing 9 2 protein-coding - major facilitator superfamily domain-containing protein 9 47 0.006433 7.243 1 1 +84807 NFKBID NFKB inhibitor delta 19 protein-coding IkappaBNS|TA-NFKBH NF-kappa-B inhibitor delta|I-kappa-B-delta|T-cell activation NFKB-like protein|ikB-delta|ikappaBdelta|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, delta 28 0.003832 5.201 1 1 +84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 1 protein-coding C1orf170 PGC-1 and ERR-induced regulator in muscle protein 1|PGC-1 and ERR-induced regulator in muscle 1|PPARGC1 and ESRR-induced regulator in muscle 1|pGC-1 and ERR-induced regulator in muscle protein 1|peroxisome proliferator-activated receptor gamma coactivator 1 and estrogen-related receptor-induced regulator in muscle 1 10 0.001369 4.835 1 1 +84809 CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 1 pseudo CROCCL1 ciliary rootlet coiled-coil, rootletin-like 1 376 0.05146 8.384 1 1 +84811 BUD13 BUD13 homolog 11 protein-coding Cwc26|fSAP71 BUD13 homolog|functional spliceosome-associated protein 71 43 0.005886 8.677 1 1 +84812 PLCD4 phospholipase C delta 4 2 protein-coding - 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-4|PLC delta4|phosphoinositide phospholipase C-delta-4 42 0.005749 6.338 1 1 +84814 PLPP7 phospholipid phosphatase 7 (inactive) 9 protein-coding C9orf67|NET39|PPAPDC3 inactive phospholipid phosphatase 7|nuclear envelope transmembrane protein NET39|phosphatidic acid phosphatase type 2 domain containing 3|phosphatidic acid phosphatase type 2 domain-containing protein 3|probable lipid phosphate phosphatase PPAPDC3 23 0.003148 5.27 1 1 +84815 MGC12916 uncharacterized protein MGC12916 17 ncRNA - - 2.926 0 1 +84816 RTN4IP1 reticulon 4 interacting protein 1 6 protein-coding NIMP|OPA10 reticulon-4-interacting protein 1, mitochondrial|NOGO-interacting mitochondrial protein 37 0.005064 7.293 1 1 +84817 TXNDC17 thioredoxin domain containing 17 17 protein-coding TRP14|TXNL5 thioredoxin domain-containing protein 17|14 kDa thioredoxin-related protein|protein 42-9-9|testicular tissue protein Li 214|thioredoxin (Trx)-related protein, 14 kDa|thioredoxin-like 5|thioredoxin-like protein 5 7 0.0009581 9.721 1 1 +84818 IL17RC interleukin 17 receptor C 3 protein-coding CANDF9|IL17-RL|IL17RL interleukin-17 receptor C|IL-17 receptor C|IL-17RL|IL17F receptor|IL17Rhom|interleukin-17 receptor homolog|interleukin-17 receptor-like protein|zcytoR14 44 0.006022 9.281 1 1 +84820 POLR2J4 RNA polymerase II subunit J4, pseudogene 7 pseudo RPB11-phi polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa pseudogene|polymerase (RNA) II (DNA directed) polypeptide J4, pseudogene|polymerase (RNA) II subunit J4, pseudogene 61 0.008349 8.098 1 1 +84823 LMNB2 lamin B2 19 protein-coding EPM9|LAMB2|LMN2 lamin-B2|lamin B3 43 0.005886 10.72 1 1 +84824 FCRLA Fc receptor like A 1 protein-coding FCRL|FCRL1|FCRLM1|FCRLX|FCRLb|FCRLc1|FCRLc2|FCRLd|FCRLe|FCRX|FREB Fc receptor-like A|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 44 0.006022 3.879 1 1 +84826 SFT2D3 SFT2 domain containing 3 2 protein-coding - vesicle transport protein SFT2C|SFT2 domain-containing protein 3 8.437 0 1 +84830 ADTRP androgen dependent TFPI regulating protein 6 protein-coding AIG1L|C6orf105|dJ413H6.1 androgen-dependent TFPI-regulating protein|androgen-dependent TPF1-regulating protein 19 0.002601 4.741 1 1 +84832 ANKRD36BP1 ankyrin repeat domain 36B pseudogene 1 1 pseudo ANKRD26L1|ANKRD36BL1 ankyrin repeat domain 26-like 1|ankyrin repeat domain 36B-like 1 (pseudogene) 12 0.001642 6.062 1 1 +84833 USMG5 up-regulated during skeletal muscle growth 5 homolog (mouse) 10 protein-coding DAPIT|HCVFTP2|bA792D24.4 up-regulated during skeletal muscle growth protein 5|Diabetes Associated Protein in Insulin-sensitive Tissues|HCV F-transactivated protein 2|diabetes-associated protein in insulin-sensitive tissues|upregulated during skeletal muscle growth 5 homolog 8 0.001095 9.757 1 1 +84836 ABHD14B abhydrolase domain containing 14B 3 protein-coding CIB|HEL-S-299 protein ABHD14B|CCG1-interacting factor B|abhydrolase domain-containing protein 14B|alpha/beta hydrolase domain-containing protein 14B|cell cycle gene 1-interacting factor B|epididymis secretory protein Li 299 6 0.0008212 10.49 1 1 +84837 ARHGAP5-AS1 ARHGAP5 antisense RNA 1 (head to head) 14 ncRNA C14orf128 ARHGAP5 antisense RNA 1 (non-protein coding) 6.161 0 1 +84838 ZNF496 zinc finger protein 496 1 protein-coding NIZP1|ZFP496|ZKSCAN17|ZSCAN49 zinc finger protein 496|NSD1 (nuclear receptor binding SET-domain containing 1)-interacting zinc finger protein 1|zinc finger protein with KRAB and SCAN domains 17 62 0.008486 8.2 1 1 +84839 RAX2 retina and anterior neural fold homeobox 2 19 protein-coding ARMD6|CORD11|QRX|RAXL1 retina and anterior neural fold homeobox protein 2|Q50-type retinal homeobox protein|retina and anterior neural fold homeobox like 1|retina and anterior neural fold homeobox-like protein 1 8 0.001095 0.2058 1 1 +84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like 1 protein-coding 4-HPPD-L|GLOXD1 4-hydroxyphenylpyruvate dioxygenase-like protein|glyoxalase domain containing 1|glyoxalase domain-containing protein 1 13 0.001779 4.9 1 1 +84844 PHF5A PHD finger protein 5A 22 protein-coding INI|Rds3|SAP14b|SF3B7|SF3b14b|bK223H9.2 PHD finger-like domain-containing protein 5A|PHD finger-like domain protein 5A|PHD-finger 5a|splicing factor 3B associated 14 kDa protein|splicing factor 3b, subunit 7 9 0.001232 8.965 1 1 +84848 MIR503HG MIR503 host gene X ncRNA H19X|MIR503HG2 H19 X-linked co-expressed lncRNA|MIR503 host gene (non-protein coding)|uncharacterized protein MGC16121 1 0.0001369 3.722 1 1 +84849 3.469 0 1 +84850 GLIS3-AS1 GLIS3 antisense RNA 1 9 ncRNA C9orf70 GLIS3 antisense RNA 1 (non-protein coding) 0 0 0.8563 1 1 +84851 TRIM52 tripartite motif containing 52 5 protein-coding RNF102 tripartite motif-containing protein 52|RING finger protein 102 16 0.00219 7.176 1 1 +84852 ATP1A1-AS1 ATP1A1 antisense RNA 1 1 ncRNA ATP1A1OS|C1orf203 ATP1A1 opposite strand 2 0.0002737 5.836 1 1 +84856 LINC00839 long intergenic non-protein coding RNA 839 10 ncRNA - - 5 0.0006844 4.495 1 1 +84858 ZNF503 zinc finger protein 503 10 protein-coding NOLZ-1|NOLZ1|Nlz2 zinc finger protein 503 21 0.002874 8.572 1 1 +84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 3 protein-coding - leucine-rich repeat and calponin homology domain-containing protein 3|leucine-rich repeats and calponin homology (CH) domain containing 3 56 0.007665 8.093 1 1 +84861 KLHL22 kelch like family member 22 22 protein-coding KELCHL kelch-like protein 22|kelch-like 22 49 0.006707 8.982 1 1 +84864 MINA MYC induced nuclear antigen 3 protein-coding MDIG|MINA53|NO52|ROX bifunctional lysine-specific demethylase and histidyl-hydroxylase MINA|60S ribosomal protein L27a histidine hydroxylase|histone lysine demethylase MINA|mineral dust induced gene protein|myc-induced nuclear antigen, 53 kDa|nucleolar protein 52|ribosomal oxygenase MINA 23 0.003148 9.518 1 1 +84865 CCDC142 coiled-coil domain containing 142 2 protein-coding - coiled-coil domain-containing protein 142 39 0.005338 7.314 1 1 +84866 TMEM25 transmembrane protein 25 11 protein-coding - transmembrane protein 25|0610039J01Rik 19 0.002601 8.424 1 1 +84867 PTPN5 protein tyrosine phosphatase, non-receptor type 5 11 protein-coding PTPSTEP|STEP|STEP61 tyrosine-protein phosphatase non-receptor type 5|neural-specific protein-tyrosine phosphatase|protein tyrosine phosphatase, non-receptor type 5 (striatum-enriched)|protein-tyrosine phosphatase striatum-enriched|striatal-enriched protein tyrosine phosphatase|striatum-enriched protein-tyrosine phosphatase 52 0.007117 2.684 1 1 +84868 HAVCR2 hepatitis A virus cellular receptor 2 5 protein-coding CD366|HAVcr-2|KIM-3|TIM3|TIMD-3|TIMD3|Tim-3 hepatitis A virus cellular receptor 2|T cell immunoglobulin mucin 3|T-cell immunoglobulin and mucin domain-containing protein 3|T-cell immunoglobulin mucin family member 3|T-cell immunoglobulin mucin receptor 3|T-cell membrane protein 3|kidney injury molecule-3 33 0.004517 7.914 1 1 +84869 CBR4 carbonyl reductase 4 4 protein-coding SDR45C1 carbonyl reductase family member 4|3-oxoacyl-[acyl-carrier-protein] reductase|carbonic reductase 4|quinone reductase CBR4|short chain dehydrogenase/reductase family 45C member 1 9 0.001232 8.803 1 1 +84870 RSPO3 R-spondin 3 6 protein-coding CRISTIN1|PWTSR|THSD2 R-spondin-3|R-spondin 3 homolog|protein with TSP type-1 repeat|roof plate-specific spondin-3|thrombospondin type-1 domain-containing protein 2|thrombospondin, type I, domain containing 2 23 0.003148 4.845 1 1 +84871 AGBL4 ATP/GTP binding protein like 4 1 protein-coding CCP6 cytosolic carboxypeptidase 6 31 0.004243 2.42 1 1 +84872 ZC3H10 zinc finger CCCH-type containing 10 12 protein-coding ZC3HDC10 zinc finger CCCH domain-containing protein 10|zinc finger CCCH-type domain containing 10 20 0.002737 7.497 1 1 +84873 ADGRG7 adhesion G protein-coupled receptor G7 3 protein-coding GPR128 adhesion G-protein coupled receptor G7|G-protein coupled receptor 128 70 0.009581 1.513 1 1 +84874 ZNF514 zinc finger protein 514 2 protein-coding - zinc finger protein 514 38 0.005201 7.61 1 1 +84875 PARP10 poly(ADP-ribose) polymerase family member 10 8 protein-coding ARTD10 poly [ADP-ribose] polymerase 10|ADP-ribosyltransferase diphtheria toxin-like 10 46 0.006296 10.48 1 1 +84876 ORAI1 ORAI calcium release-activated calcium modulator 1 12 protein-coding CRACM1|IMD9|ORAT1|TAM2|TMEM142A calcium release-activated calcium channel protein 1|calcium release-activated calcium modulator 1|protein orai-1|transmembrane protein 142A 19 0.002601 8.831 1 1 +84878 ZBTB45 zinc finger and BTB domain containing 45 19 protein-coding ZNF499 zinc finger and BTB domain-containing protein 45|zinc finger protein 499 38 0.005201 8.361 1 1 +84879 MFSD2A major facilitator superfamily domain containing 2A 1 protein-coding MCPH15|MFSD2|NLS1 sodium-dependent lysophosphatidylcholine symporter 1|major facilitator superfamily domain-containing protein 2A|sodium-dependent LPC symporter 1 41 0.005612 7.608 1 1 +84881 RPUSD4 RNA pseudouridylate synthase domain containing 4 11 protein-coding - RNA pseudouridylate synthase domain-containing protein 4 25 0.003422 8.817 1 1 +84883 AIFM2 apoptosis inducing factor, mitochondria associated 2 10 protein-coding AMID|PRG3 apoptosis-inducing factor 2|apoptosis-inducing factor (AIF)-homologous mitochondrion-associated inducer of death|apoptosis-inducing factor (AIF)-like mitochondrion-associated inducer of death|apoptosis-inducing factor, mitochondrion-associated, 2|p53-responsive gene 3 protein 20 0.002737 8.72 1 1 +84885 ZDHHC12 zinc finger DHHC-type containing 12 9 protein-coding DHHC-12|ZNF400 probable palmitoyltransferase ZDHHC12|zinc finger DHHC domain-containing protein 12|zinc finger protein 400 12 0.001642 9.453 1 1 +84886 C1orf198 chromosome 1 open reading frame 198 1 protein-coding - uncharacterized protein C1orf198 29 0.003969 10.59 1 1 +84888 SPPL2A signal peptide peptidase like 2A 15 protein-coding IMP3|PSL2 signal peptide peptidase-like 2A|IMP-3|SPP-like 2A|intramembrane cleaving protease|intramembrane protease 3|presenilin-like protein 2 34 0.004654 9.297 1 1 +84889 SLC7A3 solute carrier family 7 member 3 X protein-coding ATRC3|CAT-3|CAT3 cationic amino acid transporter 3|solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 47 0.006433 1.86 1 1 +84890 ADO 2-aminoethanethiol dioxygenase 10 protein-coding C10orf22 2-aminoethanethiol dioxygenase|2-aminoethanethiol (cysteamine) dioxygenase|cysteamine (2-aminoethanethiol) dioxygenase (ADO)|cysteamine dioxygenase 16 0.00219 9.33 1 1 +84891 ZSCAN10 zinc finger and SCAN domain containing 10 16 protein-coding ZNF206 zinc finger and SCAN domain-containing protein 10|zinc finger protein 206 63 0.008623 0.736 1 1 +84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) 3 protein-coding AGO61|C3orf39|GTDC2|MDDGA8 protein O-linked-mannose beta-1,4-N-acetylglucosaminyltransferase 2|glycosyltransferase-like domain containing 2|glycosyltransferase-like domain-containing protein 2 33 0.004517 9 1 1 +84893 FBXO18 F-box protein, helicase, 18 10 protein-coding FBH1|Fbx18|hFBH1 F-box DNA helicase 1|F-box only protein, helicase, 18 76 0.0104 10.55 1 1 +84894 LINGO1 leucine rich repeat and Ig domain containing 1 15 protein-coding LERN1|LRRN6A|UNQ201 leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 1|leucine rich repeat neuronal 6A|leucine-rich repeat and immunoglobulin domain-containing protein 1|leucine-rich repeat neuronal protein 1 66 0.009034 7.323 1 1 +84895 MIGA2 mitoguardin 2 9 protein-coding C9orf54|FAM73B mitoguardin-2|family with sequence similarity 73, member B|protein FAM73B 31 0.004243 8.999 1 1 +84896 ATAD1 ATPase family, AAA domain containing 1 10 protein-coding AFDC1|FNP001|THORASE ATPase family AAA domain-containing protein 1 24 0.003285 9.867 1 1 +84897 TBRG1 transforming growth factor beta regulator 1 11 protein-coding NIAM|TB-5 transforming growth factor beta regulator 1|nuclear interactor of ARF and MDM2 16 0.00219 9.556 1 1 +84898 PLXDC2 plexin domain containing 2 10 protein-coding TEM7R plexin domain-containing protein 2|1200007L24Rik|tumor endothelial marker 7-related protein 63 0.008623 8.288 1 1 +84899 TMTC4 transmembrane and tetratricopeptide repeat containing 4 13 protein-coding - transmembrane and TPR repeat-containing protein 4 63 0.008623 8.833 1 1 +84900 RNFT2 ring finger protein, transmembrane 2 12 protein-coding TMEM118 RING finger and transmembrane domain-containing protein 2|transmembrane protein 118 22 0.003011 6.238 1 1 +84901 NFATC2IP nuclear factor of activated T-cells 2 interacting protein 16 protein-coding ESC2|NIP45|RAD60 NFATC2-interacting protein|45 kDa NF-AT-interacting protein|45 kDa NFAT-interacting protein|nuclear factor of activated T-cells, cytoplasmic 2-interacting protein|nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein 29 0.003969 9.564 1 1 +84902 CEP89 centrosomal protein 89 19 protein-coding CCDC123|CEP123 centrosomal protein of 89 kDa|centrosomal protein 123|centrosomal protein 89kDa|coiled-coil domain containing 123|coiled-coil domain-containing protein 123, mitochondrial 50 0.006844 8.786 1 1 +84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 9 protein-coding C9orf100 rho guanine nucleotide exchange factor 39|Rho guanine nucleotide exchange factor (GEF) 39|vav-like protein C9orf100 15 0.002053 6.822 1 1 +84905 ZNF341 zinc finger protein 341 20 protein-coding - zinc finger protein 341 77 0.01054 7.293 1 1 +84908 FAM136A family with sequence similarity 136 member A 2 protein-coding - protein FAM136A 13 0.001779 9.768 1 1 +84909 C9orf3 chromosome 9 open reading frame 3 9 protein-coding AOPEP|AP-O|APO|C90RF3|ONPEP aminopeptidase O 64 0.00876 8.868 1 1 +84910 TMEM87B transmembrane protein 87B 2 protein-coding - transmembrane protein 87B 37 0.005064 9.866 1 1 +84911 ZNF382 zinc finger protein 382 19 protein-coding KS1 zinc finger protein 382|KRAB/zinc finger suppressor protein 1|multiple zinc finger and krueppel-associated box protein KS1 59 0.008076 5.008 1 1 +84912 SLC35B4 solute carrier family 35 member B4 7 protein-coding YEA|YEA4 UDP-xylose and UDP-N-acetylglucosamine transporter|UDP-Xylose/N-Acetylglucosamine transporter|YEA4 homolog|solute carrier family 35 (UDP-xylose/UDP-N-acetylglucosamine transporter), member B4 16 0.00219 8.916 1 1 +84913 ATOH8 atonal bHLH transcription factor 8 2 protein-coding HATH6|bHLHa21 protein atonal homolog 8|atonal homolog 6|atonal homolog 8|atonal homolog bHLH transcription factor 8|basic helix loop helix transcription factor 6|class A basic helix-loop-helix protein 21|helix-loop-helix protein hATH-6 14 0.001916 7.056 1 1 +84914 ZNF587 zinc finger protein 587 19 protein-coding ZF6 zinc finger protein 587|zinc finger protein zfp6 34 0.004654 9.141 1 1 +84915 FAM222A family with sequence similarity 222 member A 12 protein-coding C12orf34 protein FAM222A 17 0.002327 7.15 1 1 +84916 UTP4 UTP4, small subunit processome component 16 protein-coding CIRH1A|CIRHIN|NAIC|TEX292 U3 small nucleolar RNA-associated protein 4 homolog|UTP4 small subunit (SSU) processome component|UTP4, small subunit (SSU) processome component, homolog|cirrhosis, autosomal recessive 1A (cirhin)|testis expressed gene 292 40 0.005475 9.854 1 1 +84918 LRP11 LDL receptor related protein 11 6 protein-coding MANSC3|bA350J20.3 low-density lipoprotein receptor-related protein 11|LRP-11 19 0.002601 10.06 1 1 +84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B 1 protein-coding CREP|MSSGM2 protein phosphatase 1 regulatory subunit 15B|protein phosphatase 1, regulatory (inhibitor) subunit 15B 48 0.00657 10.73 1 1 +84920 ALG10 ALG10, alpha-1,2-glucosyltransferase 12 protein-coding ALG10A|DIE2|KCR1 dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase|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 10, alpha-1,2-glucosyltransferase homolog|asparagine-linked glycosylation protein 10 homolog A|derepression of ITR1 expression 2 homolog|dolichyl-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-dolichol alpha-1,2- glucosyltransferase|potassium channel regulator 1 50 0.006844 6.573 1 1 +84922 FIZ1 FLT3 interacting zinc finger 1 19 protein-coding ZNF798 flt3-interacting zinc finger protein 1|zinc finger protein 798 31 0.004243 8.676 1 1 +84923 FAM104A family with sequence similarity 104 member A 17 protein-coding - protein FAM104A 27 0.003696 9.588 1 1 +84924 ZNF566 zinc finger protein 566 19 protein-coding - zinc finger protein 566 38 0.005201 7.354 1 1 +84925 DIRC2 disrupted in renal carcinoma 2 3 protein-coding RCC4 disrupted in renal carcinoma protein 2|disrupted in renal cancer protein 2|renal cell carcinoma 4 35 0.004791 8.54 1 1 +84926 SPRYD3 SPRY domain containing 3 12 protein-coding - SPRY domain-containing protein 3 30 0.004106 10.49 1 1 +84928 TMEM209 transmembrane protein 209 7 protein-coding NET31 transmembrane protein 209|testicular tissue protein Li 202 29 0.003969 9.16 1 1 +84929 FIBCD1 fibrinogen C domain containing 1 9 protein-coding - fibrinogen C domain-containing protein 1 37 0.005064 4.092 1 1 +84930 MASTL microtubule associated serine/threonine kinase like 10 protein-coding GREATWALL|GW|GWL|MAST-L|THC2 serine/threonine-protein kinase greatwall|greatwall kinase homolog|greatwall protein kinase 56 0.007665 8.212 1 1 +84931 LINC01101 long intergenic non-protein coding RNA 1101 2 ncRNA - - 0.6701 0 1 +84932 RAB2B RAB2B, member RAS oncogene family 14 protein-coding - ras-related protein Rab-2B|GTP-binding protein RAB2B|RAS family, member RAB2B 14 0.001916 8.89 1 1 +84933 C8orf76 chromosome 8 open reading frame 76 8 protein-coding - uncharacterized protein C8orf76 28 0.003832 8.657 1 1 +84934 RITA1 RBPJ interacting and tubulin associated 1 12 protein-coding C12orf52|RITA RBPJ-interacting and tubulin-associated protein 1 22 0.003011 9.025 1 1 +84935 MEDAG mesenteric estrogen dependent adipogenesis 13 protein-coding AWMS3|C13orf33|MEDA-4|MEDA4|hAWMS3 mesenteric estrogen-dependent adipogenesis protein|activated in W/Wv mouse stomach 3 homolog|mesenteric estrogen-dependent adipose 4 33 0.004517 6.039 1 1 +84936 ZFYVE19 zinc finger FYVE-type containing 19 15 protein-coding ANCHR|MPFYVE abscission/NoCut checkpoint regulator|MLL partner containing FYVE domain|zinc finger FYVE domain-containing protein 19|zinc finger, FYVE domain containing 19 29 0.003969 9.069 1 1 +84937 ZNRF1 zinc and ring finger 1 16 protein-coding NIN283 E3 ubiquitin-protein ligase ZNRF1|nerve injury gene 283|nerve injury-induced gene 283 protein|zinc and ring finger 1, E3 ubiquitin protein ligase|zinc and ring finger protein 1|zinc/RING finger protein 1 13 0.001779 9.212 1 1 +84938 ATG4C autophagy related 4C cysteine peptidase 1 protein-coding APG4-C|APG4C|AUTL1|AUTL3 cysteine protease ATG4C|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 28 0.003832 7.495 1 1 +84939 MUM1 melanoma associated antigen (mutated) 1 19 protein-coding EXPAND1|HSPC211|MUM-1 PWWP domain-containing protein MUM1|melanoma ubiquitous mutated protein|mutated melanoma-associated antigen 1|protein expandere 33 0.004517 9.709 1 1 +84940 CORO6 coronin 6 17 protein-coding - coronin-6|clipin-E|coronin, actin binding protein 6|coronin-like protein E 38 0.005201 5.185 1 1 +84941 HSH2D hematopoietic SH2 domain containing 19 protein-coding ALX|HSH2 hematopoietic SH2 domain-containing protein|adaptor in lymphocytes of unknown function X 20 0.002737 6.671 1 1 +84942 WDR73 WD repeat domain 73 15 protein-coding GAMOS|HSPC264 WD repeat-containing protein 73|FLJ00296 protein 19 0.002601 8.376 1 1 +84944 MAEL maelstrom spermatogenic transposon silencer 1 protein-coding CT128|SPATA35 protein maelstrom homolog|cancer/testis antigen 128|maelstrom homolog|spermatogenesis associated 35|testicular tissue protein Li 116 60 0.008212 2.201 1 1 +84945 ABHD13 abhydrolase domain containing 13 13 protein-coding BEM46L1|C13orf6|bA153I24.2 protein ABHD13|abhydrolase domain-containing protein 13|alpha/beta hydrolase domain-containing protein 13 22 0.003011 8.709 1 1 +84946 LTV1 LTV1 ribosome biogenesis factor 6 protein-coding C6orf93|dJ468K18.4 protein LTV1 homolog|LTV1 homolog 21 0.002874 9.012 1 1 +84947 SERAC1 serine active site containing 1 6 protein-coding - protein SERAC1|serine active site-containing protein 1 34 0.004654 7.734 1 1 +84948 TIGD5 tigger transposable element derived 5 8 protein-coding - tigger transposable element-derived protein 5 23 0.003148 7.886 1 1 +84950 PRPF38A pre-mRNA processing factor 38A 1 protein-coding PRP38A|Prp38 pre-mRNA-splicing factor 38A|PRP38 pre-mRNA processing factor 38 domain containing A 28 0.003832 9.718 1 1 +84951 TNS4 tensin 4 17 protein-coding CTEN|PP14434 tensin-4|C terminal tensin like|C-terminal tensin-like protein 57 0.007802 6.793 1 1 +84952 CGNL1 cingulin like 1 15 protein-coding JACOP|PCING cingulin-like protein 1|junction-associated coiled-coil protein|paracingulin 79 0.01081 8.762 1 1 +84953 MICALCL MICAL C-terminal like 11 protein-coding Ebitein1 MICAL C-terminal-like protein|ERK2-binding testicular protein 1|ebitein-1 99 0.01355 4.265 1 1 +84954 MPND MPN domain containing 19 protein-coding - MPN domain-containing protein 22 0.003011 8.825 1 1 +84955 NUDCD1 NudC domain containing 1 8 protein-coding CML66|OVA66 nudC domain-containing protein 1|chronic myelogenous leukemia tumor antigen 66|tumor antigen CML66 41 0.005612 8.817 1 1 +84957 RELT RELT tumor necrosis factor receptor 11 protein-coding TNFRSF19L|TRLT tumor necrosis factor receptor superfamily member 19L|receptor expressed in lymphoid tissues 24 0.003285 7.691 1 1 +84958 SYTL1 synaptotagmin like 1 1 protein-coding JFC1|SLP1 synaptotagmin-like protein 1|NADPH oxidase-related, C2 domain-containing protein|exophilin-7 36 0.004927 8.104 1 1 +84959 UBASH3B ubiquitin associated and SH3 domain containing B 11 protein-coding STS-1|STS1|TULA-2|TULA2|p70 ubiquitin-associated and SH3 domain-containing protein B|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 42 0.005749 7.318 1 1 +84960 CCDC183 coiled-coil domain containing 183 9 protein-coding KIAA1984|PARF|bA216L13.7 coiled-coil domain-containing protein 183 38 0.005201 3.508 1 1 +84961 FBXL20 F-box and leucine rich repeat protein 20 17 protein-coding Fbl2|Fbl20 F-box/LRR-repeat protein 20|F-box protein FBL2 34 0.004654 7.215 1 1 +84962 AJUBA ajuba LIM protein 14 protein-coding JUB LIM domain-containing protein ajuba|jub, ajuba homolog 59 0.008076 8.896 1 1 +84964 ALKBH6 alkB homolog 6 19 protein-coding ABH6 alpha-ketoglutarate-dependent dioxygenase alkB homolog 6|alkB, alkylation repair homolog 6|alkylated DNA repair protein alkB homolog 6|alkylation repair homolog 6|probable alpha-ketoglutarate-dependent dioxygenase ABH6 18 0.002464 7.313 1 1 +84966 IGSF21 immunoglobin superfamily member 21 1 protein-coding - immunoglobulin superfamily member 21 46 0.006296 5.29 1 1 +84967 LSM10 LSM10, U7 small nuclear RNA associated 1 protein-coding MST074|MSTP074 U7 snRNA-associated Sm-like protein LSm10|U7 snRNP-specific Sm-like protein LSM10 9 0.001232 8.982 1 1 +84968 PNMA6A paraneoplastic Ma antigen family member 6A X protein-coding MA6|PNMA6|PNMA6C paraneoplastic antigen-like protein 6A|paraneoplastic Ma antigen family member 6C|paraneoplastic antigen-like 6A related protein|paraneoplastic antigen-like protein 6C 5.687 0 1 +84969 TOX2 TOX high mobility group box family member 2 20 protein-coding C20orf100|GCX-1|GCX1|dJ1108D11.2|dJ495O3.1 TOX high mobility group box family member 2|granulosa cell HMG box 1 74 0.01013 6.619 1 1 +84970 C1orf94 chromosome 1 open reading frame 94 1 protein-coding - uncharacterized protein C1orf94 74 0.01013 0.9858 1 1 +84971 ATG4D autophagy related 4D cysteine peptidase 19 protein-coding APG4-D|APG4D|AUTL4 cysteine protease ATG4D|APG4 autophagy 4 homolog D|ATG4 autophagy related 4 homolog D|AUT-like 4 cysteine endopeptidase|autophagin-4|autophagy-related cysteine endopeptidase 4|autophagy-related protein 4 homolog D|cysteine protease involved in autophagy 44 0.006022 8.83 1 1 +84973 SNHG7 small nucleolar RNA host gene 7 9 ncRNA NCRNA00061 small nucleolar RNA host gene (non-protein coding) 7|small nucleolar RNA host gene 7 (non-protein coding) 8 0.001095 9.34 1 1 +84975 MFSD5 major facilitator superfamily domain containing 5 12 protein-coding hsMOT2 molybdate-anion transporter|major facilitator superfamily domain-containing protein 5|molybdate transporter 2 homolog 26 0.003559 9.651 1 1 +84976 DISP1 dispatched RND transporter family member 1 1 protein-coding DISPA protein dispatched homolog 1|dispatched A|dispatched homolog 1 103 0.0141 7.716 1 1 +84978 FRMD5 FERM domain containing 5 15 protein-coding - FERM domain-containing protein 5 35 0.004791 4.319 1 1 +84981 MIR22HG MIR22 host gene 17 ncRNA C17orf91 MIR22 host gene (non-protein coding) 4 0.0005475 7.215 1 1 +84983 FAM222A-AS1 FAM222A antisense RNA 1 12 ncRNA - FAM222A antisense RNA 1 (non-protein coding) 1.822 0 1 +84984 CEP19 centrosomal protein 19 3 protein-coding C3orf34|MOSPGF centrosomal protein of 19 kDa|centrosomal protein 19kDa 17 0.002327 6.088 1 1 +84985 FAM83A family with sequence similarity 83 member A 8 protein-coding BJ-TSA-9 protein FAM83A|tumor antigen BJ-TSA-9|tumor-specific gene expressed in prostate protein 33 0.004517 4.995 1 1 +84986 ARHGAP19 Rho GTPase activating protein 19 10 protein-coding - rho GTPase-activating protein 19|putative RhoGAP protein|rho-type GTPase-activating protein 19 18 0.002464 8.44 1 1 +84987 COX14 COX14, cytochrome c oxidase assembly factor 12 protein-coding C12orf62 cytochrome c oxidase assembly protein COX14|COX14 cytochrome c oxidase assembly homolog|cytochrome c oxidase assembly homolog 14 3 0.0004106 9.384 1 1 +84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A 8 protein-coding MYPT3 protein phosphatase 1 regulatory subunit 16A|myosin phosphatase-targeting subunit 3|protein phosphatase 1, regulatory (inhibitor) subunit 16A 38 0.005201 9.76 1 1 +84989 JMJD1C-AS1 JMJD1C antisense RNA 1 10 ncRNA - - 3.669 0 1 +84991 RBM17 RNA binding motif protein 17 10 protein-coding SPF45 splicing factor 45|45 kDa-splicing factor|splicing factor 45kDa 40 0.005475 10.53 1 1 +84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y 4 protein-coding HPMRS6|PIG-Y phosphatidylinositol N-acetylglucosaminyltransferase subunit Y|phosphatidylinositol-glycan biosynthesis class Y protein 1 0.0001369 10.52 1 1 +84993 UBL7 ubiquitin like 7 15 protein-coding BMSC-UbP|TCBA1 ubiquitin-like protein 7|ubiquitin-like 7 (bone marrow stromal cell-derived)|ubiquitin-like protein SB132 17 0.002327 9.821 1 1 +84996 URB1-AS1 URB1 antisense RNA 1 (head to head) 21 ncRNA C21orf119|PRED84 - 3 0.0004106 6.625 1 1 +85001 MGC16275 uncharacterized protein MGC16275 17 ncRNA - CTD-2514K5.2 1 0.0001369 5.506 1 1 +85002 FAM86B1 family with sequence similarity 86 member B1 8 protein-coding - putative protein N-methyltransferase FAM86B1|protein FAM86B1 26 0.003559 6.026 1 1 +85004 RERG RAS like estrogen regulated growth inhibitor 12 protein-coding - ras-related and estrogen-regulated growth inhibitor 20 0.002737 6.935 1 1 +85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase 5 protein-coding AGXT2L2|PHLU 5-phosphohydroxy-L-lysine phospho-lyase|5-phosphonooxy-L-lysine phospho-lyase|alanine--glyoxylate aminotransferase 2-like 2 26 0.003559 8.736 1 1 +85009 MGC16025 uncharacterized LOC85009 2 ncRNA - - 1.219 0 1 +85012 TCEAL3 transcription elongation factor A like 3 X protein-coding WEX8 transcription elongation factor A protein-like 3|TCEA-like protein 3|transcription elongation factor A (SII)-like 3|transcription elongation factor S-II protein-like 3 20 0.002737 8.87 1 1 +85013 TMEM128 transmembrane protein 128 4 protein-coding - transmembrane protein 128 8 0.001095 8.991 1 1 +85014 TMEM141 transmembrane protein 141 9 protein-coding - transmembrane protein 141 4 0.0005475 9.981 1 1 +85015 USP45 ubiquitin specific peptidase 45 6 protein-coding - ubiquitin carboxyl-terminal hydrolase 45|deubiquitinating enzyme 45|ubiquitin specific protease 45|ubiquitin thioesterase 45|ubiquitin thiolesterase 45|ubiquitin-specific-processing protease 45 44 0.006022 7.379 1 1 +85016 C11orf70 chromosome 11 open reading frame 70 11 protein-coding - uncharacterized protein C11orf70 20 0.002737 4.333 1 1 +85019 TMEM241 transmembrane protein 241 18 protein-coding C18orf45|hVVT transmembrane protein 241|putative vertebrate vrg4-like nucleotide-sugar transporter truncated variant2|putative vertebrate vrg4-like nucleotide-sugar transporter variant1|transmembrane protein C18orf45 16 0.00219 7.49 1 1 +85021 REPS1 RALBP1 associated Eps domain containing 1 6 protein-coding RALBP1 ralBP1-associated Eps domain-containing protein 1|ralBP1-interacting protein 1 40 0.005475 9.574 1 1 +85025 TMEM60 transmembrane protein 60 7 protein-coding C7orf35|DC32 transmembrane protein 60 16 0.00219 8.407 1 1 +85026 ARRDC1-AS1 ARRDC1 antisense RNA 1 9 ncRNA C9orf37 AD038 13 0.001779 7.534 1 1 +85027 SMIM3 small integral membrane protein 3 5 protein-coding C5orf62|MST150|NID67 small integral membrane protein 3|NGF-induced differentiation clone 67 protein|small membrane protein NID67 3 0.0004106 8.764 1 1 +85028 SNHG12 small nucleolar RNA host gene 12 1 ncRNA ASLNC04080|C1orf79|LINC00100|NCRNA00100 PNAS-123|long intergenic non-protein coding RNA 100|small nucleolar RNA host gene 12 (non-protein coding) 26 0.003559 7.788 1 1 +85235 HIST1H2AH histone cluster 1 H2A family member h 6 protein-coding H2A/S|H2AFALii|H2AH|dJ86C11.1 histone H2A type 1-H|H2A histone family member|histone H2A/s|histone cluster 1, H2ah 24 0.003285 0.8506 1 1 +85236 HIST1H2BK histone cluster 1 H2B family member k 6 protein-coding H2B/S|H2BFAiii|H2BFT|H2BK histone H2B type 1-K|H2B K|H2B histone family, member T|HIRA-interacting protein 1|histone 1, H2bk|histone cluster 1, H2bk|histone family member 23 0.003148 9.928 1 1 +85280 KRTAP9-4 keratin associated protein 9-4 17 protein-coding KAP9.4|KRTAP9.4 keratin-associated protein 9-4|keratin-associated protein 9.4|ultrahigh sulfur keratin-associated protein 9.4 18 0.002464 0.05879 1 1 +85285 KRTAP4-1 keratin associated protein 4-1 17 protein-coding KAP4.1|KAP4.10|KRTAP4-10|KRTAP4.10 keratin-associated protein 4-1|keratin associated protein 4-10|keratin-associated protein 4.1|ultrahigh sulfur keratin-associated protein 4.10 38 0.005201 1.081 1 1 +85289 KRTAP4-5 keratin associated protein 4-5 17 protein-coding KAP4.5|KRTAP4.5 keratin-associated protein 4-5|keratin-associated protein 4.5|ultrahigh sulfur keratin-associated protein 4.5 90 0.01232 0.01046 1 1 +85290 KRTAP4-3 keratin associated protein 4-3 17 protein-coding KAP4.3 keratin-associated protein 4-3|keratin-associated protein 4.3|ultrahigh sulfur keratin-associated protein 4.3 47 0.006433 0.02528 1 1 +85291 KRTAP4-2 keratin associated protein 4-2 17 protein-coding KAP4.2|KRTAP4.2 keratin-associated protein 4-2|keratin-associated protein 4.2|ultrahigh sulfur keratin-associated protein 4.2 18 0.002464 0.02641 1 1 +85293 KRTAP3-3 keratin associated protein 3-3 17 protein-coding KAP3.3|KRTAP3.3 keratin-associated protein 3-3|high sulfur keratin-associated protein 3.3|keratin-associated protein 3.3 10 0.001369 0.1677 1 1 +85294 KRTAP2-4 keratin associated protein 2-4 17 protein-coding KAP2.1B|KAP2.4|KRTAP2.4 keratin-associated protein 2-4|high sulfur keratin-associated protein 2.4|keratin associated protein 2.1B|keratin-associated protein 2.4 5 0.0006844 0.01094 1 1 +85300 ATCAY ATCAY, caytaxin 19 protein-coding BNIP-H|CLAC caytaxin|BNIP-2-homolgy|BNIP-2-homology|Cayman ataxia|ataxia cayman type protein|ataxia cerebellar Cayman type 40 0.005475 2.435 1 1 +85301 COL27A1 collagen type XXVII alpha 1 chain 9 protein-coding STLS collagen alpha-1(XXVII) chain|collagen, type XXVII, alpha 1 142 0.01944 7.562 1 1 +85302 FBF1 Fas binding factor 1 17 protein-coding Alb|FBF-1 fas-binding factor 1|Fas (TNFRSF6) binding factor 1|Fas binding protein 1|albatross|protein albatross 66 0.009034 7.471 1 1 +85313 PPIL4 peptidylprolyl isomerase like 4 6 protein-coding HDCME13P peptidyl-prolyl cis-trans isomerase-like 4|PPIase|cyclophilin-like protein PPIL4|cyclophilin-type peptidyl-prolyl cis-trans isomerase|peptidylprolyl isomerase (cyclophilin)-like 4|rotamase PPIL4|serologically defined breast cancer antigen NY-BR-18 30 0.004106 9.121 1 1 +85315 PAQR8 progestin and adipoQ receptor family member 8 6 protein-coding C6orf33|LMPB1|MPRB membrane progestin receptor beta|lysosomal membrane protein in brain-1|mPR beta|progestin and adipoQ receptor family member VIII 38 0.005201 8.394 1 1 +85318 BAGE3 B melanoma antigen family member 3 21 protein-coding CT2.3 B melanoma antigen 3|cancer/testis antigen 2.3|cancer/testis antigen family 2, member 3 7 0.0009581 1 0 +85319 BAGE2 B melanoma antigen family member 2 21 protein-coding CT2.2 B melanoma antigen 2|cancer/testis antigen 2.2|cancer/testis antigen family 2, member 2 540 0.07391 1.671 1 1 +85320 ABCC11 ATP binding cassette subfamily C member 11 16 protein-coding EWWD|MRP8|WW ATP-binding cassette sub-family C member 11|ATP-binding cassette protein C11|ATP-binding cassette transporter MRP8|ATP-binding cassette transporter sub-family C member 11|ATP-binding cassette, sub-family C (CFTR/MRP), member 11|multi-resistance protein 8|multidrug resistance-associated protein 8 118 0.01615 3.375 1 1 +85329 LGALS12 galectin 12 11 protein-coding GAL12|GRIP1 galectin-12|galectin-related inhibitor of proliferation|lectin, galactoside-binding, soluble, 12|testicular secretory protein Li 26 32 0.00438 2.097 1 1 +85349 KRT87P keratin 87 pseudogene 12 pseudo HBD|KRT121P|KRTHBP4 Keratin-81-like protein|keratin 121 pseudogene|keratin, hair, basic pseudogene 4|psihHbD hair keratin pseudogene 9 0.001232 1 0 +85352 KIAA1644 KIAA1644 22 protein-coding - uncharacterized protein KIAA1644 23 0.003148 5.601 1 1 +85354 KRTAP4-16 keratin associated protein 4-16 17 pseudo KAP4A|KRTAP4-16P|KRTAP4P1 keratin associated protein 4 pseudogene 1|keratin associated protein 4-16, pseudogene|keratin-associated protein 4A pseudogene 4 0.0005475 1 0 +85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 22 protein-coding DEL22q13.3|PROSAP2|PSAP2|SCZD15|SPANK-2 SH3 and multiple ankyrin repeat domains protein 3|proline rich synapse associated protein 2|shank postsynaptic density protein 76 0.0104 9.05 1 1 +85359 DGCR6L DiGeorge syndrome critical region gene 6-like 22 protein-coding DGCR6 protein DGCR6L|diGeorge syndrome critical region 6-like protein 11 0.001506 9.703 1 1 +85360 SYDE1 synapse defective Rho GTPase homolog 1 19 protein-coding 7h3|SYD1 rho GTPase-activating protein SYDE1|protein syd-1 homolog 1|synapse defective 1, Rho GTPase, homolog 1|synapse defective protein 1 homolog 1 40 0.005475 8.258 1 1 +85363 TRIM5 tripartite motif containing 5 11 protein-coding RNF88|TRIM5alpha tripartite motif-containing protein 5|ring finger protein 88|tripartite motif containing 5 transcript variant iota|tripartite motif containing 5 transcript variant kappa|tripartite motif protein TRIM5 44 0.006022 8.666 1 1 +85364 ZCCHC3 zinc finger CCHC-type containing 3 20 protein-coding C20orf99 zinc finger CCHC domain-containing protein 3|zinc finger, CCHC domain containing 3 39 0.005338 9.237 1 1 +85365 ALG2 ALG2, alpha-1,3/1,6-mannosyltransferase 9 protein-coding CDGIi|CMS14|CMSTA3|NET38|hALPG2 alpha-1,3/1,6-mannosyltransferase ALG2|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|asparagine-linked glycosylation 2 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation 2 homolog (yeast, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation 2, alpha-1,3-mannosyltransferase homolog|asparagine-linked glycosylation protein 2 homolog|homolog of yeast ALG2 26 0.003559 9.644 1 1 +85366 MYLK2 myosin light chain kinase 2 20 protein-coding KMLC|MLCK|MLCK2|skMLCK myosin light chain kinase 2, skeletal/cardiac muscle|myosin light chain kinase 2, skeletal muscle 53 0.007254 2.967 1 1 +85369 STRIP1 striatin interacting protein 1 1 protein-coding FAM40A|FAR11A striatin-interacting protein 1|FAR11 factor arrest 11 homolog A|family with sequence similarity 40, member A|homolog of yeast FAR11 protein 1|protein FAM40A 41 0.005612 9.375 1 1 +85376 RIMBP3 RIMS binding protein 3 22 protein-coding RIM-BP3|RIM-BP3.1|RIM-BP3.A|RIMBP3.1|RIMBP3A RIMS-binding protein 3A|RIMS binding protein 3.1 34 0.004654 5.045 1 1 +85377 MICALL1 MICAL like 1 22 protein-coding MICAL-L1|MIRAB13 MICAL-like protein 1|molecule interacting with Rab13 45 0.006159 9.815 1 1 +85378 TUBGCP6 tubulin gamma complex associated protein 6 22 protein-coding GCP-6|GCP6|MCCRP|MCCRP1|MCPHCR gamma-tubulin complex component 6 86 0.01177 9.739 1 1 +85379 KIAA1671 KIAA1671 22 protein-coding - uncharacterized protein KIAA1671|CTA-221G9.5 10 0.001369 10.37 1 1 +85390 SNORD14D small nucleolar RNA, C/D box 14D 11 snoRNA - RNA, small nucleolar|snoRNA 0 0 1 0 +85391 SNORD14E small nucleolar RNA, C/D box 14E 11 snoRNA - RNA, small nucleolar|snoRNA 0 0 1 0 +85395 FAM207A family with sequence similarity 207 member A 21 protein-coding C21orf70|PRED56 protein FAM207A 15 0.002053 7.553 1 1 +85397 RGS8 regulator of G-protein signaling 8 1 protein-coding - regulator of G-protein signaling 8|regulator of G-protein signalling 8 27 0.003696 0.4328 1 1 +85403 EAF1 ELL associated factor 1 3 protein-coding - ELL-associated factor 1|ELL (eleven nineteen lysine-rich leukemia gene)-associated factor 1 9 0.001232 9.601 1 1 +85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 12 protein-coding DNAJ|DRIP78|HDJ3|LIP6 dnaJ homolog subfamily C member 14|DnaJ (Hsp40) homolog, subfamily C, member 14|LYST-interacting protein LIP6|dnaJ protein homolog 3|dopamine receptor interacting protein|dopamine receptor-interacting protein of 78 kDa|hDj-3|human DnaJ protein 3 65 0.008897 10.11 1 1 +85407 NKD1 naked cuticle homolog 1 16 protein-coding Naked1 protein naked cuticle homolog 1|Dvl-binding protein|naked cuticle-1|naked-1 62 0.008486 5.23 1 1 +85409 NKD2 naked cuticle homolog 2 5 protein-coding Naked2 protein naked cuticle homolog 2|Dvl-binding protein NKD2 44 0.006022 6.061 1 1 +85411 3.255 0 1 +85413 SLC22A16 solute carrier family 22 member 16 6 protein-coding CT2|FLIPT2|HEL-S-18|OAT6|OCT6|OKB1|dJ261K5.1 solute carrier family 22 member 16|WUGSC:RG331P03.1|carnitine transporter 2|epididymis secretory protein Li 18|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 (organic cation/carnitine transporter), member 16 71 0.009718 1.374 1 1 +85414 SLC45A3 solute carrier family 45 member 3 1 protein-coding IPCA-2|IPCA-6|IPCA-8|IPCA6|PCANAP2|PCANAP6|PCANAP8|PRST solute carrier family 45 member 3|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|prostein 28 0.003832 7.47 1 1 +85415 RHPN2 rhophilin Rho GTPase binding protein 2 19 protein-coding P76RBE|RHOBP rhophilin-2|76 kDa RhoB effector protein|GTP-Rho-binding protein 2|rhophilin-like Rho-GTPase binding protein 60 0.008212 8.967 1 1 +85416 ZIC5 Zic family member 5 13 protein-coding - zinc finger protein ZIC 5|Zic family member 5 (odd-paired homolog, Drosophila)|zinc family member 5 protein|zinc finger protein of the cerebellum 5 29 0.003969 2.803 1 1 +85417 CCNB3 cyclin B3 X protein-coding - G2/mitotic-specific cyclin-B3 124 0.01697 3.593 1 1 +85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 12 protein-coding MADP-1|MADP1|RBM36|SNRNP31|ZCCHC19 zinc finger CCHC-type and RNA-binding motif-containing protein 1|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 1 24 0.003285 9.83 1 1 +85438 CABS1 calcium binding protein, spermatid associated 1 4 protein-coding C4orf35|CLPH|NYD-SP26 calcium-binding and spermatid-specific protein 1|calcium-binding protein, sperm-specific 1|calcium-binding protein, spermatid-specific 1|casein-like phosphoprotein|testis development protein NYD-SP26 53 0.007254 0.1389 1 1 +85439 STON2 stonin 2 14 protein-coding STN2|STNB|STNB2 stonin-2|homolog of stoned B|stoned B homolog 2 72 0.009855 7.823 1 1 +85440 DOCK7 dedicator of cytokinesis 7 1 protein-coding EIEE23|ZIR2 dedicator of cytokinesis protein 7 136 0.01861 9.51 1 1 +85441 HELZ2 helicase with zinc finger 2 20 protein-coding PDIP-1|PRIC285 helicase with zinc finger domain 2|ATP-dependent helicase PRIC285|PDIP1|PPAR gamma DBD-interacting protein 1|PPAR-alpha-interacting complex protein 285|PPAR-gamma DNA-binding domain-interacting protein 1|PPARG-DBD-interacting protein 1|PPARgamma-DNA-binding domain-interacting protein1|PRIC complex|helicase with zinc finger 2, transcriptional coactivator|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 144 0.01971 10.12 1 1 +85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 10 protein-coding C10orf23|RASGEF2|bB439H18.3 protein very KIND|KIND domain-containing protein 1|RasGEF domain family, member 2|cerebral protein 9|kinase non-catalytic C-lobe domain (KIND) containing 1|kinase non-catalytic C-lobe domain-containing protein 1|ras-GEF domain-containing family member 2 140 0.01916 5.247 1 1 +85443 DCLK3 doublecortin like kinase 3 3 protein-coding CLR|DCAMKL3|DCDC3C|DCK3 serine/threonine-protein kinase DCLK3|CLICK-I,II-related|doublecortin and CaM kinase-like 3|doublecortin domain-containing protein 3C|doublecortin-like and CAM kinase-like 3 62 0.008486 3.375 1 1 +85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 8 protein-coding CLERC|SAP2|VFL1 leucine-rich repeat and coiled-coil domain-containing protein 1|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|sodium channel associated protein 2|variable number of flagella 1 homolog 108 0.01478 8.41 1 1 +85445 CNTNAP4 contactin associated protein like 4 16 protein-coding CASPR4 contactin-associated protein-like 4|cell recognition molecule Caspr4 179 0.0245 1.737 1 1 +85446 ZFHX2 zinc finger homeobox 2 14 protein-coding ZFH-5|ZNF409 zinc finger homeobox protein 2|ZFH-2|zinc finger homeodomain protein 2|zinc finger protein 409 23 0.003148 1 0 +85449 KIAA1755 KIAA1755 20 protein-coding - uncharacterized protein KIAA1755|RP5-1054A22.3 111 0.01519 6.201 1 1 +85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein 10 protein-coding DANGER|KIAA1754|bA127L20|bA127L20.2 inositol 1,4,5-trisphosphate receptor-interacting protein|inositol 1,4,5-triphosphate receptor-interacting protein 29 0.003969 9.549 1 1 +85451 UNK unkempt family zinc finger 17 protein-coding UNKEMPT|ZC3H5|ZC3HDC5 RING finger protein unkempt homolog|unkempt homolog|zinc finger CCCH domain-containing protein 5|zinc finger CCCH-type containing 5|zinc finger CCCH-type domain containing 5 47 0.006433 9.539 1 1 +85452 CFAP74 cilia and flagella associated protein 74 1 protein-coding C1orf222|KIAA1751 cilia- and flagella-associated protein 74 50 0.006844 1.836 1 1 +85453 TSPYL5 TSPY like 5 8 protein-coding - testis-specific Y-encoded-like protein 5|TSPY-like protein 5 46 0.006296 8.106 1 1 +85455 DISP2 dispatched RND transporter family member 2 15 protein-coding DISPB|HsT16908|LINC00594 protein dispatched homolog 2|dispatched B|dispatched homolog 2 75 0.01027 5.849 1 1 +85456 TNKS1BP1 tankyrase 1 binding protein 1 11 protein-coding TAB182 182 kDa tankyrase-1-binding protein|tankyrase 1 binding protein 1, 182kDa|tankyrase 1-binding protein of 182 kDa|testis secretory sperm-binding protein Li 206a 127 0.01738 11.87 1 1 +85457 CIPC CLOCK interacting pacemaker 14 protein-coding KIAA1737 CLOCK-interacting pacemaker|CLOCK-interacting circadian protein|CLOCK-interacting protein, circadian 22 0.003011 9.512 1 1 +85458 DIXDC1 DIX domain containing 1 11 protein-coding CCD1 dixin|coiled-coil protein DIX1 34 0.004654 8.522 1 1 +85459 CEP295 centrosomal protein 295 11 protein-coding KIAA1731 centrosomal protein of 295 kDa|centriolar protein CEP295|centrosomal protein 295kDa 58 0.007939 8.296 1 1 +85460 ZNF518B zinc finger protein 518B 4 protein-coding - zinc finger protein 518B 86 0.01177 8.148 1 1 +85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 2 protein-coding ROLSB|TANC protein TANC1|TPR domain, ankyrin-repeat and coiled-coil-containing|rolling pebbles homolog B|tetratricopeptide repeat, ankyrin repeat and coiled-coil domain-containing protein 1 114 0.0156 9.778 1 1 +85462 FHDC1 FH2 domain containing 1 4 protein-coding - FH2 domain-containing protein 1 97 0.01328 8.008 1 1 +85463 ZC3H12C zinc finger CCCH-type containing 12C 11 protein-coding MCPIP3 probable ribonuclease ZC3H12C|MCP-induced protein 3|zinc finger CCCH domain-containing protein 12C 69 0.009444 7.991 1 1 +85464 SSH2 slingshot protein phosphatase 2 17 protein-coding SSH-2|SSH-2L protein phosphatase Slingshot homolog 2|SSH-like protein 2 114 0.0156 9.115 1 1 +85465 SELENOI selenoprotein I 2 protein-coding EPT1|SELI|SEPI ethanolaminephosphotransferase 1|ethanolaminephosphotransferase 1 (CDP-ethanolamine-specific)|hEPT1 22 0.003011 10.07 1 1 +85474 LBX2 ladybird homeobox 2 2 protein-coding LP3727 transcription factor LBX2|lady bird-like homeobox 2|ladybird homeobox homolog 2|ladybird homeobox protein homolog 2|ladybird-like homeobox 2|ladybird-like homeodomain protein 2 13 0.001779 3.397 1 1 +85476 GFM1 G elongation factor mitochondrial 1 3 protein-coding COXPD1|EFG|EFG1|EFGM|EGF1|GFM|hEFG1 elongation factor G, mitochondrial|G translation elongation factor, mitochondrial|mitochondrial elongation factor G|mitochondrial elongation factor G1 47 0.006433 10.18 1 1 +85477 SCIN scinderin 7 protein-coding - adseverin 56 0.007665 6.942 1 1 +85478 CCDC65 coiled-coil domain containing 65 12 protein-coding CFAP250|CILD27|DRC2|FAP250|NYD-SP28 coiled-coil domain-containing protein 65|testis development protein NYD-SP28 28 0.003832 3.361 1 1 +85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta 8 protein-coding CSP-beta dnaJ homolog subfamily C member 5B|DnaJ (Hsp40) homolog, subfamily C, member 5 beta|beta cysteine string protein|beta-CSP|cysteine string protein beta|dnaJ homolog subfamily C member X|testicular tissue protein Li 55 27 0.003696 2.854 1 1 +85480 TSLP thymic stromal lymphopoietin 5 protein-coding - thymic stromal lymphopoietin 18 0.002464 3.71 1 1 +85481 PSKH2 protein serine kinase H2 8 protein-coding - serine/threonine-protein kinase H2|serine/threonine kinase PSKH2 45 0.006159 0.1319 1 1 +85495 RPPH1 ribonuclease P RNA component H1 14 ncRNA H1RNA|RPPH1-1 H1 RNA 4 0.0005475 4.748 1 1 +85508 SCRT2 scratch family transcriptional repressor 2 20 protein-coding ZNF898B transcriptional repressor scratch 2|scratch 2 protein|scratch family zinc finger 2|scratch homolog 2, zinc finger protein 11 0.001506 0.8697 1 1 +85509 MBD3L1 methyl-CpG binding domain protein 3 like 1 19 protein-coding MBD3L methyl-CpG-binding domain protein 3-like 1|MBD3-like protein 1 25 0.003422 0.0797 1 1 +85569 GALP galanin like peptide 19 protein-coding - galanin-like peptide|alarin|gal-like peptide 14 0.001916 0.1865 1 1 +85865 GTPBP10 GTP binding protein 10 7 protein-coding ObgH2|UG0751c10 GTP-binding protein 10|GTP binding protein 10 (putative)|protein obg homolog 2 26 0.003559 8.254 1 1 +86614 HSFY1 heat shock transcription factor, Y-linked 1 Y protein-coding HSF2L|HSFY heat shock transcription factor, Y-linked|heat shock transcription factor 2-like protein 1 0.0001369 1 0 +87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 2 protein-coding COXPD13|DFNB70|OLD35|PNPASE|old-35 polyribonucleotide nucleotidyltransferase 1, mitochondrial|3'-5' RNA exonuclease OLD35|PNPase 1|PNPase old-35|polynucleotide phosphorylase 1|polynucleotide phosphorylase-like protein 56 0.007665 9.332 1 1 +87769 GGACT gamma-glutamylamine cyclotransferase 13 protein-coding A2LD1 gamma-glutamylaminecyclotransferase|AIG2-like domain 1|AIG2-like domain-containing protein 1 2 0.0002737 6.511 1 1 +88455 ANKRD13A ankyrin repeat domain 13A 12 protein-coding ANKRD13|NY-REN-25 ankyrin repeat domain-containing protein 13A|NY-REN-25 antigen 30 0.004106 10.17 1 1 +88745 RRP36 ribosomal RNA processing 36 6 protein-coding C6orf153|dJ20C7.4 ribosomal RNA processing protein 36 homolog|RNA processing factor|ribosomal RNA processing 36 homolog 43 0.005886 9.497 1 1 +89122 TRIM4 tripartite motif containing 4 7 protein-coding RNF87 E3 ubiquitin-protein ligase TRIM4|RING finger protein 87|tripartite motif protein 4 30 0.004106 9.624 1 1 +89765 RSPH1 radial spoke head 1 homolog 21 protein-coding CT79|RSP44|RSPH10A|TSA2|TSGA2 radial spoke head 1 homolog|cancer/testis antigen 79|male meiotic metaphase chromosome-associated acidic protein|meichroacidin|testes specific gene A2 homolog|testis specific A2 homolog 27 0.003696 5.438 1 1 +89766 UMODL1 uromodulin like 1 21 protein-coding - uromodulin-like 1|olfactorin 103 0.0141 2.167 1 1 +89777 SERPINB12 serpin family B member 12 18 protein-coding YUKOPIN serpin B12|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 12|serpin peptidase inhibitor, clade B (ovalbumin), member 12 51 0.006981 0.5501 1 1 +89778 SERPINB11 serpin family B member 11 (gene/pseudogene) 18 protein-coding EPIPIN|SERPIN11 serpin B11|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 11|serpin peptidase inhibitor, clade B (ovalbumin), member 11 65 0.008897 1.015 1 1 +89780 WNT3A Wnt family member 3A 1 protein-coding - protein Wnt-3a|wingless-type MMTV integration site family, member 3A 38 0.005201 2.221 1 1 +89781 HPS4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 22 protein-coding BLOC3S2|LE Hermansky-Pudlak syndrome 4 protein|Hermansky-Pudlak syndrome 4|light-ear protein homolog 54 0.007391 9.708 1 1 +89782 LMLN leishmanolysin like peptidase 3 protein-coding GP63|INV|IX14|MSP leishmanolysin-like peptidase|invadolysin|leishmanolysin-2|leishmanolysin-like (metallopeptidase M8 family) 47 0.006433 7.972 1 1 +89790 SIGLEC10 sialic acid binding Ig like lectin 10 19 protein-coding PRO940|SIGLEC-10|SLG2 sialic acid-binding Ig-like lectin 10|sialic acid binding Ig-like lectin 10 Ig-like lectin 7|siglec-like gene 2|siglec-like protein 2 85 0.01163 6.894 1 1 +89792 GAL3ST3 galactose-3-O-sulfotransferase 3 11 protein-coding GAL3ST-3|GAL3ST2 galactose-3-O-sulfotransferase 3|beta-galactose-3-O-sulfotransferase 3|gal-beta-1, 3-GalNAc 3'-sulfotransferase 3|galactose 3'-sulfotransferase|galbeta1-3GalNAc 3'-sulfotransferase 3 47 0.006433 2.453 1 1 +89795 NAV3 neuron navigator 3 12 protein-coding POMFIL1|STEERIN3|unc53H3 neuron navigator 3|pore membrane and/or filament interacting like protein 1|unc-53 homolog 3 367 0.05023 5.798 1 1 +89796 NAV1 neuron navigator 1 1 protein-coding POMFIL3|STEERIN1|UNC53H1 neuron navigator 1|pore membrane and/or filament interacting like protein 3|unc-53 homolog 1 114 0.0156 10.09 1 1 +89797 NAV2 neuron navigator 2 11 protein-coding HELAD1|POMFIL2|RAINB1|STEERIN2|UNC53H2 neuron navigator 2|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 168 0.02299 9.806 1 1 +89801 PPP1R3F protein phosphatase 1 regulatory subunit 3F X protein-coding HB2E|LL0XNC01-7P3.1|R3F protein phosphatase 1 regulatory subunit 3F|protein phosphatase 1, regulatory (inhibitor) subunit 3F 43 0.005886 6.647 1 1 +89822 KCNK17 potassium two pore domain channel subfamily K member 17 6 protein-coding K2p17.1|TALK-2|TALK2|TASK-4|TASK4 potassium channel subfamily K member 17|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, two pore domain subfamily K, member 17 24 0.003285 2.832 1 1 +89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion 15 protein-coding CHRNA7|CHRNA7-DR1|D-10 CHRNA7-FAM7A fusion protein|CHRNA7 (cholinergic receptor, nicotinic, alpha 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion|CHRNA7 (cholinergic receptor, nicotinic, alpha polypeptide 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion|alpha 7 neuronal nicotinic acetylcholine receptor-FAM7A hybrid|alpha-7 nicotinic cholinergic receptor subunit 18 0.002464 4.556 1 1 +89837 ULK4P3 ULK4 pseudogene 3 15 pseudo D-X|FAM7A3 family with sequence similarity 7, member A3|unc-51-like kinase 4 (ULK4) pseudogene|unc-51-like kinase 4 pseudogene 3 16 0.00219 2.333 1 1 +89838 ULK4P1 ULK4 pseudogene 1 15 pseudo D-X|FAM7A1 family with sequence similarity 7, member A1 (non-protein coding)|unc-51-like kinase 4 (ULK4) pseudogene|unc-51-like kinase 4 pseudogene 1 3 0.0004106 1 0 +89839 ARHGAP11B Rho GTPase activating protein 11B 15 protein-coding B'-T|FAM7B1 rho GTPase-activating protein 11B|GAP (1-8)|family with sequence similarity 7, member B1|rho-type GTPase-activating protein 11B 20 0.002737 4.136 1 1 +89845 ABCC10 ATP binding cassette subfamily C member 10 6 protein-coding EST182763|MRP7|SIMRP7 multidrug resistance-associated protein 7|ATP-binding cassette sub-family C member 10|ATP-binding cassette, sub-family C (CFTR/MRP), member 10 91 0.01246 9.023 1 1 +89846 FGD3 FYVE, RhoGEF and PH domain containing 3 9 protein-coding ZFYVE5 FYVE, RhoGEF and PH domain-containing protein 3|FGD1 family, member 3|faciogenital dysplasia 3|zinc finger FYVE domain-containing protein 5 54 0.007391 7.696 1 1 +89848 FCHSD1 FCH and double SH3 domains 1 5 protein-coding NWK2 F-BAR and double SH3 domains protein 1|FCH and double SH3 domains protein 1|nervous wreck homolog 2 48 0.00657 8.126 1 1 +89849 ATG16L2 autophagy related 16 like 2 11 protein-coding ATG16B|WDR80 autophagy-related protein 16-2|APG16-like 2|ATG16 autophagy related 16-like 2|WD repeat-containing protein 80 29 0.003969 8.136 1 1 +89853 MVB12B multivesicular body subunit 12B 9 protein-coding C9orf28|FAM125B multivesicular body subunit 12B|ESCRT-I complex subunit MVB12B|family with sequence similarity 125, member B 26 0.003559 8.63 1 1 +89857 KLHL6 kelch like family member 6 3 protein-coding - kelch-like protein 6|kelch-like 6|kelch-like protein KLHL6 68 0.009307 6.835 1 1 +89858 SIGLEC12 sialic acid binding Ig like lectin 12 (gene/pseudogene) 19 protein-coding S2V|SIGLECL1|SLG|Siglec-XII sialic acid-binding Ig-like lectin 12|SIGLEC-like 1|sialic acid binding Ig-like lectin 12|sialic acid-binding Ig-like lectin-like 1 81 0.01109 3.012 1 1 +89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor 1 protein-coding LZTR2|PGPR-p117|RGPR|SEC16S protein transport protein Sec16B|RGPR-p117|SEC16 homolog B|leucine zipper transcription regulator 2|protein SEC16 homolog B|regucalcin gene promoter region-related protein p117|regucalcin gene promotor region related protein 82 0.01122 7.166 1 1 +89869 PLCZ1 phospholipase C zeta 1 12 protein-coding NYD-SP27|PLC-zeta-1|PLCzeta 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase zeta-1|PI-phospholipase C zeta 1|PLC-zeta-1|phosphoinositide phospholipase C-zeta-1|testicular tissue protein Li 145|testis-development related NYD-SP27 79 0.01081 0.2084 1 1 +89870 TRIM15 tripartite motif containing 15 6 protein-coding RNF93|ZNF178|ZNFB7 tripartite motif-containing protein 15|RING finger protein 93|zinc finger protein 178|zinc finger protein B7 33 0.004517 2.558 1 1 +89872 AQP10 aquaporin 10 1 protein-coding AQPA_HUMAN aquaporin-10|AQP-10|aquaglyceroporin-10|small intestine aquaporin 44 0.006022 1.028 1 1 +89874 SLC25A21 solute carrier family 25 member 21 14 protein-coding ODC|ODC1 mitochondrial 2-oxodicarboxylate carrier|oxodicarboxylate carrier|solute carrier family 25 (mitochondrial oxoadipate carrier), member 21|solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21 18 0.002464 2.927 1 1 +89876 MAATS1 MYCBP associated and testis expressed 1 3 protein-coding AAT1|AAT1alpha|C3orf15|CaM-IP2|SPATA26 protein MAATS1|AAT-1|AAT1-alpha|AMY-1-associating protein expressed in testis 1|MYCBP-associated, testis expressed 1|MYCBP-binding protein|MYCBP/AMY-1-associated testis-expressed protein 1|MYCBP/AMY-1-associated, testis expressed 1|spermatogenesis associated 26 68 0.009307 5.249 1 1 +89882 TPD52L3 tumor protein D52 like 3 9 protein-coding NYDSP25|hD55 tumor protein D55|protein kinase NYD-SP25|testis development protein NYD-SP25|testis tissue sperm-binding protein Li 87P 15 0.002053 0.1268 1 1 +89883 OR6W1P olfactory receptor family 6 subfamily W member 1 pseudogene 7 pseudo OR6W1|sdolf olfactory receptor sdolf 4 0.0005475 0.119 1 1 +89884 LHX4 LIM homeobox 4 1 protein-coding CPHD4 LIM/homeobox protein Lhx4|LIM homeobox protein 4 28 0.003832 2.302 1 1 +89885 FATE1 fetal and adult testis expressed 1 X protein-coding CT43|FATE fetal and adult testis-expressed transcript protein|BJ-HCC-2 antigen|cancer/testis antigen 43|tumor antigen BJ-HCC-2 29 0.003969 1.901 1 1 +89886 SLAMF9 SLAM family member 9 1 protein-coding CD2F-10|CD2F10|CD84-H1|CD84H1|SF2001 SLAM family member 9|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 37 0.005064 2.303 1 1 +89887 ZNF628 zinc finger protein 628 19 protein-coding ZEC|Zfp628 zinc finger protein 628|zinc finger protein Zec 45 0.006159 7.446 1 1 +89890 KBTBD6 kelch repeat and BTB domain containing 6 13 protein-coding - kelch repeat and BTB domain-containing protein 6|kelch repeat and BTB (POZ) domain containing 6 82 0.01122 8.51 1 1 +89891 WDR34 WD repeat domain 34 9 protein-coding DIC5|FAP133|SRTD11|bA216B9.3 WD repeat-containing protein 34 22 0.003011 10.45 1 1 +89894 TMEM116 transmembrane protein 116 12 protein-coding - transmembrane protein 116 10 0.001369 7.421 1 1 +89910 UBE3B ubiquitin protein ligase E3B 12 protein-coding BPIDS|KOS ubiquitin-protein ligase E3B 93 0.01273 10.18 1 1 +89927 C16orf45 chromosome 16 open reading frame 45 16 protein-coding MINP uncharacterized protein C16orf45|migration inhibitory protein 19 0.002601 8.293 1 1 +89932 PAPLN papilin, proteoglycan like sulfated glycoprotein 14 protein-coding - papilin 72 0.009855 8.311 1 1 +89941 RHOT2 ras homolog family member T2 16 protein-coding ARHT2|C16orf39|MIRO-2|MIRO2|RASL mitochondrial Rho GTPase 2|mitochondrial Rho (MIRO) GTPase 2|ras homolog gene family, member T2 28 0.003832 10.5 1 1 +89944 GLB1L2 galactosidase beta 1 like 2 11 protein-coding MST114|MSTP114 beta-galactosidase-1-like protein 2 59 0.008076 7.783 1 1 +89953 KLC4 kinesin light chain 4 6 protein-coding KNSL8|bA387M24.3 kinesin light chain 4|kinesin-like protein 8 35 0.004791 9.353 1 1 +89958 SAPCD2 suppressor APC domain containing 2 9 protein-coding C9orf140|p42.3 suppressor APC domain-containing protein 2|2010317E24Rik|TS/MDEP|protein C9orf140|tumor specificity and mitosis phase-dependent expression protein 12 0.001642 8.408 1 1 +89970 RSPRY1 ring finger and SPRY domain containing 1 16 protein-coding SEMDFA RING finger and SPRY domain-containing protein 1 38 0.005201 8.454 1 1 +89978 DPH6 diphthamine biosynthesis 6 15 protein-coding ATPBD4 diphthine--ammonia ligase|ATP binding domain 4|ATP-binding domain-containing protein 4|DPH6 homolog|diphthamide synthase|diphthamide synthetase|protein DPH6 homolog 19 0.002601 6.999 1 1 +90007 MIDN midnolin 19 protein-coding - midnolin|midbrain nucleolar protein 31 0.004243 11.15 1 1 +90011 KIR3DX1 killer cell immunoglobulin like receptor, three Ig domains X1 19 pseudo KIR3DL0|LENG12 immunoglobulin-like receptor KIR3DL0|killer cell immunoglobulin-like receptor, three domains, X1|leukocyte receptor cluster (LRC) member 12 35 0.004791 0.3355 1 1 +90019 SYT8 synaptotagmin 8 11 protein-coding - synaptotagmin-8|synaptotagmin VIII|sytVIII 29 0.003969 3.834 1 1 +90025 UBE3D ubiquitin protein ligase E3D 6 protein-coding C6orf157|H10BH|UBE2CBP|YJR141W 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 37 0.005064 5.856 1 1 +90050 FAM181A family with sequence similarity 181 member A 14 protein-coding C14orf152 protein FAM181A 31 0.004243 1.774 1 1 +90060 CCDC120 coiled-coil domain containing 120 X protein-coding JM11 coiled-coil domain-containing protein 120 37 0.005064 8.616 1 1 +90070 LACRT lacritin 12 protein-coding - extracellular glycoprotein lacritin 15 0.002053 0.1236 1 1 +90075 ZNF30 zinc finger protein 30 19 protein-coding KOX28 zinc finger protein 30|zinc finger protein 30 (KOX 28)|zinc finger protein KOX28 40 0.005475 6.423 1 1 +90102 PHLDB2 pleckstrin homology like domain family B member 2 3 protein-coding LL5b|LL5beta pleckstrin homology-like domain family B member 2|LL5 beta|protein LL5-beta 118 0.01615 8.929 1 1 +90110 7.76 0 1 +90113 VWA5B2 von Willebrand factor A domain containing 5B2 3 protein-coding - von Willebrand factor A domain-containing protein 5B2 30 0.004106 3.55 1 1 +90120 C9orf69 chromosome 9 open reading frame 69 9 protein-coding - protein C9orf69|herpes virus UL25-binding protein 8 0.001095 9.959 1 1 +90121 TSR2 TSR2, ribosome maturation factor X protein-coding DBA14|DT1P1A10|WGG1 pre-rRNA-processing protein TSR2 homolog|TSR2, 20S rRNA accumulation, homolog|WGG motif containing 1 9 0.001232 10 1 1 +90133 KRT8P12 keratin 8 pseudogene 12 3 pseudo KRT8L2 keratin 8-like 2 8 0.001095 1 0 +90134 KCNH7 potassium voltage-gated channel subfamily H member 7 2 protein-coding ERG3|HERG3|Kv11.3 potassium voltage-gated channel subfamily H member 7|ERG-3|eag-related protein 3|ether-a-go-go-related gene potassium channel 3|ether-a-go-go-related protein 3|potassium channel subunit HERG-3|potassium channel, voltage gated eag related subfamily H, member 7|voltage-gated potassium channel subunit Kv11.3 159 0.02176 1.042 1 1 +90135 BTBD6 BTB domain containing 6 14 protein-coding BDPL BTB/POZ domain-containing protein 6|BTB (POZ) domain containing 6|BTB domain protein BDPL|glucocorticoid receptor AF-1 coactivator-1|lens BTB domain protein 23 0.003148 10.12 1 1 +90139 TSPAN18 tetraspanin 18 11 protein-coding TSPAN tetraspanin-18|tspan-18 19 0.002601 8.586 1 1 +90141 EFCAB11 EF-hand calcium binding domain 11 14 protein-coding C14orf143 EF-hand calcium-binding domain-containing protein 11|EF-hand domain-containing protein C14orf143 9 0.001232 6.085 1 1 +90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 X protein-coding - heparan-sulfate 6-O-sulfotransferase 2|HS6ST-2 42 0.005749 6 1 1 +90167 FRMD7 FERM domain containing 7 X protein-coding NYS|NYS1|XIPAN FERM domain-containing protein 7 59 0.008076 0.8482 1 1 +90187 EMILIN3 elastin microfibril interfacer 3 20 protein-coding C20orf130|EMILIN5|dJ620E11.4 EMILIN-3|EMILIN-5|elastin microfibril interface-located protein 3|elastin microfibril interface-located protein 5|elastin microfibril interfacer 5 51 0.006981 4.549 1 1 +90196 SYS1 SYS1, golgi trafficking protein 20 protein-coding C20orf169|dJ453C12.4|dJ453C12.4.1 protein SYS1 homolog|SYS1 Golgi-localized integral membrane protein homolog|Sys1 golgi trafficking protein 15 0.002053 9.924 1 1 +90199 WFDC8 WAP four-disulfide core domain 8 20 protein-coding C20orf170|HEL-S-292|WAP8|dJ461P17.1 WAP four-disulfide core domain protein 8|WAP motif protein 1|epididymis secretory protein Li 292|protease inhibitor WAP8|putative protease inhibitor WAP8|testicular secretory protein Li 68 24 0.003285 0.1359 1 1 +90203 SNX21 sorting nexin family member 21 20 protein-coding C20orf161|PP3993|SNX-L|dJ337O18.4 sorting nexin-21|sorting nexin L 26 0.003559 8.773 1 1 +90204 ZSWIM1 zinc finger SWIM-type containing 1 20 protein-coding C20orf162 zinc finger SWIM domain-containing protein 1|zinc finger, SWIM domain containing 1 26 0.003559 8.233 1 1 +90226 UCN2 urocortin 2 3 protein-coding SRP|UCN-II|UCNI|UR|URP urocortin-2|prepro-urocortin 2|stresscopin-related peptide|ucn II|urocortin II|urocortin-related peptide 5 0.0006844 2.887 1 1 +90231 KIAA2013 KIAA2013 1 protein-coding - uncharacterized protein KIAA2013|RP5-1077B9.1 25 0.003422 10.66 1 1 +90233 ZNF551 zinc finger protein 551 19 protein-coding - zinc finger protein 551|KOX 23 protein (56 AA)|zinc finger protein KOX23 58 0.007939 6.702 1 1 +90246 LOC90246 uncharacterized LOC90246 3 ncRNA - - 4.186 0 1 +90249 UNC5A unc-5 netrin receptor A 5 protein-coding UNC5H1 netrin receptor UNC5A|netrin receptor Unc5h1|protein unc-5 homolog 1|protein unc-5 homolog A|unc-5 homolog 1|unc-5 homolog A|unc5 (C.elegans homolog) a 70 0.009581 4.587 1 1 +90268 OTULIN OTU deubiquitinase with linear linkage specificity 5 protein-coding AIPDS|FAM105B|GUM ubiquitin thioesterase otulin|OTU domain-containing deubiquitinase with linear linkage specificity|deubiquitinating enzyme otulin|family with sequence similarity 105, member B|ubiquitin thioesterase Gumby 30 0.004106 9.109 1 1 +90271 OLMALINC oligodendrocyte maturation-associated long intergenic non-coding RNA 10 ncRNA C10orf75|HI-LNC80|LINC00263|NCRNA00263|OLMALINCAS Human Islet Long Non Coding RNA 80|long intergenic non-protein coding RNA 263|oligodendrocyte maturation-associated long intervening non-coding RNA 1 0.0001369 6.687 1 1 +90273 CEACAM21 carcinoembryonic antigen related cell adhesion molecule 21 19 protein-coding CEACAM3|R29124_1 carcinoembryonic antigen-related cell adhesion molecule 21 28 0.003832 3.837 1 1 +90288 EFCAB12 EF-hand calcium binding domain 12 3 protein-coding C3orf25 EF-hand calcium-binding domain-containing protein 12|EF-hand domain-containing protein C3orf25 39 0.005338 3.683 1 1 +90293 KLHL13 kelch like family member 13 X protein-coding BKLHD2 kelch-like protein 13|BTB and kelch domain containing 2|kelch-like 13 62 0.008486 6.716 1 1 +90313 TP53I13 tumor protein p53 inducible protein 13 17 protein-coding DSCP1 tumor protein p53-inducible protein 13|damage-stimulated cytoplasmic protein 1 21 0.002874 9.186 1 1 +90316 TGIF2LX TGFB induced factor homeobox 2 like, X-linked X protein-coding TGIFLX homeobox protein TGIF2LX|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 61 0.008349 0.2466 1 1 +90317 ZNF616 zinc finger protein 616 19 protein-coding - zinc finger protein 616 78 0.01068 7.294 1 1 +90321 ZNF766 zinc finger protein 766 19 protein-coding - zinc finger protein 766 27 0.003696 8.594 1 1 +90324 CCDC97 coiled-coil domain containing 97 19 protein-coding - coiled-coil domain-containing protein 97 27 0.003696 9.874 1 1 +90326 THAP3 THAP domain containing 3 1 protein-coding - THAP domain-containing protein 3|THAP domain containing, apoptosis associated protein 3 16 0.00219 8.307 1 1 +90332 EXOC3L2 exocyst complex component 3 like 2 19 protein-coding XTP7 exocyst complex component 3-like protein 2|HBV X-transactivated gene 7 protein|HBV XAg-transactivated protein 7|protein 7 transactivated by hepatitis B virus X antigen (HBxAg) 30 0.004106 5.964 1 1 +90333 ZNF468 zinc finger protein 468 19 protein-coding - zinc finger protein 468|zinc finger protein ZNF468 40 0.005475 8.208 1 1 +90338 ZNF160 zinc finger protein 160 19 protein-coding F11|HKr18|HZF5|KR18 zinc finger protein 160|KRAB zinc finger protein KR18|zinc finger protein 5|zinc finger protein HZF5|zinc finger protein Kr18 64 0.00876 8.872 1 1 +90342 FER1L5 fer-1 like family member 5 2 protein-coding - fer-1-like protein 5|fer-1-like 5 89 0.01218 1.527 1 1 +90353 CTU1 cytosolic thiouridylase subunit 1 19 protein-coding ATPBD3|NCS6 cytoplasmic tRNA 2-thiolation protein 1|ATP binding domain 3|ATP-binding domain-containing protein 3|cancer-associated gene protein|cancer-associated protein|cytoplasmic tRNA adenylyltransferase 1|cytosolic thiouridylase subunit 1 homolog 5 0.0006844 6.212 1 1 +90355 C5orf30 chromosome 5 open reading frame 30 5 protein-coding - UNC119-binding protein C5orf30|UPF0684 protein C5orf30 7 0.0009581 8.059 1 1 +90362 FAM110B family with sequence similarity 110 member B 8 protein-coding C8orf72 protein FAM110B 40 0.005475 7.443 1 1 +90378 SAMD1 sterile alpha motif domain containing 1 19 protein-coding - atherin|SAM domain containing 1|sterile alpha motif domain-containing protein 1 10 0.001369 8.579 1 1 +90379 DCAF15 DDB1 and CUL4 associated factor 15 19 protein-coding C19orf72 DDB1- and CUL4-associated factor 15 25 0.003422 9.179 1 1 +90381 TICRR TOPBP1 interacting checkpoint and replication regulator 15 protein-coding C15orf42|SLD3|Treslin treslin|topBP1-interacting checkpoint and replication regulator|topBP1-interacting replication-stimulating protein 98 0.01341 6.71 1 1 +90390 MED30 mediator complex subunit 30 8 protein-coding MED30S|THRAP6|TRAP25 mediator of RNA polymerase II transcription subunit 30|TRAP/Mediator complex component TRAP25|putative mediator of RNA polymerase II transcription subunit 30|thyroid hormone receptor-associated protein 6|thyroid hormone receptor-associated protein complex 25 kDa component 15 0.002053 7.609 1 1 +90407 TMEM41A transmembrane protein 41A 3 protein-coding 2900010K02Rik transmembrane protein 41A 17 0.002327 9.558 1 1 +90410 IFT20 intraflagellar transport 20 17 protein-coding - intraflagellar transport protein 20 homolog|intraflagellar transport 20 homolog|intraflagellar transport protein IFT20 7 0.0009581 8.665 1 1 +90411 MCFD2 multiple coagulation factor deficiency 2 2 protein-coding F5F8D|F5F8D2|LMAN1IP|SDNSF multiple coagulation factor deficiency protein 2|neural stem cell-derived neuronal survival protein 12 0.001642 11.3 1 1 +90416 C15orf57 chromosome 15 open reading frame 57 15 protein-coding CCDC32 uncharacterized protein C15orf57|coiled-coil domain containing 32 11 0.001506 8.463 1 1 +90417 KNSTRN kinetochore localized astrin/SPAG5 binding protein 15 protein-coding C15orf23|HSD11|SKAP|TRAF4AF1 small kinetochore-associated protein|TRAF4 associated factor 1|kinastrin|kinetochore-localized astrin-binding protein|putative TRAF4-associated factor 1|small kinetochore associated protein|small kinetochore-associated protein, kinetochore-localized astrin-binding protein, TRAF4 associated factor 1 35 0.004791 8.364 1 1 +90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 2 protein-coding ATP6E1|ATP6EL2|ATP6V1EL2|VMA4 V-type proton ATPase subunit E 2|ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E2|V-ATPase subunit E 2|testis secretory sperm-binding protein Li 235P|vacuolar proton pump subunit E 2|vacuolar-type proton-translocating ATPase subunit E1 15 0.002053 5.905 1 1 +90427 BMF Bcl2 modifying factor 15 protein-coding - bcl-2-modifying factor 16 0.00219 8.927 1 1 +90441 ZNF622 zinc finger protein 622 5 protein-coding ZPR9 zinc finger protein 622|zinc finger-like protein 9 37 0.005064 9.469 1 1 +90459 ERI1 exoribonuclease 1 8 protein-coding 3'HEXO|HEXO|THEX1 3'-5' exoribonuclease 1|3' exoribonuclease|3'-5' exonuclease ERI1|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 29 0.003969 8.315 1 1 +90480 GADD45GIP1 GADD45G interacting protein 1 19 protein-coding CKBBP2|CKbetaBP2|CRIF1|MRP-L59|PLINP|PLINP-1|PRG6|Plinp1 growth arrest and DNA damage-inducible proteins-interacting protein 1|39S ribosomal protein L59, mitochondrial|CKII beta binding protein 2|CKII beta-associating protein|CR6 interacting factor 1|growth arrest and DNA-damage-inducible, gamma interacting protein 1|growth arrest- and DNA damage-inducible GADD45G-interacting protein|p53-responsive gene 6 protein|papillomavirus L2 interacting nuclear protein 1 15 0.002053 10.02 1 1 +90485 ZNF835 zinc finger protein 835 19 protein-coding BC37295_3 zinc finger protein 835 104 0.01423 3.436 1 1 +90488 TMEM263 transmembrane protein 263 12 protein-coding C12orf23 transmembrane protein 263|UPF0444 transmembrane protein C12orf23 5 0.0006844 10.22 1 1 +90506 LRRC46 leucine rich repeat containing 46 17 protein-coding - leucine-rich repeat-containing protein 46 22 0.003011 4.85 1 1 +90507 SCRN2 secernin 2 17 protein-coding Ses2 secernin-2 30 0.004106 9.2 1 1 +90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein 19 protein-coding FinGER8 protein YIF1B|YIP1-interacting factor homolog B|Yip1 interacting factor homolog B 13 0.001779 9.632 1 1 +90523 MLIP muscular LMNA interacting protein 6 protein-coding C6orf142|CIP muscular LMNA-interacting protein|cardiac ISL1-interacting protein|muscle-enriched A-type lamin interacting protein|muscular-enriched A-type laminin-interacting protein 54 0.007391 2.782 1 1 +90525 SHF Src homology 2 domain containing F 15 protein-coding - SH2 domain-containing adapter protein F|CTD-2651B20.7 30 0.004106 7.127 1 1 +90527 DUOXA1 dual oxidase maturation factor 1 15 protein-coding NIP|NUMBIP|mol dual oxidase maturation factor 1|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 25 0.003422 4.95 1 1 +90529 STPG1 sperm tail PG-rich repeat containing 1 1 protein-coding C1orf201|MAPO2 O(6)-methylguanine-induced apoptosis 2|O6-methylguanine-induced apoptosis 2|UPF0490 protein C1orf201|sperm-tail PG-rich repeat-containing protein 1 33 0.004517 7.561 1 1 +90550 MCU mitochondrial calcium uniporter 10 protein-coding C10orf42|CCDC109A|HsMCU calcium uniporter protein, mitochondrial|coiled-coil domain-containing protein 109A 24 0.003285 9.235 1 1 +90557 CCDC74A coiled-coil domain containing 74A 2 protein-coding - coiled-coil domain-containing protein 74A 55 0.007528 6.84 1 1 +90576 ZNF799 zinc finger protein 799 19 protein-coding HIT-40|ZNF842 zinc finger protein 799|zinc finger protein 14|zinc finger protein 842|zinc finger protein HIT-40 63 0.008623 6.837 1 1 +90580 TIMM29 translocase of inner mitochondrial membrane 29 19 protein-coding C19orf52 uncharacterized protein C19orf52 7 0.0009581 8.079 1 1 +90586 AOC4P amine oxidase, copper containing 4, pseudogene 17 pseudo AOC4|UPAT amine oxidase pseudogene|amine oxidase, copper containing 3 (vascular adhesion protein 1) pseudogene|ubiquitin-like plant homeodomain (PHD) and really interesting new gene (RING) finger domain-containing protein 1 (UHRF1) protein associated transcript 36 0.004927 1.356 1 1 +90589 ZNF625 zinc finger protein 625 19 protein-coding - zinc finger protein 625 27 0.003696 4.292 1 1 +90592 ZNF700 zinc finger protein 700 19 protein-coding - zinc finger protein 700 65 0.008897 8.005 1 1 +90594 ZNF439 zinc finger protein 439 19 protein-coding - zinc finger protein 439 46 0.006296 6.36 1 1 +90624 LYRM7 LYR motif containing 7 5 protein-coding C5orf31|MC3DN8|MZM1L complex III assembly factor LYRM7|LYR motif-containing protein 7|Lyrm7 homolog 5 0.0006844 8.526 1 1 +90625 ERVH48-1 endogenous retrovirus group 48 member 1 21 protein-coding C21orf105|NDUFV3-AS1 suppressyn|NDUFV3 antisense RNA 1 (non-protein coding)|endogenous retrovirus group Fb member 1 7 0.0009581 1 0 +90627 STARD13 StAR related lipid transfer domain containing 13 13 protein-coding ARHGAP37|DLC2|GT650|LINC00464 stAR-related lipid transfer protein 13|Rho GTPase activating protein on chromosome 13q12|StAR-related lipid transfer (START) domain containing 13|deleted in liver cancer 2 protein|long intergenic non-protein coding RNA 464 77 0.01054 8.434 1 1 +90632 LINC00473 long intergenic non-protein coding RNA 473 6 ncRNA C6orf176|bA142J11.1 - 7 0.0009581 2.119 1 1 +90634 N4BP2L1 NEDD4 binding protein 2 like 1 13 protein-coding CG018 NEDD4-binding protein 2-like 1|hypothetical gene CG018 11 0.001506 7.736 1 1 +90637 ZFAND2A zinc finger AN1-type containing 2A 7 protein-coding AIRAP AN1-type zinc finger protein 2A|arsenite inducible RNA associated protein|zinc finger, AN1-type domain 2A 5 0.0006844 8.364 1 1 +90639 COX19 COX19, cytochrome c oxidase assembly factor 7 protein-coding - cytochrome c oxidase assembly protein COX19|COX19 cytochrome c oxidase assembly homolog|cytochrome c oxidase assembly homolog 19|hCOX19 10 0.001369 8.326 1 1 +90649 ZNF486 zinc finger protein 486 19 protein-coding KRBO2 zinc finger protein 486|KRAB box only protein 2|KRAB domain only 2|KRAB domain only protein 2 46 0.006296 5.337 1 1 +90655 TGIF2LY TGFB induced factor homeobox 2 like, Y-linked Y protein-coding TGIFLY homeobox protein TGIF2LY|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 6 0.0008212 0.1071 1 1 +90665 TBL1Y transducin beta like 1, Y-linked Y protein-coding TBL1 F-box-like/WD repeat-containing protein TBL1Y|transducin beta-like 1|transducin beta-like protein 1Y|transducin-beta-like protein 1, Y-linked 17 0.002327 0.8156 1 1 +90668 CARMIL3 capping protein regulator and myosin 1 linker 3 14 protein-coding C14orf121|LRRC16B|crml-1 capping protein, Arp2/3 and myosin-I linker protein 3|capping protein regulator and myosin 1 linker protein 3|leucine rich repeat containing 16B|leucine-rich repeat-containing protein 16B 99 0.01355 4.508 1 1 +90673 PPP1R3E protein phosphatase 1 regulatory subunit 3E 14 protein-coding - protein phosphatase 1 regulatory subunit 3E|protein phosphatase 1, regulatory (inhibitor) subunit 3E 6.324 0 1 +90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 9 protein-coding CMT2P|RIFLE|TAL E3 ubiquitin-protein ligase LRSAM1|Tsg101-associated ligase 42 0.005749 9.102 1 1 +90693 CCDC126 coiled-coil domain containing 126 7 protein-coding - coiled-coil domain-containing protein 126 9 0.001232 7.391 1 1 +90701 SEC11C SEC11 homolog C, signal peptidase complex subunit 18 protein-coding SEC11L3|SPC21|SPCS4C signal peptidase complex catalytic subunit SEC11C|SEC11 homolog C|SEC11-like 3|SEC11-like protein 3|SPase 21 kDa subunit|microsomal signal peptidase 21 kDa subunit|signal peptidase complex 21 12 0.001642 9.899 1 1 +90736 FAM104B family with sequence similarity 104 member B X protein-coding CXorf44 protein FAM104B 18 0.002464 7.78 1 1 +90737 PAGE5 PAGE family member 5 X protein-coding CT16|CT16.1|CT16.2|GAGEE1|PAGE-5 P antigen family member 5|P antigen family, member 5 (prostate associated)|cancer/testis antigen 16.1|cancer/testis antigen family 16, member 1|cancer/testis antigen family 16, member 2|g antigen family E member 1|prostate-associated gene 5 protein 14 0.001916 0.6373 1 1 +90768 LOC90768 uncharacterized LOC90768 4 ncRNA - - 3.4 0 1 +90780 PYGO2 pygopus family PHD finger 2 1 protein-coding 1190004M21Rik pygopus homolog 2|pygopus 2 37 0.005064 10.58 1 1 +90784 LOC90784 uncharacterized LOC90784 2 ncRNA - - 8.233 0 1 +90799 CEP95 centrosomal protein 95 17 protein-coding CCDC45 centrosomal protein of 95 kDa|centrosomal protein 95kDa|coiled-coil domain containing 45|coiled-coil domain-containing protein 45 50 0.006844 8.821 1 1 +90806 ANGEL2 angel homolog 2 1 protein-coding Ccr4d|KIAA0759L protein angel homolog 2 34 0.004654 9.118 1 1 +90809 TMEM55B transmembrane protein 55B 14 protein-coding C14orf9 type 1 phosphatidylinositol 4,5-bisphosphate 4-phosphatase|ptdIns-4,5-P(2) 4-phosphatase type I|ptdIns-4,5-P2 4-Ptase I|type 1 PtdIns-4,5-P2 4-Ptase|type I phosphatidylinositol-4,5-bisphosphate 4-phosphatase 14 0.001916 9.353 1 1 +90826 PRMT9 protein arginine methyltransferase 9 4 protein-coding PRMT10 putative protein arginine N-methyltransferase 9|protein arginine methyltransferase 10 (putative)|putative protein arginine N-methyltransferase 10 46 0.006296 7.565 1 1 +90827 ZNF479 zinc finger protein 479 7 protein-coding HKr19|KR19 zinc finger protein 479|KRAB zinc finger protein KR19|zinc finger protein Kr19 127 0.01738 0.1627 1 1 +90834 3.997 0 1 +90835 CCDC189 coiled-coil domain containing 189 16 protein-coding C16orf93 coiled-coil domain-containing protein 189 22 0.003011 5.669 1 1 +90843 TCEAL8 transcription elongation factor A like 8 X protein-coding WEX3 transcription elongation factor A protein-like 8|TCEA-like protein 8|transcription elongation factor A (SII)-like 8|transcription elongation factor S-II protein-like 8 6 0.0008212 9.851 1 1 +90850 ZNF598 zinc finger protein 598 16 protein-coding - zinc finger protein 598 73 0.009992 9.849 1 1 +90853 SPOCD1 SPOC domain containing 1 1 protein-coding PPP1R146 SPOC domain-containing protein 1|protein phosphatase 1, regulatory subunit 146 65 0.008897 5.641 1 1 +90861 HN1L hematological and neurological expressed 1 like 16 protein-coding C16orf34|L11 hematological and neurological expressed 1-like protein|CRAMP_1 like|HN1 like|HN1-like protein 14 0.001916 11.36 1 1 +90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 16 protein-coding C16orf31|SSB3 SPRY domain-containing SOCS box protein 3|SPRY domain-containing SOCS box protein SSB-3 26 0.003559 9.828 1 1 +90865 IL33 interleukin 33 9 protein-coding C9orf26|DVS27|IL1F11|NF-HEV|NFEHEV interleukin-33|DVS27-related protein|interleukin-1 family member 11|nuclear factor for high endothelial venules|nuclear factor from high endothelial venules 30 0.004106 7.467 1 1 +90871 TMEM261 transmembrane protein 261 9 protein-coding C9orf123 transmembrane protein 261|transmembrane protein C9orf123 10 0.001369 9.506 1 1 +90874 ZNF697 zinc finger protein 697 1 protein-coding - zinc finger protein 697 25 0.003422 7.592 1 1 +90933 TRIM41 tripartite motif containing 41 5 protein-coding RINCK E3 ubiquitin-protein ligase TRIM41|RING finger-interacting protein with C kinase|RING-finger protein that interacts with C kinase 37 0.005064 9.613 1 1 +90952 ESAM endothelial cell adhesion molecule 11 protein-coding W117m endothelial cell-selective adhesion molecule|2310008D05Rik|HUEL (C4orf1)-interacting protein|LP4791 protein 25 0.003422 9.219 1 1 +90956 ADCK2 aarF domain containing kinase 2 7 protein-coding AARF uncharacterized aarF domain-containing protein kinase 2|putative ubiquinone biosynthesis protein AarF 37 0.005064 9.643 1 1 +90957 DHX57 DExH-box helicase 57 2 protein-coding DDX57 putative ATP-dependent RNA helicase DHX57|DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57|DEAH box protein 57|DEAH-box RNA/DNA helicase AAM73547|DEAH-box helicase 57 77 0.01054 9.045 1 1 +90987 ZNF251 zinc finger protein 251 8 protein-coding - zinc finger protein 251 50 0.006844 8.438 1 1 +90990 KIFC2 kinesin family member C2 8 protein-coding - kinesin-like protein KIFC2 45 0.006159 9.029 1 1 +90993 CREB3L1 cAMP responsive element binding protein 3 like 1 11 protein-coding OASIS cyclic AMP-responsive element-binding protein 3-like protein 1|BBF-2 homolog|cAMP-responsive element-binding protein 3-like protein 1|old astrocyte specifically-induced substance 28 0.003832 8.565 1 1 +91010 FMNL3 formin like 3 12 protein-coding FHOD3|FRL2|WBP-3|WBP3 formin-like protein 3|WW domain binding protein 3|formin homology 2 domain-containing protein 3 67 0.009171 9.745 1 1 +91012 CERS5 ceramide synthase 5 12 protein-coding LASS5|Trh4 ceramide synthase 5|LAG1 homolog, ceramide synthase 5|LAG1 longevity assurance homolog 5|TRAM homolog 4 30 0.004106 9.75 1 1 +91039 DPP9 dipeptidyl peptidase 9 19 protein-coding DP9|DPLP9|DPRP-2|DPRP2 dipeptidyl peptidase 9|DPP IX|dipeptidyl peptidase IV-related protein-2|dipeptidyl peptidase IX|dipeptidyl peptidase-like protein 9|dipeptidylpeptidase 9 47 0.006433 10.5 1 1 +91050 CCDC149 coiled-coil domain containing 149 4 protein-coding - coiled-coil domain-containing protein 149 24 0.003285 8.372 1 1 +91056 AP5B1 adaptor related protein complex 5 beta 1 subunit 11 protein-coding AP-5|PP1030 AP-5 complex subunit beta-1|AP-5 complex subunit beta|adaptor-related protein complex 5 beta subunit|beta5 26 0.003559 8.817 1 1 +91057 CCDC34 coiled-coil domain containing 34 11 protein-coding L15|NY-REN-41|RAMA3 coiled-coil domain-containing protein 34|NY-REN-41 antigen|renal carcinoma antigen NY-REN-41 32 0.00438 8.102 1 1 +91074 ANKRD30A ankyrin repeat domain 30A 10 protein-coding NY-BR-1 ankyrin repeat domain-containing protein 30A|serologically defined breast cancer antigen NY-BR-1 235 0.03217 1.111 1 1 +91107 TRIM47 tripartite motif containing 47 17 protein-coding GOA|RNF100 tripartite motif-containing protein 47|RING finger protein 100|gene overexpressed in astrocytoma protein 24 0.003285 9.751 1 1 +91120 ZNF682 zinc finger protein 682 19 protein-coding BC39498_3 zinc finger protein 682 45 0.006159 5.938 1 1 +91133 L3MBTL4 l(3)mbt-like 4 (Drosophila) 18 protein-coding HsT1031 lethal(3)malignant brain tumor-like protein 4|H-l(3)mbt-like protein 4|l(3)mbt-like protein 4 77 0.01054 5.914 1 1 +91137 SLC25A46 solute carrier family 25 member 46 5 protein-coding HMSN6B solute carrier family 25 member 46 27 0.003696 8.937 1 1 +91147 TMEM67 transmembrane protein 67 8 protein-coding JBTS6|MECKELIN|MKS3|NPHP11|TNEM67 meckelin|meckel syndrome type 3 protein 65 0.008897 7.378 1 1 +91149 RAPGEF4-AS1 RAPGEF4 antisense RNA 1 2 ncRNA - RAPGEF4 antisense RNA 1 (non-protein coding) 1 0.0001369 0.5246 1 1 +91151 TIGD7 tigger transposable element derived 7 16 protein-coding Sancho tigger transposable element-derived protein 7 45 0.006159 7.661 1 1 +91156 IGFN1 immunoglobulin-like and fibronectin type III domain containing 1 1 protein-coding EEF1A2BP1 immunoglobulin-like and fibronectin type III domain-containing protein 1|EEF1A2-binding protein 1|KY-interacting protein 1|eEF1A2 binding protein 97 0.01328 3.07 1 1 +91179 SCARF2 scavenger receptor class F member 2 22 protein-coding NSR1|SREC-II|SREC2|SRECRP-1|VDEGS scavenger receptor class F member 2|scavenger receptor expressed by endothelial cells 2 protein 34 0.004654 7.737 1 1 +91181 NUP210L nucleoporin 210 like 1 protein-coding - nuclear pore membrane glycoprotein 210-like|nuclear pore membrane glycoprotein 210-like (LOC91181)|nucleoporin 210kDa like|nucleoporin Nup210-like 134 0.01834 1.025 1 1 +91227 GGTLC2 gamma-glutamyltransferase light chain 2 22 protein-coding GGTL4 gamma-glutamyltransferase light chain 2|gamma-glutamyltransferase-like 4|gamma-glutamyltransferase-like protein 4 11 0.001506 5.484 1 1 +91252 SLC39A13 solute carrier family 39 member 13 11 protein-coding LZT-Hs9 zinc transporter ZIP13|LIV-1 subfamily of ZIP zinc transporter 9|solute carrier family 39 (metal ion transporter), member 13|solute carrier family 39 (zinc transporter), member 13|zrt- and Irt-like protein 13 18 0.002464 9.919 1 1 +91272 BOD1 biorientation of chromosomes in cell division 1 5 protein-coding FAM44B biorientation of chromosomes in cell division protein 1|biorientation defective 1|family with sequence similarity 44, member B 10 0.001369 9.72 1 1 +91283 MSANTD3 Myb/SANT DNA binding domain containing 3 9 protein-coding C9orf30|L8 myb/SANT-like DNA-binding domain-containing protein 3|Myb/SANT-like DNA-binding domain containing 3|UPF0439 protein C9orf30 18 0.002464 8.243 1 1 +91289 LMF2 lipase maturation factor 2 22 protein-coding TMEM112B|TMEM153 lipase maturation factor 2|transmembrane protein 112B|transmembrane protein 153 41 0.005612 10.72 1 1 +91298 C12orf29 chromosome 12 open reading frame 29 12 protein-coding - uncharacterized protein C12orf29 11 0.001506 8.639 1 1 +91300 R3HDM4 R3H domain containing 4 19 protein-coding C19orf22 R3H domain-containing protein 4|R3H domain-containing protein C19orf22 7 0.0009581 10.62 1 1 +91304 TMEM259 transmembrane protein 259 19 protein-coding ASBABP1|C19orf6|MBRL|MEMBRALIN|R32184_3 membralin|aspecific BCL2 ARE-binding protein 1 24 0.003285 11.33 1 1 +91316 GUSBP11 glucuronidase, beta pseudogene 11 22 pseudo - glucuronidase, beta/immunoglobulin lambda-like polypeptide 1 pseudogene 24 0.003285 7.945 1 1 +91319 DERL3 derlin 3 22 protein-coding C22orf14|IZP6|LLN2|derlin-3 derlin-3|DERtrin 3|Der1-like domain family, member 3|degradation in endoplasmic reticulum protein 3|der1-like protein 3 10 0.001369 7.281 1 1 +91351 DDX60L DEAD-box helicase 60-like 4 protein-coding - probable ATP-dependent RNA helicase DDX60-like|DEAD (Asp-Glu-Ala-Asp) box polypeptide 60-like|DEAD box protein 60-like|putative ATP-dependent RNA helicase DDX60 102 0.01396 8.639 1 1 +91353 IGLL3P immunoglobulin lambda like polypeptide 3, pseudogene 22 pseudo 16.1|IGLL3 omega protein 3 0.0004106 0.6174 1 1 +91355 LRP5L LDL receptor related protein 5 like 22 protein-coding - low-density lipoprotein receptor-related protein 5-like protein|LRP-5-like|low density lipoprotein receptor-related protein 5-like 17 0.002327 6.316 1 1 +91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like 5 protein-coding - CDKN2AIP N-terminal-like protein|CDKN2A-interacting protein N-terminal-like protein 8 0.001095 8.637 1 1 +91369 ANKRD40 ankyrin repeat domain 40 17 protein-coding - ankyrin repeat domain-containing protein 40 30 0.004106 10.3 1 1 +91370 MGC20647 uncharacterized protein MGC20647 22 unknown - - 7 0.0009581 1 0 +91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 9 protein-coding - UDP-N-acetylhexosamine pyrophosphorylase-like protein 1|UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 23 0.003148 8.555 1 1 +91392 ZNF502 zinc finger protein 502 3 protein-coding - zinc finger protein 502 44 0.006022 6.506 1 1 +91404 SESTD1 SEC14 and spectrin domain containing 1 2 protein-coding SOLO SEC14 domain and spectrin repeat-containing protein 1|SEC14 and spectrin domains 1|huntingtin-interacting protein-like protein|protein Solo 62 0.008486 9.51 1 1 +91408 BTF3L4 basic transcription factor 3 like 4 1 protein-coding - transcription factor BTF3 homolog 4 10 0.001369 9.842 1 1 +91409 CCDC74B coiled-coil domain containing 74B 2 protein-coding - coiled-coil domain-containing protein 74B 48 0.00657 5.575 1 1 +91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog 12 protein-coding KUB3|XRCC6BP1 mitochondrial inner membrane protease ATP23 homolog|Ku70-binding protein 3|XRCC6-binding protein 1 13 0.001779 6.738 1 1 +91433 RCCD1 RCC1 domain containing 1 15 protein-coding - RCC1 domain-containing protein 1 16 0.00219 7.963 1 1 +91442 FAAP24 Fanconi anemia core complex associated protein 24 19 protein-coding C19orf40 Fanconi anemia core complex-associated protein 24|Fanconi anemia-associated protein of 24 kDa 23 0.003148 5.52 1 1 +91445 RNF185 ring finger protein 185 22 protein-coding - E3 ubiquitin-protein ligase RNF185|BSK65-MONO1|BSK65-MONO2|BSK65-PANC1|BSK65-PANC2|BSK65-TEST1|BSK65-TEST2|BSK65-TEST3 16 0.00219 10.1 1 1 +91450 LOC91450 uncharacterized LOC91450 15 ncRNA - - 2.269 0 1 +91452 ACBD5 acyl-CoA binding domain containing 5 10 protein-coding - acyl-CoA-binding domain-containing protein 5|acyl-Coenzyme A binding domain containing 5|endozepine-related protein|membrane-associated diazepam binding inhibitor 40 0.005475 9.733 1 1 +91461 PKDCC protein kinase domain containing, cytoplasmic 2 protein-coding SGK493|Vlk extracellular tyrosine-protein kinase PKDCC|protein kinase domain containing, cytoplasmic homolog|protein kinase domain-containing protein, cytoplasmic|protein kinase-like protein SgK493|sugen kinase 493|vertebrate lonesome kinase 24 0.003285 7.669 1 1 +91464 ISX intestine specific homeobox 22 protein-coding Pix-1|RAXLX intestine-specific homeobox|RAX-like homeobox|pancreas-intestine homeodomain transcription factor 26 0.003559 1.283 1 1 +91522 COL23A1 collagen type XXIII alpha 1 chain 5 protein-coding - collagen alpha-1(XXIII) chain|collagen, type XXIII, alpha 1|procollagen, type XXIII, alpha 1 40 0.005475 5.247 1 1 +91523 PCED1B PC-esterase domain containing 1B 12 protein-coding FAM113B PC-esterase domain-containing protein 1B|family with sequence similarity 113, member B 51 0.006981 7.278 1 1 +91526 ANKRD44 ankyrin repeat domain 44 2 protein-coding PP6-ARS-B serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit B|ankyrin repeat domain-containing protein 44|protein phosphatase 6 ankyrin repeat subunit B|serine/threonine-protein phosphatase 6 regulatory subunit ARS-B 84 0.0115 5.795 1 1 +91543 RSAD2 radical S-adenosyl methionine domain containing 2 2 protein-coding 2510004L01Rik|cig33|cig5|vig1 radical S-adenosyl methionine domain-containing protein 2|cytomegalovirus-induced gene 5 protein|viperin|virus inhibitory protein, endoplasmic reticulum-associated, interferon-inducible 35 0.004791 7.962 1 1 +91544 UBXN11 UBX domain protein 11 1 protein-coding COA-1|PP2243|SOC|SOCI|UBXD5 UBX domain-containing protein 11|UBX domain-containing protein 5|colorectal tumor-associated antigen COA-1|colorectal tumor-associated antigen-1|socius 67 0.009171 8.653 1 1 +91574 C12orf65 chromosome 12 open reading frame 65 12 protein-coding COXPD7|SPG55 probable peptide chain release factor C12orf65, mitochondrial 8 0.001095 8.492 1 1 +91582 RPS19BP1 ribosomal protein S19 binding protein 1 22 protein-coding AROS|S19BP active regulator of SIRT1|40S ribosomal protein S19-binding protein 1|RPS19-binding protein 1|homolog of mouse S19 binding protein 2 0.0002737 10.12 1 1 +91584 PLXNA4 plexin A4 7 protein-coding FAYV2820|PLEXA4|PLXNA4A|PLXNA4B|PRO34003 plexin-A4 247 0.03381 6.238 1 1 +91603 ZNF830 zinc finger protein 830 17 protein-coding CCDC16|OMCG1 zinc finger protein 830|coiled-coil domain containing 16|coiled-coil domain-containing protein 16|hypothetical protein MGC20398|orphan maintenance of genome 1 22 0.003011 8.404 1 1 +91607 SLFN11 schlafen family member 11 17 protein-coding SLFN8/9 schlafen family member 11 80 0.01095 8.815 1 1 +91608 RASL10B RAS like family 10 member B 17 protein-coding RRP17|VTS58635 ras-like protein family member 10B|Ras-related protein 17|alternative protein RASL10B|ras-like protein VTS58635 15 0.002053 5.725 1 1 +91612 CHURC1 churchill domain containing 1 14 protein-coding C14orf52|My015|chch protein Churchill 7 0.0009581 10.08 1 1 +91614 DEPDC7 DEP domain containing 7 11 protein-coding TR2|dJ85M6.4 DEP domain-containing protein 7|dJ85M6.4 (novel 58.3 KDA protein)|novel 58.3 KDA protein 33 0.004517 5.451 1 1 +91624 NEXN nexilin F-actin binding protein 1 protein-coding CMH20|NELIN nexilin 58 0.007939 7.285 1 1 +91646 TDRD12 tudor domain containing 12 19 protein-coding ECAT8 putative ATP-dependent RNA helicase TDRD12|ES cell associated transcript 8|ES cell-associated transcript 8 protein|tudor domain-containing protein 12 17 0.002327 1.158 1 1 +91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 17 protein-coding ATP12|ATP12p|LP3663|MC5DN1 ATP synthase mitochondrial F1 complex assembly factor 2|ATP12 homolog 19 0.002601 8.313 1 1 +91653 BOC BOC cell adhesion associated, oncogene regulated 3 protein-coding CDON2 brother of CDO|Boc homolog|brother of CDON|cell adhesion associated, oncogene regulated 2 88 0.01204 8.263 1 1 +91661 ZNF765 zinc finger protein 765 19 protein-coding - zinc finger protein 765 37 0.005064 7.528 1 1 +91662 NLRP12 NLR family pyrin domain containing 12 19 protein-coding CLR19.3|FCAS2|NALP12|PAN6|PYPAF7|RNO|RNO2 NACHT, LRR and PYD domains-containing protein 12|PYRIN-containing APAF1-like protein 7|monarch 1|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 12|regulated by nitric oxide 145 0.01985 2.656 1 1 +91663 MYADM myeloid associated differentiation marker 19 protein-coding SB135 myeloid-associated differentiation marker|myeloid upregulated protein 39 0.005338 11.11 1 1 +91664 ZNF845 zinc finger protein 845 19 protein-coding - zinc finger protein 845 95 0.013 7.349 1 1 +91683 SYT12 synaptotagmin 12 11 protein-coding SYT11|sytXII synaptotagmin-12|synaptotagmin-XII 31 0.004243 6.657 1 1 +91687 CENPL centromere protein L 1 protein-coding C1orf155|CENP-L|dJ383J4.3 centromere protein L|interphase centromere complex protein 33 19 0.002601 7.253 1 1 +91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 22 protein-coding C22orf32|DDDD|EMRE|dJ186O1.1 essential MCU regulator, mitochondrial|UPF0466 protein C22orf32, mitochondrial|single-pass membrane protein with aspartate-rich tail 1, mitochondrial 3 0.0004106 9.611 1 1 +91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 8 protein-coding RNF191 LON peptidase N-terminal domain and RING finger protein 1|RING finger protein 191 46 0.006296 8.577 1 1 +91695 RRP7BP ribosomal RNA processing 7 homolog B, pseudogene 22 pseudo RRP7B|dJ222E13.2 ribosomal RNA processing 7 homolog B (S. cerevisiae), pseudogene 27 0.003696 6.725 1 1 +91703 ACY3 aminoacylase 3 11 protein-coding ACY-3|HCBP1 N-acyl-aromatic-L-amino acid amidohydrolase (carboxylate-forming)|HCV core-binding protein 1|acylase III|aspartoacylase (aminoacylase) 3|aspartoacylase (aminocyclase) 3|aspartoacylase-2|hepatitis C virus core-binding protein 1 27 0.003696 4.574 1 1 +91734 IDI2 isopentenyl-diphosphate delta isomerase 2 10 protein-coding IPPI2 isopentenyl-diphosphate delta-isomerase 2|IPP isomerase 2|diphosphate dimethylallyl diphosphate isomerase 2|isopentenyl pyrophosphate isomerase 2|isopentenyl-diphosphate Delta-isomerase 2 18 0.002464 5.857 1 1 +91746 YTHDC1 YTH domain containing 1 4 protein-coding YT521|YT521-B YTH domain-containing protein 1|putative splicing factor YT521|splicing factor YT521|splicing factor YT521-B 71 0.009718 10.55 1 1 +91748 ELMSAN1 ELM2 and Myb/SANT domain containing 1 14 protein-coding C14orf117|C14orf43|LSR68|MIDEAS|c14_5541 ELM2 and SANT domain-containing protein 1|ELM2 and Myb/SANT-like domain containing 1 85 0.01163 9.896 1 1 +91749 MFSD4B major facilitator superfamily domain containing 4B 6 protein-coding KIAA1919|NaGLT1 sodium-dependent glucose transporter 1|major facilitator superfamily domain-containing protein 4B 36 0.004927 6.411 1 1 +91750 LIN52 lin-52 DREAM MuvB core complex component 14 protein-coding C14orf46|c14_5549 protein lin-52 homolog|lin-52 homolog 7 0.0009581 6.886 1 1 +91752 ZNF804A zinc finger protein 804A 2 protein-coding C2orf10 zinc finger protein 804A 248 0.03394 3.32 1 1 +91754 NEK9 NIMA related kinase 9 14 protein-coding APUG|LCCS10|NC|NERCC|NERCC1 serine/threonine-protein kinase Nek9|NIMA (never in mitosis gene a)- related kinase 9|nercc1 kinase|nimA-related protein kinase 9 47 0.006433 10.7 1 1 +91768 CABLES1 Cdk5 and Abl enzyme substrate 1 18 protein-coding CABL1|CABLES|HsT2563|IK3-1 CDK5 and ABL1 enzyme substrate 1|interactor with CDK3 1 29 0.003969 8.689 1 1 +91775 NXPE3 neurexophilin and PC-esterase domain family member 3 3 protein-coding FAM55C|MST115|MSTP115 NXPE family member 3|family with sequence similarity 55, member C|protein FAM55C 50 0.006844 8.488 1 1 +91782 CHMP7 charged multivesicular body protein 7 8 protein-coding - charged multivesicular body protein 7|CHMP family, member 7|chromatin-modifying protein 7 28 0.003832 9.91 1 1 +91801 ALKBH8 alkB homolog 8, tRNA methyltransferase 11 protein-coding ABH8|TRM9|TRMT9 alkylated DNA repair protein alkB homolog 8|AlkB homologue 8|S-adenosyl-L-methionine-dependent tRNA methyltransferase ABH8|alkB, alkylation repair homolog 8|probable alpha-ketoglutarate-dependent dioxygenase ABH8|tRNA (carboxymethyluridine(34)-5-O)-methyltransferase ABH8|tRNA methyltransferase 9 homolog 34 0.004654 7.459 1 1 +91807 MYLK3 myosin light chain kinase 3 16 protein-coding MLCK|MLCK2|caMLCK myosin light chain kinase 3|MLC kinase|cardiac-MLCK|cardiac-MyBP-C associated Ca/CaM kinase|putative myosin light chain kinase 3 59 0.008076 3.082 1 1 +91828 EXOC3L4 exocyst complex component 3 like 4 14 protein-coding C14orf73 exocyst complex component 3-like protein 4|SEC6-like protein C14orf73 41 0.005612 3.822 1 1 +91833 WDR20 WD repeat domain 20 14 protein-coding DMR WD repeat-containing protein 20 34 0.004654 8.719 1 1 +91851 CHRDL1 chordin like 1 X protein-coding CHL|MGC1|MGCN|NRLN1|VOPT|dA141H5.1 chordin-like protein 1|neuralin-1|neurogenesin-1|ventroptin 53 0.007254 6.076 1 1 +91860 CALML4 calmodulin like 4 15 protein-coding NY-BR-20 calmodulin-like protein 4|serologically defined breast cancer antigen NY-BR-20 11 0.001506 8.44 1 1 +91862 MARVELD3 MARVEL domain containing 3 16 protein-coding MARVD3|MRVLDC3 MARVEL domain-containing protein 3|MARVEL (membrane-associating) domain containing 3 53 0.007254 7.212 1 1 +91869 RFT1 RFT1 homolog 3 protein-coding CDG1N protein RFT1 homolog|RFT1, requiring fifty three 1 homolog|congenital disorder of glycosylation 1N|putative endoplasmic reticulum multispan transmembrane protein 14 0.001916 9.023 1 1 +91875 TTC5 tetratricopeptide repeat domain 5 14 protein-coding Strap tetratricopeptide repeat protein 5|TPR repeat protein 5|stress-responsive activator of p300 31 0.004243 7.646 1 1 +91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 11 protein-coding hCG_2033039 ferredoxin-fold anticodon-binding domain-containing protein 1|FDX-ACDB domain-containing protein 1|hypothetical protein BC006136 18 0.002464 6.387 1 1 +91894 C11orf52 chromosome 11 open reading frame 52 11 protein-coding - uncharacterized protein C11orf52 13 0.001779 6.723 1 1 +91937 TIMD4 T-cell immunoglobulin and mucin domain containing 4 5 protein-coding SMUCKLER|TIM4 T-cell immunoglobulin and mucin domain-containing protein 4|T-cell immunoglobulin mucin receptor 4|T-cell membrane protein 4|TIM-4|TIMD-4 62 0.008486 2.526 1 1 +91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 5 protein-coding B17.2L|MMTN|NDUFA12L|mimitin mimitin, mitochondrial|Myc-induced mitochondrial protein|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 2|NADH dehydrogenase (ubiquinone) complex I, assembly factor 2|NADH dehydrogenase 1 alpha subcomplex assembly factor 2|NDUFA12-like protein 25 0.003422 7.417 1 1 +91947 ARRDC4 arrestin domain containing 4 15 protein-coding - arrestin domain-containing protein 4 22 0.003011 9.036 1 1 +91948 LINC00923 long intergenic non-protein coding RNA 923 15 ncRNA - - 0 0 0.5219 1 1 +91949 COG7 component of oligomeric golgi complex 7 16 protein-coding CDG2E conserved oligomeric Golgi complex subunit 7|COG complex subunit 7 42 0.005749 9.239 1 1 +91966 CXorf40A chromosome X open reading frame 40A X protein-coding CXorf40|EOLA1|FLJ16423 protein CXorf40A|endothelial-overexpressed lipopolysaccharide-associated factor 1 15 0.002053 8.589 1 1 +91975 ZNF300 zinc finger protein 300 5 protein-coding - zinc finger protein 300|kruppel-like zinc finger protein 61 0.008349 6.508 1 1 +91977 MYOZ3 myozenin 3 5 protein-coding CS-3|CS3|FRP3 myozenin-3|FATZ-related protein 3|calsarcin-3 18 0.002464 3.655 1 1 +91978 TPGS1 tubulin polyglutamylase complex subunit 1 19 protein-coding C19orf20|GTRGEO22|PGs1 tubulin polyglutamylase complex subunit 1|gene trap ROSA b-geo 22 5 0.0006844 6.635 1 1 +92002 FAM58A family with sequence similarity 58 member A X protein-coding STAR cyclin-related protein FAM58A|CDK10-activating cyclin|cyclin M 17 0.002327 8.635 1 1 +92014 SLC25A51 solute carrier family 25 member 51 9 protein-coding CG7943|MCART1 solute carrier family 25 member 51|mitochondrial carrier triple repeat 1|mitochondrial carrier triple repeat protein 1 22 0.003011 7.415 1 1 +92017 SNX29 sorting nexin 29 16 protein-coding A-388D4.1|RUNDC2A sorting nexin-29|RUN domain containing 2A|RUN domain-containing protein 2A 58 0.007939 9.135 1 1 +92070 CTBP1-AS2 CTBP1 antisense RNA 2 (head to head) 4 ncRNA C4orf42|CTBP1-AS1 CTBP1 antisense RNA 1 (head to head)|CTBP1 antisense RNA 1 (non-protein coding) 26 0.003559 8.551 1 1 +92086 GGTLC1 gamma-glutamyltransferase light chain 1 20 protein-coding GGTL6|GGTLA3|GGTLA4|dJ831C21.1|dJ831C21.2 gamma-glutamyltransferase light chain 1|gamma-glutamyl transpeptidase|gamma-glutamyltransferase-like activity 3|gamma-glutamyltransferase-like activity 4|gamma-glutamyltransferase-like protein 6 29 0.003969 2.343 1 1 +92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like 7 protein-coding C7orf39 zinc finger CCCH-type antiviral protein 1-like|zinc finger CCCH-type, antiviral 1-like 10 0.001369 4.994 1 1 +92104 TTC30A tetratricopeptide repeat domain 30A 2 protein-coding IFT70A tetratricopeptide repeat protein 30A|TPR repeat protein 30A 33 0.004517 7.681 1 1 +92105 INTS4 integrator complex subunit 4 11 protein-coding INT4|MST093 integrator complex subunit 4|MSTP093 60 0.008212 9.008 1 1 +92106 OXNAD1 oxidoreductase NAD binding domain containing 1 3 protein-coding - oxidoreductase NAD-binding domain-containing protein 1 25 0.003422 7.849 1 1 +92126 DSEL dermatan sulfate epimerase-like 18 protein-coding C18orf4 dermatan-sulfate epimerase-like protein|NCAG1 148 0.02026 7.463 1 1 +92129 RIPPLY1 ripply transcriptional repressor 1 X protein-coding - protein ripply1|ripply1 homolog 9 0.001232 0.9924 1 1 +92140 MTDH metadherin 8 protein-coding 3D3|AEG-1|AEG1|LYRIC|LYRIC/3D3 protein LYRIC|3D3/LYRIC|astrocyte elevated gene 1|astrocyte elevated gene-1 protein|lysine-rich CEACAM1 co-isolated protein|metastasis adhesion protein 48 0.00657 11.71 1 1 +92154 MTSS1L MTSS1L, I-BAR domain containing 16 protein-coding ABBA|ABBA-1|ABBA1 MTSS1-like protein|actin-bundling with BAIAP2 homology protein 1|metastasis suppressor 1-like 34 0.004654 10.47 1 1 +92162 TMEM88 transmembrane protein 88 17 protein-coding - transmembrane protein 88 8 0.001095 5.492 1 1 +92170 MTG1 mitochondrial ribosome associated GTPase 1 10 protein-coding GTP|GTPBP7 mitochondrial ribosome-associated GTPase 1|GTP-binding protein 7 (putative)|mitochondrial GTPase 1 homolog 21 0.002874 9.069 1 1 +92181 UBTD2 ubiquitin domain containing 2 5 protein-coding DCUBP ubiquitin domain-containing protein 2|ubiquitin-like protein SB72 19 0.002601 9.375 1 1 +92196 DAPL1 death associated protein like 1 2 protein-coding - death-associated protein-like 1|early epithelial differentiation-associated protein 12 0.001642 3.773 1 1 +92211 CDHR1 cadherin related family member 1 10 protein-coding CORD15|PCDH21|PRCAD|RP65 cadherin-related family member 1|MT-protocadherin|photoreceptor cadherin|protocadherin-21 93 0.01273 5.138 1 1 +92235 DUSP27 dual specificity phosphatase 27 (putative) 1 protein-coding - inactive dual specificity phosphatase 27 152 0.0208 2.574 1 1 +92241 RCSD1 RCSD domain containing 1 1 protein-coding CAPZIP|MK2S4 capZ-interacting protein|RCSD domain-containing protein 1|protein kinase substrate CapZIP|protein kinase substrate MK2S4 48 0.00657 7.764 1 1 +92249 LINC01278 long intergenic non-protein coding RNA 1278 X ncRNA - - 8.809 0 1 +92255 LMBRD2 LMBR1 domain containing 2 5 protein-coding - LMBR1 domain-containing protein 2 58 0.007939 7.085 1 1 +92259 MRPS36 mitochondrial ribosomal protein S36 5 protein-coding DC47|MRP-S36 28S ribosomal protein S36, mitochondrial|S36mt 9 0.001232 8.575 1 1 +92270 ATP6AP1L ATPase H+ transporting accessory protein 1 like 5 protein-coding - V-type proton ATPase subunit S1-like protein|ATPase, H+ transporting, lysosomal accessory protein 1-like|vacuolar proton pump subunit S1-like protein 17 0.002327 5.158 1 1 +92283 ZNF461 zinc finger protein 461 19 protein-coding GIOT-1|GIOT1|HZF28 zinc finger protein 461|gonadotropin-inducible ovary transcription repressor 1|zinc finger protein 28 51 0.006981 6.459 1 1 +92285 ZNF585B zinc finger protein 585B 19 protein-coding SZFP41 zinc finger protein 585B|zinc finger protein 41-like protein 73 0.009992 5.836 1 1 +92291 CAPN13 calpain 13 2 protein-coding - calpain-13|CANP 13|calcium-activated neutral proteinase 13 69 0.009444 4.475 1 1 +92292 GLYATL1 glycine-N-acyltransferase like 1 11 protein-coding GATF-C|GNAT glycine N-acyltransferase-like protein 1|acyl-CoA:glycine N-acyltransferase-like protein 1|glutamine N-acyltransferase 56 0.007665 3.395 1 1 +92293 TMEM132C transmembrane protein 132C 12 protein-coding PPP1R152 transmembrane protein 132C|protein phosphatase 1, regulatory subunit 152 67 0.009171 3.261 1 1 +92304 SCGB3A1 secretoglobin family 3A member 1 5 protein-coding HIN-1|HIN1|LU105|PnSP-2|UGRP2 secretoglobin family 3A member 1|cytokine HIN-1|cytokine high in normal-1|high in normal 1|pneumo secretory protein 2|uteroglobin-related protein 2 3 0.0004106 3.375 1 1 +92305 TMEM129 transmembrane protein 129 4 protein-coding D4S2561E E3 ubiquitin-protein ligase TM129|transmembrane protein 129, E3 ubiquitin protein ligase 8 0.001095 10.2 1 1 +92312 MEX3A mex-3 RNA binding family member A 1 protein-coding MEX-3A|RKHD4 RNA-binding protein MEX3A|RING finger and KH domain-containing protein 4|ring finger and KH domain containing 4|ring finger and KH domain containing protein 34 0.004654 8.051 1 1 +92335 STRADA STE20-related kinase adaptor alpha 17 protein-coding LYK5|NY-BR-96|PMSE|STRAD|Stlk STE20-related kinase adapter protein alpha|STE20-like pseudokinase|STRAD alpha|protein kinase LYK5|serologically defined breast cancer antigen NY-BR-96 35 0.004791 9.282 1 1 +92340 PRR29 proline rich 29 17 protein-coding C17orf72 proline-rich protein 29 4 0.0005475 5.331 1 1 +92342 METTL18 methyltransferase like 18 1 protein-coding AsTP2|C1orf156|HPM1 histidine protein methyltransferase 1 homolog|arsenic-transactivated protein 2|methyltransferase-like protein 18 25 0.003422 7.357 1 1 +92344 GORAB golgin, RAB6 interacting 1 protein-coding GO|NTKLBP1|SCYL1BP1 RAB6-interacting golgin|N-terminal kinase-like-binding protein 1|NTKL-binding protein 1|SCY1-like 1-binding protein 1|SCYL1-BP1|SCYL1-binding protein 1|hNTKL-BP1 31 0.004243 7.908 1 1 +92345 NAF1 nuclear assembly factor 1 ribonucleoprotein 4 protein-coding - H/ACA ribonucleoprotein complex non-core subunit NAF1|nuclear assembly factor 1 homolog 40 0.005475 7.41 1 1 +92346 C1orf105 chromosome 1 open reading frame 105 1 protein-coding - uncharacterized protein C1orf105 18 0.002464 0.6651 1 1 +92359 CRB3 crumbs 3, cell polarity complex component 19 protein-coding - protein crumbs homolog 3|crumbs family member 3 7 0.0009581 7.153 1 1 +92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 3 protein-coding SSB-4|SSB4 SPRY domain-containing SOCS box protein 4|SPRY domain-containing SOCS box protein SSB-4 21 0.002874 3.43 1 1 +92370 PXYLP1 2-phosphoxylose phosphatase 1 3 protein-coding ACPL2|HEL124|XYLP 2-phosphoxylose phosphatase 1|acid phosphatase-like 2|acid phosphatase-like protein 2|epididymis luminal protein 124|xylosyl phosphatase 25 0.003422 8.56 1 1 +92399 MRRF mitochondrial ribosome recycling factor 9 protein-coding MRFF|MTRRF|RRF ribosome-recycling factor, mitochondrial|ribosome-releasing factor, mitochondrial 10 0.001369 8.932 1 1 +92400 RBM18 RNA binding motif protein 18 9 protein-coding - probable RNA-binding protein 18 17 0.002327 9.234 1 1 +92421 CHMP4C charged multivesicular body protein 4C 8 protein-coding SNF7-3|Shax3|VPS32C charged multivesicular body protein 4c|SNF7 homolog associated with Alix 3|Snf7 homologue associated with Alix 3|chromatin modifying protein 4C|chromatin-modifying protein 4c|hSnf7-3|hVps32-3|vacuolar protein sorting-associated protein 32-3|vps32-3 19 0.002601 7.485 1 1 +92482 BBIP1 BBSome interacting protein 1 10 protein-coding BBIP10|BBS18|NCRNA00081|bA348N5.3 BBSome-interacting protein 1|BBSome-interacting protein of 10 kDa|UPF0604 protein 7.855 0 1 +92483 LDHAL6B lactate dehydrogenase A like 6B 15 protein-coding LDH6B|LDHAL6|LDHL L-lactate dehydrogenase A-like 6B|lactate dehydrogenase A-like 6|testicular tissue protein Li 105 27 0.003696 1.126 1 1 +92521 SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 17 protein-coding CYTSB|HCMOGT-1|HCMOGT1|NSP cytospin-B|NSP5|cytokinesis and spindle organization 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 81 0.01109 8.844 1 1 +92552 ATXN3L ataxin 3 like X protein-coding MJDL ataxin-3-like protein|machado-Joseph disease protein 1-like|putative ataxin-3-like protein 38 0.005201 0.05665 1 1 +92558 BICDL1 BICD family like cargo adaptor 1 12 protein-coding BICDR-1|BICDR1|CCDC64|H_267D11.1 bicaudal D-related protein 1|BICD-related protein 1|Bicaudal D related 1|WUGSC:H_267D11.1|coiled-coil domain containing 64|coiled-coil domain-containing protein 64A 23 0.003148 8.199 1 1 +92565 FANK1 fibronectin type III and ankyrin repeat domains 1 10 protein-coding HSD13 fibronectin type 3 and ankyrin repeat domains protein 1|1700007B22Rik|fibronectin type 3 and ankyrin repeat domains 1 42 0.005749 5.705 1 1 +92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 17 protein-coding SCN4|UGRP glucose-6-phosphatase 3|G-6-Pase 3|G6Pase 3|G6Pase-beta|glucose 6 phosphatase, catalytic, 3|ubiquitous glucose-6-phosphatase catalytic subunit-related protein|ubiquitously expressed G6Pase catalytic subunit-related protein 19 0.002601 10.42 1 1 +92591 ASB16 ankyrin repeat and SOCS box containing 16 17 protein-coding - ankyrin repeat and SOCS box protein 16|ankyrin repeat and SOCS box-containing protein 16 29 0.003969 4.061 1 1 +92595 ZNF764 zinc finger protein 764 16 protein-coding - zinc finger protein 764 22 0.003011 7.577 1 1 +92597 MOB1B MOB kinase activator 1B 4 protein-coding MATS2|MOB4A|MOBKL1A MOB kinase activator 1B|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 15 0.002053 9.407 1 1 +92609 TIMM50 translocase of inner mitochondrial membrane 50 19 protein-coding TIM50|TIM50L mitochondrial import inner membrane translocase subunit TIM50|Tim50-like protein|homolog of yeast Tim50 29 0.003969 10.01 1 1 +92610 TIFA TRAF interacting protein with forkhead associated domain 4 protein-coding T2BP|T6BP|TIFAA TRAF-interacting protein with FHA domain-containing protein A|TRAF-interacting protein with a forkhead-associated domain|TRAF2 binding protein|TRAF6 binding protein|putative MAPK-activating protein PM14|putative NF-kappa-B-activating protein 20 12 0.001642 7.944 1 1 +92659 MAFG-AS1 MAFG antisense RNA 1 (head to head) 17 ncRNA - MAFG antisense RNA 1 (non-protein coding) 6.37 0 1 +92667 MGME1 mitochondrial genome maintenance exonuclease 1 20 protein-coding C20orf72|DDK1|MTDPS11|bA504H3.4 mitochondrial genome maintenance exonuclease 1 25 0.003422 8.921 1 1 +92675 DTD1 D-tyrosyl-tRNA deacylase 1 20 protein-coding C20orf88|DUE-B|DUEB|HARS2|pqn-68 D-tyrosyl-tRNA(Tyr) deacylase 1|D-tyrosyl-tRNA deacylase 1 homolog|DNA-unwinding element-binding protein B|histidyl-tRNA synthase-related|histidyl-tRNA synthetase 2 20 0.002737 9.209 1 1 +92689 FAM114A1 family with sequence similarity 114 member A1 4 protein-coding Noxp20 protein NOXP20|nervous system over-expressed protein 20 29 0.003969 8.684 1 1 +92691 TMEM169 transmembrane protein 169 2 protein-coding - transmembrane protein 169 33 0.004517 4.722 1 1 +92703 TMEM183A transmembrane protein 183A 1 protein-coding C1orf37 transmembrane protein 183A 9 0.001232 10.17 1 1 +92714 ARRDC1 arrestin domain containing 1 9 protein-coding - arrestin domain-containing protein 1|alpha-arrestin 1 19 0.002601 9.795 1 1 +92715 DPH7 diphthamide biosynthesis 7 9 protein-coding C9orf112|RRT2|WDR85 diphthine methyltransferase|WD repeat domain 85|WD repeat-containing protein 85|diphthamide biosynthesis protein 7 18 0.002464 8.556 1 1 +92736 OTOP2 otopetrin 2 17 protein-coding - otopetrin-2 46 0.006296 0.5065 1 1 +92737 DNER delta/notch like EGF repeat containing 2 protein-coding UNQ26|bet delta and Notch-like epidermal growth factor-related receptor|H_NH0150O02.1|WUGSC:H_NH0150O02.1|delta-notch-like EGF repeat-containing transmembrane 68 0.009307 4.646 1 1 +92745 SLC38A5 solute carrier family 38 member 5 X protein-coding JM24|SN2|SNAT5|pp7194 sodium-coupled neutral amino acid transporter 5|solute carrier family 38 (amino acid transporter), member 5|system N transporter 2|transport system N, protein 2 28 0.003832 7.634 1 1 +92747 BPIFB1 BPI fold containing family B member 1 20 protein-coding C20orf114|LPLUNC1 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 42 0.005749 3.217 1 1 +92749 DRC1 dynein regulatory complex subunit 1 2 protein-coding C2orf39|CCDC164|CILD21 dynein regulatory complex protein 1|coiled-coil domain-containing protein 164 62 0.008486 1.903 1 1 +92755 TUBBP1 tubulin beta pseudogene 1 8 pseudo - tubulin, beta polypeptide pseudogene 1 26 0.003559 1 0 +92797 HELB DNA helicase B 12 protein-coding DHB|hDHB DNA helicase B|helicase (DNA) B 81 0.01109 4.644 1 1 +92799 SHKBP1 SH3KBP1 binding protein 1 19 protein-coding PP203|Sb1 SH3KBP1-binding protein 1 58 0.007939 10.3 1 1 +92806 CENPBD1 CENPB DNA-binding domain containing 1 16 protein-coding - CENPB DNA-binding domain-containing protein 1|CENPB DNA-binding domains containing 1 11 0.001506 8.136 1 1 +92815 HIST3H2A histone cluster 3 H2A 1 protein-coding - histone H2A type 3|histone 3, H2a|histone cluster 3, H2a 16 0.00219 5.581 1 1 +92822 ZNF276 zinc finger protein 276 16 protein-coding CENP-Z|CENPZ|ZADT|ZFP276|ZNF477 zinc finger protein 276|centromere protein Z|zfp-276|zinc finger protein 276 homolog|zinc finger protein 477|zinc finger, AD-type 49 0.006707 8.933 1 1 +92840 REEP6 receptor accessory protein 6 19 protein-coding C19orf32|DP1L1|TB2L1|Yip2f receptor expression-enhancing protein 6|deleted in polyposis 1-like 1|polyposis locus protein 1-like 1 10 0.001369 8.455 1 1 +92856 IMP4 IMP4 homolog, U3 small nucleolar ribonucleoprotein 2 protein-coding BXDC4 U3 small nucleolar ribonucleoprotein protein IMP4|IMP4, U3 small nucleolar ribonucleoprotein|IMP4, U3 small nucleolar ribonucleoprotein, homolog|U3 snoRNP protein 4 homolog|U3 snoRNP protein IMP4|brix domain-containing protein 4 25 0.003422 9.578 1 1 +92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like 2 protein-coding HNRPLL|SRRF heterogeneous nuclear ribonucleoprotein L-like|stromal RNA regulating factor 24 0.003285 9.225 1 1 +92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 15 protein-coding - ubiquitin-conjugating enzyme E2 Q2|E2 ubiquitin-conjugating enzyme Q2|ubiquitin carrier protein Q2|ubiquitin conjugating enzyme E2Q family member 2|ubiquitin-protein ligase Q2 26 0.003559 9.811 1 1 +92922 CCDC102A coiled-coil domain containing 102A 16 protein-coding - coiled-coil domain-containing protein 102A 30 0.004106 7.231 1 1 +92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial 2 protein-coding COXPD25|MetRS|mtMetRS methionine--tRNA ligase, mitochondrial|methionine tRNA ligase 2, mitochondrial|methionine--tRNA ligase 2|methionine-tRNA synthetase 2, mitochondrial 32 0.00438 7.586 1 1 +92949 ADAMTSL1 ADAMTS like 1 9 protein-coding ADAMTSL-1|ADAMTSR1|C9orf94|PUNCTIN ADAMTS-like protein 1|ADAM-TS related protein 1|punctin-1 181 0.02477 5.921 1 1 +92960 PEX11G peroxisomal biogenesis factor 11 gamma 19 protein-coding - peroxisomal membrane protein 11C|PEX11-gamma|Pex11pgamma|peroxin Pex11p gamma|peroxin-11C|peroxisomal biogenesis factor 11C|peroxisomal biogenesis factor 11G|protein PEX11 homolog gamma 12 0.001642 6.184 1 1 +92973 LINC00950 long intergenic non-protein coding RNA 950 9 ncRNA FP588 Putative uncharacterized protein FP588 4.796 0 1 +92979 MARCH9 membrane associated ring-CH-type finger 9 12 protein-coding MARCH-IX|RNF179 E3 ubiquitin-protein ligase MARCH9|RING finger protein 179|membrane associated ring finger 9|membrane-associated RING finger protein 9|membrane-associated RING-CH protein IX|membrane-associated ring finger (C3HC4) 9 16 0.00219 8.774 1 1 +92999 ZBTB47 zinc finger and BTB domain containing 47 3 protein-coding ZNF651 zinc finger and BTB domain-containing protein 47|zinc finger protein 651 29 0.003969 8.998 1 1 +93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 2 protein-coding beta3GnT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7|BGnT-7|beta 1,3-N-acetylglucosaminyltransferase 7|beta-1,3-Gn-T7|beta3Gn-T7 25 0.003422 7.639 1 1 +93034 NT5C1B 5'-nucleotidase, cytosolic IB 2 protein-coding AIRP|CN-IB|CN1B cytosolic 5'-nucleotidase 1B|autoimmune infertility-related protein|testicular tissue protein Li 1 56 0.007665 1.351 1 1 +93035 PKHD1L1 polycystic kidney and hepatic disease 1 (autosomal recessive)-like 1 8 protein-coding PKHDL1 fibrocystin-L|PKHD1-like protein 1|polycystic kidney and hepatic disease 1-like protein 1|polycystic kidney and hepatic disease-like 1 400 0.05475 2.609 1 1 +93058 COQ10A coenzyme Q10A 12 protein-coding - coenzyme Q-binding protein COQ10 homolog A, mitochondrial|coenzyme Q10 homolog A 17 0.002327 7.31 1 1 +93081 TEX30 testis expressed 30 13 protein-coding C13orf27 testis-expressed sequence 30 protein 15 0.002053 7.389 1 1 +93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 2 protein-coding LINCR E3 ubiquitin-protein ligase NEURL3|lung-inducible neuralized-related C3CH4 RING domain protein|neuralized homolog 3 pseudogene|neuralized-like protein 3 10 0.001369 4.044 1 1 +93099 DMKN dermokine 19 protein-coding UNQ729|ZD52F10 dermokine|epidermis-specific secreted protein SK30/SK89 73 0.009992 7.692 1 1 +93100 NAPRT nicotinate phosphoribosyltransferase 8 protein-coding NAPRT1|PP3856 nicotinate phosphoribosyltransferase|FHA-HIT-interacting protein|NAPRTase|nicotinate phosphoribosyltransferase domain containing 1|nicotinate phosphoribosyltransferase domain-containing protein 1|nicotinic acid phosphoribosyltransferase 30 0.004106 9.88 1 1 +93107 KCNG4 potassium voltage-gated channel modifier subfamily G member 4 16 protein-coding KV6.3|KV6.4 potassium voltage-gated channel subfamily G member 4|potassium channel, voltage gated modifier subfamily G, member 4|potassium voltage-gated channel, subfamily G, member 4|voltage-gated potassium channel Kv6.3|voltage-gated potassium channel subunit Kv6.4 59 0.008076 0.4528 1 1 +93109 TMEM44 transmembrane protein 44 3 protein-coding - transmembrane protein 44 26 0.003559 7.862 1 1 +93129 ORAI3 ORAI calcium release-activated calcium modulator 3 16 protein-coding TMEM142C protein orai-3|transmembrane protein 142C 12 0.001642 9.258 1 1 +93134 ZNF561 zinc finger protein 561 19 protein-coding - zinc finger protein 561 25 0.003422 9.268 1 1 +93145 OLFM2 olfactomedin 2 19 protein-coding NOE2|NOELIN2|NOELIN2_V1|OlfC noelin-2|neuronal olfactomedin related ER localized protein 2 40 0.005475 8.417 1 1 +93164 HTR7P1 5-hydroxytryptamine receptor 7 pseudogene 1 12 pseudo HTR7P 5-hydroxytryptamine (serotonin) receptor 7 pseudogene 1|serotonin-7 receptor pseudogene 7 0.0009581 6.253 1 1 +93166 PRDM6 PR/SET domain 6 5 protein-coding PDA3|PRISM putative histone-lysine N-methyltransferase PRDM6|PR domain 6|PR domain containing 6|PR domain-containing protein 6|PR-domain zinc finger protein 6 18 0.002464 4.115 1 1 +93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M 1 protein-coding GPI-MT-I GPI mannosyltransferase 1|DPM:GlcN-(acyl-)PI mannosyltransferase|GPI mannosyltransferase I|PIG-M mannosyltransferase|dol-P-Man dependent GPI mannosyltransferase|phosphatidylinositol-glycan biosynthesis class M protein 23 0.003148 8.748 1 1 +93185 IGSF8 immunoglobulin superfamily member 8 1 protein-coding CD316|CD81P3|EWI-2|EWI2|KCT-4|LIR-D1|PGRL immunoglobulin superfamily member 8|CD81 partner 3|glu-Trp-Ile EWI motif-containing protein 2|keratinocytes-associated transmembrane protein 4|prostaglandin regulatory-like protein 51 0.006981 10.58 1 1 +93190 C1orf158 chromosome 1 open reading frame 158 1 protein-coding - uncharacterized protein C1orf158 20 0.002737 0.8263 1 1 +93210 PGAP3 post-GPI attachment to proteins 3 17 protein-coding AGLA546|CAB2|PERLD1|PP1498|hCOS16 post-GPI attachment to proteins factor 3|COS16 homolog|gene coamplified with ERBB2 protein|per1-like domain containing 1 13 0.001779 9.804 1 1 +93233 CCDC114 coiled-coil domain containing 114 19 protein-coding CILD20 coiled-coil domain-containing protein 114 39 0.005338 3.957 1 1 +93273 LEMD1 LEM domain containing 1 1 protein-coding CT50|LEMP-1 LEM domain-containing protein 1|LEM domain protein 1|cancer/testis antigen 50 17 0.002327 2.798 1 1 +93323 HAUS8 HAUS augmin like complex subunit 8 19 protein-coding DGT4|HICE1|NY-SAR-48 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 28 0.003832 7.234 1 1 +93343 MVB12A multivesicular body subunit 12A 19 protein-coding CFBP|FAM125A multivesicular body subunit 12A|CIN85/CD2AP family binding protein|ESCRT-I complex subunit MVB12A|family with sequence similarity 125, member A 21 0.002874 9.379 1 1 +93349 SP140L SP140 nuclear body protein like 2 protein-coding - nuclear body protein SP140-like protein|SP140L-1 protein|SP140L-2 protein|SP140L-3 protein 39 0.005338 8.052 1 1 +93377 OPALIN oligodendrocytic myelin paranodal and inner loop protein 10 protein-coding HTMP10|TMEM10|TMP10 opalin|transmembrane protein 10|transmembrane protein TMP10 19 0.002601 0.7265 1 1 +93380 MMGT1 membrane magnesium transporter 1 X protein-coding EMC5|TMEM32 membrane magnesium transporter 1|ER membrane protein complex subunit 5|transmembrane protein 32 15 0.002053 9.657 1 1 +93408 MYL10 myosin light chain 10 7 protein-coding MYLC2PL|PLRLC myosin regulatory light chain 10|myosin light chain 2, lymphocyte-specific|myosin light chain 2, precursor lymphocyte-specific|myosin, light chain 10, regulatory|precursor lymphocyte-specific regulatory light chain 22 0.003011 0.1563 1 1 +93426 SYCE1 synaptonemal complex central element protein 1 10 protein-coding C10orf94|CT76|POF12|SPGF15 synaptonemal complex central element protein 1|cancer/testis antigen 76 34 0.004654 1.893 1 1 +93429 LOC93429 uncharacterized LOC93429 19 ncRNA - - 2.441 0 1 +93432 MGAM2 maltase-glucoamylase 2 (putative) 7 protein-coding - putative maltase-glucoamylase-like protein FLJ16351|Putative maltase-glucoamylase-like protein FLJ16351|maltase-glucoamylase (alpha-glucosidase) 0.7844 0 1 +93436 ARMC6 armadillo repeat containing 6 19 protein-coding R30923_1 armadillo repeat-containing protein 6 33 0.004517 9.629 1 1 +93474 ZNF670 zinc finger protein 670 1 protein-coding - zinc finger protein 670 18 0.002464 6.104 1 1 +93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like 14 protein-coding C14orf32|MISS|c14_5346 MAPK-interacting and spindle-stabilizing protein-like|MAPK-interacting and spindle-stabilizing protein 10 0.001369 10.91 1 1 +93492 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 13 protein-coding TPIP phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase TPTE2|PTEN-like inositol lipid phosphatase|TPIP lipid phosphatase|TPTE and PTEN homologous inositol lipid phosphatase|lipid phosphatase TPIP 95 0.013 0.8547 1 1 +93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 16 protein-coding HSPC105 short-chain dehydrogenase/reductase family 42E member 1 27 0.003696 6.009 1 1 +93550 ZFAND4 zinc finger AN1-type containing 4 10 protein-coding ANUBL1 AN1-type zinc finger protein 4|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|zinc finger, AN1-type domain 4 52 0.007117 6.821 1 1 +93556 EGFEM1P EGF like and EMI domain containing 1, pseudogene 3 pseudo C3orf50|NCRNA00259 multiple EGF-like-domains 6 pseudogene 14 0.001916 1.006 1 1 +93587 TRMT10A tRNA methyltransferase 10A 4 protein-coding HEL-S-88|MSSGM|MSSGM1|RG9MTD2|TRM10 tRNA methyltransferase 10 homolog A|RNA (guanine-9-)-methyltransferase domain-containing protein 2|epididymis secretory protein Li 88 28 0.003832 6.962 1 1 +93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 12 protein-coding RCD4 voltage-dependent calcium channel subunit alpha-2/delta-4|calcium channel, voltage-dependent, alpha 2/delta subunit 4|voltage-gated calcium channel alpha(2)delta-4 subunit|voltage-gated calcium channel subunit alpha-2/delta-4 106 0.01451 5.195 1 1 +93594 TBC1D31 TBC1 domain family member 31 8 protein-coding Gm85|WDR67 TBC1 domain family member 31|WD repeat domain 67|WD repeat-containing protein 67 75 0.01027 7.295 1 1 +93611 FBXO44 F-box protein 44 1 protein-coding FBG3|FBX30|FBX6A|Fbx44|Fbxo6a F-box only protein 44|F-box gene 3|F-box protein FBX30|F-box/G-domain protein 3 24 0.003285 8.872 1 1 +93621 MRFAP1 Morf4 family associated protein 1 4 protein-coding PAM14|PGR1 MORF4 family-associated protein 1|Mof4 family associated protein 1|T-cell activation protein|protein associated with MRG of 14 kDa 8 0.001095 12.55 1 1 +93622 LOC93622 Morf4 family associated protein 1 like 1 pseudogene 4 pseudo - - 1 0.0001369 8.36 1 1 +93624 TADA2B transcriptional adaptor 2B 4 protein-coding ADA2(beta)|ADA2B transcriptional adapter 2-beta|ADA2-beta|ADA2-like protein beta|transcriptional adaptor 2 (ADA2 homolog, yeast)-beta 37 0.005064 9.6 1 1 +93627 TBCK TBC1 domain containing kinase 4 protein-coding HSPC302|IHPRF3|TBCKL TBC domain-containing protein kinase-like protein 67 0.009171 8.612 1 1 +93643 TJAP1 tight junction associated protein 1 6 protein-coding PILT|TJP4 tight junction-associated protein 1|protein incorporated later into tight junctions|tight junction associated protein 1 (peripheral)|tight junction protein 4 (peripheral) 30 0.004106 9.413 1 1 +93649 MYOCD myocardin 17 protein-coding MYCD myocardin 133 0.0182 3.44 1 1 +93650 ACPT acid phosphatase, testicular 19 protein-coding - testicular acid phosphatase 35 0.004791 0.4061 1 1 +93653 ST7-AS1 ST7 antisense RNA 1 7 ncRNA ST7AS1|ST7OT1 ST7 antisense RNA 1 (non-protein coding)|ST7 overlapping transcript 1 (antisense non-coding RNA)|ST7 overlapping transcript 1 (non-protein coding)|ST7 overlapping transcript antisense 1 1 0.0001369 5.124 1 1 +93654 ST7-AS2 ST7 antisense RNA 2 7 ncRNA ST7AS2|ST7OT2 ST7 antisense RNA 2 (non-protein coding)|ST7 overlapping transcript 2 (antisense non-coding RNA)|ST7 overlapping transcript 2 (non-protein coding) 1 0.0001369 0.3036 1 1 +93655 ST7-OT3 ST7 overlapping transcript 3 7 ncRNA NCRNA00026|ST7|ST7OT3 ST7 overlapping transcript 3 (non-coding RNA)|ST7 overlapping transcript 3 (non-protein coding)|suppression of tumorigenicity 7 1.458 0 1 +93659 CGB5 chorionic gonadotropin beta subunit 5 19 protein-coding CGB|HCG|hCGB chorionic gonadotropin, beta polypeptide 5|chorionic gonadotropin beta 5 subunit|chorionic gonadotropin beta subunit 3 0.0004106 0.988 1 1 +93661 CAPZA3 capping actin protein of muscle Z-line alpha subunit 3 12 protein-coding CAPPA3|Gsg3|HEL-S-86 F-actin-capping protein subunit alpha-3|CP-alpha-3|CapZ alpha-3|F-actin capping protein alpha-3 subunit|capping protein (actin filament) muscle Z-line, alpha 3|epididymis secretory protein Li 86|germ cell-specific protein 3|testis tissue sperm-binding protein Li 73n 36 0.004927 0.4064 1 1 +93663 ARHGAP18 Rho GTPase activating protein 18 6 protein-coding MacGAP|SENEX|bA307O14.2 rho GTPase-activating protein 18|rho-type GTPase-activating protein 18 50 0.006844 9.097 1 1 +93664 CADPS2 calcium dependent secretion activator 2 7 protein-coding CAPS2 calcium-dependent secretion activator 2|CAPS-2|Ca++-dependent secretion activator 2|Ca2+ dependent secretion activator 2|Ca2+-dependent activator protein for secretion 2|calcium-dependent activator protein for secretion 2 104 0.01423 8.886 1 1 +93668 HPYR1 Helicobacter pylori responsive 1 (non-protein coding) 8 ncRNA HPRG1|LINC00027|NCRNA00027 long intergenic non-protein coding RNA 27 0.1917 0 1 +93953 ACRC acidic repeat containing X protein-coding NAAR1 acidic repeat-containing protein|putative nuclear protein 66 0.009034 4.321 1 1 +93973 ACTR8 ARP8 actin-related protein 8 homolog 3 protein-coding ARP8|INO80N|hArp8 actin-related protein 8|INO80 complex subunit N 50 0.006844 8.723 1 1 +93974 ATPIF1 ATPase inhibitory factor 1 1 protein-coding ATPI|ATPIP|IP ATPase inhibitor, mitochondrial|ATP synthase inhibitor protein|ATPase inhibitor protein|IF(1)|IF1|inhibitor of F(1)F(o)-ATPase 8 0.001095 10.8 1 1 +93978 CLEC6A C-type lectin domain family 6 member A 12 protein-coding CLEC4N|CLECSF10|dectin-2 C-type lectin domain family 6 member A|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 10|C-type lectin superfamily member 10|DC-associated C-type lectin 2|dectin 2|dendritic cell-associated C-type lectin 2 23 0.003148 0.9438 1 1 +93979 CPA5 carboxypeptidase A5 7 protein-coding - carboxypeptidase A5|testicular tissue protein Li 32 43 0.005886 1.066 1 1 +93986 FOXP2 forkhead box P2 7 protein-coding CAGH44|SPCH1|TNRC10 forkhead box protein P2|CAG repeat protein 44|forkhead/winged-helix transcription factor|trinucleotide repeat containing 10|trinucleotide repeat-containing gene 10 protein 90 0.01232 3.899 1 1 +94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S 17 protein-coding - GPI transamidase component PIG-S|GPI transamidase subunit|phosphatidylinositol glycan, class S|phosphatidylinositol-glycan biosynthesis class S protein 39 0.005338 10.29 1 1 +94009 SERHL serine hydrolase-like (pseudogene) 22 pseudo BK126B4.1|BK126B4.2|HS126B42|dJ222E13.1 kraken-like 14 0.001916 6.677 1 1 +94015 TTYH2 tweety family member 2 17 protein-coding C17orf29 protein tweety homolog 2|hTTY2|tweety homolog 2 45 0.006159 7.592 1 1 +94023 1.176 0 1 +94025 MUC16 mucin 16, cell surface associated 19 protein-coding CA125 mucin-16|CA125 ovarian cancer antigen|ovarian cancer-related tumor marker CA125|ovarian carcinoma antigen CA125 1151 0.1575 4.181 1 1 +94026 POM121L2 POM121 transmembrane nucleoporin like 2 6 protein-coding POM121-L|POM121L POM121-like protein 2|OM121 membrane glycoprotein (rat homolog)-like 2|POM121 membrane glycoprotein (rat homolog)-like 2|POM121 membrane glycoprotein-like 2 26 0.003559 0.5743 1 1 +94027 CGB7 chorionic gonadotropin beta subunit 7 19 protein-coding CG-beta-a|CGB6 choriogonadotropin subunit beta 7|chorionic gonadotropin beta 7 subunit|chorionic gonadotropin, beta polypeptide 7 8 0.001095 2.227 1 1 +94030 LRRC4B leucine rich repeat containing 4B 19 protein-coding HSM|LRIG4 leucine-rich repeat-containing protein 4B|NGL-3|leucine-rich repeats and immunoglobulin-like domains 4|netrin-G3 ligand 81 0.01109 5.417 1 1 +94031 HTRA3 HtrA serine peptidase 3 4 protein-coding Prsp|Tasp serine protease HTRA3|high-temperature requirement factor A3|pregnancy-related serine protease|probable serine protease HTRA3 30 0.004106 8.504 1 1 +94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 3 protein-coding CAM-KIIN|CAMKIIN calcium/calmodulin-dependent protein kinase II inhibitor 2|CaM-KII inhibitory protein 5 0.0006844 5.217 1 1 +94033 FTMT ferritin mitochondrial 5 protein-coding MTF ferritin, mitochondrial|ferritin H subunit|mitochondrial ferritin 57 0.007802 0.1029 1 1 +94039 ZNF101 zinc finger protein 101 19 protein-coding HZF12 zinc finger protein 101|zinc finger protein 101 (Y2)|zinc finger protein 12|zinc finger protein HZF12 27 0.003696 6.64 1 1 +94056 SYAP1 synapse associated protein 1 X protein-coding PRO3113 synapse-associated protein 1|SAP47 homolog|synapse associated protein 1, SAP47 homolog 13 0.001779 10.12 1 1 +94059 LENG9 leukocyte receptor cluster member 9 19 protein-coding - leukocyte receptor cluster member 9|leukocyte receptor cluster (LRC) member 9 38 0.005201 7.117 1 1 +94081 SFXN1 sideroflexin 1 5 protein-coding TCC sideroflexin-1|tricarboxylate carrier protein 14 0.001916 9.767 1 1 +94086 HSPB9 heat shock protein family B (small) member 9 17 protein-coding CT51 heat shock protein beta-9|cancer/testis antigen 51|heat shock protein, alpha-crystallin-related, B9|small heat shock protein B9 9 0.001232 2.066 1 1 +94097 SFXN5 sideroflexin 5 2 protein-coding BBG-TCC sideroflexin-5 21 0.002874 8.843 1 1 +94101 ORMDL1 ORMDL sphingolipid biosynthesis regulator 1 2 protein-coding - ORM1-like protein 1|adoplin-1 11 0.001506 9.49 1 1 +94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 17 protein-coding - ORM1-like protein 3 10 0.001369 10.92 1 1 +94104 PAXBP1 PAX3 and PAX7 binding protein 1 21 protein-coding BM020|C21orf66|FSAP105|GCFC|GCFC1 PAX3- and PAX7-binding protein 1|GC-rich sequence DNA-binding factor 1|GC-rich sequence DNA-binding factor candidate|functional spliceosome-associated protein 105 57 0.007802 9.155 1 1 +94107 TMEM203 transmembrane protein 203 9 protein-coding HBEBP1 transmembrane protein 203|HBeAg-binding protein 1 11 0.001506 9.785 1 1 +94115 CGB8 chorionic gonadotropin beta subunit 8 19 protein-coding - chorionic gonadotropin, beta polypeptide 8|chorionic gonadotropin beta 8 subunit 6 0.0008212 0.6586 1 1 +94120 SYTL3 synaptotagmin like 3 6 protein-coding SLP3 synaptotagmin-like protein 3|exophilin-6 41 0.005612 6.824 1 1 +94121 SYTL4 synaptotagmin like 4 X protein-coding SLP4 synaptotagmin-like protein 4|exophilin-2|granuphilin-a 55 0.007528 8.101 1 1 +94122 SYTL5 synaptotagmin like 5 X protein-coding slp5 synaptotagmin-like protein 5|exophilin 9 55 0.007528 5.024 1 1 +94134 ARHGAP12 Rho GTPase activating protein 12 10 protein-coding - rho GTPase-activating protein 12|rho-type GTPase-activating protein 12 57 0.007802 9.527 1 1 +94137 RP1L1 retinitis pigmentosa 1-like 1 8 protein-coding DCDC4B retinitis pigmentosa 1-like 1 protein 286 0.03915 2.54 1 1 +94158 CDRT15P1 CMT1A duplicated region transcript 15 pseudogene 1 17 pseudo CDRT15P - 1 0.0001369 2.467 1 1 +94160 ABCC12 ATP binding cassette subfamily C member 12 16 protein-coding MRP9 multidrug resistance-associated protein 9|ATP-binding cassette sub-family C member 12|ATP-binding cassette transporter sub-family C member 12|ATP-binding cassette, sub-family C (CFTR/MRP), member 12 122 0.0167 0.9193 1 1 +94161 SNORD46 small nucleolar RNA, C/D box 46 1 snoRNA RNU40|RNU46|U40|U46 RNA, U40 small nuclear|RNA, U40 small nucleolar|RNA, U46 small nuclear|U40 small nucleolar RNA|U40 snoRNA 1 0.0001369 0.000359 1 1 +94162 SNORD38A small nucleolar RNA, C/D box 38A 1 snoRNA RNU38A|U38A RNA, U38A small nucleolar|U38A small nucleolar RNA|U38A snoRNA 0 0 1 +94163 SNORD38B small nucleolar RNA, C/D box 38B 1 snoRNA RNU38B|U38B RNA, U38B small nucleolar|U38B small nucleolar RNA|U38B snoRNA 0 0 1 +94233 OPN4 opsin 4 10 protein-coding MOP melanopsin 42 0.005749 0.9476 1 1 +94234 FOXQ1 forkhead box Q1 6 protein-coding HFH1 forkhead box protein Q1|HFH-1|HNF-3/forkhead-like protein 1|hepatocyte nuclear factor 3 forkhead homolog 1|winged helix/forkhead transcription factor 26 0.003559 6.761 1 1 +94235 GNG8 G protein subunit gamma 8 19 protein-coding - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-8|gamma-9|guanine nucleotide binding protein (G protein), gamma 8 3 0.0004106 0.4337 1 1 +94239 H2AFV H2A histone family member V 7 protein-coding H2A.Z-2|H2AV histone H2A.V|H2A.F/Z|histone H2A.F/Z|purine-rich binding element protein B 14 0.001916 11.78 1 1 +94240 EPSTI1 epithelial stromal interaction 1 13 protein-coding BRESI1 epithelial-stromal interaction protein 1|epithelial stromal interaction 1 (breast) 36 0.004927 7.694 1 1 +94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 8 protein-coding SIP|TP53DINP1|TP53INP1A|TP53INP1B|Teap|p53DINP1 tumor protein p53-inducible nuclear protein 1|p53-dependent damage-inducible nuclear protein 1|p53-inducible p53DINP1|stress-induced protein 20 0.002737 9.996 1 1 +94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A 19 protein-coding CPI-17|CPI17|PPP1INL protein phosphatase 1 regulatory subunit 14A|17 kDa PKC-potentiated inhibitory protein of PP1|17-KDa protein|PKC-potentiated inhibitory protein of PP1|protein kinase C-potentiated inhibitor protein of 17 kDa 10 0.001369 5.967 1 1 +95681 CEP41 centrosomal protein 41 7 protein-coding JBTS15|TSGA14 centrosomal protein of 41 kDa|centrosomal protein 41 kDa|centrosomal protein 41kDa|testis specific protein A14|testis specific, 14|testis-specific gene A14 protein 37 0.005064 8.047 1 1 +96459 FNIP1 folliculin interacting protein 1 5 protein-coding - folliculin-interacting protein 1 69 0.009444 9.25 1 1 +96597 TBC1D27 TBC1 domain family member 27 17 protein-coding - TBC1 domain family member 27 7 0.0009581 1 0 +96610 BMS1P20 BMS1, ribosome biogenesis factor pseudogene 20 22 pseudo IGL|IGLV|IGLV1 BMS1 homolog, ribosome assembly protein pseudogene|BMS1 pseudogene 20|anti-HIV-1 V3 immunoglobulin light chain|immunoglobulin heavy chain V region|immunoglobulin lambda-1 variable region|immunoglobulin lamda chain|immunoglobulin light chain variable region 48 0.00657 11.97 1 1 +96626 LIMS3 LIM zinc finger domain containing 3 2 protein-coding PINCH-3 LIM and senescent cell antigen-like-containing domain protein 3|LIM and senescent cell antigen-like domains 3|LIM-type zinc finger domains 3|particularly interesting new Cys-His protein 3|pinch 2 2.519 0 1 +96764 TGS1 trimethylguanosine synthase 1 8 protein-coding NCOA6IP|PIMT|PIPMT trimethylguanosine synthase|CLL-associated antigen KW-2|PRIP-interacting protein with methyltransferase motif|cap-specific guanine-N2 methyltransferase|hepatocellular carcinoma-associated antigen 137|nuclear receptor coactivator 6-interacting protein 50 0.006844 9.07 1 1 +103910 MYL12B myosin light chain 12B 18 protein-coding MLC-B|MRLC2 myosin regulatory light chain 12B|MLC-2|MLC-2A|MLC20|SHUJUN-1|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|myosin, light chain 12B, regulatory 13 0.001779 12.7 1 1 +112398 EGLN2 egl-9 family hypoxia inducible factor 2 19 protein-coding EIT6|HIF-PH1|HIFPH1|HPH-1|HPH-3|PHD1 egl nine homolog 2|HIF-prolyl hydroxylase 1|estrogen-induced tag 6|hypoxia-inducible factor prolyl hydroxylase 1|prolyl hydroxylase domain-containing protein 1 34 0.004654 10.59 1 1 +112399 EGLN3 egl-9 family hypoxia inducible factor 3 14 protein-coding HIFP4H3|HIFPH3|PHD3 egl nine homolog 3|HIF-PH3|HIF-prolyl hydroxylase 3|HPH-1|HPH-3|egl nine-like protein 3 isoform|hypoxia-inducible factor prolyl hydroxylase 3|prolyl hydroxylase domain-containing protein 3 12 0.001642 8.821 1 1 +112401 BIRC8 baculoviral IAP repeat containing 8 19 protein-coding ILP-2|ILP2|hILP2 baculoviral IAP repeat-containing protein 8|IAP-like protein 2|inhibitor of apoptosis-like protein 2|testis-specific inhibitor of apoptosis 44 0.006022 0.04857 1 1 +112464 PRKCDBP protein kinase C delta binding protein 11 protein-coding CAVIN3|HSRBC|SRBC|cavin-3 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 15 0.002053 7.927 1 1 +112476 PRRT2 proline rich transmembrane protein 2 16 protein-coding BFIC2|BFIS2|DSPB3|DYT10|EKD1|FICCA|ICCA|IFITMD1|PKC proline-rich transmembrane protein 2|dispanin subfamily B member 3|dystonia 10|infantile convulsions and paroxysmal choreoathetosis|interferon induced transmembrane protein domain containing 1 35 0.004791 6.029 1 1 +112479 ERI2 ERI1 exoribonuclease family member 2 16 protein-coding EXOD1|ZGRF5 ERI1 exoribonuclease 2|enhanced RNAi three prime mRNA exonuclease homolog 2|exonuclease domain containing 1|exonuclease domain-containing protein 1|exoribonuclease 2|zinc finger, GRF-type containing 5 22 0.003011 8.277 1 1 +112483 SAT2 spermidine/spermine N1-acetyltransferase family member 2 17 protein-coding SSAT2 diamine acetyltransferase 2|diamine N-acetyltransferase 2|polyamine N-acetyltransferase 2|spermidine/spermine N(1)-acetyltransferase 2|thialysine N-epsilon-acetyltransferase 12 0.001642 9.499 1 1 +112487 DTD2 D-tyrosyl-tRNA deacylase 2 (putative) 14 protein-coding C14orf126 probable D-tyrosyl-tRNA(Tyr) deacylase 2 9 0.001232 8.182 1 1 +112495 GTF3C6 general transcription factor IIIC subunit 6 6 protein-coding C6orf51|TFIIIC35|bA397G5.3 general transcription factor 3C polypeptide 6|TFIIIC 35 kDa subunit|general transcription factor IIIC, polypeptide 6, alpha 35kDa|transcription factor IIIC 35 kDa subunit|transcription factor IIIC 35kDa|transcription factor IIIC subunit 6 12 0.001642 9.733 1 1 +112574 SNX18 sorting nexin 18 5 protein-coding SH3PX2|SH3PXD3B|SNAG1 sorting nexin-18|SH3 and PX domain-containing protein 3B|sorting nexin associated golgi protein 1|sorting nexin-associated Golgi protein 1 45 0.006159 9.521 1 1 +112597 CYTOR cytoskeleton regulator RNA 2 ncRNA C2orf59|LINC00152|NCRNA00152 long intergenic non-protein coding RNA 152 22 0.003011 7.386 1 1 +112609 MRAP2 melanocortin 2 receptor accessory protein 2 6 protein-coding BMIQ18|C6orf117|bA51G5.2 melanocortin-2 receptor accessory protein 2|MC2R accessory protein 2 24 0.003285 4.926 1 1 +112611 RWDD2A RWD domain containing 2A 6 protein-coding RWDD2|dJ747H23.2 RWD domain-containing protein 2A|RWD domain containing 2 17 0.002327 6.839 1 1 +112616 CMTM7 CKLF like MARVEL transmembrane domain containing 7 3 protein-coding CKLFSF7 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 13 0.001779 8.41 1 1 +112703 FAM71E1 family with sequence similarity 71 member E1 19 protein-coding - protein FAM71E1 12 0.001642 5.586 1 1 +112714 TUBA3E tubulin alpha 3e 2 protein-coding - tubulin alpha-3E chain 42 0.005749 1.613 1 1 +112724 RDH13 retinol dehydrogenase 13 19 protein-coding SDR7C3 retinol dehydrogenase 13|retinol dehydrogenase 13 (all-trans and 9-cis)|retinol dehydrogenase 13 (all-trans/9-cis)|short chain dehydrogenase/reductase family 7C member 3 16 0.00219 7.901 1 1 +112744 IL17F interleukin 17F 6 protein-coding CANDF6|IL-17F|ML-1|ML1 interleukin-17F|cytokine ML-1 18 0.002464 0.2714 1 1 +112752 IFT43 intraflagellar transport 43 14 protein-coding C14orf179|CED3 intraflagellar transport protein 43 homolog|IFT complex A subunit|intraflagellar transport 43 homolog 21 0.002874 8.214 1 1 +112755 STX1B syntaxin 1B 16 protein-coding GEFSP9|STX1B1|STX1B2 syntaxin-1B|syntaxin-1B1|syntaxin-1B2 24 0.003285 5.202 1 1 +112770 GLMP glycosylated lysosomal membrane protein 1 protein-coding C1orf85|NCU-G1 glycosylated lysosomal membrane protein|kidney lysosomal membrane protein|kidney predominant protein NCU-G1|lysosomal protein NCU-G1 28 0.003832 10.32 1 1 +112802 KRT71 keratin 71 12 protein-coding HYPT13|K6IRS1|KRT6IRS|KRT6IRS1 keratin, type II cytoskeletal 71|CK-71|K71|cytokeratin-71|hK6irs|hK6irs1|keratin 6 irs|keratin 71, type II|type II inner root sheath-specific keratin-K6irs1|type-II keratin Kb34 47 0.006433 0.4516 1 1 +112812 FDX1L ferredoxin 1 like 19 protein-coding FDX2 adrenodoxin-like protein, mitochondrial 14 0.001916 8.145 1 1 +112817 HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 10 protein-coding C10orf65|DHDPS2|DHDPSL|HP3|NPL2 4-hydroxy-2-oxoglutarate aldolase, mitochondrial|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 16 0.00219 4.625 1 1 +112840 WDR89 WD repeat domain 89 14 protein-coding C14orf150|MSTP050 WD repeat-containing protein 89 16 0.00219 8.25 1 1 +112849 L3HYPDH trans-L-3-hydroxyproline dehydratase 14 protein-coding C14orf149 trans-3-hydroxy-L-proline dehydratase|L-3-hydroxyproline dehydratase (trans-)|trans-3-hydroxy-l-proline dehydratase|trans-3-hydroxyl-L-proline dehydratase 33 0.004517 6.587 1 1 +112858 TP53RK TP53 regulating kinase 20 protein-coding BUD32|C20orf64|Nori-2|Nori-2p|PRPK|dJ101A2 TP53-regulating kinase|EKC/KEOPS complex subunit TP53RK|atypical serine/threonine protein kinase TP53RK|p53-related protein kinase 19 0.002601 8.949 1 1 +112869 SGF29 SAGA complex associated factor 29 16 protein-coding CCDC101|STAF36|TDRD29 SAGA-associated factor 29|SAGA-associated factor 29 homolog|coiled-coil domain containing 101|coiled-coil domain-containing protein 101 18 0.002464 8.341 1 1 +112885 PHF21B PHD finger protein 21B 22 protein-coding BHC80L|PHF4 PHD finger protein 21B|PHD finger protein 4 45 0.006159 2.939 1 1 +112936 VPS26B VPS26, retromer complex component B 11 protein-coding Pep8b vacuolar protein sorting-associated protein 26B|vesicle protein sorting 26B 18 0.002464 10.44 1 1 +112937 GLB1L3 galactosidase beta 1 like 3 11 protein-coding - beta-galactosidase-1-like protein 3 55 0.007528 2.264 1 1 +112939 NACC1 nucleus accumbens associated 1 19 protein-coding BEND8|BTBD14B|BTBD30|NAC-1|NAC1 nucleus accumbens-associated protein 1|BEN domain containing 8|BTB/POZ domain-containing protein 14B|nucleus accumbens associated 1, BEN and BTB (POZ) domain containing|transcriptional repressor NAC1 31 0.004243 10.91 1 1 +112942 CFAP36 cilia and flagella associated protein 36 2 protein-coding BARTL1|CCDC104 cilia- and flagella-associated protein 36|coiled-coil domain containing 104|coiled-coil domain-containing protein 104 27 0.003696 9.464 1 1 +112950 MED8 mediator complex subunit 8 1 protein-coding ARC32 mediator of RNA polymerase II transcription subunit 8|activator-recruited cofactor 32 kDa component|mediator of RNA polymerase II transcription subunit MED8 12 0.001642 9.461 1 1 +112970 KTI12 KTI12 chromatin associated homolog 1 protein-coding SBBI81|TOT4 protein KTI12 homolog|KTI12 homolog, chromatin associated 28 0.003832 7.73 1 1 +113000 RPUSD1 RNA pseudouridylate synthase domain containing 1 16 protein-coding C16orf40|RLUCL RNA pseudouridylate synthase domain-containing protein 1|ribosomal large subunit pseudouridine synthase C-like protein 16 0.00219 9.066 1 1 +113026 PLCD3 phospholipase C delta 3 17 protein-coding PLC-delta-3 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-3|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase delta-3|PLC delta3|phosphoinositide phospholipase C-delta-3 31 0.004243 9.596 1 1 +113091 PTH2 parathyroid hormone 2 19 protein-coding TIP39 tuberoinfundibular peptide of 39 residues|tuberoinfundibular 39 residue protein 40 0.005475 0.04067 1 1 +113115 MTFR2 mitochondrial fission regulator 2 6 protein-coding DUFD1|FAM54A mitochondrial fission regulator 2|DUF729 domain-containing protein 1|family with sequence similarity 54, member A 17 0.002327 5.562 1 1 +113130 CDCA5 cell division cycle associated 5 11 protein-coding SORORIN sororin|cell division cycle-associated protein 5|p35 20 0.002737 8.416 1 1 +113146 AHNAK2 AHNAK nucleoprotein 2 14 protein-coding C14orf78 protein AHNAK2 408 0.05584 9.757 1 1 +113157 RPLP0P2 ribosomal protein lateral stalk subunit P0 pseudogene 2 11 pseudo RPLP0L2|RPLP0_3_1146 ribosomal protein P0 pseudogene 2|ribosomal protein, large, P0 pseudogene 2 47 0.006433 5.228 1 1 +113174 SAAL1 serum amyloid A like 1 11 protein-coding SPACIA1 protein SAAL1|synoviocyte proliferation-associated in collagen-induced arthritis 1 36 0.004927 7.716 1 1 +113177 IZUMO4 IZUMO family member 4 19 protein-coding C19orf36|IMAGE:4215339 izumo sperm-egg fusion protein 4|putative SAMP14 binding protein variant 1|putative SAMP14 binding protein variant 2|sperm 22 kDa protein c113 10 0.001369 4.808 1 1 +113178 SCAMP4 secretory carrier membrane protein 4 19 protein-coding SCAMP-4 secretory carrier-associated membrane protein 4 8 0.001095 10.77 1 1 +113179 ADAT3 adenosine deaminase, tRNA specific 3 19 protein-coding FWP005|MRT36|MST121|MSTP121|S863-5|TAD3 probable inactive tRNA-specific adenosine deaminase-like protein 3|adenosine deaminase, tRNA-specific 3, TAD3 homolog|tRNA-specific adenosine-34 deaminase subunit ADAT3 14 0.001916 5.861 1 1 +113189 CHST14 carbohydrate sulfotransferase 14 15 protein-coding ATCS|D4ST1|EDSMC1|HNK1ST carbohydrate sulfotransferase 14|carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 14|carbohydrate (dermatan 4) sulfotransferase 14|dermatan 4 sulfotransferase 1 15 0.002053 9.111 1 1 +113201 CASC4 cancer susceptibility candidate 4 15 protein-coding H63 protein CASC4|cancer susceptibility candidate gene 4 protein|gene associated with HER-2/neu overexpression 31 0.004243 11.22 1 1 +113220 KIF12 kinesin family member 12 9 protein-coding - kinesin-like protein KIF12 25 0.003422 5.886 1 1 +113230 MISP3 MISP family member 3 19 protein-coding - uncharacterized protein LOC113230 6.994 0 1 +113235 SLC46A1 solute carrier family 46 member 1 17 protein-coding G21|HCP1|PCFT proton-coupled folate transporter|heme carrier protein 1|solute carrier family 46 (folate transporter), member 1 29 0.003969 9.271 1 1 +113246 C12orf57 chromosome 12 open reading frame 57 12 protein-coding C10|GRCC10 protein C10|likely ortholog of mouse gene rich cluster, C10 12 0.001642 10.57 1 1 +113251 LARP4 La ribonucleoprotein domain family member 4 12 protein-coding PP13296 la-related protein 4|c-Mpl binding protein 62 0.008486 10.14 1 1 +113263 GLCCI1 glucocorticoid induced 1 7 protein-coding FAM117C|GCTR|GIG18|TSSN1 glucocorticoid-induced transcript 1 protein|glucocorticoid induced transcript 1 36 0.004927 8.441 1 1 +113277 TMEM106A transmembrane protein 106A 17 protein-coding - transmembrane protein 106A 14 0.001916 6.643 1 1 +113278 SLC52A3 solute carrier family 52 member 3 20 protein-coding BVVLS|BVVLS1|C20orf54|RFT2|RFVT3|bA371L19.1|hRFT2 solute carrier family 52, riboflavin transporter, member 3|riboflavin transporter 2|solute carrier family 52 (riboflavin transporter), member 3 27 0.003696 7.025 1 1 +113402 SFT2D1 SFT2 domain containing 1 6 protein-coding C6orf83|pRGR1 vesicle transport protein SFT2A|SFT2 domain-containing protein 1 7 0.0009581 8.757 1 1 +113419 TEX261 testis expressed 261 2 protein-coding TEG-261 protein TEX261|testis expressed sequence 261 2 0.0002737 11.11 1 1 +113444 SMIM12 small integral membrane protein 12 1 protein-coding C1orf212 small integral membrane protein 12|UPF0767 protein C1orf212|alternative protein C1orf212 10 0.001369 9.391 1 1 +113451 AZIN2 antizyme inhibitor 2 1 protein-coding ADC|AZI2|AZIB1|ODC-p|ODC1L|ODCp antizyme inhibitor 2|ODC antizyme inhibitor-2|ODC-like protein|ODC-paralogue|arginine decarboxylase|ornithine decarboxylase like|ornithine decarboxylase-like protein|ornithine decarboxylase-paralog 34 0.004654 6.898 1 1 +113452 TMEM54 transmembrane protein 54 1 protein-coding BCLP|CAC-1|CAC1 transmembrane protein 54|beta-casein-like protein|protein CAC-1 12 0.001642 9.913 1 1 +113457 TUBA3D tubulin alpha 3d 2 protein-coding H2-ALPHA tubulin alpha-3C/D chain|alpha-tubulin isotype H2-alpha|tubulin alpha-2 chain 36 0.004927 2.286 1 1 +113510 HELQ helicase, POLQ-like 4 protein-coding HEL308 helicase POLQ-like|DNA helicase HEL308|POLQ-like helicase|mus308-like helicase 78 0.01068 7.698 1 1 +113540 CMTM1 CKLF like MARVEL transmembrane domain containing 1 16 protein-coding CKLFH|CKLFH1|CKLFSF1 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 16 0.00219 6.446 1 1 +113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 4 protein-coding P450TEC|SPG49|SPG56 cytochrome P450 2U1|cytochrome P450, family 2, subfamily U, polypeptide 1|spastic paraplegia 49 18 0.002464 7.846 1 1 +113622 ADPRHL1 ADP-ribosylhydrolase like 1 13 protein-coding ARH2 [Protein ADP-ribosylarginine] hydrolase-like protein 1|ADP-ribosyl-hydrolase|ADP-ribosylarginine hydrolase like 1|ADP-ribosylhydrolase 2 17 0.002327 5.669 1 1 +113655 MFSD3 major facilitator superfamily domain containing 3 8 protein-coding - major facilitator superfamily domain-containing protein 3 20 0.002737 8.463 1 1 +113675 SDSL serine dehydratase like 12 protein-coding SDH 2|SDS-RS1|TDH|cSDH serine dehydratase-like|L-serine deaminase|L-serine dehydratase/L-threonine deaminase|L-threonine dehydratase|serine dehydratase 2|serine dehydratase related sequence 1 14 0.001916 8.193 1 1 +113691 TUBA3FP tubulin alpha 3f pseudogene 22 pseudo - tubulin, alpha pseudogene 9 0.001232 2.68 1 1 +113730 KLHDC7B kelch domain containing 7B 22 protein-coding - kelch domain-containing protein 7B 41 0.005612 6.022 1 1 +113746 ODF3 outer dense fiber of sperm tails 3 11 protein-coding CT135|SHIPPO1|TISP50 outer dense fiber protein 3|cancer/testis antigen 135|sperm tail protein SHIPPO1|transcript induced in spermiogenesis protein 50 12 0.001642 0.2627 1 1 +113763 ZBED6CL ZBED6 C-terminal like 7 protein-coding C7orf29 ZBED6 C-terminal-like protein 11 0.001506 7.336 1 1 +113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 22 protein-coding HGFL|hHGFL(S) phosphoinositide-3-kinase-interacting protein 1|kringle domain-containing protein HGFL 16 0.00219 9.797 1 1 +113802 HENMT1 HEN1 methyltransferase homolog 1 1 protein-coding C1orf59|HEN1 small RNA 2'-O-methyltransferase|hua enhancer 1 homolog 1 29 0.003969 7.207 1 1 +113828 FAM83F family with sequence similarity 83 member F 22 protein-coding - protein FAM83F 37 0.005064 5.631 1 1 +113829 SLC35A4 solute carrier family 35 member A4 5 protein-coding - probable UDP-sugar transporter protein SLC35A4|solute carrier family 35 (UDP-galactose transporter), member A4|tumor rejection antigen 18 0.002464 11.05 1 1 +113835 ZNF257 zinc finger protein 257 19 protein-coding BMZF-4|BMZF4 zinc finger protein 257|bone marrow zinc finger 4 102 0.01396 4.12 1 1 +113878 DTX2 deltex E3 ubiquitin ligase 2 7 protein-coding RNF58 probable E3 ubiquitin-protein ligase DTX2|deltex 2, E3 ubiquitin ligase|deltex homolog 2|deltex2|hDTX2|protein deltex-2|ring finger protein 58|zinc ion binding protein 41 0.005612 9.18 1 1 +114026 ZIM3 zinc finger imprinted 3 19 protein-coding ZNF657 zinc finger imprinted 3|zinc finger protein 657 75 0.01027 0.07609 1 1 +114034 TOE1 target of EGR1, member 1 (nuclear) 1 protein-coding hCaf1z target of EGR1 protein 1 25 0.003422 8.06 1 1 +114036 LINC00310 long intergenic non-protein coding RNA 310 21 ncRNA C21orf82|NCRNA00310 - 2.674 0 1 +114038 LINC00313 long intergenic non-protein coding RNA 313 21 ncRNA C21orf84|CH507-42P11.5|NCRNA00313 - 2 0.0002737 0.771 1 1 +114041 B3GALT5-AS1 B3GALT5 antisense RNA 1 21 ncRNA C21orf88 - 9 0.001232 2.408 1 1 +114042 LINC00334 long intergenic non-protein coding RNA 334 21 ncRNA C21orf89|NCRNA00334 - 1 0.0001369 1 0 +114043 TSPEAR-AS2 TSPEAR antisense RNA 2 21 ncRNA C21orf90 - 3 0.0004106 1.236 1 1 +114044 MCM3AP-AS1 MCM3AP antisense RNA 1 21 ncRNA C21orf85|MCM3AP-AS|MCM3APAS|MCM3APASB|NCRNA00031 MCM3 minichromosome maintenance deficient 3 associated protein antisense|MCM3AP antisense RNA 1 (non-protein coding)|minichromosome maintenance complex component 3 associated protein antisense 6 0.0008212 4.555 1 1 +114049 WBSCR22 Williams-Beuren syndrome chromosome region 22 7 protein-coding HASJ4442|HUSSY-3|MERM1|PP3381|WBMT probable 18S rRNA (guanine-N(7))-methyltransferase|Williams-Beuren candidate region putative methyltransferase|Williams-Beuren syndrome chromosomal region 22 protein|bud site selection protein 23 homolog|metastasis-related methyltransferase 1|ribosome biogenesis methyltransferase WBSCR22 28 0.003832 10.56 1 1 +114088 TRIM9 tripartite motif containing 9 14 protein-coding RNF91|SPRING E3 ubiquitin-protein ligase TRIM9|RING finger protein 91|homolog of rat RING finger Spring|tripartite motif-containing protein 9 74 0.01013 5.603 1 1 +114112 TXNRD3 thioredoxin reductase 3 3 protein-coding TGR|TR2|TRXR3 thioredoxin reductase 3|thioredoxin and glutathione reductase|thioredoxin glutathione reductase|thioredoxin reductase 2|thioredoxin reductase TR2 2 0.0002737 1 0 +114130 2.393 0 1 +114131 UCN3 urocortin 3 10 protein-coding SCP|SPC|UCNIII urocortin-3|prepro-urocortin 3|stresscopin|ucn III|urocortin III 11 0.001506 0.7727 1 1 +114132 SIGLEC11 sialic acid binding Ig like lectin 11 19 protein-coding - sialic acid-binding Ig-like lectin 11|siglec-11 54 0.007391 3.249 1 1 +114134 SLC2A13 solute carrier family 2 member 13 12 protein-coding HMIT proton myo-inositol cotransporter|H(+)-myo-inositol symporter|h(+)-myo-inositol cotransporter|proton (H+) myo-inositol symporter|solute carrier family 2 (facilitated glucose transporter), member 13 44 0.006022 7.734 1 1 +114195 SIGLEC22P sialic acid binding Ig like lectin 22, pseudogene 19 pseudo SIGLECP6 CD33 molecule pseudogene|sialic acid binding Ig-like lectin, pseudogene 6 2 0.0002737 1 0 +114294 LACTB lactamase beta 15 protein-coding G24|MRPL56 serine beta-lactamase-like protein LACTB, mitochondrial|mitochondrial 39S ribosomal protein L56 30 0.004106 8.383 1 1 +114299 PALM2 paralemmin 2 9 protein-coding AKAP2 paralemmin-2|A kinase (PRKA) anchor protein 2 23 0.003148 5.113 1 1 +114327 EFHC1 EF-hand domain containing 1 6 protein-coding EJM1|dJ304B14.2 EF-hand domain-containing protein 1|EF-hand domain (C-terminal) containing 1|myoclonin-1 44 0.006022 8.042 1 1 +114335 CGB1 chorionic gonadotropin beta subunit 1 19 protein-coding - choriogonadotropin subunit beta variant 1|chorionic gonadotropin, beta polypeptide 1 8 0.001095 0.2757 1 1 +114336 CGB2 chorionic gonadotropin beta subunit 2 19 protein-coding - choriogonadotropin subunit beta variant 2|chorionic gonadotropin, beta polypeptide 2|product of CGB2 8 0.001095 0.6767 1 1 +114548 NLRP3 NLR family pyrin domain containing 3 1 protein-coding AGTAVPRL|AII|AVP|C1orf7|CIAS1|CLR1.1|FCAS|FCAS1|FCU|MWS|NALP3|PYPAF1 NACHT, LRR and PYD domains-containing protein 3|NACHT domain-, leucine-rich repeat-, and PYD-containing protein 3|NACHT, LRR and PYD containing protein 3|PYRIN-containing APAF1-like protein 1|caterpiller protein 1.1|cold autoinflammatory syndrome 1 protein|cold-induced autoinflammatory syndrome 1 protein|cryopyrin|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 3 163 0.02231 5.769 1 1 +114569 MAL2 mal, T-cell differentiation protein 2 (gene/pseudogene) 8 protein-coding - protein MAL2|MAL proteolipid protein 2|MAL2 proteolipid protein 24 0.003285 10.48 1 1 +114571 SLC22A9 solute carrier family 22 member 9 11 protein-coding HOAT4|OAT4|OAT7|UST3H|ust3 solute carrier family 22 member 9|organic anion transporter 4|organic anion transporter 7|solute carrier family 22 (organic anion transporter), member 9|solute carrier family 22 (organic anion/cation transporter), member 9 64 0.00876 0.8686 1 1 +114599 SNORD15B small nucleolar RNA, C/D box 15B 11 snoRNA RNU15B|U15B RNA, U15b small nucleolar|U15B small nucleolar RNA|U15B snRNA|U15B snoRNA 0.5489 0 1 +114609 TIRAP TIR domain containing adaptor protein 11 protein-coding BACTS1|Mal|MyD88-2|wyatt toll/interleukin-1 receptor domain-containing adapter protein|MyD88 adapter-like protein|Toll-like receptor adaptor protein|adapter protein wyatt|adaptor protein Wyatt|toll-interleukin 1 receptor (TIR) domain containing adaptor protein 10 0.001369 7.123 1 1 +114614 MIR155HG MIR155 host gene 21 ncRNA BIC|MIRHG2|NCRNA00172 B-cell receptor inducible|BIC transcript|microRNA host gene 2 (non-protein coding) 2 0.0002737 4.004 1 1 +114625 ERMAP erythroblast membrane associated protein (Scianna blood group) 1 protein-coding BTN5|PRO2801|RD|SC erythroid membrane-associated protein|Radin blood group (Rd)|Scianna blood group (Sc)|radin blood group antigen|scianna blood group antigen 25 0.003422 8.265 1 1 +114659 LRRC37B leucine rich repeat containing 37B 17 protein-coding LRRC37 leucine-rich repeat-containing protein 37B|C66 SLIT-like testicular protein 67 0.009171 6.973 1 1 +114757 CYGB cytoglobin 17 protein-coding HGB|STAP cytoglobin|histoglobin|stellate cell activation-associated protein 15 0.002053 8.258 1 1 +114769 CARD16 caspase recruitment domain family member 16 11 protein-coding COP|COP1|PSEUDO-ICE caspase recruitment domain-containing protein 16|CARD only domain-containing protein 1|CARD only protein|CARD-only protein 1|caspase recruitment domain-only protein 1|caspase-1 dominant-negative inhibitor pseudo-ICE|caspase-1 inhibitor COP|pseudo interleukin-1 beta converting enzyme|pseudo interleukin-1beta converting enzyme|pseudo-IL1B-converting enzyme 18 0.002464 6.671 1 1 +114770 PGLYRP2 peptidoglycan recognition protein 2 19 protein-coding HMFT0141|PGLYRPL|PGRP-L|PGRPL|TAGL-like|tagL|tagL-alpha|tagl-beta N-acetylmuramoyl-L-alanine amidase|peptidoglycan recognition protein L|peptidoglycan recognition protein long 53 0.007254 1.85 1 1 +114771 PGLYRP3 peptidoglycan recognition protein 3 1 protein-coding PGLYRPIalpha|PGRP-Ialpha|PGRPIA peptidoglycan recognition protein 3|peptidoglycan recognition protein I alpha|peptidoglycan recognition protein intermediate alpha 41 0.005612 1.357 1 1 +114780 PKD1L2 polycystin 1 like 2 (gene/pseudogene) 16 protein-coding PC1L2 polycystic kidney disease protein 1-like 2|PC1-like 2 protein|polycystic kidney disease 1-like 2|polycystin-1L2 218 0.02984 3.097 1 1 +114781 BTBD9 BTB domain containing 9 6 protein-coding dJ322I12.1 BTB/POZ domain-containing protein 9|BTB (POZ) domain containing 9 38 0.005201 9.027 1 1 +114783 LMTK3 lemur tyrosine kinase 3 19 protein-coding LMR3|PPP1R101|TYKLM3 serine/threonine-protein kinase LMTK3|protein phosphatase 1, regulatory subunit 101 76 0.0104 6.983 1 1 +114784 CSMD2 CUB and Sushi multiple domains 2 1 protein-coding dJ1007G16.1|dJ1007G16.2|dJ947L8.1 CUB and sushi domain-containing protein 2|CUB and Sushi (SCR repeat) domain|CUB and sushi multiple domains protein 2 340 0.04654 4.741 1 1 +114785 MBD6 methyl-CpG binding domain protein 6 12 protein-coding - methyl-CpG-binding domain protein 6|methyl-CpG-binding protein MBD6 89 0.01218 10.53 1 1 +114786 XKR4 XK related 4 8 protein-coding XRG4 XK-related protein 4|X Kell blood group precursor-related family, member 4|X-linked Kx blood group related 4|XK, Kell blood group complex subunit-related family, member 4 93 0.01273 1.519 1 1 +114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 5 protein-coding GRIN1 G protein-regulated inducer of neurite outgrowth 1 75 0.01027 7.468 1 1 +114788 CSMD3 CUB and Sushi multiple domains 3 8 protein-coding - CUB and sushi domain-containing protein 3|CUB and sushi multiple domains protein 3 768 0.1051 1.909 1 1 +114789 SLC25A25 solute carrier family 25 member 25 9 protein-coding MCSC|PCSCL|SCAMC-2 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 (mitochondrial carrier; phosphate carrier), member 25 33 0.004517 9.451 1 1 +114790 STK11IP serine/threonine kinase 11 interacting protein 2 protein-coding LIP1|LKB1IP|STK11IP1 serine/threonine-protein kinase 11-interacting protein|LKB1-interacting protein 1|STK11 interacting protein 63 0.008623 8.805 1 1 +114791 TUBGCP5 tubulin gamma complex associated protein 5 15 protein-coding GCP5 gamma-tubulin complex component 5|GCP-5|gamma-tubulin complex component GCP5 57 0.007802 8.474 1 1 +114792 KLHL32 kelch like family member 32 6 protein-coding BKLHD5|KIAA1900|UG0030H05|dJ21F7.1 kelch-like protein 32|BTB and kelch domain containing 5 53 0.007254 3.756 1 1 +114793 FMNL2 formin like 2 2 protein-coding FHOD2 formin-like protein 2|formin homology 2 domain containing 2|formin homology 2 domain-containing protein 2 55 0.007528 9.956 1 1 +114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 22 protein-coding LRRC62|PPP1R29 protein phosphatase 1 regulatory subunit 29|dJ63G5.3 (putative Leucine rich protein)|leucine-rich repeat and fibronectin type-III domain-containing protein 6|leucine-rich repeat-containing protein 62 71 0.009718 5.177 1 1 +114795 TMEM132B transmembrane protein 132B 12 protein-coding - transmembrane protein 132B 150 0.02053 3.999 1 1 +114796 PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) 7 ncRNA - - 7.031 0 1 +114798 SLITRK1 SLIT and NTRK like family member 1 13 protein-coding LRRC12|TTM SLIT and NTRK-like protein 1|leucine-rich repeat-containing protein 12|slit and trk like gene 1 135 0.01848 1.572 1 1 +114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 18 protein-coding A930014I12Rik|CTF|ECO1|EFO1|ESO1 N-acetyltransferase ESCO1|CTF7 homolog 1|ECO1 homolog 1|EFO1p|ESO1 homolog 1|N-acetyltransferase ESCO1 variant 2|establishment factor-like protein 1|establishment of cohesion 1 homolog 1|hEFO1 49 0.006707 8.861 1 1 +114800 CCDC85A coiled-coil domain containing 85A 2 protein-coding - coiled-coil domain-containing protein 85A 83 0.01136 5.168 1 1 +114801 TMEM200A transmembrane protein 200A 6 protein-coding KIAA1913|TTMA|TTMC transmembrane protein 200A|two transmembrane C 95 0.013 6.672 1 1 +114803 MYSM1 Myb like, SWIRM and MPN domains 1 1 protein-coding 2A-DUB|2ADUB histone H2A deubiquitinase MYSM1|myb-like, SWIRM and MPN domain-containing protein 1 44 0.006022 6.366 1 1 +114804 RNF157 ring finger protein 157 17 protein-coding - RING finger protein 157 42 0.005749 7.453 1 1 +114805 GALNT13 polypeptide N-acetylgalactosaminyltransferase 13 2 protein-coding GalNAc-T13 polypeptide N-acetylgalactosaminyltransferase 13|GalNAc transferase 13|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 13|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 13 (GalNAc-T13)|polypeptide GalNAc transferase 13|pp-GaNTase 13|protein-UDP acetylgalactosaminyltransferase 13 107 0.01465 4.135 1 1 +114814 GNRHR2 gonadotropin releasing hormone receptor 2 (pseudogene) 1 pseudo GnRH-II-R GnRH receptor II 5TM|Type II GnRH receptor|gonadotropin-releasing hormone (type 2) receptor 2, pseudogene 3 0.0004106 8.649 1 1 +114815 SORCS1 sortilin related VPS10 domain containing receptor 1 10 protein-coding hSorCS VPS10 domain-containing receptor SorCS1|VPS10 domain receptor protein SORCS 1 217 0.0297 3.813 1 1 +114817 CSPG4P5 chondroitin sulfate proteoglycan 4 pseudogene 5 15 pseudo - - 37 0.005064 1 0 +114818 KLHL29 kelch like family member 29 2 protein-coding KBTBD9 kelch-like protein 29|kelch repeat and BTB (POZ) domain containing 9|kelch repeat and BTB domain-containing protein 9|kelch-like 29 18 0.002464 7.101 1 1 +114819 CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 1 pseudo CROCCL2|dJ798A10.2 ciliary rootlet coiled-coil, rootletin-like 2 53 0.007254 5.729 1 1 +114821 ZBED9 zinc finger BED-type containing 9 6 protein-coding Buster4|SCAND3|ZFP38-L|ZNF305P2|ZNF452|dJ1186N24.3 SCAN domain-containing protein 3|SCAN domain containing 3|transposon-derived Buster4 transposase-like protein|zinc finger BED domain-containing protein 9|zinc finger protein 305 pseudogene 2|zinc finger protein 452 137 0.01875 4.871 1 1 +114822 RHPN1 rhophilin Rho GTPase binding protein 1 8 protein-coding ODF5|RHOPHILIN|RHPN rhophilin-1|GTP-Rho-binding protein 1|outer dense fiber of sperm tails 5 43 0.005886 8.399 1 1 +114823 LENG8 leukocyte receptor cluster member 8 19 protein-coding pp13842 leukocyte receptor cluster member 8|leukocyte receptor cluster (LRC) member 8 62 0.008486 11.2 1 1 +114824 PNMA5 paraneoplastic Ma antigen family member 5 X protein-coding - paraneoplastic antigen-like protein 5|tumor antigen BJ-HCC-25 44 0.006022 1.738 1 1 +114825 PWWP2A PWWP domain containing 2A 5 protein-coding MST101 PWWP domain-containing protein 2A|MSTP101 21 0.002874 8.56 1 1 +114826 SMYD4 SET and MYND domain containing 4 17 protein-coding ZMYND21 SET and MYND domain-containing protein 4 47 0.006433 8.103 1 1 +114827 FHAD1 forkhead associated phosphopeptide binding domain 1 1 protein-coding - forkhead-associated domain-containing protein 1|FHA domain-containing protein 1|forkhead-associated (FHA) phosphopeptide binding domain 1 41 0.005612 4.388 1 1 +114836 SLAMF6 SLAM family member 6 1 protein-coding CD352|KALI|KALIb|Ly108|NTB-A|NTBA|SF2000 SLAM family member 6|NK-T-B-antigen|NTBA receptor|activating NK receptor|natural killer-, T- and B-cell antigen 33 0.004517 5.47 1 1 +114876 OSBPL1A oxysterol binding protein like 1A 18 protein-coding ORP-1|ORP1|OSBPL1B oxysterol-binding protein-related protein 1|OSBP-related protein 1|oxysterol binding protein-like 1B|oxysterol-binding protein-related protein 1 variant 1|oxysterol-binding protein-related protein 1 variant 2 56 0.007665 9.518 1 1 +114879 OSBPL5 oxysterol binding protein like 5 11 protein-coding OBPH1|ORP5 oxysterol-binding protein-related protein 5|ORP-5|OSBP-related protein 5|oxysterol-binding protein homolog 1|oxysterol-binding protein homologue 1 46 0.006296 8.956 1 1 +114880 OSBPL6 oxysterol binding protein like 6 2 protein-coding ORP6 oxysterol-binding protein-related protein 6|ORP-6|OSBP-related protein 6 86 0.01177 5.87 1 1 +114881 OSBPL7 oxysterol binding protein like 7 17 protein-coding ORP7 oxysterol-binding protein-related protein 7|ORP-7|OSBP-related protein 7 51 0.006981 8.05 1 1 +114882 OSBPL8 oxysterol binding protein like 8 12 protein-coding MST120|MSTP120|ORP8|OSBP10 oxysterol-binding protein-related protein 8|OSBP-related protein 8 55 0.007528 10.28 1 1 +114883 OSBPL9 oxysterol binding protein like 9 1 protein-coding ORP-9|ORP9 oxysterol-binding protein-related protein 9|OSBP-related protein 9 45 0.006159 10.57 1 1 +114884 OSBPL10 oxysterol binding protein like 10 3 protein-coding ORP10|OSBP9 oxysterol-binding protein-related protein 10|ORP-10|OSBP-related protein 10 58 0.007939 8.434 1 1 +114885 OSBPL11 oxysterol binding protein like 11 3 protein-coding ORP-11|ORP11|OSBP12|TCCCIA00292 oxysterol-binding protein-related protein 11|OSBP-related protein 11|testicular tissue protein Li 132 35 0.004791 8.96 1 1 +114897 C1QTNF1 C1q and tumor necrosis factor related protein 1 17 protein-coding CTRP1|GIP|ZSIG37 complement C1q tumor necrosis factor-related protein 1|G protein coupled receptor interacting protein|g protein-coupled receptor-interacting protein 21 0.002874 9.15 1 1 +114898 C1QTNF2 C1q and tumor necrosis factor related protein 2 5 protein-coding CTRP2|zacrp2 complement C1q tumor necrosis factor-related protein 2|complement-c1q tumor necrosis factor-related protein 2 26 0.003559 4.493 1 1 +114899 C1QTNF3 C1q and tumor necrosis factor related protein 3 5 protein-coding C1ATNF3|CORCS|CORS|CORS-26|CORS26|CTRP3 complement C1q tumor necrosis factor-related protein 3|cartonectin|collagenous repeat-containing sequence 26 kDa protein|collagenous repeat-containing sequence of 26-kDa|secretory protein CORS26 26 0.003559 7.212 1 1 +114900 C1QTNF4 C1q and tumor necrosis factor related protein 4 11 protein-coding CTRP4|ZACRP4 complement C1q tumor necrosis factor-related protein 4|complement-c1q tumor necrosis factor-related protein 4 11 0.001506 2.753 1 1 +114902 C1QTNF5 C1q and tumor necrosis factor related protein 5 11 protein-coding CTRP5 complement C1q tumor necrosis factor-related protein 5|C1q TNF-alpha-related protein 5|myonectin 36 0.004927 1 0 +114904 C1QTNF6 C1q and tumor necrosis factor related protein 6 22 protein-coding CTFP6|CTRP6|ZACRP6 complement C1q tumor necrosis factor-related protein 6|complement-c1q tumor necrosis factor-related protein 6 20 0.002737 8.725 1 1 +114905 C1QTNF7 C1q and tumor necrosis factor related protein 7 4 protein-coding CTRP7|ZACRP7 complement C1q tumor necrosis factor-related protein 7|complement-c1q tumor necrosis factor-related protein 7 22 0.003011 4.271 1 1 +114907 FBXO32 F-box protein 32 8 protein-coding Fbx32|MAFbx F-box only protein 32|atrogin 1|muscle atrophy F-box protein 22 0.003011 8.649 1 1 +114908 TMEM123 transmembrane protein 123 11 protein-coding KCT3|PORIMIN|PORMIN porimin|KCT-3|keratinocytes associated transmembrane protein 3|pro-oncosis receptor inducing membrane injury|serine/threonine-rich receptor 10 0.001369 12.26 1 1 +114915 EPB41L4A-AS1 EPB41L4A antisense RNA 1 5 ncRNA C5orf26|NCRNA00219|TIGA1 EPB41L4A antisense RNA 1 (non-protein coding)|transcript induced by growth arrest 1 0 0 8.331 1 1 +114926 SMIM19 small integral membrane protein 19 8 protein-coding C8orf40 small integral membrane protein 19|UPF0697 protein C8orf40 10 0.001369 9.075 1 1 +114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 X protein-coding GASP2 G-protein coupled receptor-associated sorting protein 2 82 0.01122 7.958 1 1 +114932 MRFAP1L1 Morf4 family associated protein 1 like 1 4 protein-coding PP784 MORF4 family-associated protein 1-like 1 3 0.0004106 10.41 1 1 +114960 TSGA13 testis specific 13 7 protein-coding - testis-specific gene 13 protein|testis-specific A13 26 0.003559 0.1546 1 1 +114971 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 11 protein-coding DUSP23|MOSP|PLIP|PNAS-129 phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1|NB4 apoptosis/differentiation related protein|PTEN-like phosphatase|phosphoinositide lipid phosphatase 10 0.001369 9.65 1 1 +114984 FLYWCH2 FLYWCH family member 2 16 protein-coding - FLYWCH family member 2 7 0.0009581 8.834 1 1 +114987 WDR31 WD repeat domain 31 9 protein-coding - WD repeat-containing protein 31 28 0.003832 5.173 1 1 +114990 VASN vasorin 16 protein-coding SLITL2 vasorin|protein slit-like 2|slit-like 2 18 0.002464 9.056 1 1 +114991 ZNF618 zinc finger protein 618 9 protein-coding FP13169|NEDD10 zinc finger protein 618|neural precursor cell expressed, developmentally down-regulated 10 57 0.007802 8.932 1 1 +115004 MB21D1 Mab-21 domain containing 1 6 protein-coding C6orf150|cGAS|h-cGAS cyclic GMP-AMP synthase|2'3'-cGAMP synthase|cGAMP synthase|mab-21 domain-containing protein 1|protein MB21D1 21 0.002874 5.97 1 1 +115019 SLC26A9 solute carrier family 26 member 9 1 protein-coding - solute carrier family 26 member 9|anion transporter/exchanger protein 9|anion transporter/exchanger-9|solute carrier family 26 (anion exchanger), member 9 62 0.008486 3.989 1 1 +115024 NT5C3B 5'-nucleotidase, cytosolic IIIB 17 protein-coding NT5C3L|cN-IIIB 7-methylguanosine phosphate-specific 5'-nucleotidase|5'-nucleotidase, cytosolic III-like|7-methylguanosine nucleotidase|N(7)-methylguanylate 5'-phosphatase|cN-III-like protein|cytosolic 5'-nucleotidase 3B|cytosolic 5'-nucleotidase III-like protein 15 0.002053 9.54 1 1 +115098 CCDC124 coiled-coil domain containing 124 19 protein-coding - coiled-coil domain-containing protein 124 9 0.001232 10.22 1 1 +115106 HAUS1 HAUS augmin like complex subunit 1 18 protein-coding CCDC5|HEI-C|HEIC|HsT1461 HAUS augmin-like complex subunit 1|coiled-coil domain containing 5 (spindle associated)|coiled-coil domain-containing protein 5|enhancer of invasion-cluster 20 0.002737 8.272 1 1 +115110 LOC115110 uncharacterized LOC115110 1 ncRNA - - 6.236 0 1 +115111 SLC26A7 solute carrier family 26 member 7 8 protein-coding SUT2 anion exchange transporter|solute carrier family 26 (anion exchanger), member 7|sulfate anion transporter 98 0.01341 3.463 1 1 +115123 MARCH3 membrane associated ring-CH-type finger 3 5 protein-coding MARCH-III|RNF173 E3 ubiquitin-protein ligase MARCH3|RING finger protein 173|membrane associated ring finger 3|membrane-associated RING-CH protein III|membrane-associated ring finger (C3HC4) 3, E3 ubiquitin protein ligase 12 0.001642 6.587 1 1 +115196 ZNF554 zinc finger protein 554 19 protein-coding - zinc finger protein 554 32 0.00438 6.874 1 1 +115201 ATG4A autophagy related 4A cysteine peptidase X protein-coding APG4A|AUTL2 cysteine protease ATG4A|APG4 autophagy 4 homolog A|ATG4 autophagy related 4 homolog A|AUT-like 2, cysteine endopeptidase|autophagin 2|autophagy-related cysteine endopeptidase 2|autophagy-related protein 4 homolog A|hAPG4A 27 0.003696 8.27 1 1 +115207 KCTD12 potassium channel tetramerization domain containing 12 13 protein-coding C13orf2|PFET1|PFETIN BTB/POZ domain-containing protein KCTD12|potassium channel tetramerisation domain containing 12|predominantly fetal expressed T1 domain|testicular tissue protein Li 100 7 0.0009581 10.61 1 1 +115209 OMA1 OMA1 zinc metallopeptidase 1 protein-coding 2010001O09Rik|DAB1|MPRP-1|MPRP1|YKR087C|ZMPOMA1|peptidase metalloendopeptidase OMA1, mitochondrial|OMA1 homolog, zinc metallopeptidase|OMA1 zinc metallopeptidase homolog|metalloprotease-related protein 1|overlapping activity with M-AAA protease|overlapping with the m-AAA protease 1 homolog|zinc metallopeptidase OMA1 30 0.004106 8.256 1 1 +115265 DDIT4L DNA damage inducible transcript 4 like 4 protein-coding REDD2|Rtp801L 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 28 0.003832 4.935 1 1 +115273 RAB42 RAB42, member RAS oncogene family 1 protein-coding - putative Ras-related protein Rab-42|RAB42, member RAS homolog family 14 0.001916 4.566 1 1 +115286 SLC25A26 solute carrier family 25 member 26 3 protein-coding COXPD28|SAMC S-adenosylmethionine mitochondrial carrier protein|mitochondrial S-adenosylmethionine transporter|solute carrier family 25 (S-adenosylmethionine carrier), member 26|solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 26 13 0.001779 8.506 1 1 +115290 FBXO17 F-box protein 17 19 protein-coding FBG4|FBX26|FBXO26|Fbx17 F-box only protein 17|F-box only protein 26|F-box protein FBG4 19 0.002601 7.204 1 1 +115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 8 protein-coding - protein-L-isoaspartate O-methyltransferase domain-containing protein 1 52 0.007117 10.17 1 1 +115330 GPR146 G protein-coupled receptor 146 7 protein-coding PGR8 probable G-protein coupled receptor 146|G-protein coupled receptor PGR8 17 0.002327 6.568 1 1 +115350 FCRL1 Fc receptor like 1 1 protein-coding CD307a|FCRH1|IFGP1|IRTA5 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 87 0.01191 1.732 1 1 +115352 FCRL3 Fc receptor like 3 1 protein-coding CD307c|FCRH3|IFGP3|IRTA3|SPAP2 Fc receptor-like protein 3|Fc receptor homolog 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 99 0.01355 2.958 1 1 +115353 LRRC42 leucine rich repeat containing 42 1 protein-coding dJ167A19.4 leucine-rich repeat-containing protein 42 29 0.003969 9.26 1 1 +115361 GBP4 guanylate binding protein 4 1 protein-coding Mpa2 guanylate-binding protein 4|GBP-4|GTP-binding protein 4|guanine nucleotide-binding protein 4 57 0.007802 9.256 1 1 +115362 GBP5 guanylate binding protein 5 1 protein-coding GBP-5 guanylate-binding protein 5|GBP-TA antigen|GTP-binding protein 5|guanine nucleotide-binding protein 5 67 0.009171 7.369 1 1 +115399 LRRC56 leucine rich repeat containing 56 11 protein-coding - leucine-rich repeat-containing protein 56 24 0.003285 6.074 1 1 +115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 7 protein-coding C7orf30|mtRsfA mitochondrial assembly of ribosomal large subunit protein 1 11 0.001506 8.746 1 1 +115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 9 protein-coding NIRF|RNF107|TDRD23|URF2 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 with PHD and ring finger domains 2, E3 ubiquitin protein ligase|ubiquitin-like, containing PHD and RING finger domains, 2|ubiquitin-like-containing PHD and RING finger domains protein 2 43 0.005886 9.306 1 1 +115509 ZNF689 zinc finger protein 689 16 protein-coding TIPUH1 zinc finger protein 689|transcription-involved protein upregulated in HCC 1 42 0.005749 7.196 1 1 +115548 FCHO2 FCH domain only 2 5 protein-coding - F-BAR domain only protein 2|FCH domain only protein 2 42 0.005749 9.375 1 1 +115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 12 protein-coding GEFT|p63RhoGEF rho guanine nucleotide exchange factor 25|RAC/CDC42 exchange factor|Rho guanine nucleotide exchange factor (GEF) 25|RhoA/RAC/CDC42 exchange factor|guanine nucleotide exchange factor GEFT|rac/Cdc42/Rho exchange factor GEFT|rhoA/Rac/Cdc42 guanine nucleotide exchange factor GEFT 42 0.005749 7.959 1 1 +115560 ZNF501 zinc finger protein 501 3 protein-coding ZNF|ZNF52 zinc finger protein 501|zinc finger protein 52 15 0.002053 6.003 1 1 +115572 FAM46B family with sequence similarity 46 member B 1 protein-coding - protein FAM46B 21 0.002874 6.427 1 1 +115584 SLC5A11 solute carrier family 5 member 11 16 protein-coding KST1|RKST1|SGLT6|SMIT2 sodium/myo-inositol cotransporter 2|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 transporter 2|solute carrier family 5 (sodium/glucose cotransporter), member 11|solute carrier family 5 (sodium/inositol cotransporter), member 11 68 0.009307 1.92 1 1 +115650 TNFRSF13C TNF receptor superfamily member 13C 22 protein-coding BAFF-R|BAFFR|BROMIX|CD268|CVID4|prolixin tumor necrosis factor receptor superfamily member 13C|B cell-activating factor receptor|BAFF receptor|BLyS receptor 3 13 0.001779 2.651 1 1 +115653 KIR3DL3 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 3 19 protein-coding CD158Z|KIR2DS2|KIR3DL7|KIR44|KIRC1 killer cell immunoglobulin-like receptor 3DL3|CD158 antigen-like family member Z|killer cell Ig-like receptor KIR3DL7|killer cell immunoglobulin-like receptor two domains short cytoplasmic tail 2|killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 3|killer cell inhibitory receptor 1|killer-cell immunoglobulin-like receptor 3DL3 15 0.002053 0.1933 1 1 +115677 NOSTRIN nitric oxide synthase trafficking 2 protein-coding DaIP2 nostrin|BM247 homolog|ENOS traffic inducer|eNOS-trafficking inducer|endothelial nitric oxide synthase traffic inducer|nitric oxide synthase traffic inducer|nitric oxide synthase trafficker|ortholog of mouse disabled 2 interacting proein 2 30 0.004106 6.826 1 1 +115701 ALPK2 alpha kinase 2 18 protein-coding HAK alpha-protein kinase 2|heart alpha-kinase|heart alpha-protein kinase 184 0.02518 4.813 1 1 +115703 ARHGAP33 Rho GTPase activating protein 33 19 protein-coding NOMA-GAP|SNX26|TCGAP rho GTPase-activating protein 33|neurite outgrowth multiadaptor RhoGAP protein|rho-type GTPase-activating protein 33|sorting nexin 26|tc10/CDC42 GTPase-activating protein 91 0.01246 7.733 1 1 +115704 EVI5L ecotropic viral integration site 5 like 19 protein-coding - EVI5-like protein|ecotropic viral integration site 5-like protein 35 0.004791 8.973 1 1 +115708 TRMT61A tRNA methyltransferase 61A 14 protein-coding C14orf172|GCD14|Gcd14p|TRM61|hTRM61 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 methyltransferase 61 homolog A|tRNA(m1A58)-methyltransferase subunit TRM61|tRNA(m1A58)-methyltransferase subunit TRMT61A|tRNA(m1A58)MTase subunit TRM61|tRNA(m1A58)MTase subunit TRMT61A 11 0.001506 9.056 1 1 +115727 RASGRP4 RAS guanyl releasing protein 4 19 protein-coding - RAS guanyl-releasing protein 4|guanyl nucleotide releasing protein 4 43 0.005886 4.811 1 1 +115749 C12orf56 chromosome 12 open reading frame 56 12 protein-coding - uncharacterized protein C12orf56 28 0.003832 2.4 1 1 +115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease 15 protein-coding DIS3L1 DIS3-like exonuclease 1|DIS3 mitotic control homolog-like 59 0.008076 9.265 1 1 +115761 ARL11 ADP ribosylation factor like GTPase 11 13 protein-coding ARLTS1 ADP-ribosylation factor-like protein 11|ADP-ribosylation factor-like 11|ADP-ribosylation factor-like tumor suppressor protein 1 18 0.002464 5.478 1 1 +115795 FANCD2OS FANCD2 opposite strand 3 protein-coding C3orf24 FANCD2 opposite strand protein|Fanconi anemia group D2 protein opposite strand transcript protein 19 0.002601 0.3049 1 1 +115811 IQCD IQ motif containing D 12 protein-coding 4933433C09Rik|CFAP84|DRC10 IQ domain-containing protein D|dynein regulatory complex subunit 10 26 0.003559 5.142 1 1 +115817 DHRS1 dehydrogenase/reductase 1 14 protein-coding SDR19C1 dehydrogenase/reductase SDR family member 1|dehydrogenase/reductase (SDR family) member 1|short chain dehydrogenase/reductase family 19C member 1 12 0.001642 8.887 1 1 +115825 WDFY2 WD repeat and FYVE domain containing 2 13 protein-coding PROF|WDF2|ZFYVE22 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 19 0.002601 7.788 1 1 +115827 RAB3C RAB3C, member RAS oncogene family 5 protein-coding - ras-related protein Rab-3C 25 0.003422 1.999 1 1 +115861 NXNL1 nucleoredoxin-like 1 19 protein-coding RDCVF|TXNL6 nucleoredoxin-like protein 1|rod-derived cone viability factor|thioredoxin-like 6|thioredoxin-like protein 6 16 0.00219 0.3352 1 1 +115908 CTHRC1 collagen triple helix repeat containing 1 8 protein-coding - collagen triple helix repeat-containing protein 1 19 0.002601 8.452 1 1 +115939 TSR3 TSR3, acp transferase ribosome maturation factor 16 protein-coding C16orf42 ribosome biogenesis protein TSR3 homolog|TSR3, 20S rRNA accumulation, homolog|probable ribosome biogenesis protein C16orf42 19 0.002601 9.963 1 1 +115948 CCDC151 coiled-coil domain containing 151 19 protein-coding CILD30 coiled-coil domain-containing protein 151 44 0.006022 4.071 1 1 +115950 ZNF653 zinc finger protein 653 19 protein-coding E430039K05Rik|ZIP67 zinc finger protein 653|67 kDa zinc finger protein|zinc finger protein Zip67 40 0.005475 7.067 1 1 +115992 RNF166 ring finger protein 166 16 protein-coding - RING finger protein 166 6 0.0008212 8.132 1 1 +116028 RMI2 RecQ mediated genome instability 2 16 protein-coding BLAP18|C16orf75 recQ-mediated genome instability protein 2|BLM-associated protein of 18 kDa|RMI2, RecQ mediated genome instability 2, homolog 8 0.001095 7.826 1 1 +116039 OSR2 odd-skipped related transciption factor 2 8 protein-coding - protein odd-skipped-related 2|odd-skipped related 2 37 0.005064 5.871 1 1 +116064 LRRC58 leucine rich repeat containing 58 3 protein-coding - leucine-rich repeat-containing protein 58 13 0.001779 10.15 1 1 +116068 LYSMD3 LysM domain containing 3 5 protein-coding - lysM and putative peptidoglycan-binding domain-containing protein 3|LysM, putative peptidoglycan-binding, domain containing 3 27 0.003696 8.85 1 1 +116071 BATF2 basic leucine zipper ATF-like transcription factor 2 11 protein-coding SARI basic leucine zipper transcriptional factor ATF-like 2|B-ATF-2|basic leucine zipper transcription factor, ATF-like 2|suppressor of AP-1 regulated by IFN 13 0.001779 6.995 1 1 +116085 SLC22A12 solute carrier family 22 member 12 11 protein-coding OAT4L|RST|URAT1 solute carrier family 22 member 12|organic anion transporter 4-like protein|renal-specific transporter|solute carrier family 22 (organic anion/cation transporter), member 12|solute carrier family 22 (organic anion/urate transporter), member 12|urate anion exchanger 1|urate transporter 1 52 0.007117 0.78 1 1 +116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 20 protein-coding C20orf167|Tdif1|dJ447F3.4 deoxynucleotidyltransferase terminal-interacting protein 1|TdT binding protein|tdT-interacting factor 1|terminal deoxynucleotidyltransferase-interacting factor 1 29 0.003969 9.415 1 1 +116093 DIRC1 disrupted in renal carcinoma 1 2 protein-coding - disrupted in renal carcinoma protein 1|disrupted in renal cancer protein 11 0.001506 0.7205 1 1 +116113 FOXP4 forkhead box P4 6 protein-coding hFKHLA forkhead box protein P4|fork head-related protein like A|winged-helix repressor FOXP4 41 0.005612 10.67 1 1 +116115 ZNF526 zinc finger protein 526 19 protein-coding - zinc finger protein 526 38 0.005201 8.238 1 1 +116123 FMO9P flavin containing monooxygenase 9 pseudogene 1 pseudo - RP11-45J16.2 7 0.0009581 0.7705 1 1 +116135 LRRC3B leucine rich repeat containing 3B 3 protein-coding LRP15 leucine-rich repeat-containing protein 3B|leucine-rich repeat protein LRP15 33 0.004517 1.719 1 1 +116138 KLHDC3 kelch domain containing 3 6 protein-coding PEAS|dJ20C7.3 kelch domain-containing protein 3|testis intracellular mediator protein 33 0.004517 11.12 1 1 +116143 WDR92 WD repeat domain 92 2 protein-coding - WD repeat-containing protein 92|WD repeat-containing protein Monad|monad|testicular secretory protein Li 67 19 0.002601 7.747 1 1 +116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit 6 protein-coding C6orf68|CDG1AA|MGC:7199|NgBR|TANGO14 dehydrodolichyl diphosphate synthase complex subunit NUS1|Nogo-B receptor|dehydrodolichyl diphosphate syntase complex subunit NUS1|di-trans,poly-cis-decaprenylcistransferase|nuclear undecaprenyl pyrophosphate synthase 1 homolog|transport and golgi organization 14 homolog 13 0.001779 10.27 1 1 +116151 FAM210B family with sequence similarity 210 member B 20 protein-coding 5A3|C20orf108|dJ1167H4.1 protein FAM210B|transmembrane protein C20orf108 6 0.0008212 10.95 1 1 +116154 PHACTR3 phosphatase and actin regulator 3 20 protein-coding C20orf101|H17739|PPP1R123|SCAPIN1|SCAPININ phosphatase and actin regulator 3|protein phosphatase 1, regulatory subunit 123|scaffold-associated PP1-inhibiting protein 80 0.01095 3.901 1 1 +116159 CYYR1 cysteine and tyrosine rich 1 21 protein-coding C21orf95 cysteine and tyrosine-rich protein 1|cysteine and tyrosine-rich protein 1 isoform 1,2,2bis,3,4|cysteine and tyrosine-rich protein 1 isoform 1,2,3,4b|cysteine and tyrosine-rich protein 1 isoform 1,2,3b|cysteine and tyrosine-rich protein 1 isoform 1,2,4|cysteine/tyrosine-rich 1|proline-rich domain-containing protein 31 0.004243 7.791 1 1 +116173 CMTM5 CKLF like MARVEL transmembrane domain containing 5 14 protein-coding CKLFSF5 CKLF-like MARVEL transmembrane domain-containing protein 5|chemokine-like factor super family 5|chemokine-like factor superfamily member 5 21 0.002874 1.875 1 1 +116179 TGM7 transglutaminase 7 15 protein-coding TGMZ protein-glutamine gamma-glutamyltransferase Z|TG(Z)|TGZ|TGase Z|TGase-7|transglutaminase Z 53 0.007254 0.3486 1 1 +116211 TM4SF19 transmembrane 4 L six family member 19 3 protein-coding OCTM4 transmembrane 4 L6 family member 19|osteoclast maturation-associated gene 4 protein|tetraspan membrane protein OCTM4 18 0.002464 3.563 1 1 +116224 FAM122A family with sequence similarity 122A 9 protein-coding C9orf42 protein FAM122A 13 0.001779 8.689 1 1 +116225 ZMYND19 zinc finger MYND-type containing 19 9 protein-coding MIZIP zinc finger MYND domain-containing protein 19|MCH-R1-interacting zinc finger protein|melanin-concentrating hormone receptor 1 interacting zinc-finger protein|zinc finger, MYND domain containing 19 20 0.002737 8.657 1 1 +116228 COX20 COX20, cytochrome c oxidase assembly factor 1 protein-coding FAM36A cytochrome c oxidase protein 20 homolog|COX20 Cox2 chaperone homolog|family with sequence similarity 36, member A 13 0.001779 9.818 1 1 +116236 ABHD15 abhydrolase domain containing 15 17 protein-coding - protein ABHD15|abhydrolase domain-containing protein 15|alpha/beta hydrolase domain-containing protein 15 28 0.003832 8.331 1 1 +116238 TLCD1 TLC domain containing 1 17 protein-coding - calfacilitin|TLC domain-containing protein 1 14 0.001916 7.48 1 1 +116254 GINM1 glycoprotein integral membrane 1 6 protein-coding C6orf72|dJ12G14.2 glycoprotein integral membrane protein 1 26 0.003559 9.135 1 1 +116255 MOGAT1 monoacylglycerol O-acyltransferase 1 2 protein-coding DGAT2L|DGAT2L1|MGAT1 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 23 0.003148 0.4556 1 1 +116285 ACSM1 acyl-CoA synthetase medium-chain family member 1 16 protein-coding BUCS1|MACS1 acyl-coenzyme A synthetase ACSM1, mitochondrial|Butyrate CoA ligase|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 52 0.007117 3.383 1 1 +116328 C8orf34 chromosome 8 open reading frame 34 8 protein-coding VEST-1|VEST1 uncharacterized protein C8orf34|protein VEST-1|vestibule 1|vestibule-1 protein 83 0.01136 2.693 1 1 +116337 PANX3 pannexin 3 11 protein-coding PX3 pannexin-3|gap junction protein pannexin 3 37 0.005064 0.2639 1 1 +116349 EXOC3-AS1 EXOC3 antisense RNA 1 5 ncRNA C5orf55 uncharacterized protein C5orf55 7 0.0009581 6.474 1 1 +116362 RBP7 retinol binding protein 7 1 protein-coding CRABP4|CRBP4|CRBPIV retinoid-binding protein 7|cellular retinoic acid-binding protein 4|cellular retinoic acid-binding protein IV|cellular retinol binding protein 7|putative cellular retinol-binding protein CRBP IV|retinol binding protein 7, cellular 5 0.0006844 6.33 1 1 +116369 SLC26A8 solute carrier family 26 member 8 6 protein-coding SPGF3|TAT1 testis anion transporter 1|anion transporter/exchanger-8|solute carrier family 26 (anion exchanger), member 8 68 0.009307 1.711 1 1 +116372 LYPD1 LY6/PLAUR domain containing 1 2 protein-coding LYPDC1|PHTS ly6/PLAUR domain-containing protein 1|putative HeLa tumor suppressor 12 0.001642 6.797 1 1 +116379 IL22RA2 interleukin 22 receptor subunit alpha 2 6 protein-coding CRF2-10|CRF2-S1|CRF2X|IL-22BP|IL-22R-alpha-2|IL-22RA2|ZCYTOR16 interleukin-22 receptor subunit alpha-2|cytokine receptor class-II member 10|cytokine receptor family type 2, soluble 1|interleukin 22 receptor, alpha 2|interleukin 22-binding protein 19 0.002601 1.822 1 1 +116412 ZNF837 zinc finger protein 837 19 protein-coding - zinc finger protein 837 24 0.003285 5.561 1 1 +116437 LINC01257 long intergenic non-protein coding RNA 1257 12 ncRNA - - 0.5789 0 1 +116441 TM4SF18 transmembrane 4 L six family member 18 3 protein-coding L6D transmembrane 4 L6 family member 18 13 0.001779 5.984 1 1 +116442 RAB39B RAB39B, member RAS oncogene family X protein-coding MRX72|WSMN ras-related protein Rab-39B 21 0.002874 5.239 1 1 +116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A 9 protein-coding GluN3A|NMDAR-L|NR3A glutamate receptor ionotropic, NMDA 3A|N-methyl-D-aspartate receptor subtype 3A|NMDAR3A|glutamate [NMDA] receptor subunit 3A|glutamate receptor, ionotropic, N-methyl-D-aspartate 3A 133 0.0182 4.466 1 1 +116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B 19 protein-coding GluN3B|NR3B glutamate receptor ionotropic, NMDA 3B|N-methyl-D-aspartate receptor subtype 3B|NMDA receptor subunit 3B|NMDA type glutamate receptor subunit NR3B|NMDAR3B|glutamate [NMDA] receptor subunit 3B|glutamate receptor, ionotropic, N-methyl-D-aspartate 3B 79 0.01081 1.758 1 1 +116447 TOP1MT topoisomerase (DNA) I, mitochondrial 8 protein-coding - DNA topoisomerase I, mitochondrial|mitochondrial topoisomerase IB 48 0.00657 9.311 1 1 +116448 OLIG1 oligodendrocyte transcription factor 1 21 protein-coding BHLHB6|BHLHE21 oligodendrocyte transcription factor 1|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 5 0.0006844 2.605 1 1 +116449 CLNK cytokine dependent hematopoietic cell linker 4 protein-coding MIST cytokine-dependent hematopoietic cell linker|mast cell immunoreceptor signal transducer 41 0.005612 0.9618 1 1 +116461 TSEN15 tRNA splicing endonuclease subunit 15 1 protein-coding C1orf19|PCH2F|sen15 tRNA-splicing endonuclease subunit Sen15|TSEN15 tRNA splicing endonuclease subunit|tRNA splicing endonuclease 15 homolog|tRNA-intron endonuclease Sen15 13 0.001779 9.283 1 1 +116496 FAM129A family with sequence similarity 129 member A 1 protein-coding C1orf24|GIG39|NIBAN protein Niban|cell growth-inhibiting gene 39 protein 70 0.009581 9.618 1 1 +116511 MAS1L MAS1 proto-oncogene like, G protein-coupled receptor 6 protein-coding MAS-L|MRG|dJ994E9.2 mas-related G-protein coupled receptor MRG|MAS-R|MAS1 oncogene-like|MAS1-like|mas-related G protein-coupled MRG 40 0.005475 0.2524 1 1 +116512 MRGPRD MAS related GPR family member D 11 protein-coding MRGD|TGR7 mas-related G-protein coupled receptor member D|G-protein coupled receptor TGR7|MAS-related GPR, member D|beta-alanine receptor|mas-related G protein-coupled MRGD 27 0.003696 0.2307 1 1 +116519 APOA5 apolipoprotein A5 11 protein-coding APOAV|RAP3 apolipoprotein A-V|apo-AV|apolipoprotein A-V precursor variant 3|regeneration-associated protein 3 38 0.005201 1.044 1 1 +116534 MRGPRE MAS related GPR family member E 11 protein-coding GPR167|MGRF|MRGE mas-related G-protein coupled receptor member E|G-protein coupled receptor 167|MAS-related GPR, member E|Mas-related G protein-coupled receptor F|mas-related G protein-coupled MRGE 28 0.003832 1.003 1 1 +116535 MRGPRF MAS related GPR family member F 11 protein-coding GPR140|GPR168|MRGF|RTA mas-related G-protein coupled receptor member F|G protein-coupled receptor MrgF|G-protein coupled receptor 140|G-protein coupled receptor 168|MAS-related GPR, member F|mas-related G protein-coupled MRGF|mas-related gene F protein|seven transmembrane helix receptor 28 0.003832 6.585 1 1 +116540 MRPL53 mitochondrial ribosomal protein L53 2 protein-coding L53MT 39S ribosomal protein L53, mitochondrial 15 0.002053 9.3 1 1 +116541 MRPL54 mitochondrial ribosomal protein L54 19 protein-coding L54mt|MRP-L54 39S ribosomal protein L54, mitochondrial 9 0.001232 9.216 1 1 +116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 17 protein-coding DYSFIP1 protein phosphatase 1 regulatory subunit 27|dysferlin interacting protein 1|dysferlin-interacting protein 1 (toonin)|toonin 5 0.0006844 1.038 1 1 +116828 N4BP2L2-IT2 N4BPL2 intronic transcript 2 13 ncRNA CG030 N4BPL2 intronic transcript 2 (non-protein coding)|uncharacterized CG030 4.87 0 1 +116832 RPL39L ribosomal protein L39 like 3 protein-coding RPL39L1 60S ribosomal protein L39-like|60S ribosomal protein L39-2|L39-2|ribosomal protein L39-like 1|ribosomal protein L39-like protein 7 0.0009581 6.826 1 1 +116835 HSPA12B heat shock protein family A (Hsp70) member 12B 20 protein-coding C20orf60 heat shock 70 kDa protein 12B 43 0.005886 6.875 1 1 +116840 CNTROB centrobin, centriole duplication and spindle assembly protein 17 protein-coding LIP8|PP1221 centrobin|LYST-interacting protein 8|LYST-interacting protein LIP8|centrobin, centrosomal BRCA2 interacting protein|centrosomal BRCA2-interacting protein 58 0.007939 9.445 1 1 +116841 SNAP47 synaptosome associated protein 47 1 protein-coding C1orf142|ESFI5812|HEL-S-290|HEL170|SNAP-47|SVAP1 synaptosomal-associated protein 47|epididymis luminal protein 170|epididymis secretory protein Li 290|synaptosomal-associated 47 kDa protein|synaptosomal-associated protein, 47kDa|synaptosome associated protein 47kDa 33 0.004517 9.527 1 1 +116842 LEAP2 liver enriched antimicrobial peptide 2 5 protein-coding LEAP-2 liver-expressed antimicrobial peptide 2 4 0.0005475 3.063 1 1 +116843 SLC18B1 solute carrier family 18 member B1 6 protein-coding C6orf192|dJ55C23.6 MFS-type transporter SLC18B1|MFS-type transporter C6orf192|solute carrier family 18, subfamily B, member 1 25 0.003422 8.445 1 1 +116844 LRG1 leucine rich alpha-2-glycoprotein 1 19 protein-coding HMFT1766|LRG leucine-rich alpha-2-glycoprotein|1300008B03Rik|2310031E04Rik|leucine rich alpha 2 glycoprotein 32 0.00438 7.378 1 1 +116931 MED12L mediator complex subunit 12 like 3 protein-coding NOPAR|TNRC11L|TRALP|TRALPUSH 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 189 0.02587 3.743 1 1 +116933 CLRN1-AS1 CLRN1 antisense RNA 1 3 ncRNA CLRN1OS|UCRP CLRN1 antisense RNA 1 (non-protein coding)|Usher critical region protein pseudogene|clarin 1 opposite strand 8 0.001095 0.441 1 1 +116966 WDR17 WD repeat domain 17 4 protein-coding - WD repeat-containing protein 17 161 0.02204 4.257 1 1 +116969 ART5 ADP-ribosyltransferase 5 11 protein-coding ARTC5 ecto-ADP-ribosyltransferase 5|ADP-ribosyltransferase C2 and C3 toxin-like 5|NAD(P)(+)--arginine ADP-ribosyltransferase 5|mono(ADP-ribosyl)transferase 5 32 0.00438 2.591 1 1 +116983 ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 1 protein-coding CENTB5 arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 3|centaurin-beta-5|cnt-b5 37 0.005064 9.704 1 1 +116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 4 protein-coding CENTD1|PARX arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 2|Arf and Rho GAP adapter protein 2|centaurin-delta-1|cnt-d1 133 0.0182 8.606 1 1 +116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 11 protein-coding CENTD2 arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 1|ARF-GAP, RHO-GAP, ankyrin repeat, and pleckstrin homology domains-containing protein 1|centaurin-delta-2|cnt-d2 85 0.01163 11.28 1 1 +116986 AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 12 protein-coding CENTG1|GGAP2|PIKE arf-GAP with GTPase, ANK repeat and PH domain-containing protein 2|Arf GAP with GTP-binding protein-like, ANK repeat and PH domains 2|GTP-binding and GTPase activating protein 2|centaurin, gamma 1|cnt-g1|phosphatidylinositol 3-kinase enhancer|phosphoinositide 3-kinase enhancer 69 0.009444 7.027 1 1 +116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 2 protein-coding AGAP-1|CENTG2|GGAP1|cnt-g2 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1|Arf GAP with GTP-binding protein-like, ANK repeat and PH domains 1|GTP-binding and GTPase-activating protein 1|centaurin, gamma 2 89 0.01218 8.591 1 1 +116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 7 protein-coding AGAP-3|CENTG3|CRAG|MRIP-1|cnt-g3 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 3|CRAM-associated GTPase|CRMP (collapsin response mediator protein) associated|MR1-interacting protein|centaurin-gamma-3 62 0.008486 10.69 1 1 +117143 TADA1 transcriptional adaptor 1 1 protein-coding ADA1|HFI1|STAF42|TADA1L|hADA1 transcriptional adapter 1|SPT3-associated factor 42 (STAF42)|transcriptional adapter 1-like protein|transcriptional adaptor 1 (HFI1 homolog, yeast) 22 0.003011 8.393 1 1 +117144 CATSPER1 cation channel sperm associated 1 11 protein-coding CATSPER|SPGF7 cation channel sperm-associated protein 1|hCatSper|sperm ion channel|sperm-associated cation channel 1 67 0.009171 2.413 1 1 +117145 THEM4 thioesterase superfamily member 4 1 protein-coding CTMP acyl-coenzyme A thioesterase THEM4|C-terminal modulator protein|acyl-CoA thioesterase THEM4|carboxyl-terminal modulator protein 12 0.001642 8.308 1 1 +117153 35 0.004791 1.996 1 1 +117154 DACH2 dachshund family transcription factor 2 X protein-coding - dachshund homolog 2 101 0.01382 1.78 1 1 +117155 CATSPER2 cation channel sperm associated 2 15 protein-coding - cation channel sperm-associated protein 2|sperm ion channel 41 0.005612 4.735 1 1 +117156 SCGB3A2 secretoglobin family 3A member 2 5 protein-coding LU103|PNSP1|UGRP1|pnSP-1 secretoglobin family 3A member 2|pneumo secretory protein 1|uteroglobin-related protein 1 6 0.0008212 1.386 1 1 +117157 SH2D1B SH2 domain containing 1B 1 protein-coding EAT2 SH2 domain-containing protein 1B|EAT-2|EWS/FLI1-activated transcript 2|SH2 domain-containing molecule EAT2 14 0.001916 2.648 1 1 +117159 DCD dermcidin 12 protein-coding AIDD|DCD-1|DSEP|HCAP|PIF dermcidin|diffusible survival/evasion peptide|preproteolysin|proteolysis inducing factor|survival promoting peptide 12 0.001642 0.2608 1 1 +117166 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 16 protein-coding C16orf12|RJD2|WFDC20A|WFIKKN WAP, Kazal, immunoglobulin, Kunitz and NTR domain-containing protein 1|GASP-2|WAP four-disulfide core domain 20A|WAP, FS, Ig, KU, and NTR-containing protein|WAP, follistatin, immunoglobulin, kunitz and NTR domain-containing protein|growth and differentiation factor-associated serum protein 2|hGASP-2 19 0.002601 4.273 1 1 +117177 RAB3IP RAB3A interacting protein 12 protein-coding RABIN3|RABIN8 rab-3A-interacting protein|SSX2 interacting protein|rab3A-interacting protein|rabin-3 46 0.006296 9.213 1 1 +117178 SSX2IP SSX family member 2 interacting protein 1 protein-coding ADIP|hMsd1 afadin- and alpha-actinin-binding protein|SSX2-interacting protein|afadin DIL domain-interacting protein|synovial sarcoma, X breakpoint 2 interacting protein 43 0.005886 8.94 1 1 +117194 MRGPRX2 MAS related GPR family member X2 11 protein-coding MGRG3|MRGX2 mas-related G-protein coupled receptor member X2|G protein-coupled receptor MRGX2|MAS-related GPR, member X2|Mas-related G protein-coupled receptor G3 40 0.005475 0.2763 1 1 +117195 MRGPRX3 MAS related GPR family member X3 11 protein-coding GPCR|MRGX3|SNSR1|SNSR2 mas-related G-protein coupled receptor member X3|G protein-coupled receptor MRGX3|G protein-coupled receptor SNSR1|G protein-coupled receptor SNSR2|MAS-related GPR, member X3|mas-related GPCR member X3|sensory neuron-specific G-protein coupled receptor 1/2 54 0.007391 0.9544 1 1 +117196 MRGPRX4 MAS related GPR family member X4 11 protein-coding GPCR|MRGX4|SNSR6 mas-related G-protein coupled receptor member X4|G protein-coupled receptor MRGX4|G protein-coupled receptor SNSR5|G protein-coupled receptor SNSR6|MAS-related GPR, member X4|sensory neuron-specific G-protein coupled receptor 5/6 38 0.005201 0.1735 1 1 +117245 HRASLS5 HRAS like suppressor family member 5 11 protein-coding HRLP5|HRSL5|RLP1|iNAT Ca(2+)-independent N-acyltransferase|H-rev107-like protein 5|HRAS-like suppressor 5|calcium-independent phosphatidylethanolamine N-acyltransferase|lecithin-retinol acyltransferase (LRAT)-like protein-1|testicular tissue protein Li 90 26 0.003559 3.845 1 1 +117246 FTSJ3 FtsJ homolog 3 17 protein-coding EPCS3|SPB1 pre-rRNA processing protein FTSJ3|2'-O-ribose RNA methyltransferase SPB1 homolog|SPB1 RNA methyltransferase homolog|protein ftsJ homolog 3|putative rRNA methyltransferase 3|rRNA (uridine-2'-O-)-methyltransferase 3 61 0.008349 10.33 1 1 +117247 SLC16A10 solute carrier family 16 member 10 6 protein-coding MCT10|PRO0813|TAT1 monocarboxylate transporter 10|MCT 10|T-type amino acid transporter 1|aromatic amino acid transporter 1|solute carrier family 16 (aromatic amino acid transporter), member 10|solute carrier family 16 (monocarboxylic acid transporters), member 10|solute carrier family 16, member 10 (aromatic amino acid transporter) 27 0.003696 5.173 1 1 +117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 3 protein-coding GALNACT15|GALNT13|GALNT7|GALNTL2|PIH5|pp-GalNAc-T15 polypeptide N-acetylgalactosaminyltransferase 15|UDP-GalNAc transferase T15|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 2|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 15|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 2|galNAc-T-like protein 2|polypeptide GalNAc transferase 15|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 59 0.008076 6.523 1 1 +117283 IP6K3 inositol hexakisphosphate kinase 3 6 protein-coding IHPK3|INSP6K3 inositol hexakisphosphate kinase 3|ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|InsP6 kinase 3|inositol hexaphosphate kinase 3 39 0.005338 3.79 1 1 +117285 DEFB118 defensin beta 118 20 protein-coding C20orf63|DEFB-18|ESC42|ESP13.6 beta-defensin 118|defensin, beta 18|epididymal secretory protein 13.6|epididymus specific clone 42 23 0.003148 0.02523 1 1 +117286 CIB3 calcium and integrin binding family member 3 19 protein-coding KIP3 calcium and integrin-binding family member 3|DNA-dependent protein kinase catalytic subunit-interacting protein 3 27 0.003696 0.465 1 1 +117289 TAGAP T-cell activation RhoGTPase activating protein 6 protein-coding ARHGAP47|FKSG15|IDDM21|TAGAP1 T-cell activation Rho GTPase-activating protein 43 0.005886 6.675 1 1 +117531 TMC1 transmembrane channel like 1 9 protein-coding DFNA36|DFNB11|DFNB7 transmembrane channel-like protein 1|transmembrane cochlear-expressed protein 1|transmembrane, cochlear expressed, 1 51 0.006981 1.181 1 1 +117532 TMC2 transmembrane channel like 2 20 protein-coding C20orf145 transmembrane channel-like protein 2|transmembrane cochlear-expressed gene 2|transmembrane cochlear-expressed protein 2 88 0.01204 1.179 1 1 +117579 RLN3 relaxin 3 19 protein-coding H3|RXN3|ZINS4|insl7 relaxin-3|insulin-like peptide 7|insulin-like peptide INSL7|prorelaxin H3 10 0.001369 0.1717 1 1 +117581 TWIST2 twist family bHLH transcription factor 2 2 protein-coding AMS|BBRSAY|DERMO1|FFDD3|SETLSS|bHLHa39 twist-related protein 2|class A basic helix-loop-helix protein 39|dermis-expressed protein 1|twist basic helix-loop-helix transcription factor 2|twist homolog 2|twist-related bHLH protein Dermo1 4 0.0005475 3.719 1 1 +117583 PARD3B par-3 family cell polarity regulator beta 2 protein-coding ALS2CR19|PAR3B|PAR3L|PAR3beta partitioning defective 3 homolog B|PAR3-L protein|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 19|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 19 protein|par-3 partitioning defective 3 homolog B|partitioning defective 3-like protein|partitioning-defective 3-beta 110 0.01506 5.515 1 1 +117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase 17 protein-coding CARP-2|CARP2|FRING|RIFIFYLIN|RNF189|RNF34L E3 ubiquitin-protein ligase rififylin|FYVE-RING finger protein SAKURA|RING finger and FYVE-like domain-containing protein 1|RING finger protein 189|caspase 8 and 10 associated RING protein-2|caspase regulator CARP2|caspases-8 and -10-associated RING finger protein 2|ring finger and FYVE-like domain containing 1 33 0.004517 9.639 1 1 +117608 ZNF354B zinc finger protein 354B 5 protein-coding KID2 zinc finger protein 354B 36 0.004927 6.463 1 1 +117852 TRIM78P tripartite motif containing 78, pseudogene 11 pseudo TRIMP1 tripartite motif-containing pseudogene 1 2.689 0 1 +117854 TRIM6 tripartite motif containing 6 11 protein-coding RNF89 tripartite motif-containing protein 6|RING finger protein 89 34 0.004654 6.292 1 1 +118421 LINC00161 long intergenic non-protein coding RNA 161 21 ncRNA C21orf100|NCRNA00161 - 0.361 0 1 +118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 1 protein-coding NCUBE-2|NCUBE2|PRO2121 ubiquitin-conjugating enzyme E2 J2|E2 ubiquitin-conjugating enzyme J2|non-canonical ubiquitin-conjugating enzyme 2|ubiquitin conjugating enzyme 6|ubiquitin-conjugating enzyme E2, J2 (UBC6 homolog, yeast)|yeast UBC6 homolog 18 0.002464 9.828 1 1 +118425 PCAT4 prostate cancer associated transcript 4 (non-protein coding) 4 ncRNA GDEP|PCA4|PCAN1 gene differentially expressed in prostate|prostate cancer gene 1 1 0.0001369 0.4197 1 1 +118426 BORCS5 BLOC-1 related complex subunit 5 12 protein-coding LOH12CR1|LOH1CR12 loss of heterozygosity 12 chromosomal region 1 protein|loss of heterozygosity, 12, chromosomal region 1|myrlysin 15 0.002053 6.923 1 1 +118427 OLFM3 olfactomedin 3 1 protein-coding NOE3|NOELIN3|OPTIMEDIN noelin-3|olfactomedin related ER localized protein 3 84 0.0115 1.195 1 1 +118429 ANTXR2 anthrax toxin receptor 2 4 protein-coding CMG-2|CMG2|HFS|ISH|JHF anthrax toxin receptor 2|capillary morphogenesis gene 2 protein|capillary morphogenesis protein 2 31 0.004243 9.352 1 1 +118430 MUCL1 mucin like 1 12 protein-coding SBEM mucin-like protein 1|small breast epithelial mucin 7 0.0009581 2.156 1 1 +118432 RPL29P2 ribosomal protein L29 pseudogene 2 17 pseudo RPL29_10_1510 - 0.3751 0 1 +118433 RPL23AP7 ribosomal protein L23a pseudogene 7 2 pseudo RPL23AL1|RPL23A_6_267|bA395L14.9 ribosomal protein L23a-like 1 28 0.003832 6.442 1 1 +118442 GPR62 G protein-coupled receptor 62 3 protein-coding GPCR8|KPG_005 probable G-protein coupled receptor 62|G-protein coupled receptor GPCR8|G-protein coupled receptor KPG_005|hGPCR8 10 0.001369 2.284 1 1 +118460 EXOSC6 exosome component 6 16 protein-coding EAP4|MTR3|Mtr3p|hMtr3p|p11 exosome complex component MTR3|Mtr3 (mRNA transport regulator 3)-homolog|exosome complex exonuclease MTR3|hMtr3|homolog of yeast mRNA transport regulator 3|mRNA transport regulator 3 homolog 2 0.0002737 8.206 1 1 +118461 C10orf71 chromosome 10 open reading frame 71 10 protein-coding - uncharacterized protein C10orf71 100 0.01369 0.4839 1 1 +118471 PRAP1 proline rich acidic protein 1 10 protein-coding PRO1195|UPA proline-rich acidic protein 1|epididymis tissue protein Li 178 3 0.0004106 3.124 1 1 +118472 ZNF511 zinc finger protein 511 10 protein-coding - zinc finger protein 511 30 0.004106 8.881 1 1 +118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 10 protein-coding C10orf34|C2360|MRP-S37 coiled-coil-helix-coiled-coil-helix domain-containing protein 1|28S ribosomal protein S37, mitochondrial|nuclear protein C2360 9 0.001232 9.285 1 1 +118490 MSS51 MSS51 mitochondrial translational activator 10 protein-coding ZMYND17 putative protein MSS51 homolog, mitochondrial|MSS51 mitochondrial translational activator homolog|zinc finger MYND domain-containing protein 17|zinc finger, MYND domain containing 17|zinc finger, MYND-type containing 17 23 0.003148 6.718 1 1 +118491 CFAP70 cilia and flagella associated protein 70 10 protein-coding TTC18 cilia- and flagella-associated protein 70|TPR repeat protein 18|tetratricopeptide repeat domain 18|tetratricopeptide repeat protein 18|tetratricopeptide repeat-containing protein (LOC118491) 70 0.009581 5.474 1 1 +118611 C10orf90 chromosome 10 open reading frame 90 10 protein-coding FATS|bA422P15.2 centrosomal protein C10orf90|fragile-site associated tumor suppressor homolog 83 0.01136 1.991 1 1 +118663 BTBD16 BTB domain containing 16 10 protein-coding C10orf87 BTB/POZ domain-containing protein 16 34 0.004654 2.158 1 1 +118670 FAM24A family with sequence similarity 24 member A 10 protein-coding - protein FAM24A 13 0.001779 0.00758 1 1 +118672 PSTK phosphoseryl-tRNA kinase 10 protein-coding C10orf89 L-seryl-tRNA(Sec) kinase|O-phosphoseryl-tRNA(Sec) kinase 31 0.004243 5.679 1 1 +118738 ZNF488 zinc finger protein 488 10 protein-coding - zinc finger protein 488 42 0.005749 4.35 1 1 +118788 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 10 protein-coding BCAP phosphoinositide 3-kinase adapter protein 1|B cell adaptor protein|B-cell adapter for phosphoinositide 3-kinase|B-cell phosphoinositide 3-kinase adapter protein 1 83 0.01136 8.638 1 1 +118812 MORN4 MORN repeat containing 4 10 protein-coding C10orf83|bA548K23.4|rtp MORN repeat-containing protein 4|44050 protein|protein 44050|retinophilin|retinophilin homolog 13 0.001779 7.231 1 1 +118813 ZFYVE27 zinc finger FYVE-type containing 27 10 protein-coding PROTRUDIN|SPG33 protrudin|zinc finger FYVE domain containing 27 22 0.003011 9.407 1 1 +118856 MMP21 matrix metallopeptidase 21 10 protein-coding HTX7|MMP-21 matrix metalloproteinase-21|matrix metalloproteinase 21 31 0.004243 0.7199 1 1 +118881 COMTD1 catechol-O-methyltransferase domain containing 1 10 protein-coding - catechol O-methyltransferase domain-containing protein 1 10 0.001369 7.633 1 1 +118924 FRA10AC1 fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) candidate 1 10 protein-coding C10orf4|F26C11.1-like|FRA10A protein FRA10AC1|fragile site 10q23.3|rare folic acid-type fragile site, FRA(10)(q23.3), candidate gene 1 23 0.003148 8.354 1 1 +118932 ANKRD22 ankyrin repeat domain 22 10 protein-coding - ankyrin repeat domain-containing protein 22 14 0.001916 6.951 1 1 +118980 SFXN2 sideroflexin 2 10 protein-coding - sideroflexin-2 25 0.003422 7.826 1 1 +118987 PDZD8 PDZ domain containing 8 10 protein-coding PDZK8 PDZ domain-containing protein 8|sarcoma antigen NY-SAR-84/NY-SAR-104 70 0.009581 8.745 1 1 +119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 10 protein-coding AGAP-4|AGAP-8|AGAP8|CTGLF1|CTGLF5|MRIP2 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 4|ARF GTPase-activating protein|ArfGAP with GTPase domain, ankyrin repeat and PH domain 8|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 8|centaurin, gamma-like family, member 1|centaurin, gamma-like family, member 5 24 0.003285 7.508 1 1 +119032 BORCS7 BLOC-1 related complex subunit 7 10 protein-coding C10orf32 UPF0693 protein C10orf32|diaskedin 3 0.0004106 9.108 1 1 +119180 LYZL2 lysozyme like 2 10 protein-coding LYZD2 lysozyme-like protein 2|lysozyme D2|lysozyme-2 36 0.004927 0.1719 1 1 +119369 NUDT9P1 nudix hydrolase 9 pseudogene 1 10 pseudo C10orf98|bA56M3.1 nudix (nucleoside diphosphate linked moiety X)-type motif 9 pseudogene 1 1.943 0 1 +119385 AGAP11 ArfGAP with GTPase domain, ankyrin repeat and PH domain 11 10 protein-coding - arf-GAP with GTPase, ANK repeat and PH domain-containing protein 11|AGAP-11|ankyrin repeat and GTPase domain Arf GTPase activating protein 11 68 0.009307 4.43 1 1 +119391 GSTO2 glutathione S-transferase omega 2 10 protein-coding GSTO 2-2|bA127L20.1 glutathione S-transferase omega-2|GSTO-2|MMA(V) reductase|bA127L20.1 (novel glutathione-S-transferase)|glutathione S-transferase omega 2-2|glutathione-S-transferase-like protein|glutathione-dependent dehydroascorbate reductase|monomethylarsonic acid reductase 17 0.002327 7.064 1 1 +119392 SFR1 SWI5 dependent homologous recombination repair protein 1 10 protein-coding C10orf78|MEI5|MEIR5|bA373N18.1 swi5-dependent recombination DNA repair protein 1 homolog|MEI5 recombination repair protein homolog|SWI5-dependent recombination repair 1|SWI5-dependent recombination repair protein 1|meiosis protein 5 homolog 14 0.001916 7.101 1 1 +119395 CALHM3 calcium homeostasis modulator 3 10 protein-coding FAM26A|bA225H22.7 calcium homeostasis modulator protein 3|family with sequence similarity 26, member A 15 0.002053 1.21 1 1 +119437 CTAGE7P CTAGE family member 7, pseudogene 10 pseudo CTAGE7|CTAGEP|bA500G10.2|rcCTAGE5 CTAGE family pseudogene|CTAGE family, member 5 pseudogene|meningioma expressed antigen 6 (coiled-coil proline-rich) pseudogene 1 0.0001369 1 0 +119467 CLRN3 clarin 3 10 protein-coding TMEM12|USH3AL1 clarin-3|transmembrane protein 12|usher syndrome type-3A-like protein 1 24 0.003285 2.642 1 1 +119504 ANAPC16 anaphase promoting complex subunit 16 10 protein-coding APC16|C10orf104|CENP-27|MSAG|bA570G20.3 anaphase-promoting complex subunit 16|centromere protein 27|cyclosome subunit 16|metabolic syndrome-associated protein 4 0.0005475 10.88 1 1 +119548 PNLIPRP3 pancreatic lipase related protein 3 10 protein-coding - pancreatic lipase-related protein 3|PL-RP3 70 0.009581 0.9161 1 1 +119559 SFXN4 sideroflexin 4 10 protein-coding BCRM1|COXPD18 sideroflexin-4|breast cancer resistance marker 1 25 0.003422 8.825 1 1 +119587 CPXM2 carboxypeptidase X, M14 family member 2 10 protein-coding CPX2|UNQ676 inactive carboxypeptidase-like protein X2|4632435C11Rik|carboxypeptidase Hlo|carboxypeptidase X (M14 family), member 2|carboxypeptidase-like protein X2|cytosolic carboxypeptidase 84 0.0115 7.633 1 1 +119678 OR52E2 olfactory receptor family 52 subfamily E member 2 11 protein-coding - olfactory receptor 52E2|olfactory receptor, family 10, subfamily AC, member 1 pseudogene 54 0.007391 0.074 1 1 +119679 OR52J3 olfactory receptor family 52 subfamily J member 3 11 protein-coding OR11-32 olfactory receptor 52J3|olfactory receptor OR11-32 50 0.006844 0.01126 1 1 +119682 OR51L1 olfactory receptor family 51 subfamily L member 1 11 protein-coding OR11-31 olfactory receptor 51L1|olfactory receptor OR11-31 44 0.006022 0.02018 1 1 +119687 OR51A7 olfactory receptor family 51 subfamily A member 7 11 protein-coding OR11-27 olfactory receptor 51A7|olfactory receptor OR11-27 58 0.007939 0.04282 1 1 +119692 OR51S1 olfactory receptor family 51 subfamily S member 1 11 protein-coding OR11-24 olfactory receptor 51S1|olfactory receptor OR11-24 56 0.007665 0.04973 1 1 +119694 OR51F2 olfactory receptor family 51 subfamily F member 2 11 protein-coding OR11-23 olfactory receptor 51F2|olfactory receptor OR11-23 44 0.006022 0.05047 1 1 +119695 OR52R1 olfactory receptor family 52 subfamily R member 1 (gene/pseudogene) 11 protein-coding OR11-22 olfactory receptor 52R1|olfactory receptor OR11-22|olfactory receptor, family 52, subfamily R, member 1 62 0.008486 0.08878 1 1 +119710 C11orf74 chromosome 11 open reading frame 74 11 protein-coding HEPIS|NWC uncharacterized protein C11orf74 17 0.002327 7.336 1 1 +119749 OR4C46 olfactory receptor family 4 subfamily C member 46 11 protein-coding - olfactory receptor 4C46 80 0.01095 0.007023 1 1 +119750 OR4C2P olfactory receptor family 4 subfamily C member 2 pseudogene 11 pseudo OR4C8P olfactory receptor, family 4, subfamily C, member 8 pseudogene 0 0 1 0 +119764 OR4X2 olfactory receptor family 4 subfamily X member 2 (gene/pseudogene) 11 protein-coding OR11-105 olfactory receptor 4X2|olfactory receptor OR11-105|olfactory receptor, family 4, subfamily X, member 2 38 0.005201 0.0278 1 1 +119765 OR4B1 olfactory receptor family 4 subfamily B member 1 11 protein-coding OR11-106|OST208 olfactory receptor 4B1|olfactory receptor OR11-106 43 0.005886 0.01195 1 1 +119772 OR52M1 olfactory receptor family 52 subfamily M member 1 11 protein-coding OR11-11|OR52M1P|OR52M3P 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 49 0.006707 0.01834 1 1 +119774 OR52K2 olfactory receptor family 52 subfamily K member 2 11 protein-coding OR11-7 olfactory receptor 52K2|olfactory receptor OR11-7 34 0.004654 0.09134 1 1 +120065 OR5P2 olfactory receptor family 5 subfamily P member 2 11 protein-coding JCG3|JCG4 olfactory receptor 5P2|olfactory receptor OR11-93|olfactory receptor-like protein JCG3 35 0.004791 0.05585 1 1 +120066 OR5P3 olfactory receptor family 5 subfamily P member 3 11 protein-coding JCG1 olfactory receptor 5P3|olfactory receptor OR11-94|olfactory receptor-like protein JCG1 29 0.003969 0.09355 1 1 +120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 11 protein-coding GYLTL1B|PP5656 glycosyltransferase-like protein LARGE2|glycosyltransferase-like 1B|like-glycosyltransferase 2|ortholog of mouse glycosyltransferase-like 1B 38 0.005201 7.221 1 1 +120103 SLC36A4 solute carrier family 36 member 4 11 protein-coding PAT4 proton-coupled amino acid transporter 4|solute carrier family 36 (proton/amino acid symporter), member 4 41 0.005612 7.203 1 1 +120114 FAT3 FAT atypical cadherin 3 11 protein-coding CDHF15|CDHR10|hFat3 protocadherin Fat 3|FAT tumor suppressor homolog 3|cadherin family member 15|cadherin-related family member 10 483 0.06611 4.418 1 1 +120126 UBTFL2 upstream binding transcription factor, RNA polymerase I-like 2 (pseudogene) 11 pseudo - - 0 0 1 0 +120146 TRIM64 tripartite motif containing 64 11 protein-coding C11orf28|TRIM64A tripartite motif-containing protein 64 3 0.0004106 0.02779 1 1 +120224 TMEM45B transmembrane protein 45B 11 protein-coding - transmembrane protein 45B 16 0.00219 7.12 1 1 +120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 11 protein-coding - vitamin D 25-hydroxylase|cytochrome P450 2R1|cytochrome P450, family 2, R1|cytochrome P450, family 2, subfamily R, polypeptide 1 26 0.003559 7.589 1 1 +120237 DBX1 developing brain homeobox 1 11 protein-coding - homeobox protein DBX1|developing brain homeobox protein 1 23 0.003148 0.1836 1 1 +120329 1.341 0 1 +120376 COLCA2 colorectal cancer associated 2 11 protein-coding C11orf93|CASC13|LOH11CR1G colorectal cancer-associated protein 2|cancer susceptibility candidate 13|cancer susceptibility candidate protein 13|colorectal cancer associated two 6 0.0008212 5.117 1 1 +120379 PIH1D2 PIH1 domain containing 2 11 protein-coding - PIH1 domain-containing protein 2 22 0.003011 4.552 1 1 +120400 NXPE1 neurexophilin and PC-esterase domain family member 1 11 protein-coding FAM55A NXPE family member 1|family with sequence similarity 55, member A|protein FAM55A 38 0.005201 0.5112 1 1 +120406 NXPE2 neurexophilin and PC-esterase domain family member 2 11 protein-coding FAM55B NXPE family member 2|family with sequence similarity 55, member B|protein FAM55B 33 0.004517 0.8309 1 1 +120425 JAML junction adhesion molecule like 11 protein-coding AMICA|AMICA1|CREA7-1|CREA7-4|Gm638 junctional adhesion molecule-like|adhesion molecule AMICA|adhesion molecule interacting with CXADR antigen 1|adhesion molecule, interacts with CXADR antigen 1|dendritic-cell specific protein CREA7-1|dendritic-cell specific protein CREA7-4 32 0.00438 6.845 1 1 +120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 11 protein-coding DPH4|JJJ3|ZCSL3 dnaJ homolog subfamily C member 24|1700030A21Rik|CSL-type zinc finger-containing protein 3|DPH4 homolog (JJJ3, S. cerevisiae)|DPH4, JJJ3 homolog|DnaJ (Hsp40) homolog, subfamily C, member 24|diphthamide biosynthesis protein 4|zinc finger, CSL domain containing 3|zinc finger, CSL-type containing 3 11 0.001506 8.077 1 1 +120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein 11 protein-coding ARF7EP|C11orf46|dJ299F11.1 ARL14 effector protein|ADP-ribosylation factor-like 14 effector protein|ARF7 effector protein 19 0.002601 8.935 1 1 +120586 OR8I2 olfactory receptor family 8 subfamily I member 2 11 protein-coding OR11-170 olfactory receptor 8I2|olfactory receptor OR11-170 80 0.01095 0.006567 1 1 +120775 OR2D3 olfactory receptor family 2 subfamily D member 3 11 protein-coding OR11-89 olfactory receptor 2D3|olfactory receptor OR11-89 51 0.006981 0.04893 1 1 +120776 OR2D2 olfactory receptor family 2 subfamily D member 2 11 protein-coding OR11-610|OR2D1|hg27 olfactory receptor 2D2|HB2|olfactory receptor 11-610|olfactory receptor 2D1|olfactory receptor OR11-88|olfactory receptor, family 2, subfamily D, member 1 41 0.005612 0.05617 1 1 +120787 OR52W1 olfactory receptor family 52 subfamily W member 1 11 protein-coding OR11-71|OR52W1P olfactory receptor 52W1|olfactory receptor OR11-71|olfactory receptor, family 52, subfamily W, member 1 pseudogene 19 0.002601 0.1379 1 1 +120793 OR56A4 olfactory receptor family 56 subfamily A member 4 11 protein-coding OR11-49 olfactory receptor 56A4|olfactory receptor OR11-49 48 0.00657 0.02884 1 1 +120796 OR56A1 olfactory receptor family 56 subfamily A member 1 11 protein-coding OR11-75 olfactory receptor 56A1|olfactory receptor OR11-75 49 0.006707 0.02851 1 1 +120863 DEPDC4 DEP domain containing 4 12 protein-coding DEP.4 DEP domain-containing protein 4 27 0.003696 3.131 1 1 +120892 LRRK2 leucine rich repeat kinase 2 12 protein-coding AURA17|DARDARIN|PARK8|RIPK7|ROCO2 leucine-rich repeat serine/threonine-protein kinase 2|augmented in rheumatoid arthritis 17 255 0.0349 7.654 1 1 +120935 CCDC38 coiled-coil domain containing 38 12 protein-coding - coiled-coil domain-containing protein 38 44 0.006022 0.3246 1 1 +120939 TMEM52B transmembrane protein 52B 12 protein-coding C12orf59 transmembrane protein 52B 31 0.004243 3.672 1 1 +121006 FAM186A family with sequence similarity 186 member A 12 protein-coding - protein FAM186A 56 0.007665 2.503 1 1 +121053 C12orf45 chromosome 12 open reading frame 45 12 protein-coding - uncharacterized protein C12orf45 22 0.003011 7.485 1 1 +121129 OR2AP1 olfactory receptor family 2 subfamily AP member 1 12 protein-coding OR2AP1P olfactory receptor 2AP1|olfactory receptor OR12-9|olfactory receptor, family 2, subfamily AP, member 1 pseudogene|seven transmembrane helix receptor 0 0 1 0 +121130 OR10P1 olfactory receptor family 10 subfamily P member 1 12 protein-coding OR10P1P|OR10P2P|OR10P3P|OR12-7|OST701 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 30 0.004106 0.03533 1 1 +121214 SDR9C7 short chain dehydrogenase/reductase family 9C, member 7 12 protein-coding RDHS|SDR-O|SDRO short-chain dehydrogenase/reductase family 9C member 7|RDH-S|orphan short-chain dehydrogenase / reductase|orphan short-chain dehydrogenase/reductase|retinol dehydrogenase similar protein 24 0.003285 0.986 1 1 +121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 12 protein-coding LIG3 leucine-rich repeats and immunoglobulin-like domains protein 3|LIG-3 76 0.0104 8.808 1 1 +121256 TMEM132D transmembrane protein 132D 12 protein-coding MOLT|PPP1R153 transmembrane protein 132D|mature OL transmembrane protein|mature oligodendrocytes transmembrane protein|protein phosphatase 1, regulatory subunit 153 232 0.03175 2.178 1 1 +121260 SLC15A4 solute carrier family 15 member 4 12 protein-coding FP12591|PHT1|PTR4 solute carrier family 15 member 4|hPHT1|peptide transporter 4|peptide-histidine transporter 4|peptide/histidine transporter 1|solute carrier family 15 (oligopeptide transporter), member 4 28 0.003832 9.201 1 1 +121268 RHEBL1 Ras homolog enriched in brain like 1 12 protein-coding RHEBL1c 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 11 0.001506 4.417 1 1 +121273 C12orf54 chromosome 12 open reading frame 54 12 protein-coding HSD-29|HSD-30 uncharacterized protein C12orf54 14 0.001916 1.209 1 1 +121274 ZNF641 zinc finger protein 641 12 protein-coding - zinc finger protein 641 23 0.003148 6.943 1 1 +121275 OR10AD1 olfactory receptor family 10 subfamily AD member 1 12 protein-coding OR10AD1P|OR12-1 olfactory receptor 10AD1|olfactory receptor OR12-1|olfactory receptor, family 10, subfamily AD, member 1 pseudogene 18 0.002464 0.6213 1 1 +121278 TPH2 tryptophan hydroxylase 2 12 protein-coding ADHD7|NTPH tryptophan 5-hydroxylase 2|neuronal tryptophan hydroxylase|tryptophan 5-monooxygenase 2 61 0.008349 0.2696 1 1 +121296 LOC121296 transmembrane protein 132B pseudogene 12 pseudo - - 0 0 1 0 +121340 SP7 Sp7 transcription factor 12 protein-coding OI11|OI12|OSX|osterix transcription factor Sp7|zinc finger protein osterix 28 0.003832 1.022 1 1 +121355 GTSF1 gametocyte specific factor 1 12 protein-coding FAM112B gametocyte-specific factor 1|family with sequence similarity 112, member B 20 0.002737 2.471 1 1 +121364 OR10A7 olfactory receptor family 10 subfamily A member 7 12 protein-coding OR12-6 olfactory receptor 10A7|olfactory receptor OR12-6 35 0.004791 0.01094 1 1 +121391 KRT74 keratin 74 12 protein-coding ADWH|HTSS2|HYPT3|K6IRS4|KRT5C|KRT6IRS4 keratin, type II cytoskeletal 74|CK-74|K5C|K74|cytokeratin-74|keratin 5c|keratin 6 irs4|keratin 74, type II|type II inner root sheath-specific keratin-K6irs4|type-II keratin Kb37 45 0.006159 0.7757 1 1 +121441 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 12 protein-coding GCP-WD|TUBGCP7 protein NEDD1|NEDD-1|neural precursor cell expressed developmentally down-regulated protein 1 37 0.005064 8.779 1 1 +121456 SLC9A7P1 solute carrier family 9 member 7 pseudogene 1 12 pseudo - solute carrier family 9 (sodium/hydrogen exchanger), member 7 pseudogene 1|solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 pseudogene 1 49 0.006707 1 0 +121457 IKBIP IKBKB interacting protein 12 protein-coding IKIP inhibitor of nuclear factor kappa-B kinase-interacting protein|I kappa B kinase interacting protein|IKK interacting protein|i kappa-B kinase-interacting protein 45 0.006159 8.581 1 1 +121498 LDHAL6CP lactate dehydrogenase A like 6C, pseudogene 12 pseudo LDH6C lactate dehydrogenase A-like 6B pseudogene 7 0.0009581 1 0 +121504 HIST4H4 histone cluster 4 H4 12 protein-coding H4/p histone H4|histone 4, H4 11 0.001506 3.763 1 1 +121506 ERP27 endoplasmic reticulum protein 27 12 protein-coding C12orf46|PDIA8 endoplasmic reticulum resident protein 27|ER protein 27|endoplasmic reticulum protein 27 kDa|protein disulfide isomerase family A, member 8 21 0.002874 5.811 1 1 +121512 FGD4 FYVE, RhoGEF and PH domain containing 4 12 protein-coding CMT4H|FRABP|ZFYVE6 FYVE, RhoGEF and PH domain-containing protein 4|FGD1 family, member 4|FGD1-related F-actin-binding protein|actin-filament binding protein frabin|zinc finger FYVE domain-containing protein 6 49 0.006707 8.663 1 1 +121536 AEBP2 AE binding protein 2 12 protein-coding - zinc finger protein AEBP2|AE(adipocyte enhancer)-binding protein 2|adipocyte enhancer-binding protein 2 22 0.003011 9.446 1 1 +121549 ASCL4 achaete-scute family bHLH transcription factor 4 12 protein-coding HASH4|bHLHa44 achaete-scute homolog 4|ASH-4|achaete-scute complex homolog 4|achaete-scute complex-like 4|achaete-scute-like protein 4|class A basic helix-loop-helix protein 44|class II bHLH protein ASCL4 17 0.002327 0.7803 1 1 +121551 BTBD11 BTB domain containing 11 12 protein-coding ABTB2B ankyrin repeat and BTB/POZ domain-containing protein BTBD11|ANK-repeat BTB domain containing protein|BTB (POZ) domain containing 11|BTB/POZ domain-containing protein 11 99 0.01355 6.668 1 1 +121599 SPIC Spi-C transcription factor 12 protein-coding SPI-C transcription factor Spi-C|Spi-C transcription factor (Spi-1/PU.1 related) 21 0.002874 0.6056 1 1 +121601 ANO4 anoctamin 4 12 protein-coding TMEM16D anoctamin-4|transmembrane protein 16D 136 0.01861 3.209 1 1 +121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase 12 protein-coding ABH2 DNA oxidative demethylase ALKBH2|2OG-Fe(II) oxy DC1|alkB, alkylation repair homolog 2|alkylated DNA repair protein alkB homolog 2|alpha-ketoglutarate-dependent dioxygenase alkB homolog 2|oxy DC1 17 0.002327 8.295 1 1 +121643 FOXN4 forkhead box N4 12 protein-coding - forkhead box protein N4|forkhead/winged helix transcription factor FOXN4 30 0.004106 1.59 1 1 +121665 SPPL3 signal peptide peptidase like 3 12 protein-coding IMP2|MDHV1887|PRO4332|PSH1|PSL4 signal peptide peptidase-like 3|SPP-like 3|intramembrane protease 2|presenilin homologous protein 1|presenilin-like protein 4 25 0.003422 10.52 1 1 +121727 PEX12P1 peroxisomal biogenesis factor 12 pseudogene 1 13 pseudo - - 1 0.0001369 1 0 +121793 TEX29 testis expressed 29 13 protein-coding C13orf16|bA474D23.1 testis-expressed sequence 29 protein 11 0.001506 1.507 1 1 +121838 LINC00284 long intergenic non-protein coding RNA 284 13 ncRNA NCRNA00284 - 0 0 1.534 1 1 +121952 METTL21EP methyltransferase like 21E, pseudogene 13 pseudo METTL21CP1 methyltransferase like 21C pseudogene 1 8 0.001095 1.147 1 1 +121981 PPIAP26 peptidylprolyl isomerase A pseudogene 26 13 pseudo - peptidylprolyl isomerase A (cyclophilin A) pseudogene 26 1 0.0001369 1 0 +122011 CSNK1A1L casein kinase 1 alpha 1 like 13 protein-coding CK1 casein kinase I isoform alpha-like|CKI-alpha-like|casein kinase I alpha S-like 56 0.007665 1.83 1 1 +122042 RXFP2 relaxin/insulin like family peptide receptor 2 13 protein-coding GPR106|GREAT|INSL3R|LGR8|LGR8.1|RXFPR2 relaxin receptor 2|G protein coupled receptor affecting testicular descent|G-protein coupled receptor 106|leucine-rich repeat-containing G-protein coupled receptor 8|relaxin family peptide receptor 2 70 0.009581 0.1486 1 1 +122046 TEX26 testis expressed 26 13 protein-coding C13orf26 testis-expressed sequence 26 protein 25 0.003422 0.5817 1 1 +122060 SLAIN1 SLAIN motif family member 1 13 protein-coding C13orf32 SLAIN motif-containing protein 1 32 0.00438 6.618 1 1 +122183 PRR20A proline rich 20A 13 protein-coding PRR20 proline-rich protein 20A|proline rich 20|proline-rich protein 20 0.01615 0 1 +122258 SPACA7 sperm acrosome associated 7 13 protein-coding C13orf28 sperm acrosome-associated protein 7|protein SPACA7 13 0.001779 0.009896 1 1 +122402 TDRD9 tudor domain containing 9 14 protein-coding C14orf75|HIG-1|NET54 putative ATP-dependent RNA helicase TDRD9|hypoxia-inducible HIG-1|tudor domain-containing protein 9 61 0.008349 3.387 1 1 +122416 ANKRD9 ankyrin repeat domain 9 14 protein-coding - ankyrin repeat domain-containing protein 9 2 0.0002737 6.822 1 1 +122481 AK7 adenylate kinase 7 14 protein-coding AK 7 adenylate kinase 7|ATP-AMP transphosphorylase 7|putative adenylate kinase 7 60 0.008212 4.34 1 1 +122509 IFI27L1 interferon alpha inducible protein 27 like 1 14 protein-coding FAM14B|ISG12C interferon alpha-inducible protein 27-like protein 1|ISG12(c) protein|family with sequence similarity 14, member B|interferon-stimulated gene 12c protein 15 0.002053 6.891 1 1 +122525 C14orf28 chromosome 14 open reading frame 28 14 protein-coding DRIP-1|DRIP1|c14_5270 uncharacterized protein C14orf28|dopamine receptor interacting protein 1 23 0.003148 6.406 1 1 +122553 TRAPPC6B trafficking protein particle complex 6B 14 protein-coding TPC6 trafficking protein particle complex subunit 6B 10 0.001369 9.236 1 1 +122616 C14orf79 chromosome 14 open reading frame 79 14 protein-coding - uncharacterized protein C14orf79 16 0.00219 7.824 1 1 +122618 PLD4 phospholipase D family member 4 14 protein-coding C14orf175 phospholipase D4|PLD 4|choline phosphatase 4|phosphatidylcholine-hydrolyzing phospholipase D4 28 0.003832 5.813 1 1 +122622 ADSSL1 adenylosuccinate synthase like 1 14 protein-coding MPD5 adenylosuccinate synthetase isozyme 1|AMPSase 1|IMP--aspartate ligase 1|M-type adenylosuccinate synthetase|adSS 1|adenylosuccinate synthetase, basic isozyme|adenylosuccinate synthetase, muscle isozyme 43 0.005886 7.011 1 1 +122651 RNASE11 ribonuclease A family member 11 (inactive) 14 protein-coding C14orf6|HEL-S-84p|RAJ1 probable ribonuclease 11|RNase 11|epididymis secretory sperm binding protein Li 84p|ribonuclease 11|ribonuclease A J1|ribonuclease, RNase A family, 11 (non-active) 22 0.003011 0.1948 1 1 +122664 TPPP2 tubulin polymerization promoting protein family member 2 14 protein-coding C14orf8|CT152|P18|p25beta tubulin polymerization-promoting protein family member 2|TPPP/p18|protein p25-beta 20 0.002737 0.4352 1 1 +122665 RNASE8 ribonuclease A family member 8 14 protein-coding RAE2 ribonuclease 8|RNase 8, placental|ribonuclease, RNase A family, 8 6 0.0008212 0.03299 1 1 +122704 MRPL52 mitochondrial ribosomal protein L52 14 protein-coding - 39S ribosomal protein L52, mitochondrial|L52mt|MRP-L52 5 0.0006844 9.429 1 1 +122706 PSMB11 proteasome subunit beta 11 14 protein-coding BETA5T proteasome subunit beta type-11|proteasome (prosome, macropain) subunit, beta type, 11|proteasome subunit beta 5T|proteasome subunit beta-5t 24 0.003285 0.3628 1 1 +122740 OR4K14 olfactory receptor family 4 subfamily K member 14 14 protein-coding OR14-18|OR14-22 olfactory receptor 4K14|olfactory receptor OR14-18 pseudogene|olfactory receptor OR14-22 42 0.005749 0.01786 1 1 +122742 OR4L1 olfactory receptor family 4 subfamily L member 1 14 protein-coding OR14-28|OR4L2P olfactory receptor 4L1|olfactory receptor 4L2|olfactory receptor OR14-28|olfactory receptor, family 4, subfamily L, member 2 pseudogene 43 0.005886 0.01005 1 1 +122748 OR11H6 olfactory receptor family 11 subfamily H member 6 14 protein-coding - olfactory receptor 11H6|olfactory receptor OR14-35 48 0.00657 0.07275 1 1 +122769 LRR1 leucine rich repeat protein 1 14 protein-coding 4-1BBLRR|LRR-1|PPIL5 leucine-rich repeat protein 1|4-1BB-mediated signaling molecule|LRR-repeat protein 1|cyclophilin-like 5|peptidylprolyl isomerase (cyclophilin)-like 5|peptidylprolyl isomerase-like 5 28 0.003832 7.49 1 1 +122773 KLHDC1 kelch domain containing 1 14 protein-coding MST025 kelch domain-containing protein 1 19 0.002601 5.441 1 1 +122786 FRMD6 FERM domain containing 6 14 protein-coding C14orf31|EX1|Willin|c14_5320 FERM domain-containing protein 6|4.1 ezrin radixin moesin (FERM)-containing protein|expanded homolog 63 0.008623 9.262 1 1 +122809 SOCS4 suppressor of cytokine signaling 4 14 protein-coding SOCS7 suppressor of cytokine signaling 4|SH2 domain containing SOCS box protein|SOCS-4|SOCS-7|suppressor of cytokine signaling 7 24 0.003285 9.048 1 1 +122830 NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit 14 protein-coding C14orf35|MAK3|Mak3p|NAT12|NAT12P N-alpha-acetyltransferase 30|N-acetyltransferase 12 (GCN5-related, putative)|N-acetyltransferase MAK3 homolog|natC catalytic subunit|putative N-acetyltransferase 18 0.002464 9.043 1 1 +122876 GPHB5 glycoprotein hormone beta 5 14 protein-coding B5|GPB5|ZLUT1 glycoprotein hormone beta-5|glycoprotein beta 5|glycoprotein hormone beta subunit|thyrostimulin subunit beta 23 0.003148 0.01156 1 1 +122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 14 protein-coding C14orf148 NADP-dependent oxidoreductase domain-containing protein 1|pyrroline-5-carboxylate reductase-like protein C14orf148 24 0.003285 2.665 1 1 +122953 JDP2 Jun dimerization protein 2 14 protein-coding JUNDM2 jun dimerization protein 2|progesterone receptor co-activator 12 0.001642 8.563 1 1 +122961 ISCA2 iron-sulfur cluster assembly 2 14 protein-coding HBLD1|ISA2|MMDS4|c14_5557 iron-sulfur cluster assembly 2 homolog, mitochondrial|HESB-like domain-containing protein 1 6 0.0008212 8.517 1 1 +122970 ACOT4 acyl-CoA thioesterase 4 14 protein-coding PTE-Ib|PTE1B|PTE2B acyl-coenzyme A thioesterase 4|PTE-2b|peroxisomal acyl coenzyme A thioester hydrolase Ib|peroxisomal acyl-CoA thioesterase 2B|peroxisomal long-chain acyl-CoA thioesterase Ib 28 0.003832 6.184 1 1 +123016 TTC8 tetratricopeptide repeat domain 8 14 protein-coding BBS8|RP51 tetratricopeptide repeat protein 8|Bardet-Biedl syndrome type 8|TPR repeat protein 8 44 0.006022 8.593 1 1 +123036 TC2N tandem C2 domains, nuclear 14 protein-coding C14orf47|C2CD1|MTAC2D1|Tac2-N tandem C2 domains nuclear protein|C2 calcium-dependent domain containing 1|membrane targeting (tandem) C2 domain containing 1|tandem C2 protein in nucleus 35 0.004791 9.001 1 1 +123041 SLC24A4 solute carrier family 24 member 4 14 protein-coding AI2A5|NCKX4|SHEP6|SLC24A2 sodium/potassium/calcium exchanger 4|Na(+)/K(+)/Ca(2+)-exchange protein 4|solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 72 0.009855 2.87 1 1 +123096 SLC25A29 solute carrier family 25 member 29 14 protein-coding C14orf69|CACL|ORNT3 mitochondrial basic amino acids transporter|carnitine-acylcarnitine translocase like|mitochondrial carnitine/acylcarnitine carrier protein CACL|mitochondrial ornithine transporter 3|solute carrier family 25 (mitochondrial carnitine/acylcarnitine carrier), member 29 6 0.0008212 9.575 1 1 +123099 DEGS2 delta 4-desaturase, sphingolipid 2 14 protein-coding C14orf66|DES2|FADS8 sphingolipid delta(4)-desaturase/C4-monooxygenase DES2|degenerative spermatocyte homolog 2, lipid desaturase|dihydroceramide desaturase 2|sphingolipid 4-desaturase|sphingolipid C4-hydroxylase/delta 4-desaturase|sphingolipid C4-monooxygenase|sphingolipid delta 4 desaturase/C-4 hydroxylase|sphingolipid delta(4)-desaturase 2|sphingolipid delta(4)-desaturase/C4-hydroxylase DES2 18 0.002464 6.46 1 1 +123103 KLHL33 kelch like family member 33 14 protein-coding - kelch-like protein 33|kelch-like 33 18 0.002464 0.8322 1 1 +123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component 15 protein-coding RDL RNA polymerase-associated protein LEO1|Leo1 Paf1/RNA polymerase II complex component|Leo1, Paf1/RNA polymerase II complex component, homolog|replicative senescence down-regulated leo1-like protein 42 0.005749 9.134 1 1 +123207 C15orf40 chromosome 15 open reading frame 40 15 protein-coding - UPF0235 protein C15orf40 20 0.002737 7.854 1 1 +123228 SENP8 SUMO/sentrin peptidase family member, NEDD8 specific 15 protein-coding DEN1|NEDP1|PRSC2 sentrin-specific protease 8|NEDD8 specific-protease cysteine 2|NEDD8-specific protease 1|SUMO sentrin specific protease family member 8|SUMO/sentrin specific peptidase family member 8|deneddylase 1|protease, cysteine 2 13 0.001779 5.679 1 1 +123263 MTFMT mitochondrial methionyl-tRNA formyltransferase 15 protein-coding COXPD15|FMT1 methionyl-tRNA formyltransferase, mitochondrial 18 0.002464 7.79 1 1 +123264 SLC51B solute carrier family 51 beta subunit 15 protein-coding OSTB|OSTBETA organic solute transporter subunit beta|OST-beta|organic solute transporter beta subunit|solute carrier family 51 subunit beta 5 0.0006844 1.751 1 1 +123283 TARSL2 threonyl-tRNA synthetase like 2 15 protein-coding - 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 55 0.007528 7.99 1 1 +123346 HIGD2B HIG1 hypoxia inducible domain family member 2B 15 pseudo HIGD2BP HIG1 domain family, member 2B pseudogene|HIG1 hypoxia inducible domain family, member 2B (pseudogene) 8 0.001095 0.4057 1 1 +123355 LRRC28 leucine rich repeat containing 28 15 protein-coding - leucine-rich repeat-containing protein 28 33 0.004517 7.749 1 1 +123591 TMEM266 transmembrane protein 266 15 protein-coding C15orf27|HVRP1 transmembrane protein 266|Hv1 related protein 1|transmembrane protein C15orf27 43 0.005886 4.151 1 1 +123606 NIPA1 non imprinted in Prader-Willi/Angelman syndrome 1 15 protein-coding FSP3|SPG6 magnesium transporter NIPA1|non-imprinted in Prader-Willi/Angelman syndrome region protein 1|spastic paraplegia 6 protein 24 0.003285 9.12 1 1 +123624 AGBL1 ATP/GTP binding protein like 1 15 protein-coding CCP4|FECD8 cytosolic carboxypeptidase 4 132 0.01807 0.5028 1 1 +123688 HYKK hydroxylysine kinase 15 protein-coding AGPHD1 hydroxylysine kinase|5-hydroxy-L-lysine kinase|5-hydroxylysine kinase|aminoglycoside phosphotransferase domain-containing protein 1 19 0.002601 5.131 1 1 +123720 WHAMM WAS protein homolog associated with actin, golgi membranes and microtubules 15 protein-coding WHAMM1|WHDC1 WASP homolog-associated protein with actin, membranes and microtubules|WAS protein homology region 2 domain-containing protein 1|WH2 domain-containing protein 1 31 0.004243 8.341 1 1 +123722 FSD2 fibronectin type III and SPRY domain containing 2 15 protein-coding SPRYD1 fibronectin type III and SPRY domain-containing protein 2|SPRY domain containing 1|SPRY domain-containing protein 1 47 0.006433 0.6726 1 1 +123745 PLA2G4E phospholipase A2 group IVE 15 protein-coding - cytosolic phospholipase A2 epsilon|cPLA2-epsilon 47 0.006433 1.472 1 1 +123775 C16orf46 chromosome 16 open reading frame 46 16 protein-coding - uncharacterized protein C16orf46 30 0.004106 5.516 1 1 +123787 PRSS29P protease, serine 29, pseudogene 16 pseudo ISP2 ISP2-like protein|implantation serine proteinase 2|implantation serine proteinase 2-like protein|putative serine protease 29 9 0.001232 1 0 +123803 NTAN1 N-terminal asparagine amidase 16 protein-coding PNAA|PNAD protein N-terminal asparagine amidohydrolase|protein N-terminal Asn amidase|protein N-terminal asparagine amidase|protein NH2-terminal asparagine deamidase|protein NTN-amidase 21 0.002874 8.868 1 1 +123811 FOPNL FGFR1OP N-terminal like 16 protein-coding C16orf63|FOR20|PHSECRG2 lisH domain-containing protein FOPNL|FOP-related protein of 20 kDa|lisH domain-containing protein C16orf63|pluripotent embryonic stem cell-related protein 17 0.002327 9.564 1 1 +123872 DNAAF1 dynein axonemal assembly factor 1 16 protein-coding CILD13|LRRC50|ODA7|swt dynein assembly factor 1, axonemal|leucine-rich repeat-containing protein 50|outer row dynein assembly 7 homolog|testicular tissue protein Li 110 56 0.007665 3.091 1 1 +123876 ACSM2A acyl-CoA synthetase medium-chain family member 2A 16 protein-coding A-923A4.1|ACSM2 acyl-coenzyme A synthetase ACSM2A, mitochondrial|Homolog of rat kidney-specific (KS)|acyl-CoA synthetase medium-chain family member 2|butyrate--CoA ligase 2A|butyryl-coenzyme A synthetase 2A|middle-chain acyl-CoA synthetase 2A 91 0.01246 1.488 1 1 +123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 16 protein-coding 44M2.4|SCCRO3 DCN1-like protein 3|DCN1, defective in cullin neddylation 1, domain containing 3|DCUN1 domain-containing protein 3|defective in cullin neddylation protein 1-like protein 3|squamous cell carcinoma-related oncogene 3 23 0.003148 7.499 1 1 +123904 NRN1L neuritin 1 like 16 protein-coding UNQ2446 neuritin-like protein|MRCC2446 6 0.0008212 2.232 1 1 +123920 CMTM3 CKLF like MARVEL transmembrane domain containing 3 16 protein-coding BNAS2|CKLFSF3 CKLF-like MARVEL transmembrane domain-containing protein 3|chemokine-like factor superfamily member 3 8 0.001095 9.653 1 1 +123970 C16orf78 chromosome 16 open reading frame 78 16 protein-coding - uncharacterized protein C16orf78 36 0.004927 0.02514 1 1 +124044 SPATA2L spermatogenesis associated 2 like 16 protein-coding C16orf76|tamo spermatogenesis-associated protein 2-like protein|SPATA2-like protein 19 0.002601 8.045 1 1 +124045 SPATA33 spermatogenesis associated 33 16 protein-coding C16orf55 spermatogenesis-associated protein 33 8 0.001095 7.179 1 1 +124056 NOXO1 NADPH oxidase organizer 1 16 protein-coding P41NOX|P41NOXA|P41NOXB|P41NOXC|SH3PXD5|SNX28 NADPH oxidase organizer 1|NADPH oxidase regulatory protein|Nox organizer 1|SH3 and PX domain-containing protein 5|nox-organizing protein 1|regulatory protein P41NOX 16 0.00219 3.591 1 1 +124093 CCDC78 coiled-coil domain containing 78 16 protein-coding C16orf25|CNM4|JFP10|hsCCDC78 coiled-coil domain-containing protein 78 33 0.004517 5.138 1 1 +124149 ANKRD26P1 ankyrin repeat domain 26 pseudogene 1 16 pseudo - - 17 0.002327 0.6129 1 1 +124152 IQCK IQ motif containing K 16 protein-coding - IQ domain-containing protein K 15 0.002053 8.282 1 1 +124220 ZG16B zymogen granule protein 16B 16 protein-coding EECP|HRPE773|JCLN2|PAUF|PRO1567 zymogen granule protein 16 homolog B|endocrine and exocrine protein|jacalin-like lectin domain containing 2|pancreatic adenocarcinoma upregulated factor 19 0.002601 5.116 1 1 +124221 PRSS30P protease, serine, 30 pseudogene 16 pseudo Disp|TMPRSS8|TMPRSS8P protease, serine, 30 homolog, pseudogene|transmembrane protease, serine 8 homolog, pseudogene|transmembrane protease, serine pseudogene 2 0.0002737 1.646 1 1 +124222 PAQR4 progestin and adipoQ receptor family member 4 16 protein-coding - progestin and adipoQ receptor family member 4|progestin and adipoQ receptor family member IV 16 0.00219 9.475 1 1 +124245 ZC3H18 zinc finger CCCH-type containing 18 16 protein-coding NHN1 zinc finger CCCH domain-containing protein 18|conserved nuclear protein NHN1|nuclear protein NHN1 103 0.0141 9.909 1 1 +124274 GPR139 G protein-coupled receptor 139 16 protein-coding GPRg1|PGR3 probable G-protein coupled receptor 139|G protein-coupled receptor PGR3|g(q)-coupled orphan receptor GPRg1 67 0.009171 0.2531 1 1 +124359 CDYL2 chromodomain Y-like 2 16 protein-coding PCCP1 chromodomain Y-like protein 2|CDY-like 2|chromodomain protein, Y-like 2|prostate cancer candidate protein 1, PCCP1 50 0.006844 5.233 1 1 +124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 16 protein-coding - ankyrin repeat and SAM domain-containing protein 3 33 0.004517 8.255 1 1 +124402 UBALD1 UBA like domain containing 1 16 protein-coding FAM100A|PP11303 UBA-like domain-containing protein 1|family with sequence similarity 100, member A|protein FAM100A 4 0.0005475 8.977 1 1 +124404 SEPT12 septin 12 16 protein-coding SPGF10 septin-12|testicular tissue protein Li 168 27 0.003696 0.6197 1 1 +124411 ZNF720 zinc finger protein 720 16 protein-coding - putative protein ZNF720 23 0.003148 8.078 1 1 +124446 TMEM219 transmembrane protein 219 16 protein-coding IGFBP-3R insulin-like growth factor-binding protein 3 receptor|testicular tissue protein Li 203 6 0.0008212 10.97 1 1 +124454 EARS2 glutamyl-tRNA synthetase 2, mitochondrial 16 protein-coding COXPD12|MSE1|gluRS probable glutamate--tRNA ligase, mitochondrial|glutamate tRNA ligase 2, mitochondrial|glutamate--tRNA ligase|probable glutamyl-tRNA synthetase, mitochondrial 30 0.004106 9.374 1 1 +124460 SNX20 sorting nexin 20 16 protein-coding SLIC1 sorting nexin-20|selectin ligand-interactor cytoplasmic 1 32 0.00438 5.135 1 1 +124491 TMEM170A transmembrane protein 170A 16 protein-coding TMEM170 transmembrane protein 170A|transmembrane protein 170 5 0.0006844 8.955 1 1 +124512 METTL23 methyltransferase like 23 17 protein-coding C17orf95|MRT44 methyltransferase-like protein 23 13 0.001779 8.708 1 1 +124535 HSF5 heat shock transcription factor 5 17 protein-coding HSF 5|HSTF 5 heat shock factor protein 5|heat shock transcription factor family member 5 40 0.005475 1.177 1 1 +124538 OR4D2 olfactory receptor family 4 subfamily D member 2 17 protein-coding BC2009|OR17-24 olfactory receptor 4D2|B-lymphocyte membrane protein BC2009|G-protein coupled membrane protein|olfactory receptor OR17-24 44 0.006022 0.01054 1 1 +124540 MSI2 musashi RNA binding protein 2 17 protein-coding MSI2H RNA-binding protein Musashi homolog 2|musashi homolog 2|musashi-2 36 0.004927 8.22 1 1 +124565 SLC38A10 solute carrier family 38 member 10 17 protein-coding PP1744 putative sodium-coupled neutral amino acid transporter 10 65 0.008897 11.54 1 1 +124583 CANT1 calcium activated nucleotidase 1 17 protein-coding DBQD|DBQD1|SCAN-1|SCAN1|SHAPY soluble calcium-activated nucleotidase 1|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 SCAN-1 23 0.003148 10.87 1 1 +124590 USH1G USH1 protein network component sans 17 protein-coding ANKS4A|SANS Usher syndrome type-1G protein|Usher syndrome 1G (autosomal recessive)|scaffold protein containing ankyrin repeats and SAM domain 37 0.005064 2.463 1 1 +124599 CD300LB CD300 molecule like family member b 17 protein-coding CD300b|CLM-7|CLM7|CMRF35-A2|IREM-3|IREM3|TREM-5|TREM5 CMRF35-like molecule 7|CD300 antigen like family member B|immune receptor expressed on myeloid cells 3|leukocyte mono-Ig-like receptor 5|triggering receptor expressed on myeloid cells 5 26 0.003559 3.521 1 1 +124602 KIF19 kinesin family member 19 17 protein-coding KIF19A kinesin-like protein KIF19 98 0.01341 3.393 1 1 +124626 ZPBP2 zona pellucida binding protein 2 17 protein-coding ZPBPL zona pellucida-binding protein 2|ZPBP-like protein 28 0.003832 0.4024 1 1 +124637 CYB5D1 cytochrome b5 domain containing 1 17 protein-coding - cytochrome b5 domain-containing protein 1 12 0.001642 8.715 1 1 +124641 OVCA2 ovarian tumor suppressor candidate 2 17 protein-coding - esterase OVCA2|candidate tumor suppressor in ovarian cancer 2|ovarian cancer gene-2 protein|ovarian cancer-associated gene 2 protein 5 0.0006844 9.128 1 1 +124739 USP43 ubiquitin specific peptidase 43 17 protein-coding - ubiquitin carboxyl-terminal hydrolase 43|deubiquitinating enzyme 43|ubiquitin specific protease 43|ubiquitin thioesterase 43|ubiquitin thiolesterase 43|ubiquitin-specific-processing protease 43 66 0.009034 6.738 1 1 +124751 KRBA2 KRAB-A domain containing 2 17 protein-coding - KRAB-A domain-containing protein 2 21 0.002874 5.574 1 1 +124773 C17orf64 chromosome 17 open reading frame 64 17 protein-coding - uncharacterized protein C17orf64 15 0.002053 0.6995 1 1 +124783 SPATA32 spermatogenesis associated 32 17 protein-coding AEP2|C17orf46|TEX34|VAD1.2 spermatogenesis-associated protein 32|CTD-2020K17.4|acrosome expressed 2|testis expressed 34|testis-expressed sequence 34 protein 19 0.002601 1.562 1 1 +124790 HEXIM2 hexamethylene bisacetamide inducible 2 17 protein-coding L3 protein HEXIM2|MAQ1 paralog|hexamethylene bis-acetamide inducible 2|hexamethylene bis-acetamide-inducible protein 2|hexamethylene-bis-acetamide-inducible transcript 2 12 0.001642 7.117 1 1 +124801 LSM12 LSM12 homolog 17 protein-coding PNAS-135 protein LSM12 homolog 3 0.0004106 9.985 1 1 +124808 CCDC43 coiled-coil domain containing 43 17 protein-coding - coiled-coil domain-containing protein 43 13 0.001779 8.946 1 1 +124817 CNTD1 cyclin N-terminal domain containing 1 17 protein-coding CNTD cyclin N-terminal domain-containing protein 1 17 0.002327 5.053 1 1 +124842 TMEM132E transmembrane protein 132E 17 protein-coding DFNB99 transmembrane protein 132E 112 0.01533 3.78 1 1 +124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 17 protein-coding GASP-1|WFDC20B|WFIKKNRP|hGASP-1 WAP, Kazal, immunoglobulin, Kunitz and NTR domain-containing protein 2|WAP four-disulfide core domain 20B|WAP, FS, Ig, two KU and NTR module related protein|WAP, follistatin, immunoglobulin, kunitz and NTR domain-containing-related protein|WFIKKN-related protein|growth and differentiation factor-associated serum protein 1|multivalent protease inhibitor protein 62 0.008486 1.951 1 1 +124871 FLJ40194 uncharacterized FLJ40194 17 ncRNA - - 1 0.0001369 1 0 +124872 B4GALNT2 beta-1,4-N-acetyl-galactosaminyltransferase 2 17 protein-coding B4GALT|GALGT2 beta-1,4 N-acetylgalactosaminyltransferase 2|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-acetyl-galactosaminyl transferase 2|beta-4-N-acetylgalactosaminyltransferase|sd(a) beta-1,4-GalNAc transferase|sda beta-1,4-GalNAc transferase 53 0.007254 1.892 1 1 +124912 SPACA3 sperm acrosome associated 3 17 protein-coding ALLP17|CT54|LYC3|LYZC|LYZL3|SLLP1 sperm acrosome membrane-associated protein 3|cancer/testis antigen 54|lysozyme C|lysozyme-like acrosomal sperm-specific secretory protein ALLP-17|lysozyme-like protein 3|lysozyme-like sperm-specific secretory protein ALLP17|sperm lysozyme-like protein 1|sperm lyzozyme-like acrosomal protein 1|sperm protein reactive with ASA|sperm protein reactive with antisperm antibodies 25 0.003422 0.4857 1 1 +124923 SGK494 uncharacterized serine/threonine-protein kinase SgK494 17 protein-coding - uncharacterized serine/threonine-protein kinase SgK494|sugen kinase 494 15 0.002053 5.652 1 1 +124925 SEZ6 seizure related 6 homolog 17 protein-coding BSRPC seizure protein 6 homolog 63 0.008623 2.326 1 1 +124930 ANKRD13B ankyrin repeat domain 13B 17 protein-coding - ankyrin repeat domain-containing protein 13B 31 0.004243 7.453 1 1 +124935 SLC43A2 solute carrier family 43 member 2 17 protein-coding LAT4 large neutral amino acids transporter small subunit 4|L-type amino acid transporter 4|solute carrier family 43 (amino acid system L transporter), member 2 31 0.004243 9.415 1 1 +124936 CYB5D2 cytochrome b5 domain containing 2 17 protein-coding - neuferricin|cytochrome b5 domain-containing protein 2 15 0.002053 8.677 1 1 +124944 C17orf49 chromosome 17 open reading frame 49 17 protein-coding BAP18|HEPIS chromatin complexes subunit BAP18|BPTF-associated protein of 18 kDa|MLL1/MLL complex subunit C17orf49|human embryo lung cellular protein interacting with SARS-CoV nsp-10 5 0.0006844 10.1 1 1 +124961 ZFP3 ZFP3 zinc finger protein 17 protein-coding ZNF752 zinc finger protein 3 homolog|zfp-3|zinc finger protein 752|zinc finger protein homologous to Zfp-3 in mouse|zinc finger protein-3 27 0.003696 7.409 1 1 +124975 GGT6 gamma-glutamyltransferase 6 17 protein-coding - gamma-glutamyltransferase 6|gamma-glutamyltransferase 6 homolog|gamma-glutamyltranspeptidase 6|glutathione hydrolase 6 23 0.003148 5.639 1 1 +124976 SPNS2 sphingolipid transporter 2 17 protein-coding - protein spinster homolog 2|SPNS sphingolipid transporter 2|spinster homolog 2 25 0.003422 8.555 1 1 +124989 EFCAB13 EF-hand calcium binding domain 13 17 protein-coding C17orf57 EF-hand calcium-binding domain-containing protein 13|EF-hand domain-containing protein C17orf57 65 0.008897 4.742 1 1 +124995 MRPL10 mitochondrial ribosomal protein L10 17 protein-coding L10MT|MRP-L10|MRP-L8|MRPL8|RPML8 39S ribosomal protein L10, mitochondrial|39S ribosomal protein L8, mitochondrial|L8mt 17 0.002327 9.944 1 1 +124997 WDR81 WD repeat domain 81 17 protein-coding CAMRQ2|PPP1R166|SORF-2 WD repeat-containing protein 81|protein phosphatase 1, regulatory subunit 166 80 0.01095 9.827 1 1 +125058 TBC1D16 TBC1 domain family member 16 17 protein-coding - TBC1 domain family member 16|CTD-2529O21.1 49 0.006707 8.562 1 1 +125061 AFMID arylformamidase 17 protein-coding FKF|KF|KFA kynurenine formamidase|FKF|KFA|KFase|N-formylkynurenine formamidase|probable arylformamidase 30 0.004106 8.834 1 1 +125111 GJD3 gap junction protein delta 3 17 protein-coding CX31.9|Cx30.2|GJA11|GJC1 gap junction delta-3 protein|connexin-31.9|gap junction alpha-11 protein|gap junction chi-1 protein|gap junction protein, delta 3, 31.9kDa 5 0.0006844 5.954 1 1 +125113 KRT222 keratin 222 17 protein-coding KA21|KRT222P keratin-like protein KRT222|keratin 222, type II|keratin-222 pseudogene 34 0.004654 5.588 1 1 +125115 KRT40 keratin 40 17 protein-coding CK-40|K40|KA36 keratin, type I cytoskeletal 40|cytokeratin-40|keratin 40, type I|type I hair keratin KA36 34 0.004654 0.9293 1 1 +125144 LRRC75A-AS1 LRRC75A antisense RNA 1 17 ncRNA C17orf45|C17orf76-AS1|FAM211A-AS1|NCRNA00188|TSAP19 FAM211A antisense RNA 1 39 0.005338 12.62 1 1 +125150 ZSWIM7 zinc finger SWIM-type containing 7 17 protein-coding SWS1 zinc finger SWIM domain-containing protein 7|SWIM domain-containing and Srs2-interacting protein 1 homolog|SWIM-type zinc finger domain-containing protein 7 5 0.0006844 8.065 1 1 +125170 MIEF2 mitochondrial elongation factor 2 17 protein-coding MID49|SMCR7 mitochondrial dynamics protein MID49|Smith-Magenis syndrome chromosomal region candidate gene 7 protein|Smith-Magenis syndrome chromosome region, candidate 7|mitochondrial dynamic protein MID49|mitochondrial dynamic protein of 49 kDa|mitochondrial dynamics protein of 49 kDa 26 0.003559 8.273 1 1 +125206 SLC5A10 solute carrier family 5 member 10 17 protein-coding SGLT-5|SGLT5 sodium/glucose cotransporter 5|Na(+)/glucose cotransporter 5|solute carrier family 5 (sodium/glucose cotransporter), member 10|solute carrier family 5 (sodium/sugar cotransporter), member 10 48 0.00657 2.456 1 1 +125228 FAM210A family with sequence similarity 210 member A 18 protein-coding C18orf19|HsT2329 protein FAM210A|uncharacterized protein C18orf19 17 0.002327 8.479 1 1 +125336 LOXHD1 lipoxygenase homology domains 1 18 protein-coding DFNB77|LH2D1 lipoxygenase homology domain-containing protein 1 76 0.0104 1.835 1 1 +125476 INO80C INO80 complex subunit C 18 protein-coding C18orf37|IES6|hIes6 INO80 complex subunit C|IES6 homolog 12 0.001642 8.088 1 1 +125488 TTC39C tetratricopeptide repeat domain 39C 18 protein-coding C18orf17|HsT2697 tetratricopeptide repeat protein 39C|TPR repeat protein 39C 37 0.005064 8.464 1 1 +125704 FAM69C family with sequence similarity 69 member C 18 protein-coding C18orf51 protein FAM69C 18 0.002464 2.896 1 1 +125875 CLDND2 claudin domain containing 2 19 protein-coding - claudin domain-containing protein 2 5 0.0006844 2.007 1 1 +125893 ZNF816 zinc finger protein 816 19 protein-coding ZNF816A zinc finger protein 816|zinc finger protein 816A 63 0.008623 7.013 1 1 +125919 ZNF543 zinc finger protein 543 19 protein-coding - zinc finger protein 543 63 0.008623 6.751 1 1 +125931 CEACAM20 carcinoembryonic antigen related cell adhesion molecule 20 19 protein-coding UNQ9366 carcinoembryonic antigen-related cell adhesion molecule 20|GPAD9366 60 0.008212 0.5752 1 1 +125950 RAVER1 ribonucleoprotein, PTB binding 1 19 protein-coding - ribonucleoprotein PTB-binding 1|protein raver-1 52 0.007117 10.68 1 1 +125958 OR7D4 olfactory receptor family 7 subfamily D member 4 19 protein-coding OR19-7|OR19-B|OR19B|OR7D4P|hg105 olfactory receptor 7D4|odorant receptor family 7 subfamily D member 4 RT|olfactory receptor OR19-7|olfactory receptor, family 7, subfamily D, member 4 pseudogene 52 0.007117 0.06003 1 1 +125962 OR7G1 olfactory receptor family 7 subfamily G member 1 19 protein-coding OR19-15|OR19-8|OR7G1P olfactory receptor 7G1|olfactory receptor 19-15|olfactory receptor OR19-8 28 0.003832 0.02306 1 1 +125963 OR1M1 olfactory receptor family 1 subfamily M member 1 19 protein-coding OR19-5|OR19-6 olfactory receptor 1M1|olfactory receptor 19-6|olfactory receptor OR19-5 43 0.005886 0.05254 1 1 +125965 COX6B2 cytochrome c oxidase subunit 6B2 19 protein-coding COXVIB2|CT59 cytochrome c oxidase subunit 6B2|COX VIb-2|cancer/testis antigen 59|cytochrome c oxidase subunit VIb polypeptide 2 (testis)|cytochrome c oxidase subunit VIb, testes-specific 3 0.0004106 2.95 1 1 +125972 CALR3 calreticulin 3 19 protein-coding CMH19|CRT2|CT93 calreticulin-3|calreticulin-2|calsperin|cancer/testis antigen 93|testis secretory sperm-binding protein Li 226n 14 0.001916 0.4828 1 1 +125981 ACER1 alkaline ceramidase 1 19 protein-coding ALKCDase1|ASAH3 alkaline ceramidase 1|CTB-180A7.3|N-acylsphingosine amidohydrolase (alkaline ceramidase) 3|N-acylsphingosine amidohydrolase 3|acylsphingosine deacylase 3|alkCDase 1|alkaline CDase 1 21 0.002874 0.8 1 1 +125988 C19orf70 chromosome 19 open reading frame 70 19 protein-coding MIC13|P117|QIL1 MICOS complex subunit MIC13|protein QIL1 11 0.001506 9.695 1 1 +125997 MBD3L2 methyl-CpG binding domain protein 3 like 2 19 protein-coding - methyl-CpG-binding domain protein 3-like 2|CTB-25J19.1|MBD3-like protein 2 0.05081 0 1 +126003 TRAPPC5 trafficking protein particle complex 5 19 protein-coding TRS31 trafficking protein particle complex subunit 5 21 0.002874 9.315 1 1 +126006 PCP2 Purkinje cell protein 2 19 protein-coding GPSM4 Purkinje cell protein 2 homolog|CTD-3214H19.6|Purkinje cell-specific protein 2|Purkinje cell-specific protein L7 11 0.001506 2.62 1 1 +126014 OSCAR osteoclast associated, immunoglobulin-like receptor 19 protein-coding PIGR3|PIgR-3 osteoclast-associated immunoglobulin-like receptor|osteoclast associated receptor OSCAR-S1|osteoclast associated receptor OSCAR-S2|poly-Ig receptor 3|polymeric immunoglobulin receptor 3 20 0.002737 6.065 1 1 +126017 ZNF813 zinc finger protein 813 19 protein-coding - zinc finger protein 813 63 0.008623 5.747 1 1 +126068 ZNF441 zinc finger protein 441 19 protein-coding - zinc finger protein 441 53 0.007254 7.091 1 1 +126069 ZNF491 zinc finger protein 491 19 protein-coding - zinc finger protein 491 42 0.005749 4.745 1 1 +126070 ZNF440 zinc finger protein 440 19 protein-coding - zinc finger protein 440 54 0.007391 7.87 1 1 +126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 19 protein-coding C19orf39|SWS1AP1|ZSWIM7AP1 ATPase SWSAP1|SWS1-associated protein 1|ZSWIM7-associated protein 1|zinc finger, SWIM-type containing 7 associated protein 1 12 0.001642 6.255 1 1 +126075 CCDC159 coiled-coil domain containing 159 19 protein-coding - coiled-coil domain-containing protein 159 17 0.002327 7.568 1 1 +126119 JOSD2 Josephin domain containing 2 19 protein-coding SBBI54 josephin-2|josephin domain-containing protein 2 8 0.001095 8.428 1 1 +126123 IZUMO2 IZUMO family member 2 19 protein-coding C19orf41|PLAL6978|PRO21961|SCRL izumo sperm-egg fusion protein 2 25 0.003422 0.3592 1 1 +126129 CPT1C carnitine palmitoyltransferase 1C 19 protein-coding CATL1|CPT1-B|CPT1P|CPTI-B|CPTIC|SPG73 carnitine O-palmitoyltransferase 1, brain isoform|carnitine O-palmitoyltransferase I, brain isoform|carnitine palmitoyltransferase I related C 67 0.009171 6.267 1 1 +126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 19 protein-coding - aldehyde dehydrogenase family 16 member A1 59 0.008076 9.474 1 1 +126147 NTN5 netrin 5 19 protein-coding - netrin-5|netrin-1-like protein 18 0.002464 2.821 1 1 +126204 NLRP13 NLR family pyrin domain containing 13 19 protein-coding CLR19.7|NALP13|NOD14|PAN13 NACHT, LRR and PYD domains-containing protein 13|NACHT, LRR and PYD 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 127 0.01738 0.1802 1 1 +126205 NLRP8 NLR family pyrin domain containing 8 19 protein-coding CLR19.2|NALP8|NOD16|PAN4 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 145 0.01985 0.3373 1 1 +126206 NLRP5 NLR family pyrin domain containing 5 19 protein-coding CLR19.8|MATER|NALP5|PAN11|PYPAF8 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 158 0.02163 0.4104 1 1 +126208 ZNF787 zinc finger protein 787 19 protein-coding TIP20 zinc finger protein 787|TTF-I-interacting peptide 20|transcription termination factor I interacting peptide 20 45 0.006159 9.274 1 1 +126231 ZNF573 zinc finger protein 573 19 protein-coding - zinc finger protein 573 33 0.004517 4.194 1 1 +126235 RPS4XP21 ribosomal protein S4X pseudogene 21 19 pseudo RPS4P21|RPS4X_10_1649 - 0 0 1 0 +126248 WDR88 WD repeat domain 88 19 protein-coding PQWD WD repeat-containing protein 88|PQQ repeat and WD repeat domain containing|PQQ repeat and WD repeat-containing protein 41 0.005612 2.136 1 1 +126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 19 protein-coding CD28H|IGPR-1|IGPR1 transmembrane and immunoglobulin domain-containing protein 2|CD28 homolog|CD28 homologue|immunoglobulin and proline-rich receptor 1|immunoglobulin-containing and proline-rich receptor 1|transmembrane and immunoglobulin domain-containing protein 2 variant 2|transmembrane and immunoglobulin domain-containing protein 2 variant 3 30 0.004106 2.785 1 1 +126272 EID2B EP300 interacting inhibitor of differentiation 2B 19 protein-coding EID-2B|EID-3 EP300-interacting inhibitor of differentiation 2B|EID-2-like inhibitor of differentiation-3 10 0.001369 5.543 1 1 +126282 TNFAIP8L1 TNF alpha induced protein 8 like 1 19 protein-coding TIPE1 tumor necrosis factor alpha-induced protein 8-like protein 1|TNF alpha-induced protein 8-like protein 1|TNFAIP8-like protein 1|oxidative stress-regulated gene-beta|oxy-beta|tumor necrosis factor, alpha induced protein 8 like 1|tumor necrosis factor, alpha-induced protein 8-like protein 1 7 0.0009581 7.302 1 1 +126295 ZNF57 zinc finger protein 57 19 protein-coding ZNF424 zinc finger protein 57|zinc finger protein 424 36 0.004927 6.649 1 1 +126298 IRGQ immunity related GTPase Q 19 protein-coding FKSG27|IRGQ1 immunity-related GTPase family Q protein|immunity-related GTPase family, Q|immunity-related GTPase family, Q1 38 0.005201 9.573 1 1 +126299 ZNF428 zinc finger protein 428 19 protein-coding C19orf37|Zfp428 zinc finger protein 428|enzyme-like protein PIT13 7 0.0009581 9.366 1 1 +126306 JSRP1 junctional sarcoplasmic reticulum protein 1 19 protein-coding JP-45|JP45 junctional sarcoplasmic reticulum protein 1|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 25 0.003422 3.217 1 1 +126308 MOB3A MOB kinase activator 3A 19 protein-coding MOB-LAK|MOB1C|MOBKL2A|moblak MOB kinase activator 3A|MOB LAK|MOB1, Mps One Binder kinase activator-like 2A|mob1 homolog 2A|mps one binder kinase activator-like 2A 8 0.001095 10.16 1 1 +126321 MFSD12 major facilitator superfamily domain containing 12 19 protein-coding C19orf28|PP3501 major facilitator superfamily domain-containing protein 12 29 0.003969 10.25 1 1 +126326 GIPC3 GIPC PDZ domain containing family member 3 19 protein-coding C19orf64|DFNB15|DFNB72|DFNB95 PDZ domain-containing protein GIPC3 34 0.004654 6.546 1 1 +126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 19 protein-coding B14.7|CI-B14.7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 11, 14.7kDa|NADH-ubiquinone oxidoreductase subunit B14.7|complex I B14.7 subunit 2 0.0002737 10.88 1 1 +126353 MISP mitotic spindle positioning 19 protein-coding C19orf21|MISP1 mitotic interactor and substrate of PLK1|caprice|mitotic interactor and substrate of Plk1|mitotic spindle positioning protein 44 0.006022 7.17 1 1 +126364 LRRC25 leucine rich repeat containing 25 19 protein-coding MAPA leucine-rich repeat-containing protein 25|monocyte and plasmacytoid activated molecule|monocyte and plasmacytoid-activated protein 23 0.003148 6.759 1 1 +126370 OR1I1 olfactory receptor family 1 subfamily I member 1 19 protein-coding OR19-20|OR1I1P|OR1I1Q olfactory receptor 1I1|olfactory receptor 19-20 19 0.002601 0.02391 1 1 +126374 WTIP Wilms tumor 1 interacting protein 19 protein-coding - Wilms tumor protein 1-interacting protein|WT1-interacting protein 20 0.002737 7.302 1 1 +126375 ZNF792 zinc finger protein 792 19 protein-coding - zinc finger protein 792 38 0.005201 6.695 1 1 +126382 NR2C2AP nuclear receptor 2C2 associated protein 19 protein-coding TRA16 nuclear receptor 2C2-associated protein|TR4 orphan receptor associated protein TRA16|TR4 orphan receptor-associated 16 kDa protein|repressor for TR4 transactivation 15 0.002053 8.777 1 1 +126393 HSPB6 heat shock protein family B (small) member 6 19 protein-coding HEL55|Hsp20|PPP1R91 heat shock protein beta-6|epididymis luminal protein 55|heat shock 20 kDa-like protein p20|heat shock protein family B (small) member B6|heat shock protein, alpha-crystallin-related, B6|protein phosphatase 1, regulatory subunit 91 1 0.0001369 7.96 1 1 +126402 CCDC105 coiled-coil domain containing 105 19 protein-coding - coiled-coil domain-containing protein 105 44 0.006022 0.04965 1 1 +126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 19 protein-coding ARCI5|INLNE|LI3 cytochrome P450 4F22|cytochrome P450, family 2, subfamily E, polypeptide 2 homolog|cytochrome P450, family 4, subfamily F, polypeptide 22 35 0.004791 3.225 1 1 +126432 RINL Ras and Rab interactor like 19 protein-coding - ras and Rab interactor-like protein 20 0.002737 7.419 1 1 +126433 FBXO27 F-box protein 27 19 protein-coding FBG5|Fbx27 F-box only protein 27|F-box protein FBG5|F-box/G-domain protein 5 22 0.003011 6.742 1 1 +126520 PLK5 polo like kinase 5 19 protein-coding PLK-5|PLK5P|SgK384ps inactive serine/threonine-protein kinase PLK5|polo-like kinase 5, pseudogene 5 0.0006844 1.158 1 1 +126526 C19orf47 chromosome 19 open reading frame 47 19 protein-coding - uncharacterized protein C19orf47 18 0.002464 8.385 1 1 +126536 LINC00661 long intergenic non-protein coding RNA 661 19 ncRNA - - 10 0.001369 0.2604 1 1 +126541 OR10H4 olfactory receptor family 10 subfamily H member 4 19 protein-coding OR19-28 olfactory receptor 10H4|olfactory receptor OR19-28 40 0.005475 0.009647 1 1 +126549 ANKLE1 ankyrin repeat and LEM domain containing 1 19 protein-coding ANKRD41|LEM3|LEMD6 ankyrin repeat and LEM domain-containing protein 1|LEM domain containing 6|LEM-domain containing 3|ankyrin repeat domain-containing protein 41 84 0.0115 3.883 1 1 +126567 C2CD4C C2 calcium dependent domain containing 4C 19 protein-coding FAM148C|KIAA1957|NLF3 C2 calcium-dependent domain-containing protein 4C|family with sequence similarity 148, member C|nuclear-localized factor 3 9 0.001232 4.666 1 1 +126626 GABPB2 GA binding protein transcription factor beta subunit 2 1 protein-coding GABPB-2 GA-binding protein subunit beta-2|GABP subunit beta-2 19 0.002601 6.587 1 1 +126637 TCHHL1 trichohyalin like 1 1 protein-coding S100A17|THHL1 trichohyalin-like protein 1|S100 calcium-binding protein A17|basalin|intermediate filament-associated protein 97 0.01328 0.415 1 1 +126638 RPTN repetin 1 protein-coding - repetin|intermediate filament-associated protein 84 0.0115 1.019 1 1 +126661 CCDC163 coiled-coil domain containing 163 1 pseudo C1orf231|CCDC163P coiled-coil domain containing 163, pseudogene 9 0.001232 4.127 1 1 +126668 TDRD10 tudor domain containing 10 1 protein-coding - tudor domain-containing protein 10 34 0.004654 3.654 1 1 +126669 SHE Src homology 2 domain containing E 1 protein-coding - SH2 domain-containing adapter protein E 34 0.004654 7.152 1 1 +126695 KDF1 keratinocyte differentiation factor 1 1 protein-coding C1orf172 keratinocyte differentiation factor 1|RP11-344H11.3 34 0.004654 7.031 1 1 +126731 CCSAP centriole, cilia and spindle associated protein 1 protein-coding C1orf96|CSAP centriole, cilia and spindle-associated protein|centriole and spindle-associated protein 20 0.002737 8.384 1 1 +126755 LRRC38 leucine rich repeat containing 38 1 protein-coding - leucine-rich repeat-containing protein 38|BK channel auxiliary gamma subunit LRRC38|BK channel auxilliary gamma subunit LRRC38 16 0.00219 1 0 +126767 AADACL3 arylacetamide deacetylase like 3 1 protein-coding - arylacetamide deacetylase-like 3 36 0.004927 0.2218 1 1 +126789 PUSL1 pseudouridylate synthase-like 1 1 protein-coding - tRNA pseudouridine synthase-like 1|tRNA pseudouridylate synthase-like 1|tRNA-uridine isomerase-like 1 11 0.001506 7.881 1 1 +126792 B3GALT6 beta-1,3-galactosyltransferase 6 1 protein-coding EDSP2|SEMDJL1|beta3GalT6 beta-1,3-galactosyltransferase 6|GAG GalTII|UDP-Gal:betaGal beta 1,3-galactosyltransferase 6|UDP-Gal:betaGal beta 1,3-galactosyltransferase polypeptide 6|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 6|beta-1,3-GalTase 6|beta3Gal-T6|galactosyltransferase II|galactosylxylosylprotein 3-beta-galactosyltransferase 9 0.001232 9.232 1 1 +126820 WDR63 WD repeat domain 63 1 protein-coding DIC3|NYD-SP29 WD repeat-containing protein 63|testicular tissue protein Li 225|testis development protein NYD-SP29 (NYD-SP29) 63 0.008623 2.687 1 1 +126823 KLHDC9 kelch domain containing 9 1 protein-coding KARCA1 kelch domain-containing protein 9|kelch/ankyrin repeat-containing cyclin A1-interacting protein 20 0.002737 6.319 1 1 +126859 AXDND1 axonemal dynein light chain domain containing 1 1 protein-coding C1orf125 axonemal dynein light chain domain-containing protein 1 115 0.01574 1.552 1 1 +126868 MAB21L3 mab-21 like 3 1 protein-coding C1orf161 protein mab-21-like 3 13 0.001779 2.589 1 1 +126917 IFFO2 intermediate filament family orphan 2 1 protein-coding - intermediate filament family orphan 2 7 0.0009581 9.304 1 1 +126961 HIST2H3C histone cluster 2 H3 family member c 1 protein-coding H3|H3.2|H3/M|H3F2|H3FM|H3FN histone H3.2|H3 histone family, member M|H3 histone, family 2|histone 2, H3c|histone H3/m|histone cluster 2, H3c 2.237 0 1 +126969 SLC44A3 solute carrier family 44 member 3 1 protein-coding CTL3 choline transporter-like protein 3 42 0.005749 7.901 1 1 +126987 LOC126987 tight junction protein 3 (zona occludens 3) pseudogene 1 pseudo - - 1 0.0001369 1 0 +127002 ATXN7L2 ataxin 7 like 2 1 protein-coding - ataxin-7-like protein 2|ataxin 7-like 1 53 0.007254 6.84 1 1 +127003 C1orf194 chromosome 1 open reading frame 194 1 protein-coding - uncharacterized protein C1orf194 9 0.001232 1.684 1 1 +127018 LYPLAL1 lysophospholipase like 1 1 protein-coding Q96AV0 lysophospholipase-like protein 1 16 0.00219 8.625 1 1 +127059 OR2M5 olfactory receptor family 2 subfamily M member 5 1 protein-coding OR2M5P olfactory receptor 2M5|olfactory receptor, family 2, subfamily M, member 5 pseudogene 97 0.01328 0.007342 1 1 +127062 OR2M3 olfactory receptor family 2 subfamily M member 3 1 protein-coding OR1-54|OR2M3P|OR2M6|OST003 olfactory receptor 2M3|novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2M6|olfactory receptor OR1-54|olfactory receptor, family 2, subfamily M, member 3 pseudogene|olfactory receptor, family 2, subfamily M, member 6 88 0.01204 0.02434 1 1 +127064 OR2T12 olfactory receptor family 2 subfamily T member 12 1 protein-coding OR1-57 olfactory receptor 2T12|novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor OR1-57 90 0.01232 0.01449 1 1 +127066 OR14C36 olfactory receptor family 14 subfamily C member 36 1 protein-coding OR5BF1 olfactory receptor 14C36|olfactory receptor 5BF1|olfactory receptor OR1-59|olfactory receptor, family 5, subfamily BF, member 1 58 0.007939 0.02371 1 1 +127068 OR2T34 olfactory receptor family 2 subfamily T member 34 1 protein-coding - olfactory receptor 2T34|olfactory receptor OR1-63 54 0.007391 0.01783 1 1 +127069 OR2T10 olfactory receptor family 2 subfamily T member 10 1 protein-coding OR1-64 olfactory receptor 2T10|olfactory receptor OR1-64 47 0.006433 0.1985 1 1 +127074 OR2T4 olfactory receptor family 2 subfamily T member 4 1 protein-coding OR1-60|OR2T4Q olfactory receptor 2T4|olfactory receptor OR1-60 114 0.0156 0.07512 1 1 +127077 OR2T11 olfactory receptor family 2 subfamily T member 11 (gene/pseudogene) 1 protein-coding OR2T11Q olfactory receptor 2T11|olfactory receptor OR1-65|olfactory receptor, family 2, subfamily T, member 11 59 0.008076 0.02819 1 1 +127124 ATP6V1G3 ATPase H+ transporting V1 subunit G3 1 protein-coding ATP6G3|Vma10 V-type proton ATPase subunit G 3|ATPase, H+ transporting, lysosomal (vacuolar proton pump) subunit G3|ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G3|V-ATPase 13 kDa subunit 3|V-ATPase G subunit 3|V-ATPase G3 subunit|V-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 16 0.00219 0.246 1 1 +127247 ASB17 ankyrin repeat and SOCS box containing 17 1 protein-coding Asb-17 ankyrin repeat and SOCS box protein 17 39 0.005338 0.07787 1 1 +127253 TYW3 tRNA-yW synthesizing protein 3 homolog 1 protein-coding C1orf171 tRNA wybutosine-synthesizing protein 3 homolog|tRNA(Phe) 7-((3-amino-3-carboxypropyl)-4-demethylwyosine(37)-N(4))-methyltransferase|tRNA-yW-synthesizing protein 3 30 0.004106 8.772 1 1 +127254 ERICH3 glutamate rich 3 1 protein-coding C1orf173 glutamate-rich protein 3|RP11-653A5.1 264 0.03613 2.885 1 1 +127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 1 protein-coding LRRC44 leucine-rich repeat and IQ domain-containing protein 3|leucine rich repeat containing 44|leucine-rich repeat-containing protein 44 123 0.01684 2.929 1 1 +127262 TPRG1L tumor protein p63 regulated 1 like 1 protein-coding FAM79A|h-mover|mover tumor protein p63-regulated gene 1-like protein|RP11-46F15.3|family with sequence similarity 79, member A|mossy fiber terminal-associated vertebrate-specific presynaptic protein 15 0.002053 10.53 1 1 +127281 FAM213B family with sequence similarity 213 member B 1 protein-coding C1orf93 prostamide/prostaglandin F synthase|prostamide/PG F synthase|prostamide/PGF synthase 8 0.001095 9.818 1 1 +127294 MYOM3 myomesin 3 1 protein-coding - myomesin-3|myomesin family, member 3 107 0.01465 4.389 1 1 +127343 DMBX1 diencephalon/mesencephalon homeobox 1 1 protein-coding MBX|OTX3|PAXB diencephalon/mesencephalon homeobox protein 1|homeoprotein MBX|orthodenticle homolog 3|paired-like homeobox protein DMBX1 47 0.006433 2.491 1 1 +127385 OR10J5 olfactory receptor family 10 subfamily J member 5 1 protein-coding OR1-28 olfactory receptor 10J5|olfactory receptor OR1-28 51 0.006981 0.03221 1 1 +127391 TMCO2 transmembrane and coiled-coil domains 2 1 protein-coding dJ39G22.2 transmembrane and coiled-coil domain-containing protein 2|dJ39G22.2 (novel protein)|testis tissue sperm-binding protein Li 35a 20 0.002737 0.2082 1 1 +127396 ZNF684 zinc finger protein 684 1 protein-coding - zinc finger protein 684|hypothetical protein MGC27466 26 0.003559 5.845 1 1 +127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 1 protein-coding C1orf83 transcription elongation factor A N-terminal and central domain-containing protein 2|transcription elongation factor A (SII) N-terminal and central domain containing 2 16 0.00219 7.353 1 1 +127435 PODN podocan 1 protein-coding PCAN|SLRR5A podocan|podocan proteoglycan 62 0.008486 8.24 1 1 +127495 LRRC39 leucine rich repeat containing 39 1 protein-coding - leucine-rich repeat-containing protein 39|densin hlg 12 0.001642 3.105 1 1 +127534 GJB4 gap junction protein beta 4 1 protein-coding CX30.3|EKV gap junction beta-4 protein|connexin 30.3|gap junction protein, beta 4, 30.3kDa 34 0.004654 3.427 1 1 +127540 HMGB4 high mobility group box 4 1 protein-coding dJ1007G16.5 high mobility group protein B4|HMG2 like 21 0.002874 0.07524 1 1 +127544 RNF19B ring finger protein 19B 1 protein-coding IBRDC3|NKLAM E3 ubiquitin-protein ligase RNF19B|IBR domain-containing protein 3|natural killer lytic-associated molecule 30 0.004106 9.551 1 1 +127550 A3GALT2 alpha 1,3-galactosyltransferase 2 1 protein-coding A3GALT2P|IGB3S|IGBS3S alpha-1,3-galactosyltransferase 2|alpha 1,3-galactosyltransferase 2, pseudogene|iGb3 synthase|isoglobotriaosylceramide synthase 7 0.0009581 1 0 +127579 DCST2 DC-STAMP domain containing 2 1 protein-coding - DC-STAMP domain-containing protein 2 49 0.006707 3.556 1 1 +127602 DNAH14 dynein axonemal heavy chain 14 1 protein-coding C1orf67|Dnahc14|HL-18|HL18 dynein heavy chain 14, axonemal|axonemal beta dynein heavy chain 14|ciliary dynein heavy chain 14|dynein, axonemal, heavy polypeptide 14 122 0.0167 5.706 1 1 +127608 OR2AJ1 olfactory receptor family 2 subfamily AJ member 1 1 pseudo OR2AJ1P|OR2AJ1Q olfactory receptor OR1-52|olfactory receptor, family 2, subfamily AJ, member 1 pseudogene 1 0.0001369 1 0 +127623 OR2B11 olfactory receptor family 2 subfamily B member 11 1 protein-coding - olfactory receptor 2B11|novel 7 transmembrane receptor (rhodopsin family) protein 54 0.007391 0.1711 1 1 +127665 ZNF648 zinc finger protein 648 1 protein-coding - zinc finger protein 648 80 0.01095 1.416 1 1 +127670 TEDDM1 transmembrane epididymal protein 1 1 protein-coding EDDM9|Epdd1|HE9|HEL-S-45e|TMEM45C transmembrane epididymal protein 1|epididymal protein 9|epididymis secretory sperm binding protein Li 45e|human epididymis-specific protein 9|putative membrane protein HE9|transmembrane protein 45C 16 0.00219 0.7727 1 1 +127687 C1orf122 chromosome 1 open reading frame 122 1 protein-coding ALAESM uncharacterized protein C1orf122 7 0.0009581 9.523 1 1 +127700 OSCP1 organic solute carrier partner 1 1 protein-coding C1orf102|NOR1 protein OSCP1|organic solute carrier protein 1|organic solute transport protein 1|oxidored nitro domain containing protein|oxidored-nitro domain-containing protein 1 35 0.004791 7.099 1 1 +127703 C1orf216 chromosome 1 open reading frame 216 1 protein-coding - UPF0500 protein C1orf216 15 0.002053 8.672 1 1 +127707 KLHDC7A kelch domain containing 7A 1 protein-coding - kelch domain-containing protein 7A 74 0.01013 4.896 1 1 +127731 VWA5B1 von Willebrand factor A domain containing 5B1 1 protein-coding - von Willebrand factor A domain-containing protein 5B1 37 0.005064 1.345 1 1 +127733 UBXN10 UBX domain protein 10 1 protein-coding UBXD3 UBX domain-containing protein 10|UBX domain containing 3|UBX domain-containing protein 3 26 0.003559 6.322 1 1 +127795 C1orf87 chromosome 1 open reading frame 87 1 protein-coding CREF uncharacterized protein C1orf87|carcinoma-related EF-hand protein 48 0.00657 0.7994 1 1 +127829 ARL8A ADP ribosylation factor like GTPase 8A 1 protein-coding ARL10B|GIE2 ADP-ribosylation factor-like protein 8A|ADP-ribosylation factor-like 10B|ADP-ribosylation factor-like 8A|novel small G protein indispensable for equal chromosome segregation 2 15 0.002053 10.4 1 1 +127833 SYT2 synaptotagmin 2 1 protein-coding CMS7|MYSPC|SytII synaptotagmin-2|synaptotagmin II 41 0.005612 4.136 1 1 +127841 LINC00628 long intergenic non-protein coding RNA 628 1 ncRNA - - 1.094 0 1 +127845 GOLT1A golgi transport 1A 1 protein-coding CGI-141|GOT1|HMFN1187|YMR292W|hGOT1b vesicle transport protein GOT1A 13 0.001779 5.617 1 1 +127933 UHMK1 U2AF homology motif kinase 1 1 protein-coding KIS|KIST|P-CIP2 serine/threonine-protein kinase Kist|KIS protein kinase|PAM COOH-terminal interactor protein 2|U2AF homology motif (UHM) kinase 1|kinase interacting with leukemia-associated gene (stathmin) 33 0.004517 7.961 1 1 +127943 FCRLB Fc receptor like B 1 protein-coding FCRL2|FCRLM2|FCRLY|FREB-2|FcRY Fc receptor-like B|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 32 0.00438 4.689 1 1 +128025 WDR64 WD repeat domain 64 1 protein-coding - WD repeat-containing protein 64 89 0.01218 0.5737 1 1 +128061 C1orf131 chromosome 1 open reading frame 131 1 protein-coding - uncharacterized protein C1orf131 22 0.003011 8.027 1 1 +128077 LIX1L limb and CNS expressed 1 like 1 protein-coding - LIX1-like protein|Lix1 homolog (chicken) like|Lix1 homolog-like 13 0.001779 9.039 1 1 +128153 SPATA17 spermatogenesis associated 17 1 protein-coding IQCH|MSRG-11|MSRG11 spermatogenesis-associated protein 17|IQ motif containing H|spermatogenesis-related protein 11 58 0.007939 4.175 1 1 +128178 EDARADD EDAR associated death domain 1 protein-coding ECTD11A|ECTD11B|ED3|EDA3 ectodysplasin-A receptor-associated adapter protein|EDAR-associated death domain protein|crinkled homolog|ectodysplasia A receptor associated death domain 19 0.002601 7.053 1 1 +128192 LOC128192 peptidylprolyl isomerase A (cyclophilin A) pseudogene 1 pseudo - - 1 0.0001369 1 0 +128209 KLF17 Kruppel like factor 17 1 protein-coding ZNF393|Zfp393 Krueppel-like factor 17|novel zinc-finger protein|zinc finger protein 393 34 0.004654 1.524 1 1 +128218 TMEM125 transmembrane protein 125 1 protein-coding - transmembrane protein 125 15 0.002053 7.098 1 1 +128229 TSACC TSSK6 activating cochaperone 1 protein-coding C1orf182|SIP|SSTK-IP TSSK6-activating co-chaperone protein|SSTK-interacting protein (SSTK-IP)|TSSK6 activating co-chaperone 11 0.001506 2.307 1 1 +128239 IQGAP3 IQ motif containing GTPase activating protein 3 1 protein-coding - ras GTPase-activating-like protein IQGAP3 110 0.01506 8.258 1 1 +128240 NAXE NAD(P)HX epimerase 1 protein-coding AIBP|APOA1BP|YJEFN1 NAD(P)H-hydrate epimerase|AI-BP|apoA-I binding protein|apolipoprotein A-I-binding protein|yjeF N-terminal domain-containing protein 1|yjeF_N1 23 0.003148 10.97 1 1 +128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 1 protein-coding WGEF rho guanine nucleotide exchange factor 19|Rho guanine nucleotide exchange factor (GEF) 19|ephexin-2|weakly similar to Rho GEF 43 0.005886 8.076 1 1 +128308 MRPL55 mitochondrial ribosomal protein L55 1 protein-coding AAVG5835|L55nt|MRP-L55|PRO19675 39S ribosomal protein L55, mitochondrial|L55mt 14 0.001916 9.309 1 1 +128312 HIST3H2BB histone cluster 3 H2B family member b 1 protein-coding H2Bb histone H2B type 3-B|H2B type 12|histone 3, H2bb|histone cluster 3, H2bb 10 0.001369 1.982 1 1 +128338 DRAM2 DNA damage regulated autophagy modulator 2 1 protein-coding CORD21|PRO180|TMEM77|WWFQ154 DNA damage-regulated autophagy modulator protein 2|RP5-1180E21.1|damage regulated autophagy modulator 2|transmembrane protein 77 12 0.001642 9.655 1 1 +128344 PIFO primary cilia formation 1 protein-coding C1orf88|pitchfork protein pitchfork 16 0.00219 6.048 1 1 +128346 C1orf162 chromosome 1 open reading frame 162 1 protein-coding - transmembrane protein C1orf162 10 0.001369 7.174 1 1 +128360 OR10T2 olfactory receptor family 10 subfamily T member 2 1 protein-coding OR1-3 olfactory receptor 10T2|olfactory receptor OR1-3 42 0.005749 0.04146 1 1 +128366 OR6P1 olfactory receptor family 6 subfamily P member 1 1 protein-coding - olfactory receptor 6P1|olfactory receptor OR1-12|seven transmembrane helix receptor 23 0.003148 0.008085 1 1 +128367 OR10X1 olfactory receptor family 10 subfamily X member 1 (gene/pseudogene) 1 protein-coding OR1-13|OR1-14|OR10X1P olfactory receptor 10X1|olfactory receptor OR1-13 pseudogene|olfactory receptor OR1-14|olfactory receptor, family 10, subfamily X, member 1 pseudogene 65 0.008897 0.005858 1 1 +128368 OR10Z1 olfactory receptor family 10 subfamily Z member 1 1 protein-coding OR1-15 olfactory receptor 10Z1|olfactory receptor OR1-15 77 0.01054 0.006902 1 1 +128370 OR6K4P olfactory receptor family 6 subfamily K member 4 pseudogene 1 pseudo - - 1 0.0001369 1 0 +128371 OR6K6 olfactory receptor family 6 subfamily K member 6 1 protein-coding OR1-21 olfactory receptor 6K6|olfactory receptor OR1-21 62 0.008486 0.01251 1 1 +128372 OR6N1 olfactory receptor family 6 subfamily N member 1 1 protein-coding OR1-22 olfactory receptor 6N1|olfactory receptor OR1-22 71 0.009718 0.01523 1 1 +128387 TATDN3 TatD DNase domain containing 3 1 protein-coding - putative deoxyribonuclease TATDN3 25 0.003422 8.141 1 1 +128408 BHLHE23 basic helix-loop-helix family member e23 20 protein-coding BETA4|BHLHB4|Beta3b|bA305P22.3 class E basic helix-loop-helix protein 23|basic helix-loop-helix domain containing, class B, 4|class B basic helix-loop-helix protein 4 8 0.001095 0.1094 1 1 +128414 NKAIN4 Na+/K+ transporting ATPase interacting 4 20 protein-coding C20orf58|FAM77A|bA261N11.2 sodium/potassium-transporting ATPase subunit beta-1-interacting protein 4|Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 4 12 0.001642 3.78 1 1 +128434 VSTM2L V-set and transmembrane domain containing 2 like 20 protein-coding C20orf102|dJ1118M15.2 V-set and transmembrane domain-containing protein 2-like protein 23 0.003148 6.328 1 1 +128439 SNHG11 small nucleolar RNA host gene 11 20 ncRNA C20orf198|LINC00101|NCRNA00101 long intergenic non-protein coding RNA 101|small nucleolar RNA host gene (non-protein coding) 11|small nucleolar RNA host gene 11 (non-protein coding) 8 0.001095 7.621 1 1 +128486 FITM2 fat storage inducing transmembrane protein 2 20 protein-coding C20orf142|Fit2|dJ881L22.2 fat storage-inducing transmembrane protein 2|fat-inducing protein 2|fat-inducing transcript 2 11 0.001506 5.797 1 1 +128488 WFDC12 WAP four-disulfide core domain 12 20 protein-coding C20orf122|SWAM2|WAP2|dJ211D12.4 WAP four-disulfide core domain protein 12|protease inhibitor WAP2|putative protease inhibitor WAP12|single WAP motif protein 2|whey acidic protein 2 8 0.001095 1.153 1 1 +128497 SPATA25 spermatogenesis associated 25 20 protein-coding C20orf165|TSG23|dJ337O18.8 spermatogenesis-associated protein 25|testis-specific gene 23 protein 14 0.001916 2.889 1 1 +128506 OCSTAMP osteoclast stimulatory transmembrane protein 20 protein-coding C20orf123|OC-STAMP|dJ257E24.3 osteoclast stimulatory transmembrane protein|transmembrane protein C20orf123 17 0.002327 0.4915 1 1 +128553 TSHZ2 teashirt zinc finger homeobox 2 20 protein-coding C20orf17|OVC10-2|TSH2|ZABC2|ZNF218 teashirt homolog 2|cell growth-inhibiting protein 7|ovarian cancer-related protein 10-2|serologically defined colon cancer antigen 33 like|teashirt family zinc finger 2|zinc finger protein 218 148 0.02026 5.64 1 1 +128602 C20orf85 chromosome 20 open reading frame 85 20 protein-coding LLC1|bA196N14.1 uncharacterized protein C20orf85|low in lung cancer 1 22 0.003011 0.9383 1 1 +128611 ZNF831 zinc finger protein 831 20 protein-coding C20orf174|dJ492J12.1 zinc finger protein 831 227 0.03107 4.037 1 1 +128637 TBC1D20 TBC1 domain family member 20 20 protein-coding C20orf140|WARBM4 TBC1 domain family member 20 34 0.004654 10.26 1 1 +128646 SIRPD signal regulatory protein delta 20 protein-coding PTPNS1L2|dJ576H24.4 signal-regulatory protein delta|SIRP-delta|protein tyrosine phosphatase, non-receptor type substrate 1-like 2 27 0.003696 0.536 1 1 +128653 C20orf141 chromosome 20 open reading frame 141 20 protein-coding dJ860F19.4 uncharacterized protein C20orf141 5 0.0006844 0.6084 1 1 +128674 PROKR2 prokineticin receptor 2 20 protein-coding GPR73L1|GPR73b|GPRg2|HH3|KAL3|PKR2|dJ680N4.3 prokineticin receptor 2|G protein-coupled receptor 73-like 1|G-protein coupled receptor I5E|PK-R2 62 0.008486 0.3738 1 1 +128710 SLX4IP SLX4 interacting protein 20 protein-coding C20orf94|bA204H22.1|bA254M13.1|dJ1099D15.3 protein SLX4IP 33 0.004517 4.194 1 1 +128817 CSTL1 cystatin like 1 20 protein-coding CTES1|RCET11|dJ322G13.4 cystatin-like 1 20 0.002737 0.4429 1 1 +128820 CST9LP1 cystatin 9-like pseudogene 1 20 pseudo CTES7C cystatin pseudogene 1 0.0001369 1 0 +128821 CST9L cystatin 9-like 20 protein-coding CTES7B|bA218C14.1 cystatin-9-like|testatin|testicular tissue protein Li 45 22 0.003011 0.2279 1 1 +128822 CST9 cystatin 9 20 protein-coding CLM|CTES7A cystatin-9|cystatin 9 (testatin)|cystatin-like molecule|testatin 9 0.001232 0.6612 1 1 +128826 MIR1-1HG MIR1-1 host gene 20 protein-coding C20orf166|MIR133A2HG|dJ353C17.1 uncharacterized protein MIR1-1HG|MIR1-1 host gene protein|MIR133A2 host|uncharacterized protein C20orf166 16 0.00219 0.2413 1 1 +128853 DUSP15 dual specificity phosphatase 15 20 protein-coding C20orf57|VHY dual specificity protein phosphatase 15|VH1-related member Y|dual specificity phosphatase-like 15|vaccinia virus VH1-related dual-specific protein phosphatase Y 21 0.002874 4.663 1 1 +128854 TSPY26P testis specific protein, Y-linked 26, pseudogene 20 pseudo TSPYL3|bA392M18.1 TSPY-like 3 (pseudogene) 3 0.0004106 4.3 1 1 +128859 BPIFB6 BPI fold containing family B member 6 20 protein-coding BPIL3|LPLUNC6 BPI fold-containing family B member 6|bactericidal/permeability-increasing protein-like 3 53 0.007254 0.09163 1 1 +128861 BPIFA3 BPI fold containing family A member 3 20 protein-coding C20orf71|SPLUNC3 BPI fold-containing family A member 3|short long palate, lung and nasal epithelium carcinoma associated 3 27 0.003696 0.01255 1 1 +128864 C20orf144 chromosome 20 open reading frame 144 20 protein-coding dJ63M2.6 uncharacterized protein C20orf144|bcl-2-like protein from testis|bclt 8 0.001095 0.338 1 1 +128866 CHMP4B charged multivesicular body protein 4B 20 protein-coding C20orf178|CHMP4A|CTPP3|CTRCT31|SNF7|SNF7-2|Shax1|VPS32B|Vps32-2|dJ553F4.4 charged multivesicular body protein 4b|SNF7 homolog associated with Alix 1|Snf7 homologue associated with Alix 1|chromatin modifying protein 4B|chromatin-modifying protein 4b|hSnf7-2|hVps32-2|vacuolar protein-sorting-associated protein 32-2 16 0.00219 11.87 1 1 +128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U 20 protein-coding CDC91L1|GAB1 phosphatidylinositol glycan anchor biosynthesis class U protein|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|protein CDC91-like 1 18 0.002464 9.462 1 1 +128872 HMGB3P1 high mobility group box 3 pseudogene 1 20 pseudo HMG4L|HMGB3L1|dJ18C9.3 high-mobility group box 3-like 1|high-mobility group box pseudogene 1 2 0.0002737 0.1696 1 1 +128876 FAM83C family with sequence similarity 83 member C 20 protein-coding C20orf128|dJ614O4.7 protein FAM83C 70 0.009581 2.25 1 1 +128954 GAB4 GRB2 associated binding protein family member 4 22 protein-coding - GRB2-associated-binding protein 4|GRB2-associated binder 2-like protein|GRB2-associated binder 4|growth factor receptor bound protein 2-associated protein 4 69 0.009444 0.2489 1 1 +128977 C22orf39 chromosome 22 open reading frame 39 22 protein-coding - UPF0545 protein C22orf39 6 0.0008212 8.95 1 1 +128989 TANGO2 transport and golgi organization 2 homolog 22 protein-coding C22orf25|MECRCN transport and Golgi organization protein 2 homolog 9 0.001232 9.024 1 1 +129025 ZNF280A zinc finger protein 280A 22 protein-coding 3'OY11.1|SUHW1|ZNF280|ZNF636 zinc finger protein 280A|suppressor of hairy wing homolog 1|zinc finger protein 280|zinc finger protein 636 62 0.008486 1.047 1 1 +129049 SGSM1 small G protein signaling modulator 1 22 protein-coding RUTBC2 small G protein signaling modulator 1|RUN and TBC1 domain containing 2|RUN and TBC1 domain-containing protein 2|small G protein signaling modulator 1 protein 80 0.01095 5.659 1 1 +129080 EMID1 EMI domain containing 1 22 protein-coding EMI5|EMU1 EMI domain-containing protein 1|emilin and multimerin domain-containing protein 1 27 0.003696 7.183 1 1 +129099 CPSF1P1 cleavage and polyadenylation specific factor 1 pseudogene 1 22 pseudo dJ90G24.5 cleavage and polyadenylation specific factor 1, 160kDa pseudogene 1 1 0.0001369 1 0 +129138 ANKRD54 ankyrin repeat domain 54 22 protein-coding LIAR ankyrin repeat domain-containing protein 54|lyn-interacting ankyrin repeat protein 19 0.002601 8.864 1 1 +129285 PPP1R21 protein phosphatase 1 regulatory subunit 21 2 protein-coding CCDC128|KLRAQ1 protein phosphatase 1 regulatory subunit 21|KLRAQ motif containing 1|KLRAQ motif-containing protein 1|coiled-coil domain containing 128|coiled-coil domain-containing protein 128 54 0.007391 9.167 1 1 +129293 TRABD2A TraB domain containing 2A 2 protein-coding C2orf89|TIKI1 metalloprotease TIKI1|TRAB domain-containing protein 2A|UPF0632 protein C2orf89 34 0.004654 5.205 1 1 +129303 TMEM150A transmembrane protein 150A 2 protein-coding TM6P1|TMEM150 transmembrane protein 150A|fasting-inducible integral membrane protein TM6P1|transmembrane protein 150 10 0.001369 8.56 1 1 +129401 NUP35 nucleoporin 35 2 protein-coding MP-44|MP44|NP44|NUP53 nucleoporin NUP53|mitotic phosphoprotein 44|nuclear pore complex protein Nup53|nucleoporin 35kDa 15 0.002053 8.025 1 1 +129446 XIRP2 xin actin binding repeat containing 2 2 protein-coding CMYA3 xin actin-binding repeat-containing protein 2|beta-xin|cardiomyopathy associated 3|cardiomyopathy-associated protein 3|myomaxin|xeplin|xin repeat protein 2 552 0.07555 0.9396 1 1 +129450 TYW5 tRNA-yW synthesizing protein 5 2 protein-coding C2orf60|hTYW5 tRNA wybutosine-synthesizing protein 5|jmjC domain-containing protein C2orf60|tRNA yW-synthesizing enzyme 5|tRNA(Phe) (7-(3-amino-3-carboxypropyl)wyosine(37)-C(2))-hydroxylase 12 0.001642 7.672 1 1 +129521 NMS neuromedin S 2 protein-coding - neuromedin-S|prepro-NMS 24 0.003285 0.002558 1 1 +129530 LYG1 lysozyme g1 2 protein-coding SALW1939 lysozyme g-like protein 1|lysozyme G-like 1 14 0.001916 3.473 1 1 +129531 MITD1 microtubule interacting and trafficking domain containing 1 2 protein-coding - MIT domain-containing protein 1|MIT, microtubule interacting and transport, domain containing 1 15 0.002053 7.782 1 1 +129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 2 protein-coding FAM6A|PRLMNS|hDIS3L2 DIS3-like exonuclease 2|DIS3 mitotic control homolog-like 2|family with sequence similarity 6, member A 60 0.008212 8.829 1 1 +129607 CMPK2 cytidine/uridine monophosphate kinase 2 2 protein-coding NDK|TMPK2|TYKi|UMP-CMPK2 UMP-CMP kinase 2, mitochondrial|UMP/CMP kinase|cytidine monophosphate (UMP-CMP) kinase 2, mitochondrial|cytidylate kinase 2|mitochondrial UMP-CMP kinase|nucleoside-diphosphate kinase|thymidine monophosphate kinase 2|thymidylate kinase family LPS-inducible member 22 0.003011 7.684 1 1 +129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 2 protein-coding LPAAT|LPCAT4|LPEAT|LPLAT 2|OACT2 lysophospholipid acyltransferase 2|1-acylglycerophosphate O-acyltransferase|1-acylglycerophosphoethanolamine O-acyltransferase|O-acyltransferase (membrane bound) domain containing 2|lyso-PA acyltransferase|lyso-PE acyltransferase|lysophosphatidic acid acyltransferase|lysophosphatidylethanolamine acyltransferase|membrane-bound O-acyltransferase domain-containing protein 2 23 0.003148 8.828 1 1 +129684 CNTNAP5 contactin associated protein like 5 2 protein-coding caspr5 contactin-associated protein-like 5|cell recognition molecule Caspr5 267 0.03655 1.266 1 1 +129685 TAF8 TATA-box binding protein associated factor 8 6 protein-coding II|TAF|TAFII-43|TAFII43|TBN transcription initiation factor TFIID subunit 8|TAF(II)43|TAF8 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 43kDa|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 14 0.001916 8.893 1 1 +129787 TMEM18 transmembrane protein 18 2 protein-coding - transmembrane protein 18 21 0.002874 9.077 1 1 +129790 C7orf13 chromosome 7 open reading frame 13 7 ncRNA MY040 - 1 0.0001369 6.876 1 1 +129804 FBLN7 fibulin 7 2 protein-coding TM14 fibulin-7|FIBL-7 38 0.005201 6.57 1 1 +129807 NEU4 neuraminidase 4 2 protein-coding - sialidase-4|N-acetyl-alpha-neuraminidase 4|neuraminidase 4 (sialidase) 49 0.006707 3.37 1 1 +129831 RBM45 RNA binding motif protein 45 2 protein-coding DRB1|RB-1 RNA-binding protein 45|developmentally regulated RNA-binding protein 1|putative RNA binding protein RB-1 36 0.004927 7.333 1 1 +129852 C2orf73 chromosome 2 open reading frame 73 2 protein-coding - uncharacterized protein C2orf73 19 0.002601 1.498 1 1 +129868 TRIM43 tripartite motif containing 43 2 protein-coding TRIM43A tripartite motif-containing protein 43 27 0.003696 0.2871 1 1 +129880 BBS5 Bardet-Biedl syndrome 5 2 protein-coding - Bardet-Biedl syndrome 5 protein 23 0.003148 7.443 1 1 +129881 CCDC173 coiled-coil domain containing 173 2 protein-coding C2orf77 coiled-coil domain-containing protein 173 36 0.004927 6.163 1 1 +130013 ACMSD aminocarboxymuconate semialdehyde decarboxylase 2 protein-coding - 2-amino-3-carboxymuconate-6-semialdehyde decarboxylase|picolinate carboxylase 23 0.003148 1.759 1 1 +130026 ICA1L islet cell autoantigen 1 like 2 protein-coding ALS2CR14|ALS2CR15 islet cell autoantigen 1-like protein|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,69kDa-like 29 0.003969 6.659 1 1 +130074 FAM168B family with sequence similarity 168 member B 2 protein-coding MANI myelin-associated neurite-outgrowth inhibitor|protein FAM168B 21 0.002874 11.33 1 1 +130075 OR9A4 olfactory receptor family 9 subfamily A member 4 7 protein-coding - olfactory receptor 9A4|olfactory receptor OR7-1 36 0.004927 0.2049 1 1 +130106 CIB4 calcium and integrin binding family member 4 2 protein-coding KIP4 calcium and integrin-binding family member 4 15 0.002053 0.5031 1 1 +130120 REG3G regenerating family member 3 gamma 2 protein-coding LPPM429|PAP IB|PAP-1B|PAP1B|PAPIB|REG III|REG-III|UNQ429 regenerating islet-derived protein 3-gamma|REG-3-gamma|pancreatitis-associated protein 1B|pancreatitis-associated protein IB|reg III-gamma|regenerating gene III|regenerating islet-derived 3 gamma|regenerating islet-derived protein III-gamma 59 0.008076 0.6161 1 1 +130132 RFTN2 raftlin family member 2 2 protein-coding C2orf11|Raftlin-2 raftlin-2|raft-linking protein 2 49 0.006707 5.908 1 1 +130162 CLHC1 clathrin heavy chain linker domain containing 1 2 protein-coding C2orf63 clathrin heavy chain linker domain-containing protein 1 40 0.005475 5.95 1 1 +130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 2 protein-coding PLEKHH1L pleckstrin homology domain-containing family H member 2|pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 121 0.01656 6.789 1 1 +130340 AP1S3 adaptor related protein complex 1 sigma 3 subunit 2 protein-coding PSORS15 AP-1 complex subunit sigma-3|adapter-related protein complex 1 subunit sigma-1C|adaptor protein complex AP-1 sigma-1C subunit|adaptor-related protein complex 1 subunit sigma-1C|clathrin assembly protein complex 1 sigma-1C small chain|golgi adaptor HA1/AP1 adaptin sigma-1C subunit|sigma 1C subunit of AP-1 clathrin 13 0.001779 7.425 1 1 +130355 C2orf76 chromosome 2 open reading frame 76 2 protein-coding AIM29 UPF0538 protein C2orf76 14 0.001916 6.009 1 1 +130367 SGPP2 sphingosine-1-phosphate phosphatase 2 2 protein-coding SPP2|SPPase2 sphingosine-1-phosphate phosphatase 2|sphingosine 1-phosphate phosphohydrolase 2|sphingosine-1-phosphatase 2|sphingosine-1-phosphate phosphotase 2 18 0.002464 6.269 1 1 +130399 ACVR1C activin A receptor type 1C 2 protein-coding ACVRLK7|ALK7 activin receptor type-1C|ACTR-IC|ALK-7|activin A receptor, type IC|activin receptor type IC|activin receptor-like kinase 7 46 0.006296 4.855 1 1 +130497 OSR1 odd-skipped related transciption factor 1 2 protein-coding ODD protein odd-skipped-related 1|odd-skipped homolog|odd-skipped related 1 31 0.004243 5.066 1 1 +130502 TTC32 tetratricopeptide repeat domain 32 2 protein-coding - tetratricopeptide repeat protein 32|TPR repeat protein 32 11 0.001506 6.016 1 1 +130507 UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) 2 protein-coding ZNF650 E3 ubiquitin-protein ligase UBR3|N-recognin-3|ubiquitin-protein ligase E3-alpha-3|ubiquitin-protein ligase E3-alpha-III|zinc finger protein 650 77 0.01054 9.896 1 1 +130535 KCTD18 potassium channel tetramerization domain containing 18 2 protein-coding 6530404F10Rik BTB/POZ domain-containing protein KCTD18|potassium channel tetramerisation domain containing 18 34 0.004654 8.42 1 1 +130540 ALS2CR12 amyotrophic lateral sclerosis 2 chromosome region candidate 12 2 protein-coding - amyotrophic lateral sclerosis 2 chromosomal region candidate gene 12 protein|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 12 24 0.003285 1.789 1 1 +130557 ZNF513 zinc finger protein 513 2 protein-coding HMFT0656|RP58 zinc finger protein 513 55 0.007528 8.765 1 1 +130560 SPATA3 spermatogenesis associated 3 2 protein-coding TSARG1 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 10 0.001369 0.1431 1 1 +130574 LYPD6 LY6/PLAUR domain containing 6 2 protein-coding - ly6/PLAUR domain-containing protein 6 10 0.001369 5.584 1 1 +130576 LYPD6B LY6/PLAUR domain containing 6B 2 protein-coding CT116|LYPD7 ly6/PLAUR domain-containing protein 6B|cancer/testis antigen 116 16 0.00219 5.066 1 1 +130589 GALM galactose mutarotase 2 protein-coding BLOCK25|GLAT|HEL-S-63p|IBD1 aldose 1-epimerase|aldose mutarotase|epididymis secretory sperm binding protein Li 63p|galactomutarotase|galactose enzyme activator|galactose mutarotase (aldose 1-epimerase) 10 0.001369 8.868 1 1 +130612 TMEM198 transmembrane protein 198 2 protein-coding TMEM198A transmembrane protein 198 29 0.003969 6.598 1 1 +130617 ZFAND2B zinc finger AN1-type containing 2B 2 protein-coding AIRAPL AN1-type zinc finger protein 2B|AIRAP-like protein|arsenite-inducible RNA-associated protein-like protein|zinc finger, AN1-type domain 2B 23 0.003148 9.126 1 1 +130733 TMEM178A transmembrane protein 178A 2 protein-coding TMEM178 transmembrane protein 178A|transmembrane protein 178 21 0.002874 5.179 1 1 +130749 CPO carboxypeptidase O 2 protein-coding - carboxypeptidase O|metallocarboxypeptidase C|metallocarboxypeptidase O 34 0.004654 1.294 1 1 +130752 MDH1B malate dehydrogenase 1B 2 protein-coding RP11-95H11 putative malate dehydrogenase 1B|malate dehydrogenase 1B, NAD (soluble) 50 0.006844 4.248 1 1 +130813 C2orf50 chromosome 2 open reading frame 50 2 protein-coding - uncharacterized protein C2orf50 4 0.0005475 2.342 1 1 +130814 PQLC3 PQ loop repeat containing 3 2 protein-coding C2orf22 PQ-loop repeat-containing protein 3 15 0.002053 8.701 1 1 +130827 TMEM182 transmembrane protein 182 2 protein-coding - transmembrane protein 182 19 0.002601 6.59 1 1 +130872 AHSA2 AHA1, activator of heat shock 90kDa protein ATPase homolog 2 (yeast) 2 protein-coding Hch1 activator of 90 kDa heat shock protein ATPase homolog 2 7 0.0009581 8.514 1 1 +130888 FBXO36 F-box protein 36 2 protein-coding Fbx36 F-box only protein 36 9 0.001232 6.563 1 1 +130916 MTERF4 mitochondrial transcription termination factor 4 2 protein-coding MTERFD2 transcription termination factor 4, mitochondrial|MTERF domain-containing protein 2 33 0.004517 8.31 1 1 +130940 CCDC148 coiled-coil domain containing 148 2 protein-coding - coiled-coil domain-containing protein 148 42 0.005749 3.435 1 1 +130951 M1AP meiosis 1 associated protein 2 protein-coding C2orf65|D6Mm5e|SPATA37 meiosis 1 arrest protein|meiosis 1 arresting protein|spermatogenesis associated 37 45 0.006159 3.794 1 1 +131034 CPNE4 copine 4 3 protein-coding COPN4|CPN4 copine-4|copine 8|copine IV 72 0.009855 3.11 1 1 +131054 LOC131054 ralA binding protein 1 pseudogene 3 pseudo - - 1 0.0001369 1 0 +131076 CCDC58 coiled-coil domain containing 58 3 protein-coding - coiled-coil domain-containing protein 58 13 0.001779 7.737 1 1 +131096 KCNH8 potassium voltage-gated channel subfamily H member 8 3 protein-coding ELK|ELK1|Kv12.1|elk3 potassium voltage-gated channel subfamily H member 8|ELK channel 3|ether-a-go-go-like potassium channel 1|ether-a-go-go-like potassium channel 3|hElk1|potassium channel, voltage gated eag related subfamily H, member 8|potassium voltage-gated channel, subfamily H (eag-related), member 8|voltage-gated potassium channel subunit Kv12.1 152 0.0208 3.651 1 1 +131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 3 protein-coding PAM18|TIM14|TIMM14 mitochondrial import inner membrane translocase subunit TIM14|DnaJ (Hsp40) homolog, subfamily C, member 19|DnaJ-like protein subfamily C member 19|homolog of yeast TIM14 11 0.001506 8.902 1 1 +131149 OTOL1 otolin 1 3 protein-coding C1QTNF15 otolin-1|C1q and tumor necrosis factor related protein 15|otolin 1 homolog 52 0.007117 0.1186 1 1 +131177 FAM3D family with sequence similarity 3 member D 3 protein-coding EF7|OIT1 protein FAM3D|cytokine-like protein EF-7 27 0.003696 4.022 1 1 +131368 ZPLD1 zona pellucida like domain containing 1 3 protein-coding - zona pellucida-like domain-containing protein 1|ZP domain-containing protein 1 54 0.007391 1.841 1 1 +131375 LYZL4 lysozyme like 4 3 protein-coding LYC4|LYZA lysozyme-like protein 4|lysozyme A|lysozyme-4 11 0.001506 0.157 1 1 +131377 KLHL40 kelch like family member 40 3 protein-coding KBTBD5|NEM8|SRYP|SYRP kelch-like protein 40|kelch repeat and BTB (POZ) domain containing 5|kelch repeat and BTB domain-containing protein 5|nemaline myopathy type 8|sarcosynapsin 41 0.005612 0.5138 1 1 +131405 TRIM71 tripartite motif containing 71 3 protein-coding LIN-41|LIN41 E3 ubiquitin-protein ligase TRIM71|abnormal cell LINeage LIN-41|homolog of C. elegans Lin-41|protein lin-41 homolog|tripartite motif containing 71, E3 ubiquitin protein ligase|tripartite motif-containing protein 71 69 0.009444 0.905 1 1 +131408 FAM131A family with sequence similarity 131 member A 3 protein-coding C3orf40|FLAT715|PRO1378 protein FAM131A 27 0.003696 8.58 1 1 +131450 CD200R1 CD200 receptor 1 3 protein-coding CD200R|HCRTR2|MOX2R|OX2R cell surface glycoprotein CD200 receptor 1|CD200 cell surface glycoprotein receptor|MOX2 receptor|cell surface glycoprotein OX2 receptor 1|cell surface glycoprotein receptor CD200 44 0.006022 3.764 1 1 +131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 3 protein-coding MIA40|TIMM40 mitochondrial intermembrane space import and assembly protein 40|coiled-coil-helix-coiled-coil-helix domain-containing protein 4|mitochondrial intermembrane space import and assembly 40 homolog|translocase of inner mitochondrial membrane 40 homolog 9 0.001232 8.156 1 1 +131540 ZDHHC19 zinc finger DHHC-type containing 19 3 protein-coding DHHC19 probable palmitoyltransferase ZDHHC19|DHHC-19|zinc finger DHHC domain-containing protein 19|zinc finger, DHHC domain containing 19 20 0.002737 1.523 1 1 +131544 CRYBG3 crystallin beta-gamma domain containing 3 3 protein-coding DKFZp667G2110|vlAKAP very large A-kinase anchor protein|beta-gamma crystallin domain containing 3|beta/gamma crystallin domain-containing protein 3 77 0.01054 8.01 1 1 +131566 DCBLD2 discoidin, CUB and LCCL domain containing 2 3 protein-coding CLCP1|ESDN discoidin, CUB and LCCL domain-containing protein 2|1700055P21Rik|CUB, LCCL and coagulation factor V/VIII-homology domains protein 1|coagulation factor V/VIII-homology domains protein 1|endothelial and smooth muscle cell-derived neuropilin-like protein 55 0.007528 9.798 1 1 +131578 LRRC15 leucine rich repeat containing 15 3 protein-coding LIB leucine-rich repeat-containing protein 15|hLib|leucine-rich repeat protein induced by beta amyloid|leucine-rich repeat protein induced by beta-amyloid homolog 57 0.007802 6.09 1 1 +131583 FAM43A family with sequence similarity 43 member A 3 protein-coding - protein FAM43A 17 0.002327 8.08 1 1 +131601 TPRA1 transmembrane protein adipocyte associated 1 3 protein-coding GPR175|TMEM227|TPRA40 transmembrane protein adipocyte-associated 1|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 asscociated 1 17 0.002327 9.645 1 1 +131616 TMEM42 transmembrane protein 42 3 protein-coding - transmembrane protein 42 3 0.0004106 7.778 1 1 +131669 UROC1 urocanate hydratase 1 3 protein-coding HMFN0320|UROCD urocanate hydratase|imidazolonepropionate hydrolase|urocanase 1|urocanase domain containing 1 69 0.009444 1.197 1 1 +131831 ERICH6 glutamate rich 6 3 protein-coding C3orf44|ERICH6A|FAM194A glutamate-rich protein 6|family with sequence similarity 194, member A|glutamate-rich 6A|protein FAM194A 70 0.009581 1.022 1 1 +131870 NUDT16 nudix hydrolase 16 3 protein-coding - U8 snoRNA-decapping enzyme|IDP phosphatase|IDPase|U8 snoRNA-binding protein H29K|inosine diphosphate phosphatase|m7GpppN-mRNA hydrolase|nucleoside diphosphate-linked moiety X motif 16|nudix (nucleoside diphosphate linked moiety X)-type motif 16|nudix motif 16|testicular tissue protein Li 129 16 0.00219 9.457 1 1 +131873 COL6A6 collagen type VI alpha 6 chain 3 protein-coding - collagen alpha-6(VI) chain|collagen, type VI, alpha 6 247 0.03381 3.039 1 1 +131890 GRK7 G protein-coupled receptor kinase 7 3 protein-coding GPRK7 rhodopsin kinase|g protein-coupled receptor kinase GRK7 45 0.006159 0.8732 1 1 +131909 FAM172BP family with sequence similarity 172 member B, pseudogene 3 pseudo FAM172B - 1 0.0001369 1 0 +131920 TMEM207 transmembrane protein 207 3 protein-coding UNQ846 transmembrane protein 207|SRSR846 19 0.002601 0.1649 1 1 +131965 METTL6 methyltransferase like 6 3 protein-coding - methyltransferase-like protein 6 21 0.002874 7.963 1 1 +132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog 3 protein-coding C3orf31|RAM41|TAM41 phosphatidate cytidylyltransferase, mitochondrial|CDP-DAG synthase|CDP-diacylglycerol synthase|MMP37-like protein, mitochondrial|TAM41, mitochondrial translocator assembly and maintenance protein, homolog|mitochondrial translocator assembly and maintenance protein 41 homolog 15 0.002053 7.178 1 1 +132014 IL17RE interleukin 17 receptor E 3 protein-coding - interleukin-17 receptor E|IL-17 receptor E 33 0.004517 7.436 1 1 +132112 RTP1 receptor transporter protein 1 3 protein-coding Z3CXXC1 receptor-transporting protein 1|3CxxC-type zinc finger protein 1|receptor (chemosensory) transporter protein 1|zinc finger, 3CxxC-type 1 32 0.00438 0.7428 1 1 +132141 IQCF1 IQ motif containing F1 3 protein-coding - IQ domain-containing protein F1 22 0.003011 0.4152 1 1 +132158 GLYCTK glycerate kinase 3 protein-coding HBEBP2|HBEBP4|HBeAgBP4A glycerate kinase|HBeAg binding protein 4|HBeAg-binding protein 2 20 0.002737 7.148 1 1 +132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M 3 protein-coding PP2C-eta|PP2CE|PP2Ceta protein phosphatase 1M|protein phosphatase 1M (PP2C domain containing)|protein phosphatase 2C eta-2|protein phosphatase 2C isoform eta 13 0.001779 8.637 1 1 +132200 C3orf49 chromosome 3 open reading frame 49 3 ncRNA - - 4 0.0005475 0.4245 1 1 +132203 SNTN sentan, cilia apical structure protein 3 protein-coding S100A1L|S100AL|sentan sentan|S100A-like protein 13 0.001779 1.388 1 1 +132204 SYNPR synaptoporin 3 protein-coding SPO synaptoporin 21 0.002874 1.541 1 1 +132228 LSMEM2 leucine rich single-pass membrane protein 2 3 protein-coding C3orf45 leucine-rich single-pass membrane protein 2 8 0.001095 1.62 1 1 +132241 RPL32P3 ribosomal protein L32 pseudogene 3 3 pseudo - - 18 0.002464 6.905 1 1 +132243 H1FOO H1 histone family member O, oocyte specific 3 protein-coding H1.8|H1oo|osH1 histone H1oo|oocyte-specific histone H1|oocyte-specific linker histone H1 26 0.003559 0.06122 1 1 +132299 OCIAD2 OCIA domain containing 2 4 protein-coding - OCIA domain-containing protein 2|ovarian carcinoma immunoreactive antigen-like protein 20 0.002737 9.748 1 1 +132320 SCLT1 sodium channel and clathrin linker 1 4 protein-coding CAP-1A|CAP1A sodium channel and clathrin linker 1|sodium channel-associated protein 1 65 0.008897 7.382 1 1 +132321 C4orf33 chromosome 4 open reading frame 33 4 protein-coding - UPF0462 protein C4orf33 14 0.001916 7.51 1 1 +132332 TMEM155 transmembrane protein 155 4 protein-coding - protein TMEM155 16 0.00219 2.4 1 1 +132391 KRT18P21 keratin 18 pseudogene 21 4 pseudo - - 1 0.0001369 1 0 +132430 PABPC4L poly(A) binding protein cytoplasmic 4 like 4 protein-coding - polyadenylate-binding protein 4-like|PABP-4-like 35 0.004791 4.958 1 1 +132612 ADAD1 adenosine deaminase domain containing 1 4 protein-coding Tenr adenosine deaminase domain-containing protein 1|adenosine deaminase domain containing 1 (testis-specific)|testis nuclear RNA-binding protein|testis tissue sperm-binding protein Li 92mP 75 0.01027 0.1093 1 1 +132625 ZFP42 ZFP42 zinc finger protein 4 protein-coding REX-1|REX1|ZNF754|zfp-42 zinc finger protein 42 homolog|REX1 transcription factor|reduced expression protein 1|zinc finger protein 754 74 0.01013 1.029 1 1 +132660 LIN54 lin-54 DREAM MuvB core complex component 4 protein-coding CXCDC1|JC8.6|MIP120|TCX1 protein lin-54 homolog|CXC domain-containing protein 1|lin-54 homolog 39 0.005338 8.445 1 1 +132671 SPATA18 spermatogenesis associated 18 4 protein-coding Mieap|SPETEX1 mitochondria-eating protein|spermatogenesis associated 18 homolog|testis tissue sperm-binding protein Li 71n 65 0.008897 6.645 1 1 +132720 C4orf32 chromosome 4 open reading frame 32 4 protein-coding - uncharacterized protein C4orf32 8 0.001095 7.727 1 1 +132724 TMPRSS11B transmembrane protease, serine 11B 4 protein-coding - transmembrane protease serine 11B|airway trypsin-like protease 5 42 0.005749 0.5952 1 1 +132789 GNPDA2 glucosamine-6-phosphate deaminase 2 4 protein-coding GNP2|SB52 glucosamine-6-phosphate isomerase 2|glcN6P deaminase 2|glucosamine-6-phosphate isomerase SB52 21 0.002874 8.251 1 1 +132851 SPATA4 spermatogenesis associated 4 4 protein-coding SPEF1B|TSARG2 spermatogenesis-associated protein 4|testis and spermatogenesis cell related protein 2|testis spermatocyte apoptosis-related gene 2 protein 30 0.004106 1.614 1 1 +132864 CPEB2 cytoplasmic polyadenylation element binding protein 2 4 protein-coding CPE-BP2|CPEB-2|hCPEB-2 cytoplasmic polyadenylation element-binding protein 2|CPE-binding protein 2 45 0.006159 8.935 1 1 +132884 EVC2 EvC ciliary complex subunit 2 4 protein-coding LBN|WAD limbin|Ellis van Creveld syndrome 2|ellis-van Creveld syndrome protein 2 144 0.01971 6.088 1 1 +132946 ARL9 ADP ribosylation factor like GTPase 9 4 protein-coding - ADP-ribosylation factor-like protein 9|ADP-ribosylation factor-like 9 12 0.001642 2.778 1 1 +132949 AASDH aminoadipate-semialdehyde dehydrogenase 4 protein-coding ACSF4|LYS2|NRPS1098|NRPS998 acyl-CoA synthetase family member 4|2-aminoadipic 6-semialdehyde dehydrogenase|non-ribosomal peptide synthetase 1098|non-ribosomal peptide synthetase 998 87 0.01191 7.863 1 1 +132954 PDCL2 phosducin like 2 4 protein-coding GCPHLP phosducin-like protein 2 16 0.00219 0.3999 1 1 +132989 C4orf36 chromosome 4 open reading frame 36 4 protein-coding - uncharacterized protein C4orf36 13 0.001779 2.785 1 1 +133015 PACRGL PARK2 coregulated like 4 protein-coding C4orf28 PACRG-like protein|PARK2 co-regulated like 25 0.003422 7.499 1 1 +133022 TRAM1L1 translocation associated membrane protein 1-like 1 4 protein-coding - translocating chain-associated membrane protein 1-like 1 63 0.008623 5.575 1 1 +133060 OTOP1 otopetrin 1 4 protein-coding - otopetrin-1 101 0.01382 0.2196 1 1 +133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 4 protein-coding NPP6 ectonucleotide pyrophosphatase/phosphodiesterase family member 6|B830047L21Rik|E-NPP 6|GPC-Cpde|NPP-6|choline-specific glycerophosphodiester phosphodiesterase|glycerophosphocholine cholinephosphodiesterase 40 0.005475 3.264 1 1 +133308 SLC9B2 solute carrier family 9 member B2 4 protein-coding NHA2|NHE10|NHEDC2 mitochondrial sodium/hydrogen exchanger 9B2|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 NHA2|sodium/hydrogen exchanger-like domain-containing protein 2|solute carrier family 9 subfamily B member 2|solute carrier family 9, subfamily B (NHA2, cation proton antiporter 2), member 2|solute carrier family 9, subfamily B (cation proton antiporter 2), member 2 35 0.004791 7.107 1 1 +133383 SETD9 SET domain containing 9 5 protein-coding C5orf35 SET domain-containing protein 9 15 0.002053 6.5 1 1 +133396 IL31RA interleukin 31 receptor A 5 protein-coding CRL|CRL3|GLM-R|GLMR|GPL|IL-31RA|PLCA2|PRO21384|hGLM-R interleukin-31 receptor subunit alpha|IL-31 receptor subunit alpha|IL-31R subunit alpha|class I cytokine receptor|cytokine receptor-like 3|gp130-like monocyte receptor|soluble type I cytokine receptor CRL3|zcytoR17 65 0.008897 1.898 1 1 +133418 EMB embigin 5 protein-coding GP70 embigin|embigin homolog 28 0.003832 8.912 1 1 +133482 SLCO6A1 solute carrier organic anion transporter family member 6A1 5 protein-coding CT48|GST|OATP-I|OATP6A1|OATPY solute carrier organic anion transporter family member 6A1|cancer/testis antigen 48|gonad-specific transporter|organic anion-transporting polypeptide I|solute carrier family 21 member 19|testicular tissue protein Li 174|testis-specific organic anion transporter 107 0.01465 0.5613 1 1 +133491 C5orf47 chromosome 5 open reading frame 47 5 protein-coding - uncharacterized protein C5orf47 7 0.0009581 0.8094 1 1 +133522 PPARGC1B PPARG coactivator 1 beta 5 protein-coding ERRL1|PERC|PGC-1(beta)|PGC1B peroxisome proliferator-activated receptor gamma coactivator 1-beta|PGC-1-related estrogen receptor alpha coactivator|PPAR-gamma coactivator 1-beta|PPARGC-1-beta|PPARgamma coactivator 1 beta|peroxisome proliferator-activated receptor gamma, coactivator 1 beta 76 0.0104 4.611 1 1 +133558 MROH2B maestro heat like repeat family member 2B 5 protein-coding HEATR7B2 maestro heat-like repeat-containing protein family member 2B|HEAT repeat family member 7B2|HEAT repeat family member B2|HEAT repeat-containing protein 7B2 240 0.03285 0.2271 1 1 +133584 EGFLAM EGF like, fibronectin type III and laminin G domains 5 protein-coding AGRINL|AGRNL|PIKA pikachurin|EGF-like, fibronectin type-III and laminin G-like domain-containing protein|agrin-like protein 144 0.01971 6.898 1 1 +133619 PRRC1 proline rich coiled-coil 1 5 protein-coding - protein PRRC1|proline-rich and coiled-coil-containing protein 1 26 0.003559 10.57 1 1 +133686 NADK2 NAD kinase 2, mitochondrial 5 protein-coding C5orf33|DECRD|MNADK|NADKD1 NAD kinase 2, mitochondrial|NAD kinase domain-containing protein 1, mitochondrial 22 0.003011 9.492 1 1 +133688 UGT3A1 UDP glycosyltransferase family 3 member A1 5 protein-coding - UDP-glucuronosyltransferase 3A1|UDP glycosyltransferase 3 family, polypeptide A1|UDPGT 3A1 76 0.0104 1.361 1 1 +133690 CAPSL calcyphosine like 5 protein-coding - calcyphosin-like protein 32 0.00438 1.745 1 1 +133746 JMY junction mediating and regulatory protein, p53 cofactor 5 protein-coding WHAMM2|WHDC1L3 junction-mediating and -regulatory protein|WAS protein homology region 2 domain containing 1-like 3 43 0.005886 9.185 1 1 +133874 C5orf58 chromosome 5 open reading frame 58 5 protein-coding - putative uncharacterized protein C5orf58 10 0.001369 1.896 1 1 +133923 ZNF474 zinc finger protein 474 5 protein-coding - zinc finger protein 474|4933409D10Rik|TSZFP|testis-specific zinc finger protein 34 0.004654 2.627 1 1 +133957 CCDC127 coiled-coil domain containing 127 5 protein-coding - coiled-coil domain-containing protein 127 13 0.001779 8.564 1 1 +134083 OR2Y1 olfactory receptor family 2 subfamily Y member 1 5 protein-coding OR5-2 olfactory receptor 2Y1|olfactory receptor OR5-2 21 0.002874 0.0152 1 1 +134111 UBE2QL1 ubiquitin conjugating enzyme E2 Q family like 1 5 protein-coding - ubiquitin-conjugating enzyme E2Q-like protein 1|E2Q-like ubiquitin-conjugating enzyme 1|ubiquitin-conjugating enzyme E2Q family-like 1 3 0.0004106 5.755 1 1 +134121 C5orf49 chromosome 5 open reading frame 49 5 protein-coding - uncharacterized protein C5orf49 11 0.001506 3.82 1 1 +134145 FAM173B family with sequence similarity 173 member B 5 protein-coding JS-2 protein FAM173B 27 0.003696 7.876 1 1 +134147 CMBL carboxymethylenebutenolidase homolog 5 protein-coding JS-1 carboxymethylenebutenolidase homolog|carboxymethylenebutenolidase homolog (Pseudomonas)|carboxymethylenebutenolidase-like (Pseudomonas) 17 0.002327 9.369 1 1 +134187 POU5F2 POU domain class 5, transcription factor 2 5 protein-coding SPRM-1 POU domain, class 5, transcription factor 2|sperm 1 POU domain transcription factor 30 0.004106 0.4147 1 1 +134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 5 protein-coding BMFS3|DNAJA5|GS3|JJJ1 dnaJ homolog subfamily C member 21|DnaJ (Hsp40) homolog, subfamily C, member 21|DnaJ homology subfamily A member 5|JJJ1 DnaJ domain protein homolog|dnaJ homolog subfamily A member 5 40 0.005475 10.07 1 1 +134265 AFAP1L1 actin filament associated protein 1 like 1 5 protein-coding - actin filament-associated protein 1-like 1|AFAP1-like protein 1 54 0.007391 7.832 1 1 +134266 GRPEL2 GrpE like 2, mitochondrial 5 protein-coding Mt-GrpE#2 grpE protein homolog 2, mitochondrial 12 0.001642 8.704 1 1 +134285 TMEM171 transmembrane protein 171 5 protein-coding PRP2 transmembrane protein 171|proline-rich protein PRP2 22 0.003011 4.618 1 1 +134288 TMEM174 transmembrane protein 174 5 protein-coding - transmembrane protein 174 15 0.002053 0.4347 1 1 +134353 LSM11 LSM11, U7 small nuclear RNA associated 5 protein-coding - U7 snRNA-associated Sm-like protein LSm11 20 0.002737 7.529 1 1 +134359 POC5 POC5 centriolar protein 5 protein-coding C5orf37 centrosomal protein POC5|POC5 centriolar protein homolog|hPOC5|protein of centriole 5|proteome of centriole 5 33 0.004517 7.568 1 1 +134391 GPR151 G protein-coupled receptor 151 5 protein-coding GALR4|GALRL|GPCR|PGR7 probable G-protein coupled receptor 151|G-protein coupled receptor PGR7|GPCR-2037|galanin receptor 4|putative G-protein coupled receptor 27 0.003696 0.2466 1 1 +134429 STARD4 StAR related lipid transfer domain containing 4 5 protein-coding - stAR-related lipid transfer protein 4|START domain containing 4, sterol regulated|START domain-containing protein 4|StAR-related lipid transfer (START) domain containing 4 20 0.002737 6.656 1 1 +134430 WDR36 WD repeat domain 36 5 protein-coding GLC1G|TA-WDRP|TAWDRP|UTP21 WD repeat-containing protein 36|T-cell activation WD repeat protein|T-cell activation WD repeat-containing protein 69 0.009444 9.493 1 1 +134466 ZNF300P1 zinc finger protein 300 pseudogene 1 5 pseudo - zinc finger protein 300 pseudogene 1 (functional) 36 0.004927 4.1 1 1 +134492 NUDCD2 NudC domain containing 2 5 protein-coding NudCL2 nudC domain-containing protein 2|NudC-like protein 2 12 0.001642 8.717 1 1 +134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 5 protein-coding CPUB1 ubiquitin-like domain-containing CTD phosphatase 1|CTD phosphatase-like with ubiquitin domain 1|CTD-like phosphatase domain-containing protein|nuclear proteasome inhibitor UBLCP1 20 0.002737 9.178 1 1 +134526 ACOT12 acyl-CoA thioesterase 12 5 protein-coding CACH-1|Cach|STARD15|THEAL acyl-coenzyme A thioesterase 12|START domain-containing protein 15|StAR-related lipid transfer (START) domain containing 15|acyl-CoA thioester hydrolase 12|cytoplasmic acetyl-CoA hydrolase 1|cytosolic acetyl-CoA hydrolase|hCACH-1 47 0.006433 0.8616 1 1 +134548 SOWAHA sosondowah ankyrin repeat domain family member A 5 protein-coding ANKRD43 ankyrin repeat domain-containing protein SOWAHA|ankyrin repeat domain-containing protein 43|protein sosondowah homolog A 20 0.002737 5.24 1 1 +134549 SHROOM1 shroom family member 1 5 protein-coding APXL2 protein Shroom1|apical protein 2 35 0.004791 8.29 1 1 +134553 C5orf24 chromosome 5 open reading frame 24 5 protein-coding - UPF0461 protein C5orf24 11 0.001506 10.18 1 1 +134637 ADAT2 adenosine deaminase, tRNA specific 2 6 protein-coding DEADC1|TAD2|dJ20N2|dJ20N2.1 tRNA-specific adenosine deaminase 2|adenosine deaminase, tRNA-specific 2, TAD2 homolog|deaminase domain containing 1|deaminase domain-containing protein 1|tRNA-specific adenosine deaminase 2 homolog|tRNA-specific adenosine-34 deaminase subunit ADAT2 10 0.001369 7.001 1 1 +134701 RIPPLY2 ripply transcriptional repressor 2 6 protein-coding C6orf159|SCDO6|dJ237I15.1 protein ripply2|ripply2 homolog 16 0.00219 1.168 1 1 +134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 6 protein-coding AIP70|SIMPL interleukin-1 receptor-associated kinase 1-binding protein 1|ActA binding protein 3|IRAK1-binding protein 1 15 0.002053 5.176 1 1 +134829 CLVS2 clavesin 2 6 protein-coding C6orf212|C6orf213|RLBP1L2|bA160A10.4 clavesin-2|clathrin vesicle-associated Sec14 protein 2|retinaldehyde binding protein 1-like 2 48 0.00657 0.9994 1 1 +134860 TAAR9 trace amine associated receptor 9 (gene/pseudogene) 6 protein-coding TA3|TAR3|TAR9|TRAR3 trace amine-associated receptor 9|trace amine receptor 3|trace amine receptor 9 35 0.004791 0.02504 1 1 +134864 TAAR1 trace amine associated receptor 1 6 protein-coding TA1|TAR1|TRAR1 trace amine-associated receptor 1|trace amine receptor 1 32 0.00438 0.2402 1 1 +134957 STXBP5 syntaxin binding protein 5 6 protein-coding LGL3|LLGL3|Nbla04300 syntaxin-binding protein 5|lethal(2) giant larvae protein homolog 3|putative protein product of Nbla04300|syntaxin binding protein 5 (tomosyn)|tomosyn|tomosyn-1 74 0.01013 8.374 1 1 +135112 NCOA7 nuclear receptor coactivator 7 6 protein-coding ERAP140|ESNA1|NCOA7-AS|Nbla00052|Nbla10993|TLDC4|dJ187J11.3 nuclear receptor coactivator 7|140 kDa estrogen receptor-associated protein|TBC/LysM-associated domain containing 4|estrogen nuclear receptor coactivator 1|estrogen receptor associated protein 140 kDa|putative protein product of Nbla00052|putative protein product of Nbla10993 62 0.008486 9.979 1 1 +135114 HINT3 histidine triad nucleotide binding protein 3 6 protein-coding HINT4 histidine triad nucleotide-binding protein 3|HINT-3|HIT-like protein 8 0.001095 9.643 1 1 +135138 PACRG PARK2 coregulated 6 protein-coding GLUP|HAK005771|PARK2CRG parkin coregulated gene protein|PARK2 co-regulated|molecular chaperone/chaperonin-binding protein|parkin co-regulated gene protein 38 0.005201 3.562 1 1 +135152 B3GAT2 beta-1,3-glucuronyltransferase 2 6 protein-coding GLCATS galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 2|UDP-glucuronosyltransferase S|UDP-glucuronyltransferase S|glcAT-D|glucuronosyltransferase S|uridine diphosphate glucuronic acid:acceptor glucuronosyltransferase 29 0.003969 3.446 1 1 +135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 6 protein-coding C6orf57|Sdh8 succinate dehydrogenase assembly factor 4, mitochondrial|SDH assembly factor 4|UPF0369 protein C6orf57 11 0.001506 6.436 1 1 +135228 CD109 CD109 molecule 6 protein-coding CPAMD7|p180|r150 CD109 antigen|150 kDa TGF-beta-1-binding protein|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 7|Gov platelet alloantigens|activated T-cell marker CD109|platelet-specific Gov antigen 114 0.0156 8.868 1 1 +135250 RAET1E retinoic acid early transcript 1E 6 protein-coding LETAL|N2DL-4|NKG2DL4|RAET1E2|RL-4|ULBP4|bA350J20.7 NKG2D ligand 4|RAE-1-like transcript 4|lymphocyte effector toxicity activation ligand 17 0.002327 3.352 1 1 +135293 PM20D2 peptidase M20 domain containing 2 6 protein-coding ACY1L2|bA63L7.3 peptidase M20 domain-containing protein 2|β-alanyl-lysine dipeptidase|aminoacylase 1-like 2|aminoacylase-1-like protein 2 22 0.003011 8.695 1 1 +135295 SRSF12 serine and arginine rich splicing factor 12 6 protein-coding SFRS13B|SFRS19|SRrp35 serine/arginine-rich splicing factor 12|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 19 0.002601 4.781 1 1 +135398 C6orf141 chromosome 6 open reading frame 141 6 protein-coding - uncharacterized protein C6orf141 8 0.001095 4.085 1 1 +135458 HUS1B HUS1 checkpoint clamp component B 6 protein-coding - checkpoint protein HUS1B|HUS1 checkpoint homolog b|hHUS1B 23 0.003148 1.578 1 1 +135644 TRIM40 tripartite motif containing 40 6 protein-coding RNF35 tripartite motif-containing protein 40|RING finger protein 35|probable E3 NEDD8-protein ligase|ring finger RNF35 16 0.00219 0.6904 1 1 +135656 DPCR1 diffuse panbronchiolitis critical region 1 6 protein-coding PBLT diffuse panbronchiolitis critical region protein 1 42 0.005749 2.119 1 1 +135886 WBSCR28 Williams-Beuren syndrome chromosome region 28 7 protein-coding - Williams-Beuren syndrome chromosomal region 28 protein|Williams-Beuren syndrome critical region 28 22 0.003011 1.562 1 1 +135892 TRIM50 tripartite motif containing 50 7 protein-coding TRIM50A E3 ubiquitin-protein ligase TRIM50|tripartite motif-containing 50A|tripartite motif-containing protein 50 27 0.003696 1.776 1 1 +135924 OR9A2 olfactory receptor family 9 subfamily A member 2 7 protein-coding - olfactory receptor 9A2|olfactory receptor OR7-2 37 0.005064 0.06464 1 1 +135927 C7orf34 chromosome 7 open reading frame 34 7 protein-coding ctm-1 uncharacterized protein C7orf34|MSSP-binding protein CTM-1 19 0.002601 0.3373 1 1 +135932 TMEM139 transmembrane protein 139 7 protein-coding - transmembrane protein 139 17 0.002327 5.851 1 1 +135935 NOBOX NOBOX oogenesis homeobox 7 protein-coding OG-2|OG2|OG2X|POF5|TCAG_12042 homeobox protein NOBOX|newborn ovary homeobox-encoding 70 0.009581 0.1442 1 1 +135941 OR2A14 olfactory receptor family 2 subfamily A member 14 7 protein-coding OR2A14P|OR2A6|OST182 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 50 0.006844 0.09152 1 1 +135942 OR2A15P olfactory receptor family 2 subfamily A member 15 pseudogene 7 pseudo OR2A23P|OR2A28P olfactory receptor, family 2, subfamily A, member 23 pseudogene|olfactory receptor, family 2, subfamily A, member 28 pseudogene 1 0.0001369 1 0 +135946 OR6B1 olfactory receptor family 6 subfamily B member 1 7 protein-coding OR7-3|OR7-9 olfactory receptor 6B1|olfactory receptor 7-3|olfactory receptor OR7-9 46 0.006296 0.01896 1 1 +135948 OR2F2 olfactory receptor family 2 subfamily F member 2 7 protein-coding OR7-1 olfactory receptor 2F2|olfactory receptor 7-1|olfactory receptor OR7-6 57 0.007802 0.02457 1 1 +136051 ZNF786 zinc finger protein 786 7 protein-coding - zinc finger protein 786 52 0.007117 7.55 1 1 +136227 COL26A1 collagen type XXVI alpha 1 chain 7 protein-coding EMI6|EMID2|EMU2|SH2B collagen alpha-1(XXVI) chain|EMI domain containing 2|collagen, type XXVI, alpha 1|emilin and multimerin domain-containing protein 2 57 0.007802 4 1 1 +136242 PRSS37 protease, serine 37 7 protein-coding TRYX2 probable inactive serine protease 37|Peptidase S1 domain-containing protein LOC136242|probable inactive trypsin-X2 23 0.003148 0.4371 1 1 +136259 KLF14 Kruppel like factor 14 7 protein-coding BTEB5 Krueppel-like factor 14|BTE-binding protein 5|basic transcription element-binding protein 5|transcription factor BTEB5 9 0.001232 1.213 1 1 +136263 SSMEM1 serine rich single-pass membrane protein 1 7 protein-coding C7orf45 serine-rich single-pass membrane protein 1 24 0.003285 0.2328 1 1 +136288 C7orf57 chromosome 7 open reading frame 57 7 protein-coding - uncharacterized protein C7orf57 27 0.003696 2.271 1 1 +136306 SVOPL SVOP like 7 protein-coding - putative transporter SVOPL|SV2 related protein homolog-like 49 0.006707 2.442 1 1 +136319 MTPN myotrophin 7 protein-coding GCDP|V-1 myotrophin|granule cell differentiation protein|protein V-1 6 0.0008212 1 0 +136332 LRGUK leucine rich repeats and guanylate kinase domain containing 7 protein-coding CFAP246 leucine-rich repeat and guanylate kinase domain-containing protein 84 0.0115 2.739 1 1 +136371 ASB10 ankyrin repeat and SOCS box containing 10 7 protein-coding GLC1F ankyrin repeat and SOCS box protein 10 44 0.006022 0.2572 1 1 +136540 PRSS3P3 protease, serine 3 pseudogene 3 7 pseudo TRY3 - 1 0.0001369 1 0 +136541 PRSS58 protease, serine 58 7 protein-coding PRSS1|TRY1|TRYX3|UNQ2540 serine protease 58|trypsin-X3 42 0.005749 0.03928 1 1 +136542 0.0008293 0 1 +136647 MPLKIP M-phase specific PLK1 interacting protein 7 protein-coding ABHS|C7orf11|ORF20|TTD4 M-phase-specific PLK1-interacting protein|Russell-Silver syndrome region|TTD non-photosensitive 1 protein 9 0.001232 8.968 1 1 +136853 SSC4D scavenger receptor cysteine rich family member with 4 domains 7 protein-coding S4D-SRCRB|SRCRB-S4D|SRCRB4D scavenger receptor cysteine-rich domain-containing group B protein|SRCRB4D|four scavenger receptor cysteine-rich domains-containing protein|scavenger receptor cysteine rich domain containing, group B (4 domains)|scavenger receptor cysteine rich family, 4 domains|scavenger receptor cysteine-rich protein SRCRB-S4D 29 0.003969 5.153 1 1 +136895 C7orf31 chromosome 7 open reading frame 31 7 protein-coding - uncharacterized protein C7orf31 39 0.005338 6.476 1 1 +136991 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 7 protein-coding ALP1|ANKL1|C7orf7|CT1.19|GASZ|Orf3 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 35 0.004791 0.1807 1 1 +137075 CLDN23 claudin 23 8 protein-coding CLDNL|hCG1646163 claudin-23|2310014B08Rik 12 0.001642 6.695 1 1 +137196 CCDC26 CCDC26 long non-coding RNA 8 ncRNA RAM coiled-coil domain containing 26|retinoic acid modulator 4 0.0005475 1 0 +137209 ZNF572 zinc finger protein 572 8 protein-coding - zinc finger protein 572 43 0.005886 5.655 1 1 +137362 GOT1L1 glutamic-oxaloacetic transaminase 1-like 1 8 protein-coding - putative aspartate aminotransferase, cytoplasmic 2|glutamate oxaloacetate transaminase 1-like protein 1|transaminase A-like protein 1 38 0.005201 0.02427 1 1 +137392 FAM92A family with sequence similarity 92 member A 8 protein-coding FAM92A1 protein FAM92A1|family with sequence similarity 92 member A1 18 0.002464 6.998 1 1 +137492 VPS37A VPS37A, ESCRT-I subunit 8 protein-coding HCRP1|PQBP2|SPG53 vacuolar protein sorting-associated protein 37A|ESCRT-I complex subunit VPS37A|hepatocellular carcinoma-related protein 1|polyglutamine binding protein 2|vacuolar protein sorting 37 homolog A 30 0.004106 9.294 1 1 +137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 8 protein-coding C8orf38 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6|UPF0551 protein C8orf38, mitochondrial|putative phytoene synthase 22 0.003011 7.843 1 1 +137695 TMEM68 transmembrane protein 68 8 protein-coding - transmembrane protein 68 16 0.00219 8.671 1 1 +137735 ABRA actin binding Rho activating protein 8 protein-coding STARS actin-binding Rho-activating protein|striated muscle activator of Rho-dependent signaling 47 0.006433 0.8722 1 1 +137797 LYPD2 LY6/PLAUR domain containing 2 8 protein-coding LYPDC2|UNQ430 ly6/PLAUR domain-containing protein 2|RGTR430 10 0.001369 1.423 1 1 +137814 NKX2-6 NK2 homeobox 6 8 protein-coding CSX2|CTHM|NKX2F|NKX4-2 homeobox protein Nkx-2.6|NK2 transcription factor related, locus 6|homeobox protein NK2 homolog F|homeobox protein NKX2.6|tinman paralog 13 0.001779 0.07893 1 1 +137835 TMEM71 transmembrane protein 71 8 protein-coding - transmembrane protein 71 34 0.004654 4.761 1 1 +137868 SGCZ sarcoglycan zeta 8 protein-coding ZSG1 zeta-sarcoglycan|zeta-SG 56 0.007665 0.4949 1 1 +137872 ADHFE1 alcohol dehydrogenase, iron containing 1 8 protein-coding ADH8|HMFT2263|HOT hydroxyacid-oxoacid transhydrogenase, mitochondrial|Fe-containing alcohol dehydrogenase 1|alcohol dehydrogenase 8|alcohol dehydrogenase iron-containing protein 1 39 0.005338 6.16 1 1 +137886 UBXN2B UBX domain protein 2B 8 protein-coding p37 UBX domain-containing protein 2B|NSFL1 cofactor p37|p97 cofactor p37 27 0.003696 9.452 1 1 +137902 PXDNL peroxidasin like 8 protein-coding PMR1|PRM1|VPO2 peroxidasin-like protein|cardiac peroxidase|cardiovascular peroxidase 2|peroxidasin homolog-like|polysomal ribonuclease 1 homolog|vascular peroxidase 2 270 0.03696 3.6 1 1 +137964 GPAT4 glycerol-3-phosphate acyltransferase 4 8 protein-coding 1-AGPAT 6|AGPAT6|LPAAT-zeta|LPAATZ|TSARG7 glycerol-3-phosphate acyltransferase 4|1-AGP acyltransferase 6|1-acyl-sn-glycerol-3-phosphate acyltransferase zeta|1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta)|glycerol-3-phosphate acyltransferase 6|lysophosphatidic acid acyltransferase zeta|testis spermatogenesis apoptosis-related protein 7 24 0.003285 10.89 1 1 +137970 UNC5D unc-5 netrin receptor D 8 protein-coding PRO34692|Unc5h4 netrin receptor UNC5D|netrin receptor Unc5h4|protein unc-5 homolog 4|protein unc-5 homolog D|unc-5 homolog 4|unc-5 homolog D 161 0.02204 2.185 1 1 +137994 LETM2 leucine zipper and EF-hand containing transmembrane protein 2 8 protein-coding - LETM1 domain-containing protein LETM2, mitochondrial|LETM1 and EF-hand domain-containing protein 2|leucine zipper-EF-hand containing transmembrane protein 1-like protein|leucine zipper-EF-hand containing transmembrane protein 2 25 0.003422 5.434 1 1 +138009 DCAF4L2 DDB1 and CUL4 associated factor 4 like 2 8 protein-coding WDR21C DDB1- and CUL4-associated factor 4-like protein 2|WD repeat domain 21C|WD repeat-containing protein 21C 135 0.01848 0.742 1 1 +138046 RALYL RALY RNA binding protein-like 8 protein-coding HNRPCL3 RNA-binding Raly-like protein|heterogeneous nuclear ribonucleoprotein C-like 3|hnRNP core protein C-like 3 70 0.009581 1.487 1 1 +138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase 8 protein-coding HGNAT|MPS3C|RP73|TMEM76 heparan-alpha-glucosaminide N-acetyltransferase|transmembrane protein 76 39 0.005338 10.92 1 1 +138065 RNF183 ring finger protein 183 9 protein-coding - RING finger protein 183 10 0.001369 3.196 1 1 +138151 NACC2 NACC family member 2 9 protein-coding BEND9|BTBD14|BTBD14A|BTBD31|NAC-2|RBB nucleus accumbens-associated protein 2|BEN domain containing 9|BTB (POZ) domain containing 14A|BTB/POZ domain-containing protein 14A|NACC family member 2, BEN and BTB (POZ) domain containing|repressor with BTB domain and BEN domain|transcription repressor with a BTB domain and a BEN domain 10 0.001369 6.054 1 1 +138162 C9orf116 chromosome 9 open reading frame 116 9 protein-coding PIERCE1|RbEST47 UPF0691 protein C9orf116|p53-induced expression 1 in Rb−/− cells|p53-induced expression in RB-null cells protein 1|pierce 1 6 0.0008212 6.012 1 1 +138199 CARNMT1 carnosine N-methyltransferase 1 9 protein-coding C9orf41|UPF0586 carnosine N-methyltransferase|UPF0586 protein C9orf41 29 0.003969 6.738 1 1 +138240 C9orf57 chromosome 9 open reading frame 57 9 protein-coding - uncharacterized protein C9orf57 6 0.0008212 0.2198 1 1 +138241 C9orf85 chromosome 9 open reading frame 85 9 protein-coding - uncharacterized protein C9orf85 13 0.001779 7.245 1 1 +138255 C9orf135 chromosome 9 open reading frame 135 9 protein-coding - uncharacterized protein C9orf135 24 0.003285 0.9742 1 1 +138307 LCN8 lipocalin 8 9 protein-coding EP17|LCN5 epididymal-specific lipocalin-8|lipocalin 5 24 0.003285 0.5214 1 1 +138311 FAM69B family with sequence similarity 69 member B 9 protein-coding C9orf136|pp6977 protein FAM69B 22 0.003011 7.817 1 1 +138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog 9 protein-coding C9orf115|PTH1 probable peptidyl-tRNA hydrolase|PTH 10 0.001369 7.464 1 1 +138429 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase like 1 9 protein-coding PIPKH|bA203J24.5 phosphatidylinositol 4-phosphate 5-kinase-like protein 1|PI(4)P 5-kinase-like protein 1|phosphatidylinositol phosphate kinase homolog|ptdIns(4)P-5-kinase-like protein 1 17 0.002327 3.991 1 1 +138474 TAF1L TATA-box binding protein associated factor 1 like 9 protein-coding TAF(II)210|TAF2A2 transcription initiation factor TFIID subunit 1-like|TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 210kDa-like|TBP-associated factor 1-like|TBP-associated factor 210 kDa|TBP-associated factor RNA polymerase 1-like|transcription initiation factor TFIID 210 kDa subunit 227 0.03107 4.478 1 1 +138639 PTPDC1 protein tyrosine phosphatase domain containing 1 9 protein-coding PTP9Q22 protein tyrosine phosphatase domain-containing protein 1|protein tyrosine phosphatase PTP9Q22 52 0.007117 7.404 1 1 +138649 ANKRD19P ankyrin repeat domain 19, pseudogene 9 pseudo ANKRD19|bA526D8.2 - 38 0.005201 5.807 1 1 +138715 ARID3C AT-rich interaction domain 3C 9 protein-coding - AT-rich interactive domain-containing protein 3C|ARID domain-containing protein 3C|AT rich interactive domain 3C (BRIGHT-like)|Brightlike 34 0.004654 0.8445 1 1 +138716 RPP25L ribonuclease P/MRP subunit p25 like 9 protein-coding C9orf23|bA296L22.5 ribonuclease P protein subunit p25-like protein|RNase P protein subunit-like p25|alba-like protein C9orf23|ribonuclease P/MRP 25kDa subunit-like|rpp25-like protein 11 0.001506 8.708 1 1 +138724 C9orf131 chromosome 9 open reading frame 131 9 protein-coding - uncharacterized protein C9orf131 76 0.0104 1.443 1 1 +138799 OR13C5 olfactory receptor family 13 subfamily C member 5 9 protein-coding OR9-11 olfactory receptor 13C5|olfactory receptor OR9-11 48 0.00657 0.06781 1 1 +138802 OR13C8 olfactory receptor family 13 subfamily C member 8 9 protein-coding OR37H|OR9-10 olfactory receptor 13C8|olfactory receptor OR9-10 pseudogene 45 0.006159 0.01463 1 1 +138803 OR13C3 olfactory receptor family 13 subfamily C member 3 9 protein-coding OR37G|OR9-8 olfactory receptor 13C3|olfactory receptor OR9-8 34 0.004654 0.02206 1 1 +138804 OR13C4 olfactory receptor family 13 subfamily C member 4 9 protein-coding HSHTPCRX17|HTPCRX17|OR2K1|OR37F|OR9-7 olfactory receptor 13C4|olfactory receptor OR9-7|olfactory receptor, family 2, subfamily K, member 1 43 0.005886 0.01057 1 1 +138805 OR13F1 olfactory receptor family 13 subfamily F member 1 9 protein-coding OR9-6 olfactory receptor 13F1|olfactory receptor OR9-6 56 0.007665 0.02362 1 1 +138881 OR1L8 olfactory receptor family 1 subfamily L member 8 9 protein-coding OR9-24 olfactory receptor 1L8|olfactory receptor OR9-24 39 0.005338 0.6007 1 1 +138882 OR1N2 olfactory receptor family 1 subfamily N member 2 9 protein-coding OR9-23 olfactory receptor 1N2|olfactory receptor OR9-23 43 0.005886 0.04659 1 1 +138883 OR1N1 olfactory receptor family 1 subfamily N member 1 9 protein-coding OR1-26|OR1N3|OR9-22 olfactory receptor 1N1|olfactory receptor 1-26|olfactory receptor 1N3|olfactory receptor OR9-22|olfactory receptor, family 1, subfamily N, member 3 37 0.005064 0.1278 1 1 +139065 SLITRK4 SLIT and NTRK like family member 4 X protein-coding - SLIT and NTRK-like protein 4|slit and trk like gene 4 119 0.01629 4.05 1 1 +139067 SPANXN3 SPANX family member N3 X protein-coding CT11.8|SPANX-N3 sperm protein associated with the nucleus on the X chromosome N3|cancer/testis antigen family 11, member 8|nuclear-associated protein SPAN-Xn3 34 0.004654 0.1018 1 1 +139081 MAGEC3 MAGE family member C3 X protein-coding CT7.2|HCA2|MAGE-C3|MAGEC4 melanoma-associated antigen C3|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 antigen family C, 3|melanoma antigen family C3 131 0.01793 0.7537 1 1 +139105 BEND2 BEN domain containing 2 X protein-coding CXorf20 BEN domain-containing protein 2 72 0.009855 0.1619 1 1 +139135 PASD1 PAS domain containing 1 X protein-coding CT63|OXTES1 circadian clock protein PASD1|cancer/testis antigen 63 95 0.013 0.3848 1 1 +139170 DCAF12L1 DDB1 and CUL4 associated factor 12 like 1 X protein-coding KIAA1892L|WDR40B DDB1- and CUL4-associated factor 12-like protein 1|WD repeat domain 40B|WD repeat-containing protein 40B 105 0.01437 1.256 1 1 +139189 DGKK diacylglycerol kinase kappa X protein-coding - diacylglycerol kinase kappa|142 kDa diacylglycerol kinase|DAG kinase kappa|DGK-kappa|diglyceride kinase kappa 150 0.02053 0.6908 1 1 +139201 MAP2K4P1 mitogen-activated protein kinase kinase 4 pseudogene 1 X pseudo - - 2 0.0002737 1 0 +139212 PIH1D3 PIH1 domain containing 3 X protein-coding CXorf41|NYSAR97 protein PIH1D3|PIH1 domain-containing protein 3|sarcoma antigen NY-SAR-97 12 0.001642 0.4431 1 1 +139221 MUM1L1 MUM1 like 1 X protein-coding - PWWP domain-containing protein MUM1L1|MUM1-like protein 1|melanoma associated antigen (mutated) 1-like 1|mutated melanoma-associated antigen 1-like protein 1 62 0.008486 4.387 1 1 +139231 FAM199X family with sequence similarity 199, X-linked X protein-coding CXorf39 protein FAM199X 34 0.004654 8.905 1 1 +139285 AMER1 APC membrane recruitment protein 1 X protein-coding FAM123B|OSCS|WTX APC membrane recruitment protein 1|RP11-403E24.2|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 141 0.0193 7.601 1 1 +139322 APOOL apolipoprotein O like X protein-coding CXorf33|FAM121A|Mic27|UNQ8193 MICOS complex subunit MIC27|AAIR8193|family with sequence similarity 121A 16 0.00219 7.019 1 1 +139324 HDX highly divergent homeobox X protein-coding CXorf43|D030011N01Rik highly divergent homeobox 87 0.01191 4.921 1 1 +139341 FUNDC1 FUN14 domain containing 1 X protein-coding - FUN14 domain-containing protein 1 9 0.001232 8.413 1 1 +139378 ADGRG4 adhesion G protein-coupled receptor G4 X protein-coding GPR112|PGR17|RP1-299I16 adhesion G-protein coupled receptor G4|G protein-coupled receptor 112|probable G-protein coupled receptor 112 282 0.0386 0.3321 1 1 +139411 PTCHD1 patched domain containing 1 X protein-coding AUTSX4 patched domain-containing protein 1|PTCHD1 isoform 89 0.01218 2.98 1 1 +139420 PPP4R3CP protein phosphatase 4 regulatory subunit 3C, pseudogene X pseudo FLFL3P|SMEK3P|smk1 Putative SMEK homolog 3|SMEK homolog 3, suppressor of mek1 (Dictyostelium) pseudogene|Serine/threonine-protein phosphatase 4 regulatory subunit 3C pseudogene 0 0 0.4308 1 1 +139422 MAGEB10 MAGE family member B10 X protein-coding - melanoma-associated antigen B10|MAGE family testis and tumor-specific protein|MAGE-B10 antigen|melanoma antigen family B, 10|melanoma antigen family B10 40 0.005475 0.1069 1 1 +139425 DCAF8L1 DDB1 and CUL4 associated factor 8 like 1 X protein-coding WDR42B DDB1- and CUL4-associated factor 8-like protein 1|WD repeat domain 42B|WD repeat-containing protein 42B 87 0.01191 0.266 1 1 +139538 VENTXP1 VENT homeobox pseudogene 1 X pseudo CT18|NA88A|VENTX2P1 VENT-like homeobox 2 pseudogene 1|cancer/testis antigen 18|tumor antigen NA88A 0.05512 0 1 +139562 OTUD6A OTU deubiquitinase 6A X protein-coding DUBA2|HSHIN6 OTU domain-containing protein 6A|HIN-6 protease 36 0.004927 0.1363 1 1 +139596 UPRT uracil phosphoribosyltransferase homolog X protein-coding FUR1|UPP uracil phosphoribosyltransferase homolog|RP11-311P8.3|UMP pyrophosphorylase|UPRTase|uracil phosphoribosyltransferase (FUR1) homolog 31 0.004243 7.86 1 1 +139599 MAGEE2 MAGE family member E2 X protein-coding HCA3 melanoma-associated antigen E2|MAGE-E2 antigen|hepatocellular carcinoma-associated protein 3|hepatocellular carcinoma-associated protein HCA3|melanoma antigen family E, 2|melanoma antigen family E2 69 0.009444 1.617 1 1 +139604 MAGEB16 MAGE family member B16 X protein-coding - melanoma-associated antigen B16|MAGE-B16 antigen|melanoma antigen family B, 16 (pseudogene)|melanoma antigen family B16 49 0.006707 0.2396 1 1 +139628 FOXR2 forkhead box R2 X protein-coding FOXN6 forkhead box protein R2|forkhead box protein N6 37 0.005064 0.1419 1 1 +139629 XAGE-4 XAGE-4 protein X pseudo - - 1 0.0001369 1 0 +139716 GAB3 GRB2 associated binding protein 3 X protein-coding - GRB2-associated-binding protein 3|DOS/Gab family member 3|GRB2-associated binder 3|Gab3 scaffolding protein|growth factor receptor bound protein 2-associated protein 3 44 0.006022 6.26 1 1 +139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase X protein-coding BSTK3|CaMK1b calcium/calmodulin-dependent protein kinase type 1B|caM kinase I beta|caM kinase IB|caM-KI beta|caMKI-beta|pregnancy up-regulated non-ubiquitously-expressed CaM kinase|pregnancy upregulated non-ubiquitously expressed CaM kinase 39 0.005338 4.714 1 1 +139735 ZFP92 ZFP92 zinc finger protein X protein-coding ZNF897 zinc finger protein 92 homolog|zfp-92|zinc finger protein homologous to Zfp92 in mouse 12 0.001642 1.742 1 1 +139741 ACTRT1 actin related protein T1 X protein-coding AIP1|ARIP1|ARPT1|HSD27 actin-related protein T1 72 0.009855 0.09671 1 1 +139748 KRT18P44 keratin 18 pseudogene 44 X pseudo - - 0 0 1 0 +139760 GPR119 G protein-coupled receptor 119 X protein-coding GPCR2 glucose-dependent insulinotropic receptor|G-protein coupled receptor 2 27 0.003696 0.1176 1 1 +139793 PAGE3 PAGE family member 3 X protein-coding CT16.6|GAGED1|PAGE-3 P antigen family member 3|G antigen family D member 1|G antigen, family D, 1|P antigen family, member 3 (prostate associated)|prostate-associated gene 3 protein 4 0.0005475 0.02622 1 1 +139804 RBMXL3 RNA binding motif protein, X-linked like 3 X protein-coding CXorf55 RNA-binding motif protein, X-linked-like-3 58 0.007939 0.1261 1 1 +139818 DOCK11 dedicator of cytokinesis 11 X protein-coding ACG|ZIZ2|bB128O4.1 dedicator of cytokinesis protein 11|Activated Cdc42-associated guanine nucleotide exchange factor, ACG|bB128O4.1.1 (novel protein)|zizimin-2|zizimin2 152 0.0208 8.22 1 1 +139886 SPIN4 spindlin family member 4 X protein-coding TDRD28 spindlin-4 20 0.002737 7.401 1 1 +140032 RPS4Y2 ribosomal protein S4, Y-linked 2 Y protein-coding RPS4Y2P 40S ribosomal protein S4, Y isoform 2|40S ribosomal protein S4, Y|ribosomal protein S4, Y-linked 2 pseudogene 7 0.0009581 0.269 1 1 +140258 KRTAP13-1 keratin associated protein 13-1 21 protein-coding KAP13.1|KRTAP13.1 keratin-associated protein 13-1|high sulfur keratin associated protein 13.1 34 0.004654 0.04066 1 1 +140290 TCP10L t-complex 10-like 21 protein-coding C21orf77|PRED77|TCP10A-2 T-complex protein 10A homolog 2|T-complex 10A-2|T-complex protein 10A-2|TCP10-like|t-complex 10 (a murine tcp homolog)-like 21 0.002874 3.653 1 1 +140432 RNF113B ring finger protein 113B 13 protein-coding RNF161|ZNF183L1|bA10G5.1 RING finger protein 113B|zinc finger protein 183-like 1 28 0.003832 0.3794 1 1 +140453 MUC17 mucin 17, cell surface associated 7 protein-coding MUC-17|MUC-3|MUC3 mucin-17|membrane mucin MUC17|secreted mucin MUC17|small intestinal mucin MUC3|small intestinal mucin-3 462 0.06324 1.347 1 1 +140456 ASB11 ankyrin repeat and SOCS box containing 11 X protein-coding - ankyrin repeat and SOCS box protein 11|ASB-11|ankyrin repeat and SOCS box containing 11, E3 ubiquitin protein ligase|ankyrin repeat domain-containing SOCS box protein ASB11 36 0.004927 0.3045 1 1 +140458 ASB5 ankyrin repeat and SOCS box containing 5 4 protein-coding ASB-5 ankyrin repeat and SOCS box protein 5|SOCS box protein ASB-5 53 0.007254 1.587 1 1 +140459 ASB6 ankyrin repeat and SOCS box containing 6 9 protein-coding - ankyrin repeat and SOCS box protein 6 24 0.003285 9.627 1 1 +140460 ASB7 ankyrin repeat and SOCS box containing 7 15 protein-coding - ankyrin repeat and SOCS box protein 7|ASB-7 24 0.003285 8.61 1 1 +140461 ASB8 ankyrin repeat and SOCS box containing 8 12 protein-coding PP14212 ankyrin repeat and SOCS box protein 8 16 0.00219 9.33 1 1 +140462 ASB9 ankyrin repeat and SOCS box containing 9 X protein-coding - ankyrin repeat and SOCS box protein 9|ASB-9|ankyrin repeat and suppressor of cytokine signaling box protein 9|testis tissue sperm-binding protein Li 57p 27 0.003696 5.349 1 1 +140464 PISRT1 polled intersex syndrome regulated transcript 1 (non-protein coding RNA) 3 ncRNA NCRNA00195 polled intersex syndrome regulated transcript 1 homolog (goat) 0.01548 0 1 +140465 MYL6B myosin light chain 6B 12 protein-coding MLC1SA myosin light chain 6B|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 6B, alkali, smooth muscle and non-muscle|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 11 0.001506 9.449 1 1 +140467 ZNF358 zinc finger protein 358 19 protein-coding ZFEND zinc finger protein 358 40 0.005475 10.34 1 1 +140469 MYO3B myosin IIIB 2 protein-coding - myosin-IIIb 118 0.01615 3.381 1 1 +140545 RNF32 ring finger protein 32 7 protein-coding FKSG33|HSD15|LMBR2 RING finger protein 32 37 0.005064 5.251 1 1 +140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D 22 protein-coding A3D|APOBEC3DE|APOBEC3E|ARP6 DNA dC->dU-editing enzyme APOBEC-3D|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3D|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3E pseudogene|probable DNA dC->dU-editing enzyme APOBEC-3D 20 0.002737 6.031 1 1 +140576 S100A16 S100 calcium binding protein A16 1 protein-coding AAG13|DT1P1A7|S100F protein S100-A16|aging-associated gene 13 protein|aging-associated protein 13|protein S100-F 6 0.0008212 11.4 1 1 +140578 CHODL chondrolectin 21 protein-coding C21orf68|MT75|PRED12 chondrolectin|transmembrane protein MT75 28 0.003832 3.815 1 1 +140596 DEFB104A defensin beta 104A 8 protein-coding BD-4|DEFB-4|DEFB104|DEFB4|hBD-4 beta-defensin 104|defensin, beta 4 2 0.0002737 0.021 1 1 +140597 TCEAL2 transcription elongation factor A like 2 X protein-coding MY0876G05|WEX1|my048 transcription elongation factor A protein-like 2|TCEA-like protein 2|transcription elongation factor A (SII)-like 2|transcription elongation factor S-II protein-like 2 28 0.003832 4.503 1 1 +140606 SELENOM selenoprotein M 22 protein-coding SELM|SEPM selenoprotein M|selenoprotein SelM 9.463 0 1 +140609 NEK7 NIMA related kinase 7 1 protein-coding - serine/threonine-protein kinase Nek7|NIMA (never in mitosis gene a)-related kinase 7|never in mitosis A-related kinase 7|nimA-related protein kinase 7 24 0.003285 10.17 1 1 +140612 ZFP28 ZFP28 zinc finger protein 19 protein-coding mkr5 zinc finger protein 28 homolog|krueppel-like zinc finger factor X6|zfp-28|zinc finger factor X6 65 0.008897 6.609 1 1 +140625 ACTRT2 actin related protein T2 1 protein-coding ARPM2|ARPT2|Arp-T2|HARPM2 actin-related protein T2|actin-related protein M2|actin-related protein hArpM2 47 0.006433 0.04136 1 1 +140628 GATA5 GATA binding protein 5 20 protein-coding GATAS|bB379O24.1 transcription factor GATA-5|GATA binding factor-5 23 0.003148 2.383 1 1 +140678 MLLT10P1 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 10 pseudogene 1 20 pseudo MLLT10L|bA348I14.3 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 pseudogene 1 11 0.001506 1 0 +140679 SLC32A1 solute carrier family 32 member 1 20 protein-coding VGAT|VIAAT vesicular inhibitory amino acid transporter|GABA and glycine transporter|hVIAAT|solute carrier family 32 (GABA vesicular transporter), member 1|vesicular GABA transporter 84 0.0115 0.8972 1 1 +140680 C20orf96 chromosome 20 open reading frame 96 20 protein-coding dJ1103G7.2 uncharacterized protein C20orf96 18 0.002464 7.738 1 1 +140683 BPIFA2 BPI fold containing family A member 2 20 protein-coding C20orf70|PSP|SPLUNC2|bA49G10.1 BPI fold-containing family A member 2|parotid secretory protein|short palate, lung and nasal epithelium carcinoma-associated protein 2 24 0.003285 0.8022 1 1 +140685 ZBTB46 zinc finger and BTB domain containing 46 20 protein-coding BTBD4|BZEL|RINZF|ZNF340|dJ583P15.7|dJ583P15.8 zinc finger and BTB domain-containing protein 46|BTB (POZ) domain containing 4|BTB-ZF protein expressed in effector lymphocytes|BTB/POZ domain-containing protein 4|zinc finger protein 340 54 0.007391 7.354 1 1 +140686 WFDC3 WAP four-disulfide core domain 3 20 protein-coding WAP14|dJ447F3.3 WAP four-disulfide core domain protein 3|protease inhibitor WAP14|putative protease inhibitor WAP14|whey acidic protein 14 12 0.001642 3.24 1 1 +140687 GCNT7 glucosaminyl (N-acetyl) transferase family member 7 20 protein-coding C20orf105|dJ1153D9.2|gcnt beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 7|beta 1,6-N-acetylglucosaminyltransferase 1 0.0001369 0.7169 1 1 +140688 NOL4L nucleolar protein 4 like 20 protein-coding C20orf112|C20orf113|dJ1184F4.2|dJ1184F4.4 nucleolar protein 4-like 33 0.004517 9.524 1 1 +140689 CBLN4 cerebellin 4 precursor 20 protein-coding CBLNL1 cerebellin-4|cerebellin precursor-like 1|cerebellin-like glycoprotein 1 39 0.005338 2.752 1 1 +140690 CTCFL CCCTC-binding factor like 20 protein-coding BORIS|CT27|CTCF-T|HMGB1L1|dJ579F20.2 transcriptional repressor CTCFL|BORIS-like protein|brother of the regulator of imprinted sites|cancer/testis antigen 27 80 0.01095 3.859 1 1 +140691 TRIM69 tripartite motif containing 69 15 protein-coding HSD-34|HSD34|RNF36|Trif E3 ubiquitin-protein ligase TRIM69|RFP-like domain-containing protein trimless|ring finger protein 36 30 0.004106 4.246 1 1 +140699 MROH8 maestro heat like repeat family member 8 20 protein-coding C20orf131|C20orf132|dJ621N11.3|dJ621N11.4 protein MROH8|maestro heat-like repeat-containing protein family member 8 56 0.007665 4.648 1 1 +140700 SAMD10 sterile alpha motif domain containing 10 20 protein-coding C20orf136|dJ591C20|dJ591C20.7 sterile alpha motif domain-containing protein 10|D930033N23Rik|SAM domain-containing protein 10 7 0.0009581 7.519 1 1 +140701 ABHD16B abhydrolase domain containing 16B 20 protein-coding C20orf135|dJ591C20.1 protein ABHD16B|abhydrolase domain-containing protein 16B|alpha/beta hydrolase domain-containing protein 16B 23 0.003148 6.844 1 1 +140706 CCM2L CCM2 like scaffolding protein 20 protein-coding C20orf160|dJ310O13.5 cerebral cavernous malformations 2 protein-like|CCM2-like|cerebral cavernous malformation 2-like 26 0.003559 5.883 1 1 +140707 BRI3BP BRI3 binding protein 12 protein-coding BNAS1|HCCR-1|HCCR-2|HCCRBP-1|HCCRBP-3|KG19 BRI3-binding protein|I3-binding protein|cervical cancer 1 proto-oncogene-binding protein KG19|cervical cancer oncogene binding protein 18 0.002464 6.823 1 1 +140710 SOGA1 suppressor of glucose, autophagy associated 1 20 protein-coding C20orf117|KIAA0889|SOGA protein SOGA1|SOGA family member 1|suppressor of glucose by autophagy|suppressor of glucose from autophagy|suppressor of glucose, autophagy-associated protein 1 88 0.01204 8.476 1 1 +140711 TLDC2 TBC/LysM-associated domain containing 2 20 protein-coding C20orf118 TLD domain-containing protein 2|TBC/LysM-associated domain-containing protein 2 21 0.002874 4.806 1 1 +140730 RIMS4 regulating synaptic membrane exocytosis 4 20 protein-coding C20orf190|RIM 4|RIM-4|RIM4|RIM4-gamma|RIM4gamma regulating synaptic membrane exocytosis protein 4|RIM4 gamma|rab3-interacting molecule 4 36 0.004927 5.023 1 1 +140731 ANKRD60 ankyrin repeat domain 60 20 protein-coding C20orf86|bA196N14.3 ankyrin repeat domain-containing protein 60 2 0.0002737 1 0 +140732 SUN5 Sad1 and UNC84 domain containing 5 20 protein-coding SPAG4L|TSARG4|dJ726C3.1 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 49 0.006707 0.006076 1 1 +140733 MACROD2 MACRO domain containing 2 20 protein-coding C20orf133 O-acetyl-ADP-ribose deacetylase MACROD2|MACRO domain-containing protein 2|[Protein ADP-ribosylglutamate] hydrolase 68 0.009307 6.261 1 1 +140735 DYNLL2 dynein light chain LC8-type 2 17 protein-coding DNCL1B|Dlc2|RSPH22 dynein light chain 2, cytoplasmic|8 kDa dynein light chain b|DLC8b|radial spoke 22 homolog 5 0.0006844 10.53 1 1 +140738 TMEM37 transmembrane protein 37 2 protein-coding PR|PR1 voltage-dependent calcium channel gamma-like subunit|neuronal voltage-gated calcium channel gamma-like subunit|voltage-dependent calcium channel gamma subunit-like protein 18 0.002464 7.69 1 1 +140739 UBE2F ubiquitin conjugating enzyme E2 F (putative) 2 protein-coding NCE2 NEDD8-conjugating enzyme UBE2F|NEDD8 carrier protein UBE2F|NEDD8 protein ligase UBE2F|NEDD8-conjugating enzyme 2|ubiquitin-conjugating enzyme E2F (putative) 11 0.001506 9.323 1 1 +140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 10 protein-coding - A disintegrin and metalloproteinase with thrombospondin motifs 14|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 14 113 0.01547 6.088 1 1 +140767 NRSN1 neurensin 1 6 protein-coding VMP|p24 neurensin-1|neuro-p24|vesicular membrain protein p24|vesicular membrane protein of 24 kDa|vesicular membrane protein p24 31 0.004243 1.858 1 1 +140771 SMCR5 Smith-Magenis syndrome chromosome region, candidate 5 (non-protein coding) 17 ncRNA NCRNA00034 - 0.9776 0 1 +140775 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 17 protein-coding - Smith-Magenis syndrome chromosomal region candidate gene 8 protein 58 0.007939 9.644 1 1 +140801 RPL10L ribosomal protein L10 like 14 protein-coding RPL10_5_1358 60S ribosomal protein L10-like 53 0.007254 0.4158 1 1 +140803 TRPM6 transient receptor potential cation channel subfamily M member 6 9 protein-coding CHAK2|HMGX|HOMG|HOMG1|HSH transient receptor potential cation channel subfamily M member 6|channel kinase 2|melastatin-related TRP cation channel 6 191 0.02614 3.63 1 1 +140807 KRT72 keratin 72 12 protein-coding K6IRS2|K6irs|KRT6|KRT6IRS2 keratin, type II cytoskeletal 72|CK-72|K72|cytokeratin-72|keratin 6, inner root sheath, 2|keratin 72, type II|keratin protein K6irs|type II inner root sheath-specific keratin-K6irs2|type-II keratin Kb35 60 0.008212 0.5471 1 1 +140809 SRXN1 sulfiredoxin 1 20 protein-coding C20orf139|Npn3|SRX|SRX1 sulfiredoxin-1 9 0.001232 10.2 1 1 +140823 ROMO1 reactive oxygen species modulator 1 20 protein-coding C20orf52|MTGM|MTGMP|bA353C18.2 reactive oxygen species modulator 1|PCM19|ROS modulator 1|epididymis tissue protein Li 175|glyrichin|mitochondrial targeting GXXXG protein|mitochondrial targeting GxxxG motif protein|protein MGR2 homolog 3 0.0004106 10.01 1 1 +140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 20 protein-coding C20orf163|OZZ|OZZ-E3 neuralized-like protein 2|neuralized homolog 2 19 0.002601 5.183 1 1 +140828 LINC00261 long intergenic non-protein coding RNA 261 20 ncRNA ALIEN|C20orf56|DEANR1|HCCDR1|NCRNA00261|onco-lncRNA-17 TCONS_00027846|definitive endoderm-associated long non-coding RNA 1|hepatocellular carcinoma down-regulated RNA 1 2.668 0 1 +140831 ZSWIM3 zinc finger SWIM-type containing 3 20 protein-coding C20orf164|PPP1R174 zinc finger SWIM domain-containing protein 3|protein phosphatase 1, regulatory subunit 174|zinc finger, SWIM domain containing 3 48 0.00657 6.853 1 1 +140832 WFDC10A WAP four-disulfide core domain 10A 20 protein-coding C20orf146|WAP10|dJ688G8.3 WAP four-disulfide core domain protein 10A|putative protease inhibitor WAP10A 6 0.0008212 0.1964 1 1 +140834 LINC01620 long intergenic non-protein coding RNA 1620 20 ncRNA C20orf62|dJ1013A22.3 uncharacterized protein C20orf62 3 0.0004106 1 0 +140836 BANF2 barrier to autointegration factor 2 20 protein-coding BAF-L|BAF2|BAFL|C20orf179 barrier-to-autointegration factor-like protein|testis secretory sperm-binding protein Li 212a 5 0.0006844 0.2026 1 1 +140838 NANP N-acetylneuraminic acid phosphatase 20 protein-coding C20orf147|HDHD4|dJ694B14.3 N-acylneuraminate-9-phosphatase|Neu5Ac-9-Pase|haloacid dehalogenase-like hydrolase domain containing 4|haloacid dehalogenase-like hydrolase domain-containing protein 4 15 0.002053 7.495 1 1 +140849 LINC00266-1 long intergenic non-protein coding RNA 266-1 20 ncRNA C20orf69|NCRNA00266|NCRNA00266-1|bA476I15.3 - 10 0.001369 1 0 +140850 DEFB127 defensin beta 127 20 protein-coding C20orf73|DEF-27|DEFB-27|DEFB27|bA530N10.2|hBD-27 beta-defensin 127|beta-defensin 27 7 0.0009581 0.009929 1 1 +140851 MT1P3 metallothionein 1 pseudogene 3 20 pseudo C20orf127|MTL4|dJ614O4.6 metallothionein-like 4 1 0.0001369 1 0 +140856 SCP2D1 SCP2 sterol binding domain containing 1 20 protein-coding C20orf79|HSD22|dJ1068E13.2 SCP2 sterol-binding domain-containing protein 1|sterol carrier protein 2-like protein 20 0.002737 0.01373 1 1 +140862 ISM1 isthmin 1 20 protein-coding C20orf82|ISM|Isthmin|bA149I18.1|dJ1077I2.1 isthmin-1|isthmin 1 homolog|isthmin 1, angiogenesis inhibitor 43 0.005886 6.127 1 1 +140865 LINC00686 long intergenic non-protein coding RNA 686 20 ncRNA C20orf90 - 3 0.0004106 1 0 +140870 WFDC6 WAP four-disulfide core domain 6 20 protein-coding C20orf171|HEL-S-295|WAP6|dJ461P17.11 WAP four-disulfide core domain protein 6|epididymis secretory protein Li 295|protease inhibitor WAP6 8 0.001095 0.395 1 1 +140873 C20orf173 chromosome 20 open reading frame 173 20 protein-coding dJ477O4.4 uncharacterized protein C20orf173 7 0.0009581 0.1285 1 1 +140875 LINC00028 long intergenic non-protein coding RNA 28 20 ncRNA C20orf93|NCRNA00028|dJ1093G12.6 - 0.1998 0 1 +140876 FAM65C family with sequence similarity 65 member C 20 protein-coding C20orf175|C20orf176 protein FAM65C 71 0.009718 5.51 1 1 +140880 CST11 cystatin 11 20 protein-coding CST8L|CTES2|SC13|dJ322G13.6 cystatin-11|SC13delta|cystatin-related epididymal-specific protein 20 0.002737 0.114 1 1 +140881 DEFB129 defensin beta 129 20 protein-coding C20orf87|DEFB-29|DEFB29|bA530N10.3|hBD-29 beta-defensin 129|beta-defensin 29 17 0.002327 0.02708 1 1 +140883 ZNF280B zinc finger protein 280B 22 protein-coding 5'OY11.1|D87009.C22.3|SUHW2|ZNF279|ZNF632 zinc finger protein 280B|suppressor of hairy wing homolog 2|zinc finger protein 279|zinc finger protein 632 42 0.005749 5.057 1 1 +140885 SIRPA signal regulatory protein alpha 20 protein-coding BIT|CD172A|MFR|MYD-1|P84|PTPNS1|SHPS1|SIRP tyrosine-protein phosphatase non-receptor type substrate 1|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 43 0.005886 10.34 1 1 +140886 PABPC5 poly(A) binding protein cytoplasmic 5 X protein-coding PABP5 polyadenylate-binding protein 5 67 0.009171 4.075 1 1 +140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 5 protein-coding SFRS12|SRrp508|SRrp86 splicing regulatory glutamine/lysine-rich protein 1|serine-arginine-rich splicing regulatory protein 508|serine/arginine-rich-splicing regulatory protein 86|splicing factor, arginine/serine-rich 12|splicing regulatory glutamic acid/lysine-rich protein 1 33 0.004517 10.13 1 1 +140893 RBBP8NL RBBP8 N-terminal like 20 protein-coding C20orf151 RBBP8 N-terminal-like protein 35 0.004791 4.726 1 1 +140894 CNBD2 cyclic nucleotide binding domain containing 2 20 protein-coding C20orf152|CNMPD1 cyclic nucleotide-binding domain-containing protein 2|cyclic nucleotide (cNMP) binding domain containing 1 51 0.006981 1.471 1 1 +140901 STK35 serine/threonine kinase 35 20 protein-coding CLIK1|STK35L1 serine/threonine-protein kinase 35|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 L1 25 0.003422 10.05 1 1 +140902 R3HDML R3H domain containing like 20 protein-coding dJ881L22.3 peptidase inhibitor R3HDML|cysteine-rich secretory protein R3HDML 28 0.003832 0.547 1 1 +140947 DCANP1 dendritic cell associated nuclear protein 5 protein-coding C5orf20|DCNP1 dendritic cell nuclear protein 1 21 0.002874 3.166 1 1 +142678 MIB2 mindbomb E3 ubiquitin protein ligase 2 1 protein-coding ZZANK1|ZZZ5 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 42 0.005749 9.13 1 1 +142679 DUSP19 dual specificity phosphatase 19 2 protein-coding DUSP17|LMWDSP3|SKRP1|TS-DSP1 dual specificity protein phosphatase 19|SAPK pathway-regulating phosphatase 1|dual specificity phosphatase TS-DSP1|low molecular weight dual specificity phosphatase 3|protein phosphatase SKRP1|stress-activated protein kinase pathway-regulating phosphatase 1 17 0.002327 6.163 1 1 +142680 SLC34A3 solute carrier family 34 member 3 9 protein-coding HHRH|NPTIIc sodium-dependent phosphate transport protein 2C|Na(+)-dependent phosphate cotransporter 2C|Na(+)/Pi cotransporter 2C|naPi-2c|sodium-phosphate transport protein 2C|sodium/inorganic phosphate cotransporter IIC|solute carrier family 34 (sodium phosphate), member 3|solute carrier family 34 (type II sodium/phosphate cotransporter), member 3|type IIc Na+/Pi cotransporter 30 0.004106 2.681 1 1 +142683 ITLN2 intelectin 2 1 protein-coding HL-2|HL2 intelectin-2|endothelial lectin HL-2 28 0.003832 1.327 1 1 +142684 RAB40A RAB40A, member RAS oncogene family X protein-coding RAR2|RAR2A ras-related protein Rab-40A|SOCS box-containing protein RAR2A|protein Rar-2 21 0.002874 2.722 1 1 +142685 ASB15 ankyrin repeat and SOCS box containing 15 7 protein-coding - ankyrin repeat and SOCS box protein 15 55 0.007528 0.3006 1 1 +142686 ASB14 ankyrin repeat and SOCS box containing 14 3 protein-coding - ankyrin repeat and SOCS box protein 14|ankyrin repeat domain-containing SOCS box protein Asb-14 14 0.001916 3.135 1 1 +142689 ASB12 ankyrin repeat and SOCS box containing 12 X protein-coding - ankyrin repeat and SOCS box protein 12|ankyrin repeat domain-containing SOCS box protein Asb-12 9 0.001232 1.75 1 1 +142827 ACSM6 acyl-CoA synthetase medium-chain family member 6 10 protein-coding C10orf129|bA310E22.3 acyl-coenzyme A synthetase ACSM6, mitochondrial|AMP-binding enzyme 23 0.003148 0.5117 1 1 +142891 SAMD8 sterile alpha motif domain containing 8 10 protein-coding HEL-177|SMSr sphingomyelin synthase-related protein 1|CPE synthase|HEL-S-181mP|SAM domain-containing protein 8|ceramide phosphoethanolamine synthase|epididymis luminal protein 177|epididymis secretory sperm binding protein Li 181mP|sphingomyelin synthase related|sterile alpha motif domain-containing protein 8 24 0.003285 6.46 1 1 +142910 LIPJ lipase family member J 10 protein-coding LIPL1|bA425M17.2 lipase member J|lipase J|lipase-like abhydrolase domain-containing protein 1|lipase-like, ab-hydrolase domain containing 1 21 0.002874 0.4059 1 1 +142913 CFL1P1 cofilin 1 pseudogene 1 10 pseudo CFLP1 cofilin 1 (non-muscle) pseudogene 1|cofilin pseudogene 1 1 0.0001369 1.264 1 1 +142940 TRUB1 TruB pseudouridine synthase family member 1 10 protein-coding PUS4 probable tRNA pseudouridine synthase 1|TruB pseudouridine (psi) synthase family member 1|TruB pseudouridine (psi) synthase homolog 1 50 0.006844 8.883 1 1 +143098 MPP7 membrane palmitoylated protein 7 10 protein-coding - MAGUK p55 subfamily member 7|membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) 47 0.006433 7.982 1 1 +143162 FRMPD2 FERM and PDZ domain containing 2 10 protein-coding PDZD5C|PDZK4|PDZK5C FERM and PDZ domain-containing protein 2|PDZ domain containing 5C|PDZ domain-containing protein 4 112 0.01533 1.751 1 1 +143187 VTI1A vesicle transport through interaction with t-SNAREs 1A 10 protein-coding MMDS3|MVti1|VTI1RP2|Vti1-rp2 vesicle transport through interaction with t-SNAREs homolog 1A|SNARE Vti1a-beta protein|vesicle transport v-SNARE protein Vti1-like 2 19 0.002601 8.508 1 1 +143188 LOC143188 uncharacterized LOC143188 10 ncRNA - - 3.932 0 1 +143241 DYDC1 DPY30 domain containing 1 10 protein-coding DPY30D1 DPY30 domain-containing protein 1 10 0.001369 0.5736 1 1 +143244 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 10 protein-coding EIF5AP1|bA342M3.3 eukaryotic translation initiation factor 5A-1-like|eukaryotic translation initiation factor 5A pseudogene 1 10 0.001369 10.61 1 1 +143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 10 protein-coding - probable E3 ubiquitin-protein ligase HECTD2|HECT domain containing 2|HECT domain containing E3 ubiquitin protein ligase 2|HECT domain-containing protein 2 58 0.007939 7.563 1 1 +143282 FGFBP3 fibroblast growth factor binding protein 3 10 protein-coding C10orf13|FGF-BP3 fibroblast growth factor-binding protein 3|FGF-binding protein 3|FGFBP-3 3 0.0004106 5.375 1 1 +143379 C10orf82 chromosome 10 open reading frame 82 10 protein-coding - uncharacterized protein C10orf82 11 0.001506 2.412 1 1 +143384 CACUL1 CDK2 associated cullin domain 1 10 protein-coding C10orf46|CAC1 CDK2-associated and cullin domain-containing protein 1|Cdk-Associated Cullin1|cullin 26 0.003559 10.29 1 1 +143425 SYT9 synaptotagmin 9 11 protein-coding - synaptotagmin-9|synaptotagmin IX|sytIX 54 0.007391 3.186 1 1 +143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 11 protein-coding LRAD3 low-density lipoprotein receptor class A domain-containing protein 3 26 0.003559 7.992 1 1 +143471 PSMA8 proteasome subunit alpha 8 18 protein-coding PSMA7L proteasome subunit alpha type-7-like|proteasome (prosome, macropain) subunit, alpha type, 8|proteasome subunit alpha type 7-like protein variant 1 27 0.003696 0.602 1 1 +143496 OR52B4 olfactory receptor family 52 subfamily B member 4 (gene/pseudogene) 11 protein-coding OR11-3 olfactory receptor 52B4|olfactory receptor OR11-3|olfactory receptor, family 52, subfamily B, member 4 36 0.004927 0.02552 1 1 +143501 C11orf40 chromosome 11 open reading frame 40 11 protein-coding NOV1 putative uncharacterized protein C11orf40|ro/SSA1-related protein 28 0.003832 0.002984 1 1 +143502 OR52I2 olfactory receptor family 52 subfamily I member 2 11 protein-coding OR11-12|OR52I1 olfactory receptor 52I2|olfactory receptor OR11-12 44 0.006022 0.0741 1 1 +143503 OR51E1 olfactory receptor family 51 subfamily E member 1 11 protein-coding D-GPCR|DGPCR|GPR136|GPR164|OR51E1P|OR52A3P|POGR|PSGR2 olfactory receptor 51E1|Dresden-G-protein-coupled receptor|G-protein coupled receptor 164|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-specific G protein-coupled receptor 2 54 0.007391 4.245 1 1 +143570 XRRA1 X-ray radiation resistance associated 1 11 protein-coding - X-ray radiation resistance-associated protein 1 57 0.007802 8.68 1 1 +143630 UBQLNL ubiquilin-like 11 protein-coding - ubiquilin-like protein 47 0.006433 2.873 1 1 +143662 MUC15 mucin 15, cell surface associated 11 protein-coding MUC-15|PAS3|PASIII mucin-15 52 0.007117 4.105 1 1 +143666 LOC143666 uncharacterized LOC143666 11 ncRNA - - 4.647 0 1 +143678 C11orf94 chromosome 11 open reading frame 94 11 protein-coding - uncharacterized protein C11orf94 9 0.001232 0.08368 1 1 +143684 FAM76B family with sequence similarity 76 member B 11 protein-coding - protein FAM76B 20 0.002737 8.094 1 1 +143686 SESN3 sestrin 3 11 protein-coding SEST3 sestrin-3 39 0.005338 6.664 1 1 +143689 PIWIL4 piwi like RNA-mediated gene silencing 4 11 protein-coding HIWI2|MIWI2 piwi-like protein 4|piwi-like 4|testis tissue sperm-binding protein Li 85P 50 0.006844 5.074 1 1 +143872 ARHGAP42 Rho GTPase activating protein 42 11 protein-coding GRAF3 rho GTPase-activating protein 42|rho-type GTPase-activating protein 42 26 0.003559 7.235 1 1 +143879 KBTBD3 kelch repeat and BTB domain containing 3 11 protein-coding BKLHD3 kelch repeat and BTB domain-containing protein 3|BTB and kelch domain containing 3|BTB and kelch domain-containing protein 3|kelch repeat and BTB (POZ) domain containing 3 59 0.008076 6.532 1 1 +143884 CWF19L2 CWF19-like 2, cell cycle control (S. pombe) 11 protein-coding - CWF19-like protein 2 74 0.01013 8.25 1 1 +143888 KDELC2 KDEL motif containing 2 11 protein-coding - KDEL motif-containing protein 2|KDEL (Lys-Asp-Glu-Leu) containing 2 21 0.002874 9.616 1 1 +143903 LAYN layilin 11 protein-coding - layilin 32 0.00438 7.033 1 1 +143941 TTC36 tetratricopeptide repeat domain 36 11 protein-coding HBP21 tetratricopeptide repeat protein 36|HSP70 binding protein 21|TPR repeat protein 36 8 0.001095 1.884 1 1 +144097 C11orf84 chromosome 11 open reading frame 84 11 protein-coding - uncharacterized protein C11orf84|hypothetical protein BC007540 38 0.005201 8.863 1 1 +144100 PLEKHA7 pleckstrin homology domain containing A7 11 protein-coding - pleckstrin homology domain-containing family A member 7|PH domain-containing family A member 7|pleckstrin homology domain containing, family A member 2|pleckstrin homology domain containing, family A member 7|pleckstrin homology domain-containing family A member 6 82 0.01122 8.384 1 1 +144106 ST13P5 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 5 11 pseudo FAM10A5 family with sequence similarity 10, member A5 pseudogene 1 0.0001369 1 0 +144108 SPTY2D1 SPT2 chromatin protein domain containing 1 11 protein-coding Spt2 protein SPT2 homolog|SPT2 domain-containing protein 1|SPT2, Suppressor of Ty, domain containing 1 73 0.009992 9.485 1 1 +144110 TMEM86A transmembrane protein 86A 11 protein-coding - lysoplasmalogenase-like protein TMEM86A 12 0.001642 7.686 1 1 +144124 OR10A5 olfactory receptor family 10 subfamily A member 5 11 protein-coding JCG6|OR10A1|OR11-403 olfactory receptor 10A5|HP3|olfactory receptor 10A1|olfactory receptor 11-403|olfactory receptor OR11-85|olfactory receptor, family 10, subfamily A, member 1|olfactory receptor-like protein JCG6 39 0.005338 0.04842 1 1 +144125 OR2AG1 olfactory receptor family 2 subfamily AG member 1 (gene/pseudogene) 11 protein-coding OR11-79|OR2AG3 olfactory receptor 2AG1|hT3 olfactory receptor|olfactory receptor 2AG3|olfactory receptor OR11-79|olfactory receptor, family 2, subfamily AG, member 1|olfactory receptor, family 2, subfamily AG, member 3 29 0.003969 0.02953 1 1 +144132 DNHD1 dynein heavy chain domain 1 11 protein-coding C11orf47|CCDC35|DHCD1|DNHD1L dynein heavy chain domain-containing protein 1|DNHD1 variant protein|coiled-coil domain containing 35|dynein heavy chain domain 1-like protein 154 0.02108 7.062 1 1 +144165 PRICKLE1 prickle planar cell polarity protein 1 12 protein-coding EPM1B|RILP prickle-like protein 1|REST (RE-1 silencing transcription factor)/NRSF (neuron-restrictive silencer factor)-interacting LIM domain protein|REST/NRSF interacting LIM domain protein|REST/NRSF-interacting LIM domain protein 1|prickle homolog 1|prickle-like 1 73 0.009992 7.707 1 1 +144193 AMDHD1 amidohydrolase domain containing 1 12 protein-coding HMFT1272 probable imidazolonepropionase|amidohydrolase domain-containing protein 1 34 0.004654 3.734 1 1 +144195 SLC2A14 solute carrier family 2 member 14 12 protein-coding GLUT14|SLC2A3P3 solute carrier family 2, facilitated glucose transporter member 14|glucose transporter type 14|solute carrier family 2 (facilitated glucose transporter), member 14|solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 3 50 0.006844 4.116 1 1 +144203 OVOS2 ovostatin 2 12 protein-coding - ovostatin homolog 2 5 0.0006844 1 0 +144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase 12 protein-coding - pre-miRNA 5'-monophosphate methyltransferase|BCDIN3 domain containing RNA methyltransfease|BCDIN3 domain-containing protein|probable methyltransferase BCDIN3D 17 0.002327 7.459 1 1 +144245 ALG10B ALG10B, alpha-1,2-glucosyltransferase 12 protein-coding ALG10|KCR1 putative Dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase|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 10, alpha-1,2-glucosyltransferase homolog B|asparagine-linked glycosylation protein 10 homolog B|dolichyl-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-dolichol alpha-1,2- glucosyltransferase|modifier of the HERG potassium channel|potassium channel regulator 1|putative alpha-1,2-glucosyltransferase ALG10-B 39 0.005338 7.888 1 1 +144321 GLIPR1L2 GLI pathogenesis-related 1 like 2 12 protein-coding - GLIPR1-like protein 2 40 0.005475 3.704 1 1 +144347 RFLNA refilin A 12 protein-coding CFM2|FAM101A filamin-interacting protein FAM101A|family with sequence similarity 101, member A|protein FAM101A|refilinA|regulator of filamin protein A 13 0.001779 5.509 1 1 +144348 ZNF664 zinc finger protein 664 12 protein-coding ZFOC1|ZNF176 zinc finger protein 664|zinc finger Organ of Corti 1|zinc finger protein 176|zinc finger protein from organ of Corti 27 0.003696 11.61 1 1 +144360 LINC00477 long intergenic non-protein coding RNA 477 12 ncRNA C12orf67|FAM191B family with sequence similarity 191, member B 31 0.004243 1 0 +144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 12 protein-coding LYRM5 LYR motif-containing protein 5|LYR motif containing 5 6 0.0008212 8.315 1 1 +144402 CPNE8 copine 8 12 protein-coding - copine-8|copine VIII 55 0.007528 7.369 1 1 +144404 TMEM120B transmembrane protein 120B 12 protein-coding - transmembrane protein 120B 20 0.002737 8.738 1 1 +144406 WDR66 WD repeat domain 66 12 protein-coding CaM-IP4 WD repeat-containing protein 66 92 0.01259 6.04 1 1 +144423 GLT1D1 glycosyltransferase 1 domain containing 1 12 protein-coding - glycosyltransferase 1 domain-containing protein 1 34 0.004654 4.052 1 1 +144438 9.22 0 1 +144448 TSPAN19 tetraspanin 19 12 protein-coding - putative tetraspanin-19|tspan-19 19 0.002601 0.708 1 1 +144453 BEST3 bestrophin 3 12 protein-coding VMD2L3 bestrophin-3|vitelliform macular dystrophy 2-like 3|vitelliform macular dystrophy 2-like protein 3 80 0.01095 2.401 1 1 +144455 E2F7 E2F transcription factor 7 12 protein-coding - transcription factor E2F7|E2F-7 74 0.01013 6.093 1 1 +144481 SOCS2-AS1 SOCS2 antisense RNA 1 12 ncRNA - SOCS2 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +144486 CEP83-AS1 CEP83 antisense RNA 1 (head to head) 12 ncRNA CCDC41-AS1 CCDC41 antisense RNA 1 (head to head) 3.471 0 1 +144501 KRT80 keratin 80 12 protein-coding KB20 keratin, type II cytoskeletal 80|CK-80|K80|cytokeratin-80|keratin 80, type II|keratin b20|type II keratin|type-II keratin Kb20 25 0.003422 7.537 1 1 +144535 CFAP54 cilia and flagella associated protein 54 12 protein-coding C12orf55|C12orf63 cilia- and flagella-associated protein 54|cilia and flagella associated 54 124 0.01697 1 0 +144568 A2ML1 alpha-2-macroglobulin like 1 12 protein-coding CPAMD9 alpha-2-macroglobulin-like protein 1|C3 and PZP-like, alpha-2-macroglobulin domain containing 9 124 0.01697 3.941 1 1 +144571 A2M-AS1 A2M antisense RNA 1 (head to head) 12 ncRNA - A2M antisense RNA 1 (non-protein coding) 4.844 0 1 +144577 C12orf66 chromosome 12 open reading frame 66 12 protein-coding - UPF0536 protein C12orf66 36 0.004927 6.854 1 1 +144608 C12orf60 chromosome 12 open reading frame 60 12 protein-coding - uncharacterized protein C12orf60 18 0.002464 4.502 1 1 +144699 FBXL14 F-box and leucine rich repeat protein 14 12 protein-coding Fbl14 F-box/LRR-repeat protein 14 21 0.002874 9.444 1 1 +144715 RAD9B RAD9 checkpoint clamp component B 12 protein-coding - cell cycle checkpoint control protein RAD9B|DNA repair exonuclease rad9 homolog B|RAD9 homolog B 22 0.003011 4.797 1 1 +144717 FAM109A family with sequence similarity 109 member A 12 protein-coding IPIP27A|SES1 sesquipedalian-1|27 kDa inositol polyphosphate phosphatase-interacting protein A|inositol polyphosphate phosphatase-interacting protein A|protein FAM109A 14 0.001916 8.655 1 1 +144742 LINC00934 long intergenic non-protein coding RNA 934 12 ncRNA - - 0.1134 0 1 +144766 LINC00355 long intergenic non-protein coding RNA 355 13 other - - 0 0 1 0 +144776 LINC00410 long intergenic non-protein coding RNA 410 13 ncRNA - - 0 0 0.0442 1 1 +144809 FAM216B family with sequence similarity 216 member B 13 protein-coding C13orf30 protein FAM216B 9 0.001232 1.288 1 1 +144811 LACC1 laccase domain containing 1 13 protein-coding C13orf31|FAMIN laccase domain-containing protein 1|fatty acid metabolism-immunity nexus|laccase (multicopper oxidoreductase) domain containing 1 26 0.003559 7.59 1 1 +144832 ESRRAP2 estrogen-related receptor alpha pseudogene 2 13 pseudo ESTRRA - 11 0.001506 1 0 +144920 LINC00343 long intergenic non-protein coding RNA 343 13 ncRNA LINC00344|NCRNA00343|NCRNA00344 long intergenic non-protein coding RNA 344 0 0 1 0 +144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 13 protein-coding - heterogeneous nuclear ribonucleoprotein A1-like 2|hnRNP A1-like 2|hnRNP core protein A1-like 2 17 0.002327 11.11 1 1 +145165 ST13P4 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 4 13 pseudo FAM10A4|FAM10A4P ST13-like tumor suppressor|family with sequence similarity 10, member A4 pseudogene 8.309 0 1 +145173 B3GLCT beta 3-glucosyltransferase 13 protein-coding B3GALTL|B3GTL|B3Glc-T|Gal-T|beta3Glc-T beta-1,3-glucosyltransferase|UDP-GAL:beta-GlcNAc beta-1,3-galactosyltransferase-like|beta 1,3-galactosyltransferase-like|beta 3-glycosyltransferase-like 33 0.004517 8.079 1 1 +145200 LINC00239 long intergenic non-protein coding RNA 239 14 ncRNA C14orf72|NCRNA00239 - 2.162 0 1 +145216 LINC00637 long intergenic non-protein coding RNA 637 14 ncRNA - - 1 0.0001369 1 0 +145226 RDH12 retinol dehydrogenase 12 (all-trans/9-cis/11-cis) 14 protein-coding LCA13|RP53|SDR7C2 retinol dehydrogenase 12|all-trans and 9-cis retinol dehydrogenase|retinol dehydrogenase 12, all-trans and 9-cis|short chain dehydrogenase/reductase family 7C member 2 20 0.002737 3.359 1 1 +145241 ADAM21P1 ADAM metallopeptidase domain 21 pseudogene 1 14 pseudo ADAM21P a disintegrin and metalloproteinase domain 21 pseudogene 144 0.01971 0.958 1 1 +145249 LINC00618 long intergenic non-protein coding RNA 618 14 ncRNA C14orf63 - 2 0.0002737 1 0 +145258 GSC goosecoid homeobox 14 protein-coding SAMS homeobox protein goosecoid 10 0.001369 3.037 1 1 +145264 SERPINA12 serpin family A member 12 14 protein-coding OL-64 serpin A12|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12|vaspin|visceral adipose tissue-derived serine protease inhibitor|visceral adipose-specific SERPIN 50 0.006844 0.7645 1 1 +145270 PRIMA1 proline rich membrane anchor 1 14 protein-coding PRIMA proline-rich membrane anchor 1|acetylcholinesterase membrane anchor precursor PRiMA 21 0.002874 5.115 1 1 +145282 MIPOL1 mirror-image polydactyly 1 14 protein-coding CCDC193 mirror-image polydactyly gene 1 protein 40 0.005475 6.096 1 1 +145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 14 protein-coding C14orf50 protein phosphatase 1 regulatory subunit 36 33 0.004517 3.293 1 1 +145389 SLC38A6 solute carrier family 38 member 6 14 protein-coding NAT-1|SNAT6 probable sodium-coupled neutral amino acid transporter 6|N system amino acid transporter NAT-1|N-system amino acid transporter 1|Na(+)-coupled neutral amino acid transporter 6 27 0.003696 7.246 1 1 +145407 C14orf37 chromosome 14 open reading frame 37 14 protein-coding c14_5376 uncharacterized protein C14orf37 61 0.008349 6.01 1 1 +145447 ABHD12B abhydrolase domain containing 12B 14 protein-coding BEM46L3|C14orf29|c14_5314 protein ABHD12B|abhydrolase domain-containing protein 12B|alpha/beta hydrolase domain-containing protein 12B 17 0.002327 2.119 1 1 +145474 LOC145474 uncharacterized LOC145474 14 ncRNA - - 0.5211 0 1 +145482 PTGR2 prostaglandin reductase 2 14 protein-coding HEL-S-298|PGR2|ZADH1 prostaglandin reductase 2|15-oxoprostaglandin 13-reductase|15-oxoprostaglandin-delta13-reductase|PRG-2|epididymis secretory protein Li 298|zinc binding alcohol dehydrogenase, domain containing 1|zinc-binding alcohol dehydrogenase domain-containing protein 1 18 0.002464 8.184 1 1 +145483 FAM161B family with sequence similarity 161 member B 14 protein-coding C14orf44|c14_5547 protein FAM161B 37 0.005064 6.21 1 1 +145497 LRRC74A leucine rich repeat containing 74A 14 protein-coding C14orf166B|LRRC74 leucine-rich repeat-containing protein 74A|leucine rich repeat containing 74|leucine-rich repeat-containing protein 74 34 0.004654 0.2669 1 1 +145501 ISM2 isthmin 2 14 protein-coding TAIL1|THSD3 isthmin-2|isthmin 2 homolog|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 45 0.006159 2.4 1 1 +145508 CEP128 centrosomal protein 128 14 protein-coding C14orf145|C14orf61|LEDP/132 centrosomal protein of 128 kDa|centrosomal protein 128kDa|lens epithelium-derived protein 101 0.01382 6.397 1 1 +145553 MDP1 magnesium dependent phosphatase 1 14 protein-coding FN6PASE|MDP-1 magnesium-dependent phosphatase 1|fructosamine-6-phosphatase 13 0.001779 7.516 1 1 +145567 TTC7B tetratricopeptide repeat domain 7B 14 protein-coding TTC7L1|c14_5685 tetratricopeptide repeat protein 7B|TPR repeat protein 7-like-1|TPR repeat protein 7B|tetratricopeptide repeat domain 7 like 1|tetratricopeptide repeat protein 7-like-1 61 0.008349 8.547 1 1 +145581 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 14 protein-coding C14orf146|FIGLER8|SALM5 leucine-rich repeat and fibronectin type-III domain-containing protein 5|fibronectin type III, immunoglobulin and leucine rich repeat domains 8 169 0.02313 3.428 1 1 +145624 PWAR1 Prader Willi/Angelman region RNA 1 15 ncRNA D15S227E|PAR-1|PAR1 Prader Willi/Angelman region 1 0.9389 0 1 +145645 TERB2 telomere repeat binding bouquet formation protein 2 15 protein-coding C15orf43 telomere repeats-binding bouquet formation protein 2|uncharacterized protein C15orf43 19 0.002601 0.1838 1 1 +145741 C2CD4A C2 calcium dependent domain containing 4A 15 protein-coding FAM148A|NLF1 C2 calcium-dependent domain-containing protein 4A|family with sequence similarity 148, member A|nuclear localized factor 1 4 0.0005475 4.752 1 1 +145748 LYSMD4 LysM domain containing 4 15 protein-coding - lysM and putative peptidoglycan-binding domain-containing protein 4|LysM, putative peptidoglycan-binding, domain containing 4 21 0.002874 7.581 1 1 +145773 FAM81A family with sequence similarity 81 member A 15 protein-coding - protein FAM81A 25 0.003422 5.757 1 1 +145781 GCOM1 GRINL1A complex locus 1 15 protein-coding GRINL1A|Gcom2|MYZAP|MYZAP-POLR2M|gcom GRINL1A combined protein|GRINL1A combined protein Gcom12|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 33 0.004517 6.223 1 1 +145783 LOC145783 uncharacterized LOC145783 15 ncRNA - - 5.189 0 1 +145788 C15orf65 chromosome 15 open reading frame 65 15 protein-coding - uncharacterized protein C15orf65 1 0.0001369 1 0 +145814 PGPEP1L pyroglutamyl-peptidase I-like 15 protein-coding - pyroglutamyl-peptidase 1-like protein 12 0.001642 0.6816 1 1 +145820 LINC00924 long intergenic non-protein coding RNA 924 15 ncRNA - - 0 0 3.13 1 1 +145837 DRAIC downregulated RNA in cancer, inhibitor of cell invasion and migration 15 ncRNA - downregulated RNA in androgen independent cells 3.6 0 1 +145845 LOC145845 uncharacterized LOC145845 15 ncRNA - - 0.2104 0 1 +145853 C15orf61 chromosome 15 open reading frame 61 15 protein-coding - uncharacterized protein C15orf61 1 0.0001369 6.997 1 1 +145858 C15orf32 chromosome 15 open reading frame 32 15 protein-coding - uncharacterized protein C15orf32 18 0.002464 0.1383 1 1 +145864 HAPLN3 hyaluronan and proteoglycan link protein 3 15 protein-coding EXLD1|HsT19883 hyaluronan and proteoglycan link protein 3|extracellular link domain containing, 1 34 0.004654 7.735 1 1 +145873 MESP2 mesoderm posterior bHLH transcription factor 2 15 protein-coding SCDO2|bHLHc6 mesoderm posterior protein 2|class C basic helix-loop-helix protein 6|mesoderm posterior 2 homolog|mesoderm posterior basic helix-loop-helix transcription factor 2 46 0.006296 3.376 1 1 +145942 TMCO5A transmembrane and coiled-coil domains 5A 15 protein-coding TMCO5 transmembrane and coiled-coil domain-containing protein 5A|testicular tissue protein Li 205|transmembrane and coiled-coil domains 5 20 0.002737 0.09408 1 1 +145946 SPATA8 spermatogenesis associated 8 15 protein-coding SRG8 spermatogenesis-associated protein 8|spermatogenesis-related protein 8|testicular secretory protein Li 52 26 0.003559 0.3182 1 1 +145957 NRG4 neuregulin 4 15 protein-coding HRG4 pro-neuregulin-4, membrane-bound isoform|heregulin 4|pro-NRG4 10 0.001369 2.46 1 1 +145978 LINC00052 long intergenic non-protein coding RNA 52 15 ncRNA NCRNA00052|TMEM83 transmembrane protein 83 6 0.0008212 0.58 1 1 +146050 ZSCAN29 zinc finger and SCAN domain containing 29 15 protein-coding ZNF690|Zfp690 zinc finger and SCAN domain-containing protein 29|KOX31-like zinc finger protein|zinc finger protein 690 43 0.005886 8.734 1 1 +146057 TTBK2 tau tubulin kinase 2 15 protein-coding SCA11|TTBK tau-tubulin kinase 2 64 0.00876 6.348 1 1 +146059 CDAN1 codanin 1 15 protein-coding CDA1|CDAI|CDAN1A|DLT|PRO1295 codanin-1|congenital dyserythropoietic anemia, type I|discs lost homolog 62 0.008486 8.493 1 1 +146167 SLC38A8 solute carrier family 38 member 8 16 protein-coding FVH2 putative sodium-coupled neutral amino acid transporter 8 39 0.005338 0.6169 1 1 +146177 VWA3A von Willebrand factor A domain containing 3A 16 protein-coding - von Willebrand factor A domain-containing protein 3A 84 0.0115 1.919 1 1 +146183 OTOA otoancorin 16 protein-coding CT108|DFNB22 otoancorin|cancer/testis antigen 108 75 0.01027 3.481 1 1 +146198 ZFP90 ZFP90 zinc finger protein 16 protein-coding FIK|NK10|ZNF756|zfp-90 zinc finger protein 90 homolog|FOXP3-interacting KRAB domain-containing protein|zinc finger protein 476|zinc finger protein 756 44 0.006022 9.013 1 1 +146206 CARMIL2 capping protein regulator and myosin 1 linker 2 16 protein-coding CARMIL2b|LRRC16C|RLTPR capping protein, Arp2/3 and myosin-I linker protein 2|F-actin-uncapping protein RLTPR|RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing|RGD, leucine-rich repeat, tropomodulin and proline-rich containing protein|leucine rich repeat containing 16C|leucine-rich repeat-containing protein 16C 84 0.0115 5.399 1 1 +146212 KCTD19 potassium channel tetramerization domain containing 19 16 protein-coding - BTB/POZ domain-containing protein KCTD19|potassium channel tetramerisation domain containing 19|testicular tissue protein Li 101 74 0.01013 1.551 1 1 +146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 16 protein-coding CKLFSF4 CKLF-like MARVEL transmembrane domain-containing protein 4|chemokine-like factor super family 4|chemokine-like factor superfamily member 4 10 0.001369 10.11 1 1 +146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 16 protein-coding CKLFSF2 CKLF-like MARVEL transmembrane domain-containing protein 2|chemokine-like factor superfamily 2|chemokine-like factor superfamily member 2 14 0.001916 2.045 1 1 +146227 BEAN1 brain expressed, associated with NEDD4, 1 16 protein-coding BEAN|SCA31 protein BEAN1|brain-expressed protein associating with Nedd4 homolog 6 0.0008212 4.61 1 1 +146279 TEKT5 tektin 5 16 protein-coding CT149 tektin-5 56 0.007665 1.679 1 1 +146310 RNF151 ring finger protein 151 16 protein-coding - RING finger protein 151 13 0.001779 0.2957 1 1 +146325 PRR35 proline rich 35 16 protein-coding C16orf11|LA16c-366D1.2 proline-rich protein 35 38 0.005201 0.4876 1 1 +146330 FBXL16 F-box and leucine rich repeat protein 16 16 protein-coding C16orf22|Fbl16|c380A1.1 F-box/LRR-repeat protein 16|c380A1.1 (novel protein) 18 0.002464 7.457 1 1 +146336 SSTR5-AS1 SSTR5 antisense RNA 1 16 ncRNA - SSTR5 antisense RNA 1 (non-protein coding) 3 0.0004106 1.71 1 1 +146378 C16orf92 chromosome 16 open reading frame 92 16 protein-coding - uncharacterized protein C16orf92 10 0.001369 0.3033 1 1 +146395 GSG1L GSG1 like 16 protein-coding PRO19651 germ cell-specific gene 1-like protein|GSG1-like protein|KTSR5831 33 0.004517 1.955 1 1 +146429 SLC22A31 solute carrier family 22 member 31 16 protein-coding - putative solute carrier family 22 member 31|putative solute carrier family 22 member ENSG00000182157 2 0.0002737 1 0 +146433 IL34 interleukin 34 16 protein-coding C16orf77|IL-34 interleukin-34 17 0.002327 6.416 1 1 +146434 ZNF597 zinc finger protein 597 16 protein-coding HIT-4 zinc finger protein 597 39 0.005338 5.36 1 1 +146439 BICDL2 BICD family like cargo adaptor 2 16 protein-coding BICDR-2|BICDR2|CCDC64B bicaudal D-related protein 2|BICD-related protein 2|coiled-coil domain containing 64B|coiled-coil domain-containing protein 64B 25 0.003422 6.583 1 1 +146456 TMED6 transmembrane p24 trafficking protein 6 16 protein-coding PRO34237|SPLL9146|p24g5 transmembrane emp24 domain-containing protein 6|p24 family protein gamma-5|p24gamma5|transmembrane emp24 protein transport domain containing 6 14 0.001916 2.924 1 1 +146481 FRG2DP FSHD region gene 2 family member D, pseudogene 16 pseudo - FSHD region gene 2 family, member C pseudogene 0.3076 0 1 +146512 FLJ30679 uncharacterized protein FLJ30679 16 ncRNA - - 0.8446 0 1 +146540 ZNF785 zinc finger protein 785 16 protein-coding - zinc finger protein 785 28 0.003832 7.685 1 1 +146542 ZNF688 zinc finger protein 688 16 protein-coding - zinc finger protein 688 22 0.003011 7.842 1 1 +146547 PRSS36 protease, serine 36 16 protein-coding - polyserase-2|polyserine protease-2|serine protease 36 62 0.008486 5.019 1 1 +146556 C16orf89 chromosome 16 open reading frame 89 16 protein-coding - UPF0764 protein C16orf89 33 0.004517 5.363 1 1 +146562 C16orf71 chromosome 16 open reading frame 71 16 protein-coding - uncharacterized protein C16orf71 44 0.006022 3.971 1 1 +146664 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B 17 protein-coding GnT-IX|GnT-VB alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase B|N-acetylglucosaminyl-transferase Vb|N-acetylglucosaminyltransferase IX|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 83 0.01136 4.254 1 1 +146691 TOM1L2 target of myb1 like 2 membrane trafficking protein 17 protein-coding - TOM1-like protein 2|target of Myb-like protein 2|target of myb1-like 2 31 0.004243 10.46 1 1 +146705 TEPSIN TEPSIN, adaptor related protein complex 4 accessory protein 17 protein-coding C17orf56|ENTHD2 AP-4 complex accessory subunit tepsin|AP-4 accessory protein|ENTH domain containing 2|ENTH domain-containing protein 2|epsin for AP-4|tetra-epsin 26 0.003559 8.566 1 1 +146712 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 17 protein-coding 3-Gn-T8|B3GNT8|BGnT-8|beta-1|beta3Gn-T8|beta3GnTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like protein 1|BGnT-like protein 1|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8|beta-1,3-Gn-T8|beta-1,3-N-acetylglucosaminyltransferase 8|beta1,3-N-acetylglucosaminyltransferase-like protein 1|beta3Gn-T-like protein 1 23 0.003148 6.482 1 1 +146713 RBFOX3 RNA binding protein, fox-1 homolog 3 17 protein-coding FOX-3|FOX3|HRNBP3|NEUN RNA binding protein fox-1 homolog 3|RNA binding protein, fox-1 homolog (C. elegans) 3|fox-1 homolog C|hexaribonucleotide binding protein 3|neuronal nuclei 12 0.001642 2.315 1 1 +146722 CD300LF CD300 molecule like family member f 17 protein-coding CD300f|CLM-1|CLM1|IREM-1|IREM1|IgSF13|LMIR3|NKIR CMRF35-like molecule 1|CD300 antigen-like family member F|NK inhibitory receptor|immune receptor expressed on myeloid cells 1|immunoglobin superfamily member 13|immunoglobulin superfamily member 13|inhibitory receptor IREM1 25 0.003422 5.288 1 1 +146723 C17orf77 chromosome 17 open reading frame 77 17 protein-coding - uncharacterized protein C17orf77 25 0.003422 0.5367 1 1 +146754 DNAH2 dynein axonemal heavy chain 2 17 protein-coding DNAHC2|DNHD3 dynein heavy chain 2, axonemal|axonemal beta dynein heavy chain 2|ciliary dynein heavy chain 2|dynein heavy chain domain-containing protein 3|dynein, axonemal, heavy polypeptide 2 288 0.03942 4.484 1 1 +146760 RTN4RL1 reticulon 4 receptor like 1 17 protein-coding NGRH2|NgR3 reticulon-4 receptor-like 1|Nogo-66 receptor homolog 2|Nogo-66 receptor-related protein 3|nogo receptor-like 2 30 0.004106 5.956 1 1 +146771 TCAM1P testicular cell adhesion molecule 1, pseudogene 17 pseudo TCAM1 testicular cell adhesion molecule 1 homolog, pseudogene 20 0.002737 2.15 1 1 +146779 EFCAB3 EF-hand calcium binding domain 3 17 protein-coding - EF-hand calcium-binding domain-containing protein 3 44 0.006022 0.5692 1 1 +146802 SLC47A2 solute carrier family 47 member 2 17 protein-coding MATE2|MATE2-B|MATE2-K|MATE2K multidrug and toxin extrusion protein 2|kidney-specific H(+)/organic cation antiporter|solute carrier family 47 (multidrug and toxin extrusion), member 2 29 0.003969 2.673 1 1 +146822 CDRT15 CMT1A duplicated region transcript 15 17 protein-coding - CMT1A duplicated region transcript 15 protein 12 0.001642 0.103 1 1 +146845 CFAP52 cilia and flagella associated protein 52 17 protein-coding WDR16|WDRPUH cilia- and flagella-associated protein 52|WD repeat domain 16|WD repeat-containing protein 16|WD40-repeat protein up-regulated in HCC|WD40-repeat protein upregulated in HCC 58 0.007939 1.97 1 1 +146849 CCDC42 coiled-coil domain containing 42 17 protein-coding CCDC42A coiled-coil domain-containing protein 42A 37 0.005064 0.6771 1 1 +146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 17 protein-coding C17orf38|HsT41028|p84 PIKAP|p87(PIKAP)|p87PIKAP phosphoinositide 3-kinase regulatory subunit 6|PI3Kgamma adapter protein of 87 kDa|p84 PI3K adapter protein|p87 phosphoinositide 3-kinase gamma (PI3Kg) adapter protein 34 0.004654 4.936 1 1 +146852 ODF4 outer dense fiber of sperm tails 4 17 protein-coding CT134|CT136|OPPO1 outer dense fiber protein 4|cancer/testis antigen 134|cancer/testis antigen 136|hOPPO1|outer dense fiber 4|outer dense fiber of sperm tails protein 4|testis-specific protein oppo 1 17 0.002327 0.2308 1 1 +146853 C17orf50 chromosome 17 open reading frame 50 17 protein-coding - uncharacterized protein C17orf50 10 0.001369 1.173 1 1 +146857 SLFN13 schlafen family member 13 17 protein-coding SLFN10 schlafen family member 13 67 0.009171 7.717 1 1 +146861 SLC35G3 solute carrier family 35 member G3 17 protein-coding AMAC1|TMEM21A solute carrier family 35 member G3|acyl-malonyl-condensing enzyme 1|protein AMAC1|transmembrane protein 21A 43 0.005886 0.3084 1 1 +146862 UNC45B unc-45 myosin chaperone B 17 protein-coding CMYA4|CTRCT43|SMUNC45|UNC-45B|UNC45 protein unc-45 homolog B|cardiomyopathy associated 4|striated muscle UNC45|unc-45 homolog B 90 0.01232 1.568 1 1 +146880 LOC146880 Rho GTPase activating protein 27 pseudogene 17 pseudo - SH3 domain containing 20 pseudogene 3 0.0004106 8.333 1 1 +146894 CD300LG CD300 molecule like family member g 17 protein-coding CLM-9|CLM9|NEPMUCIN|TREM-4|TREM4 CMRF35-like molecule 9|CD300 antigen-like family member G|triggering receptor expressed on myeloid cells 4 45 0.006159 2.688 1 1 +146909 KIF18B kinesin family member 18B 17 protein-coding - kinesin-like protein KIF18B 39 0.005338 7.338 1 1 +146923 RUNDC1 RUN domain containing 1 17 protein-coding - RUN domain-containing protein 1 43 0.005886 9.249 1 1 +146956 EME1 essential meiotic structure-specific endonuclease 1 17 protein-coding MMS4L|SLX2A crossover junction endonuclease EME1|MMS4 homolog|SLX2 structure-specific endonuclease subunit homolog A|essential meiotic endonuclease 1 homolog 1|essential meiotic endonuclease 1 homolog 2|hMMS4|homolog of yeast EME1 endonuclease 34 0.004654 5.903 1 1 +147007 TMEM199 transmembrane protein 199 17 protein-coding C17orf32|CDG2P|VMA12|VPH2 transmembrane protein 199 10 0.001369 8.895 1 1 +147011 PROCA1 protein interacting with cyclin A1 17 protein-coding - protein PROCA1|proline-rich cyclin A1-interacting protein 28 0.003832 4.582 1 1 +147015 DHRS13 dehydrogenase/reductase 13 17 protein-coding SDR7C5 dehydrogenase/reductase SDR family member 13|dehydrogenase/reductase (SDR family) member 13|short chain dehydrogenase/reductase family 7C member 5 13 0.001779 8.142 1 1 +147040 KCTD11 potassium channel tetramerization domain containing 11 17 protein-coding C17orf36|KCASH1|REN|REN/KCTD11 BTB/POZ domain-containing protein KCTD11|potassium channel tetramerisation domain containing 11|retinoic acid, EGF, NGF induced gene protein|retinoic acid, EGF, NGF induced gene/potassium channel tetramerization domain containing 11 16 0.00219 8.988 1 1 +147081 CRHR1-IT1 CRHR1 intronic transcript 1 17 ncRNA C17orf69|MGC57346 CRHR1 intronic transcript 1 (non-protein coding) 3 0.0004106 5.77 1 1 +147093 LINC00974 long intergenic non-protein coding RNA 974 17 ncRNA - - 0 0 1 0 +147111 NOTUM NOTUM, palmitoleoyl-protein carboxylesterase 17 protein-coding hNOTUM palmitoleoyl-protein carboxylesterase NOTUM|[Wnt protein] O-palmitoleoyl-L-serine hydrolase|notum pectinacetylesterase homolog|protein notum homolog 34 0.004654 3.885 1 1 +147138 TMC8 transmembrane channel like 8 17 protein-coding EV2|EVER2|EVIN2 transmembrane channel-like protein 8|epidermodysplasia verruciformis 2|epidermodysplasia verruciformis protein 2 45 0.006159 7.919 1 1 +147150 UPF3AP2 UPF3A pseudogene 2 17 pseudo - UPF3 regulator of nonsense transcripts homolog A pseudogene 2 15 0.002053 1 0 +147166 TRIM16L tripartite motif containing 16-like 17 protein-coding TRIM70 tripartite motif-containing protein 16-like protein|tripartite motif protein 70|tripartite motif-containing protein 70 22 0.003011 7.346 1 1 +147172 LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 17 pseudo LRRC37B2 LRRC37B pseudogene 1|leucine rich repeat containing 37, member B2|putative LRRC37B-like protein 2 8 0.001095 8.711 1 1 +147179 WIPF2 WAS/WASL interacting protein family member 2 17 protein-coding WICH|WIRE WAS/WASL-interacting protein family member 2|WASP-binding protein|WASP-interacting protein-related protein|WIP- and CR16-homologous protein|WIP-related protein 41 0.005612 10.1 1 1 +147183 KRT25 keratin 25 17 protein-coding ARWH3|KRT24IRS1|KRT25A keratin, type I cytoskeletal 25|CK-25|K25|K25A|cytokeratin-25|keratin 25, type I|keratin-25A|type I inner root sheath specific keratin 25 irs1|type I inner root sheath-specific keratin-K25irs1 44 0.006022 0.1898 1 1 +147184 TMEM99 transmembrane protein 99 17 protein-coding - transmembrane protein 99 20 0.002737 8.052 1 1 +147199 SCGB1C1 secretoglobin family 1C member 1 11 protein-coding RYD5 secretoglobin family 1C member 1|ligand binding protein RYD5|secretoglobin RYD5 11 0.001506 0.1537 1 1 +147228 KRT17P1 keratin 17 pseudogene 1 17 pseudo - keratin pseudogene 16 0.00219 1 0 +147323 STARD6 StAR related lipid transfer domain containing 6 18 protein-coding - stAR-related lipid transfer protein 6|START domain containing 6|START domain-containing protein 6|StAR-related lipid transfer (START) domain containing 6 18 0.002464 0.1796 1 1 +147339 C18orf25 chromosome 18 open reading frame 25 18 protein-coding ARKL1|RNF111L1 uncharacterized protein C18orf25|ARKadia-like 1 18 0.002464 9.171 1 1 +147372 CCBE1 collagen and calcium binding EGF domains 1 18 protein-coding HKLLS1 collagen and calcium-binding EGF domain-containing protein 1|full of fluid protein homolog 45 0.006159 3.043 1 1 +147381 CBLN2 cerebellin 2 precursor 18 protein-coding - cerebellin-2 41 0.005612 2.392 1 1 +147407 SLC25A52 solute carrier family 25 member 52 18 protein-coding MCART2 solute carrier family 25 member 52|mitochondrial carrier triple repeat 2|mitochondrial carrier triple repeat protein 2 26 0.003559 2.606 1 1 +147409 DSG4 desmoglein 4 18 protein-coding CDGF13|CDHF13|HYPT6|LAH desmoglein-4|cadherin family member 13 115 0.01574 0.7801 1 1 +147429 AQP4-AS1 AQP4 antisense RNA 1 18 ncRNA C18orf16|CHST9-AS1 CHST9 antisense RNA 1 (non-protein coding) 8 0.001095 1.647 1 1 +147463 ANKRD29 ankyrin repeat domain 29 18 protein-coding - ankyrin repeat domain-containing protein 29 18 0.002464 5.689 1 1 +147495 APCDD1 APC down-regulated 1 18 protein-coding B7323|DRAPC1|FP7019|HHS|HTS|HYPT1 protein APCDD1|adenomatosis polyposis coli down-regulated 1 protein|hypoptrichosis simplex 42 0.005749 8.728 1 1 +147525 LINC00526 long intergenic non-protein coding RNA 526 18 ncRNA C18orf18|HsT959 - 5.712 0 1 +147645 VSIG10L V-set and immunoglobulin domain containing 10 like 19 protein-coding - V-set and immunoglobulin domain-containing protein 10-like 27 0.003696 6.362 1 1 +147650 SPACA6 sperm acrosome associated 6 19 protein-coding LET7EH|LINC00085|NCRNA00085|SPACA6P sperm acrosome membrane-associated protein 6|BACHELOR-like protein|Let-7e host|long intergenic non-protein coding RNA 85|sperm acrosome associated 6, pseudogene 7 0.0009581 5.6 1 1 +147657 ZNF480 zinc finger protein 480 19 protein-coding - zinc finger protein 480 46 0.006296 8.443 1 1 +147658 ZNF534 zinc finger protein 534 19 protein-coding KRBO3 zinc finger protein 534|KRAB domain only 3|KRAB domain only protein 3 68 0.009307 2.83 1 1 +147660 ZNF578 zinc finger protein 578 19 protein-coding - zinc finger protein 578 87 0.01191 5.018 1 1 +147664 ERVV-1 endogenous retrovirus group V member 1 19 protein-coding ENVV1|HERV-V1 endogenous retrovirus group V member 1 Env polyprotein|HERV-V_19q13.41 provirus ancestral Env polyprotein 1|endogenous retrovirus group V, member 2|envelope glycoprotein ENVV1|envelope protein ENVV1 3 0.0004106 1 0 +147685 C19orf18 chromosome 19 open reading frame 18 19 protein-coding - uncharacterized protein C19orf18 22 0.003011 2.952 1 1 +147686 ZNF418 zinc finger protein 418 19 protein-coding - zinc finger protein 418 57 0.007802 5.584 1 1 +147687 ZNF417 zinc finger protein 417 19 protein-coding - zinc finger protein 417 36 0.004927 7.066 1 1 +147694 ZNF548 zinc finger protein 548 19 protein-coding - zinc finger protein 548 49 0.006707 7.874 1 1 +147699 PPM1N protein phosphatase, Mg2+/Mn2+ dependent 1N (putative) 19 protein-coding - probable protein phosphatase 1N 21 0.002874 4.117 1 1 +147700 KLC3 kinesin light chain 3 19 protein-coding KLC2|KLC2L|KLCt|KNS2B kinesin light chain 3|kinesin light chain 2 33 0.004517 5.799 1 1 +147710 IGSF23 immunoglobulin superfamily member 23 19 protein-coding - immunoglobulin superfamily member 23 2 0.0002737 1 0 +147711 ZNF285B zinc finger protein 285B (pseudogene) 19 pseudo - zinc finger protein 285 pseudogene 5 0.0006844 1 0 +147719 LYPD4 LY6/PLAUR domain containing 4 19 protein-coding SMR ly6/PLAUR domain-containing protein 4|sperm membrane receptor|testicular tissue protein Li 159 22 0.003011 0.2367 1 1 +147727 ILF3-AS1 ILF3 antisense RNA 1 (head to head) 19 ncRNA - CTC-539A10.4|ILF3 antisense RNA 1 (non-protein coding) 8.844 0 1 +147741 ZNF560 zinc finger protein 560 19 protein-coding - zinc finger protein 560 94 0.01287 1.584 1 1 +147744 TMEM190 transmembrane protein 190 19 protein-coding MDAC1 transmembrane protein 190 17 0.002327 1.104 1 1 +147746 HIPK4 homeodomain interacting protein kinase 4 19 protein-coding - homeodomain-interacting protein kinase 4 40 0.005475 2.108 1 1 +147798 TMC4 transmembrane channel like 4 19 protein-coding - transmembrane channel-like protein 4|testicular tissue protein Li 204 67 0.009171 8.66 1 1 +147804 TPM3P9 tropomyosin 3 pseudogene 9 19 pseudo - - 3 0.0004106 6.952 1 1 +147807 ZNF524 zinc finger protein 524 19 protein-coding - zinc finger protein 524 16 0.00219 8.248 1 1 +147808 ZNF784 zinc finger protein 784 19 protein-coding - zinc finger protein 784 24 0.003285 7.343 1 1 +147837 ZNF563 zinc finger protein 563 19 protein-coding - zinc finger protein 563 47 0.006433 5.901 1 1 +147841 SPC24 SPC24, NDC80 kinetochore complex component 19 protein-coding SPBC24 kinetochore protein Spc24|SPC24, NDC80 kinetochore complex component, homolog|hSpc24|spindle pole body component 24 homolog 8 0.001095 4.32 1 1 +147872 CCDC155 coiled-coil domain containing 155 19 protein-coding KASH5 protein KASH5|KASH domain-containing protein 5 53 0.007254 0.9507 1 1 +147906 DACT3 dishevelled binding antagonist of beta catenin 3 19 protein-coding DAPPER3|RRR1 dapper homolog 3|antagonist of beta-catenin Dapper homolog 3|arginine-rich region 1 protein|dapper, antagonist of beta-catenin, homolog 3 6 0.0008212 6.787 1 1 +147912 SIX5 SIX homeobox 5 19 protein-coding BOR2|DMAHP homeobox protein SIX5|DM locus-associated homeodomain protein|dystrophia myotonica-associated homeodomain protein|sine oculis homeobox homolog 5 35 0.004791 8.974 1 1 +147920 IGFL2 IGF like family member 2 19 protein-coding UNQ645|VPRI645 insulin growth factor-like family member 2 15 0.002053 3.059 1 1 +147923 ZNF420 zinc finger protein 420 19 protein-coding APAK zinc finger protein 420|ATM and p53-associated KZNF protein 58 0.007939 6.757 1 1 +147929 ZNF565 zinc finger protein 565 19 protein-coding - zinc finger protein 565 32 0.00438 5.993 1 1 +147945 NLRP4 NLR family pyrin domain containing 4 19 protein-coding CLR19.5|CT58|NALP4|PAN2|PYPAF4|RNH2 NACHT, LRR and PYD domains-containing protein 4|NACHT, LRR and PYD 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 140 0.01916 0.9402 1 1 +147947 ZNF542P zinc finger protein 542, pseudogene 19 pseudo ZNF542 zinc finger protein pseudogene 10 0.001369 7.764 1 1 +147948 ZNF582 zinc finger protein 582 19 protein-coding - zinc finger protein 582 51 0.006981 4.963 1 1 +147949 ZNF583 zinc finger protein 583 19 protein-coding - zinc finger protein 583|zinc finger protein L3-5 51 0.006981 5.761 1 1 +147965 FAM98C family with sequence similarity 98 member C 19 protein-coding - protein FAM98C 50 0.006844 8.03 1 1 +147968 CAPN12 calpain 12 19 protein-coding - calpain-12|CANP 12|calcium-activated neutral proteinase 12 40 0.005475 6.935 1 1 +147991 DPY19L3 dpy-19 like 3 (C. elegans) 19 protein-coding - probable C-mannosyltransferase DPY19L3|dpy-19-like 3|dpy-19-like protein 3|protein dpy-19 homolog 3 64 0.00876 8.139 1 1 +148003 LGALS16 galectin 16 19 protein-coding - galectin-16|beta-galactoside-binding lectin|lectin, galactoside-binding, soluble, 16 7 0.0009581 1 0 +148014 TTC9B tetratricopeptide repeat domain 9B 19 protein-coding - tetratricopeptide repeat protein 9B|TPR repeat protein 9B 8 0.001095 1.263 1 1 +148022 TICAM1 toll like receptor adaptor molecule 1 19 protein-coding IIAE6|MyD88-3|PRVTIRB|TICAM-1|TRIF TIR domain-containing adapter molecule 1|TIR domain containing adaptor inducing interferon-beta|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 51 0.006981 9.175 1 1 +148046 CIRBP-AS1 CIRBP antisense RNA 1 19 ncRNA C19orf23 CIRBP antisense RNA 1 (non-protein coding) 3 0.0004106 4.309 1 1 +148066 ZNRF4 zinc and ring finger 4 19 protein-coding RNF204|SPERIZIN|Ssrzf1|spzn E3 ubiquitin-protein ligase ZNRF4|RING finger protein 204|nixin|zinc/RING finger protein 4 71 0.009718 0.103 1 1 +148103 ZNF599 zinc finger protein 599 19 protein-coding - zinc finger protein 599 52 0.007117 6.493 1 1 +148109 FAM187B family with sequence similarity 187 member B 19 protein-coding TMEM162 protein FAM187B|transmembrane protein 162 30 0.004106 0.3418 1 1 +148113 CILP2 cartilage intermediate layer protein 2 19 protein-coding CLIP-2 cartilage intermediate layer protein 2|CILP-2|cartilage intermediate layer protein-like protein 2 101 0.01382 5.746 1 1 +148137 PROSER3 proline and serine rich 3 19 protein-coding C19orf55 proline and serine-rich protein 3 38 0.005201 6.396 1 1 +148145 LINC00906 long intergenic non-protein coding RNA 906 19 ncRNA - CTD-2081K17.1 0.6896 0 1 +148156 ZNF558 zinc finger protein 558 19 protein-coding - zinc finger protein 558 25 0.003422 8.353 1 1 +148170 CDC42EP5 CDC42 effector protein 5 19 protein-coding Borg3|CEP5 cdc42 effector protein 5|CDC42 effector protein (Rho GTPase binding) 5|binder of Rho GTPases 3 4 0.0005475 6.624 1 1 +148189 LINC00662 long intergenic non-protein coding RNA 662 19 ncRNA - CTC-459F4.2 5.735 0 1 +148198 ZNF98 zinc finger protein 98 19 protein-coding F7175|ZNF739 zinc finger protein 98|zinc finger protein 739|zinc finger protein F7175 90 0.01232 2.251 1 1 +148203 ZNF738 zinc finger protein 738 19 pseudo - - 6 0.0008212 7.314 1 1 +148206 ZNF714 zinc finger protein 714 19 protein-coding - zinc finger protein 714 59 0.008076 7.119 1 1 +148213 ZNF681 zinc finger protein 681 19 protein-coding - zinc finger protein 681 66 0.009034 6.386 1 1 +148223 C19orf25 chromosome 19 open reading frame 25 19 protein-coding - UPF0449 protein C19orf25 4 0.0005475 9.026 1 1 +148229 ATP8B3 ATPase phospholipid transporting 8B3 19 protein-coding ATPIK phospholipid-transporting ATPase IK|ATPase, aminophospholipid transporter, class I, type 8B, member 3|ATPase, class I, type 8B, member 3|aminophospholipid translocase ATP8B3|potential phospholipid-transporting ATPase IK|probable phospholipid-transporting ATPase IK 93 0.01273 5.182 1 1 +148231 LINC00905 long intergenic non-protein coding RNA 905 19 ncRNA - - 10 0.001369 0.04624 1 1 +148252 DIRAS1 DIRAS family GTPase 1 19 protein-coding Di-Ras1|GBTS1|RIG GTP-binding protein Di-Ras1|DIRAS family, GTP-binding RAS-like 1|distinct subgroup of the Ras family member 1|ras-related inhibitor of cell growth|small GTP-binding tumor suppressor 1 18 0.002464 6.139 1 1 +148254 ZNF555 zinc finger protein 555 19 protein-coding - zinc finger protein 555 35 0.004791 6.15 1 1 +148266 ZNF569 zinc finger protein 569 19 protein-coding ZAP1|ZNF zinc finger protein 569|DNA-binding protein 67 0.009171 6.686 1 1 +148268 ZNF570 zinc finger protein 570 19 protein-coding - zinc finger protein 570 50 0.006844 5.47 1 1 +148281 SYT6 synaptotagmin 6 1 protein-coding sytVI synaptotagmin-6|synaptotagmin VI 50 0.006844 2.974 1 1 +148304 C1orf74 chromosome 1 open reading frame 74 1 protein-coding URLC4 UPF0739 protein C1orf74|up-regulated in lung cancer 4 15 0.002053 6.548 1 1 +148327 CREB3L4 cAMP responsive element binding protein 3 like 4 1 protein-coding AIBZIP|ATCE1|CREB3|CREB4|JAL|hJAL cyclic AMP-responsive element-binding protein 3-like protein 4|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 4|tisp40|transcript induced in spermiogenesis protein 40 23 0.003148 8.73 1 1 +148345 C1orf127 chromosome 1 open reading frame 127 1 protein-coding - uncharacterized protein C1orf127 65 0.008897 2.598 1 1 +148362 BROX BRO1 domain and CAAX motif containing 1 protein-coding C1orf58 BRO1 domain-containing protein BROX 25 0.003422 8.036 1 1 +148398 SAMD11 sterile alpha motif domain containing 11 1 protein-coding MRS sterile alpha motif domain-containing protein 11|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 30 0.004106 5.864 1 1 +148413 LOC148413 uncharacterized LOC148413 1 ncRNA - - 8.603 0 1 +148418 SAMD13 sterile alpha motif domain containing 13 1 protein-coding HSD-41|HSD-42 sterile alpha motif domain-containing protein 13|SAM domain-containing protein 13|dnaj-like protein (LOC148418) 11 0.001506 4.874 1 1 +148423 C1orf52 chromosome 1 open reading frame 52 1 protein-coding gm117 UPF0690 protein C1orf52|BCL10-associated gene protein 13 0.001779 8.237 1 1 +148430 LOC148430 ribosomal protein S2 pseudogene 1 pseudo - - 0 0 1 0 +148479 PHF13 PHD finger protein 13 1 protein-coding PHF5|SPOC1 PHD finger protein 13|PHD zinc finger protein PHF5|survival time-associated PHD finger protein in ovarian cancer 1|survival time-associated PHD protein in ovarian cancer 25 0.003422 9.256 1 1 +148523 CIART circadian associated repressor of transcription 1 protein-coding C1orf51|CHRONO|GM129 circadian-associated transcriptional repressor|chIP-derived repressor of network oscillator|computationally highlighted repressor of the network oscillator 26 0.003559 6.786 1 1 +148534 TMEM56 transmembrane protein 56 1 protein-coding - transmembrane protein 56 18 0.002464 7.737 1 1 +148545 NBPF4 neuroblastoma breakpoint family member 4 1 protein-coding - neuroblastoma breakpoint family member 4 4 0.0005475 1.43 1 1 +148581 UBE2U ubiquitin conjugating enzyme E2 U (putative) 1 protein-coding - ubiquitin-conjugating enzyme E2 U|E2 ubiquitin-conjugating enzyme U|testicular tissue protein Li 216|ubiquitin carrier protein U|ubiquitin conjugating enzyme E2U (putative)|ubiquitin-protein ligase U 18 0.002464 0.2282 1 1 +148641 SLC35F3 solute carrier family 35 member F3 1 protein-coding - putative thiamine transporter SLC35F3 59 0.008076 4.071 1 1 +148645 LINC00337 long intergenic non-protein coding RNA 337 1 ncRNA C1orf211|NCRNA00337 - 0 0 1 0 +148696 LOC148696 uncharacterized LOC148696 1 ncRNA - - 1.562 0 1 +148709 LOC148709 actin pseudogene 1 pseudo - actin, gamma 1 pseudogene 1 0.0001369 3.295 1 1 +148713 PTPRVP protein tyrosine phosphatase, receptor type V, pseudogene 1 pseudo ESP|OST-PTP|PTPRV - 42 0.005749 1.372 1 1 +148738 HFE2 hemochromatosis type 2 (juvenile) 1 protein-coding HFE2A|HJV|JH|RGMC hemojuvelin|RGM domain family member C|haemojuvelin|hemochromatosis type 2 protein|repulsive guidance molecule c 36 0.004927 1.295 1 1 +148741 ANKRD35 ankyrin repeat domain 35 1 protein-coding - ankyrin repeat domain-containing protein 35 83 0.01136 5.503 1 1 +148753 FAM163A family with sequence similarity 163 member A 1 protein-coding C1orf76|NDSP protein FAM163A|cebelin|neuroblastoma derived secretory protein 16 0.00219 2.515 1 1 +148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 1 protein-coding B3GalNAc-T2|MDDGA11 UDP-GalNAc:beta-1,3-N-acetylgalactosaminyltransferase 2|UDP-GalNAc:betaGlcNAc beta-1,3-galactosaminyltransferase, polypeptide 2|beta-1,3-GalNAc-T2 19 0.002601 9.315 1 1 +148808 MFSD4A major facilitator superfamily domain containing 4A 1 protein-coding MFSD4|UNQ3064 major facilitator superfamily domain-containing protein 4A|major facilitator superfamily domain containing 4|major facilitator superfamily domain-containing protein 4 26 0.003559 6.555 1 1 +148811 PM20D1 peptidase M20 domain containing 1 1 protein-coding Cps1 probable carboxypeptidase PM20D1|peptidase M20 domain-containing protein 1 35 0.004791 1.866 1 1 +148823 GCSAML germinal center associated signaling and motility like 1 protein-coding C1orf150 germinal center-associated signaling and motility-like protein 32 0.00438 1.617 1 1 +148824 GCSAML-AS1 GCSAML antisense RNA 1 1 ncRNA - - 1 0.0001369 0.8289 1 1 +148867 SLC30A7 solute carrier family 30 member 7 1 protein-coding ZNT7|ZnT-7|ZnTL2 zinc transporter 7|solute carrier family 30 (zinc transporter), member 7|zinc transporter ZnT-7|zinc transporter like 2|znt-like transporter 2 21 0.002874 9.633 1 1 +148870 CCDC27 coiled-coil domain containing 27 1 protein-coding - coiled-coil domain-containing protein 27 68 0.009307 0.2424 1 1 +148898 ZNF436-AS1 ZNF436 antisense RNA 1 1 ncRNA C1orf213 putative uncharacterized protein C1orf213 9 0.001232 5.509 1 1 +148930 KNCN kinocilin 1 protein-coding Kino|L5 kinocilin 12 0.001642 0.3982 1 1 +148932 MOB3C MOB kinase activator 3C 1 protein-coding MOB1E|MOBKL2C MOB kinase activator 3C|MOB1, Mps One Binder kinase activator-like 2C|mob1 homolog 2C 19 0.002601 8.725 1 1 +148979 GLIS1 GLIS family zinc finger 1 1 protein-coding - zinc finger protein GLIS1|GLI-similar 1 56 0.007665 3.634 1 1 +149013 NBPF12 neuroblastoma breakpoint family member 12 1 protein-coding COAS1|KIAA1245 neuroblastoma breakpoint family member 12|chomosome one amplified sequence 1 cyclophilin|chromosome 1 amplified sequence 1 27 0.003696 1 0 +149018 LELP1 late cornified envelope like proline rich 1 1 protein-coding - late cornified envelope-like proline-rich protein 1|novel small proline rich protein 20 0.002737 0.06951 1 1 +149041 RC3H1 ring finger and CCCH-type domains 1 1 protein-coding RNF198|ROQUIN roquin-1|RING finger and C3H zinc finger protein 1|RING finger and CCCH-type zinc finger domain-containing protein 1|RING finger protein 198|probable E3 ubiquitin-protein ligase Roquin 87 0.01191 9.431 1 1 +149047 MGC27382 uncharacterized MGC27382 1 ncRNA - - 0.5004 0 1 +149069 DCDC2B doublecortin domain containing 2B 1 protein-coding - doublecortin domain-containing protein 2B 18 0.002464 0.6927 1 1 +149076 ZNF362 zinc finger protein 362 1 protein-coding RN|lin-29 zinc finger protein 362|rotund homolog 31 0.004243 9.56 1 1 +149095 DCST1 DC-STAMP domain containing 1 1 protein-coding - DC-STAMP domain-containing protein 1 55 0.007528 0.6237 1 1 +149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 1 protein-coding CNIH-3 protein cornichon homolog 3|cornichon homolog 3 15 0.002053 5.448 1 1 +149134 LINC01341 long intergenic non-protein coding RNA 1341 1 ncRNA - - 3.572 0 1 +149175 MANEAL mannosidase endo-alpha like 1 protein-coding - glycoprotein endo-alpha-1,2-mannosidase-like protein 23 0.003148 8.297 1 1 +149233 IL23R interleukin 23 receptor 1 protein-coding - interleukin-23 receptor|IL-23 receptor 45 0.006159 0.9059 1 1 +149281 METTL11B methyltransferase like 11B 1 protein-coding C1orf184|HOMT1B|NTM1B alpha N-terminal protein methyltransferase 1B|X-Pro-Lys N-terminal protein methyltransferase 1B|methyltransferase-like protein 11B 9 0.001232 0.5762 1 1 +149297 FAM78B family with sequence similarity 78 member B 1 protein-coding - protein FAM78B 41 0.005612 4.441 1 1 +149345 SHISA4 shisa family member 4 1 protein-coding C1orf40|TMEM58 protein shisa-4|shisa homolog 4|transmembrane protein 58 12 0.001642 8.038 1 1 +149371 EXOC8 exocyst complex component 8 1 protein-coding EXO84|Exo84p|SEC84 exocyst complex component 8|exocyst complex 84 kDa subunit 44 0.006022 8.728 1 1 +149420 PDIK1L PDLIM1 interacting kinase 1 like 1 protein-coding CLIK1L|STK35L2 serine/threonine-protein kinase PDIK1L|casein kinase 17 0.002327 8.353 1 1 +149428 BNIPL BCL2 interacting protein like 1 protein-coding BNIP-S|BNIP-Salpha|BNIP-Sbeta|BNIPL-1|BNIPL-2|BNIPL1|BNIPL2|BNIPS|PP753 bcl-2/adenovirus E1B 19 kDa-interacting protein 2-like protein|BCL2/adenovirus E1B 19kD interacting protein like|BNIP-2 similar 20 0.002737 5.31 1 1 +149461 CLDN19 claudin 19 1 protein-coding HOMG5 claudin-19 19 0.002601 1.553 1 1 +149465 CFAP57 cilia and flagella associated protein 57 1 protein-coding VWS2|WDR65 cilia- and flagella-associated protein 57|WD repeat-containing protein 65 55 0.007528 2.05 1 1 +149466 C1orf210 chromosome 1 open reading frame 210 1 protein-coding TEMP type III endosome membrane protein TEMP 12 0.001642 6.339 1 1 +149469 3.902 0 1 +149473 CCDC24 coiled-coil domain containing 24 1 protein-coding - coiled-coil domain-containing protein 24 20 0.002737 7.601 1 1 +149478 BTBD19 BTB domain containing 19 1 protein-coding - BTB/POZ domain-containing protein 19|BTB (POZ) domain containing 19|novel BTB domain containing protein 7 0.0009581 4.12 1 1 +149483 CCDC17 coiled-coil domain containing 17 1 protein-coding - coiled-coil domain-containing protein 17 33 0.004517 3.417 1 1 +149499 LRRC71 leucine rich repeat containing 71 1 protein-coding C1orf92 leucine-rich repeat-containing protein 71|leucine-rich repeat-containing protein C10orf92 21 0.002874 0.9228 1 1 +149563 C1orf64 chromosome 1 open reading frame 64 1 protein-coding ERRF uncharacterized protein C1orf64|ER-related factor 12 0.001642 2.423 1 1 +149603 RNF187 ring finger protein 187 1 protein-coding RACO-1|RACO1 E3 ubiquitin-protein ligase RNF187|RING domain AP1 coactivator 1|protein RNF187 2 0.0002737 11.74 1 1 +149620 CHIAP2 chitinase, acidic pseudogene 2 1 pseudo - CHIA-like pseudogene|novel protein containing a Glycosyl hydrolases family 18 domain 19 0.002601 0.3374 1 1 +149628 PYHIN1 pyrin and HIN domain family member 1 1 protein-coding IFIX pyrin and HIN domain-containing protein 1|interferon-inducible protein X 86 0.01177 3.821 1 1 +149643 SPATA45 spermatogenesis associated 45 1 protein-coding C1orf227 spermatogenesis-associated protein 45|UPF0732 protein C1orf227 10 0.001369 0.6286 1 1 +149647 FAM71A family with sequence similarity 71 member A 1 protein-coding GARI-L4 protein FAM71A|Golgi-associated Rab2B interactor-like 4|testis secretory sperm-binding protein Li 209a 71 0.009718 0.3576 1 1 +149685 ADIG adipogenin 20 protein-coding SMAF1 adipogenin|adipogenesis associated|small adipocyte factor 1 (SMAF1) 9 0.001232 0.4388 1 1 +149699 GTSF1L gametocyte specific factor 1 like 20 protein-coding C20orf65|FAM112A|dJ1028D15.4 gametocyte-specific factor 1-like|family with sequence similarity 112, member A 15 0.002053 0.6262 1 1 +149708 WFDC5 WAP four-disulfide core domain 5 20 protein-coding PRG5|WAP1|dJ211D12.5 WAP four-disulfide core domain protein 5|p53-responsive gene 5 protein|protease inhibitor WAP1|putative protease inhibitor WAP1 13 0.001779 1.621 1 1 +149773 APCDD1L-AS1 APCDD1L antisense RNA 1 (head to head) 20 ncRNA - APCDD1L antisense RNA 1 (non-protein coding) 9 0.001232 1 0 +149775 GNAS-AS1 GNAS antisense RNA 1 20 ncRNA GNAS-AS|GNAS1AS|GNASAS|NCRNA00075|NESP-AS|NESPAS|SANG GNAS antisense RNA 1 (non-protein coding)|GNAS1 antisense 1 0.0001369 1.589 1 1 +149830 PRNT prion protein (testis specific) 20 ncRNA M8 - 8 0.001095 0.03988 1 1 +149837 LINC00654 long intergenic non-protein coding RNA 654 20 ncRNA - - 5 0.0006844 4.972 1 1 +149840 C20orf196 chromosome 20 open reading frame 196 20 protein-coding - uncharacterized protein C20orf196 21 0.002874 6.256 1 1 +149934 NCOR1P1 nuclear receptor corepressor 1 pseudogene 1 20 pseudo C20orf191|bB329D4.2 nuclear receptor co-repressor 1 pseudogene 55 0.007528 0.1554 1 1 +149951 COMMD7 COMM domain containing 7 20 protein-coding C20orf92|dJ1085F17.3 COMM domain-containing protein 7 14 0.001916 10.17 1 1 +149954 BPIFB4 BPI fold containing family B member 4 20 protein-coding C20orf186|LPLUNC4|RY2G5|dJ726C3.5 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 77 0.01054 0.6713 1 1 +149986 LSM14B LSM family member 14B 20 protein-coding C20orf40|FAM61B|FT005|LSM13|RAP55B|bA11M20.3 protein LSM14 homolog B|LSM14 homolog B|LSM14B, SCD6 homolog B|RNA-associated protein 55B|family with sequence similarity 61, member B|hRAP55B 29 0.003969 10.18 1 1 +149992 ANKRD30BP2 ankyrin repeat domain 30B pseudogene 2 21 pseudo C21orf99|CT85|CTSP-1|CTSP1 ankyrin repeat domain 30A pseudogene|cancer-testis SP-1|cancer/testis antigen 85 141 0.0193 0.3214 1 1 +149998 LIPI lipase I 21 protein-coding CT17|LPDL|PLA1C|PRED5|mPA-PLA1 beta lipase member I|LPD lipase|cancer/testis antigen 17|lipase, member I|membrane-associated phosphatidic acid-selective phospholipase A1-beta 70 0.009581 0.4051 1 1 +150000 ABCC13 ATP binding cassette subfamily C member 13 (pseudogene) 21 pseudo ABCC13P|C21orf73|PRED6 ATP-binding cassette protein C13|ATP-binding cassette transporter C13|ATP-binding cassette, sub-family C (CFTR/MRP), member 13, pseudogene 14 0.001916 1.096 1 1 +150051 LOC150051 uncharacterized LOC150051 21 protein-coding - uncharacterized protein LOC150051 1 0.0001369 1 0 +150082 LCA5L LCA5L, lebercilin like 21 protein-coding C21orf13 lebercilin-like protein|Leber congenital amaurosis 5-like|leber congenital amaurosis 5-like protein 45 0.006159 5.301 1 1 +150084 IGSF5 immunoglobulin superfamily member 5 21 protein-coding GSF5|JAM4 immunoglobulin superfamily member 5|immunoglobulin superfamily 5 like|junctional adhesion molecule 4 40 0.005475 2.402 1 1 +150094 SIK1 salt inducible kinase 1 21 protein-coding EIEE30|MSK|SIK|SNF1LK serine/threonine-protein kinase SIK1|SIK-1|SNF1-like kinase|myocardial SNF1-like kinase|salt-inducible protein kinase 1|serine/threonine protein kinase|serine/threonine-protein kinase SNF1-like kinase 1|serine/threonine-protein kinase SNF1LK 47 0.006433 10.34 1 1 +150135 LINC00479 long intergenic non-protein coding RNA 479 21 ncRNA C21orf129|PRED76 - 14 0.001916 1.126 1 1 +150142 ZNF295-AS1 ZNF295 antisense RNA 1 21 ncRNA C21orf121|NCRNA00318|PRED87 ZNF295 antisense RNA 1 (non-protein coding) 7 0.0009581 0.86 1 1 +150147 UMODL1-AS1 UMODL1 antisense RNA 1 21 ncRNA C21orf128 - 11 0.001506 1.048 1 1 +150159 SLC9B1 solute carrier family 9 member B1 4 protein-coding NHA1|NHEDC1 sodium/hydrogen exchanger 9B1|NHE domain-containing protein 1|Na(+)/H(+) exchanger-like domain-containing protein 1|sodium/hydrogen exchanger-like domain-containing protein 1|solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1|solute carrier family 9, subfamily B (cation proton antiporter 2), member 1|testicular tissue protein Li 127 45 0.006159 2.347 1 1 +150160 CCT8L2 chaperonin containing TCP1 subunit 8 like 2 22 protein-coding CESK1 T-complex protein 1 subunit theta-like 2|chaperonin containing TCP1, subunit 8 (theta)-like 2|putative T-complex protein 1 subunit theta-like 2 110 0.01506 0.173 1 1 +150165 XKR3 XK related 3 22 protein-coding XRG3|XTES XK-related protein 3|X Kell blood group precursor-related family, member 3|X-linked Kx blood group related 3|XK, Kell blood group complex subunit-related family, member 3|expressed in testis|x Kell blood group-related 3 33 0.004517 0.4686 1 1 +150185 LINC00895 long intergenic non-protein coding RNA 895 22 ncRNA - - 0.1449 0 1 +150197 LINC00896 long intergenic non-protein coding RNA 896 22 ncRNA - - 2.303 0 1 +150209 AIFM3 apoptosis inducing factor, mitochondria associated 3 22 protein-coding AIFL apoptosis-inducing factor 3|apoptosis-inducing factor like|apoptosis-inducing factor, mitochondrion-associated, 3 41 0.005612 4.892 1 1 +150221 RIMBP3C RIMS binding protein 3C 22 protein-coding RIM-BP3.3|RIMBP3.3 RIMS-binding protein 3C|RIM-BP3.C|RIMS binding protein 3.3 7 0.0009581 2.181 1 1 +150223 YDJC YdjC homolog (bacterial) 22 protein-coding - carbohydrate deacetylase|UPF0249 protein ydjC homolog 11 0.001506 8.468 1 1 +150244 ZDHHC8P1 zinc finger DHHC-type containing 8 pseudogene 1 22 pseudo ZDHHC8P zinc finger, DHHC-type containing 8 pseudogene 29 0.003969 4.401 1 1 +150248 C22orf15 chromosome 22 open reading frame 15 22 protein-coding N27C7-3 uncharacterized protein C22orf15|protein N27C7-3 7 0.0009581 1.609 1 1 +150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone 22 protein-coding DNAJC20|HSC20|JAC1 iron-sulfur cluster co-chaperone protein HscB, mitochondrial|DnaJ (Hsp40) homolog, subfamily C, member 20|HscB iron-sulfur cluster co-chaperone homolog|HscB mitochondrial iron-sulfur cluster co-chaperone|J-type co-chaperone HSC20 22 0.003011 7.792 1 1 +150275 CCDC117 coiled-coil domain containing 117 22 protein-coding dJ366L4.1 coiled-coil domain-containing protein 117 19 0.002601 9.507 1 1 +150280 HORMAD2 HORMA domain containing 2 22 protein-coding CT46.2 HORMA domain-containing protein 2 9 0.001232 0.5599 1 1 +150290 DUSP18 dual specificity phosphatase 18 22 protein-coding DSP18|DUSP20|LMWDSP20 dual specificity protein phosphatase 18|low molecular weight dual specificity phosphatase 20 13 0.001779 6.884 1 1 +150291 MORC2-AS1 MORC2 antisense RNA 1 22 ncRNA C22orf27|NCRNA00325 MORC2 antisense RNA 1 (non-protein coding) 4 0.0005475 6.935 1 1 +150297 C22orf42 chromosome 22 open reading frame 42 22 protein-coding dJ90G24.6 uncharacterized protein C22orf42 29 0.003969 0.1551 1 1 +150350 ENTHD1 ENTH domain containing 1 22 protein-coding CACNA1I|dJ370M22.3 ENTH domain-containing protein 1|dJ370M22.3 (EPSIN 2B)|epsin-2B 69 0.009444 1.489 1 1 +150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 22 protein-coding DJ5|HSC3 dnaJ homolog subfamily B member 7|DnaJ (Hsp40) homolog, subfamily B, member 7|novel DnaJ domain protein 26 0.003559 1.767 1 1 +150356 CHADL chondroadherin like 22 protein-coding SLRR4B chondroadherin-like protein 15 0.002053 6.1 1 1 +150365 MEI1 meiotic double-stranded break formation protein 1 22 protein-coding SPATA38 meiosis inhibitor protein 1|meiosis defective 1|meiosis defective protein 1|meiosis inhibitor 1|spermatogenesis associated 38 74 0.01013 4.903 1 1 +150368 FAM109B family with sequence similarity 109 member B 22 protein-coding IPIP27B|Ses2 sesquipedalian-2|27 kDa inositol polyphosphate phosphatase interacting protein B 17 0.002327 8.008 1 1 +150372 NFAM1 NFAT activating protein with ITAM motif 1 22 protein-coding CNAIP NFAT activation molecule 1|calcineurin/NFAT-activating ITAM-containing protein 15 0.002053 7.331 1 1 +150379 PNPLA5 patatin like phospholipase domain containing 5 22 protein-coding GS2L|dJ388M5|dJ388M5.4 patatin-like phospholipase domain-containing protein 5|GS2-like protein 29 0.003969 0.8082 1 1 +150381 PRR34-AS1 PRR34 antisense RNA 1 22 ncRNA - - 5.769 0 1 +150383 CDPF1 cysteine rich DPF motif domain containing 1 22 protein-coding C22orf40 cysteine-rich DPF motif domain-containing protein 1|UPF0595 protein C22orf40 9 0.001232 7.376 1 1 +150384 GTSE1-AS1 GTSE1 antisense RNA 1 (head to head) 22 ncRNA CN5H6.4|LL22NC03-5H6.6 - 3.485 0 1 +150465 TTL tubulin tyrosine ligase 2 protein-coding - tubulin--tyrosine ligase|2410003M22Rik 21 0.002874 9.685 1 1 +150468 CKAP2L cytoskeleton associated protein 2 like 2 protein-coding - cytoskeleton-associated protein 2-like|radial fiber and mitotic spindle protein|radmis 48 0.00657 6.539 1 1 +150472 CBWD2 COBW domain containing 2 2 protein-coding - COBW domain-containing protein 2|cobalamin synthase W domain-containing protein 2|cobalamin synthetase W domain-containing protein 2 10 0.001369 9.019 1 1 +150483 TEKT4 tektin 4 2 protein-coding - tektin-4 74 0.01013 2.539 1 1 +150527 TISP43 uncharacterized LOC150527 2 pseudo - - 0.1713 0 1 +150538 SATB2-AS1 SATB2 antisense RNA 1 2 ncRNA - SATB2 antisense RNA 1 (non-protein coding) 0.7619 0 1 +150568 LINC01102 long intergenic non-protein coding RNA 1102 2 ncRNA - - 1.053 0 1 +150572 SMYD1 SET and MYND domain containing 1 2 protein-coding BOP|KMT3D|ZMYND18|ZMYND22 histone-lysine N-methyltransferase SMYD1|CD8 beta opposite|SET and MYND domain-containing protein 1|zinc finger, MYND domain containing 18 62 0.008486 1.258 1 1 +150590 C2orf15 chromosome 2 open reading frame 15 2 protein-coding - uncharacterized protein C2orf15 14 0.001916 5.418 1 1 +150622 LINC01105 long intergenic non-protein coding RNA 1105 2 ncRNA - - 1.808 0 1 +150677 OTOS otospiralin 2 protein-coding OTOSP otospiralin 8 0.001095 0.9495 1 1 +150678 COPS9 COP9 signalosome subunit 9 2 protein-coding CSNAP|MYEOV2 myeloma-overexpressed gene 2 protein|CSN acidic protein|helicase/primase complex protein|myeloma overexpressed 2 25 0.003422 9.424 1 1 +150681 OR6B3 olfactory receptor family 6 subfamily B member 3 2 protein-coding OR6B3P|OR6B3Q olfactory receptor 6B3|olfactory receptor OR2-2|olfactory receptor, family 6, subfamily B, member 3 pseudogene 21 0.002874 0.1132 1 1 +150684 COMMD1 copper metabolism domain containing 1 2 protein-coding C2orf5|MURR1 COMM domain-containing protein 1|copper metabolism (Murr1) domain containing 1|copper metabolism gene MURR1|protein Murr1 15 0.002053 8.171 1 1 +150696 PROM2 prominin 2 2 protein-coding PROML2 prominin-2|prominin-like protein 2|prominin-related protein 53 0.007254 8.518 1 1 +150709 ANKAR ankyrin and armadillo repeat containing 2 protein-coding - ankyrin and armadillo repeat-containing protein 92 0.01259 4.676 1 1 +150726 FBXO41 F-box protein 41 2 protein-coding FBX41 F-box only protein 41 43 0.005886 7.959 1 1 +150737 TTC30B tetratricopeptide repeat domain 30B 2 protein-coding IFT70|IFT70B|fleer tetratricopeptide repeat protein 30B|TPR repeat protein 30B 32 0.00438 7.146 1 1 +150759 LINC00342 long intergenic non-protein coding RNA 342 2 ncRNA NCRNA00342 - 1 0.0001369 1 0 +150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial 2 protein-coding CT123 glycerol-3-phosphate acyltransferase 2, mitochondrial|cancer/testis antigen 123 37 0.005064 4.855 1 1 +150771 ITPRIPL1 inositol 1,4,5-trisphosphate receptor interacting protein-like 1 2 protein-coding KIAA1754L inositol 1,4,5-trisphosphate receptor-interacting protein-like 1|inositol 1,4,5-triphosphate receptor-interacting protein-like 1 45 0.006159 4.568 1 1 +150776 LOC150776 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 2 pseudo - neutral sphingomyelinase-3 pseudogene 1 0.0001369 8.429 1 1 +150786 WTH3DI RAB6C-like 2 protein-coding - RAB6C-like 5.481 0 1 +150864 FAM117B family with sequence similarity 117 member B 2 protein-coding ALS2CR13 protein FAM117B|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 13|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 13 protein 37 0.005064 8.703 1 1 +150921 TCF23 transcription factor 23 2 protein-coding OUT|TCF-23|bHLHa24 transcription factor 23|class A basic helix-loop-helix protein 24|class II basic helix-loop-helix protein TCF23 28 0.003832 0.3112 1 1 +150928 PTMAP5 prothymosin, alpha pseudogene 5 13 pseudo - gene sequence 150|novel protein similar to prothymosin, alpha (PTMA) 1 0.0001369 1 0 +150946 GAREM2 GRB2 associated regulator of MAPK1 subtype 2 2 protein-coding FAM59B|GAREML GRB2-associated and regulator of MAPK protein 2|GRB2 associated regulator of MAPK1 2|GRB2 associated, regulator of MAPK1-like|GRB2-associated and regulator of MAPK protein-like|GRB2-associated and regulator of MAPK1-like|family with sequence similarity 59, member B|protein FAM59B 14 0.001916 1 0 +150962 PUS10 pseudouridylate synthase 10 2 protein-coding CCDC139|DOBI putative tRNA pseudouridine synthase Pus10|coiled-coil domain containing 139|coiled-coil domain-containing protein 139|pseudouridine synthase 10|psi55 synthase|tRNA pseudouridine 55 synthase|tRNA pseudouridylate synthase|tRNA-uridine isomerase 32 0.00438 7.249 1 1 +150992 LINC00309 long intergenic non-protein coding RNA 309 2 ncRNA NCRNA00309 - 0 0 1 0 +151009 LINC01106 long intergenic non-protein coding RNA 1106 2 ncRNA - - 5.413 0 1 +151011 SEPT10 septin 10 2 protein-coding - septin-10 43 0.005886 10.1 1 1 +151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like 2 protein-coding C2orf67|MSL1v2 KAT8 regulatory NSL complex subunit 1-like protein|male-specific lethal 1 homolog 53 0.007254 8.611 1 1 +151056 PLB1 phospholipase B1 2 protein-coding PLB|PLB/LIP phospholipase B1, membrane-associated|lysophospholipase|phospholipase A2|phospholipase B/lipase 119 0.01629 5.785 1 1 +151112 ZSWIM2 zinc finger SWIM-type containing 2 2 protein-coding MEX|ZZZ2 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 93 0.01273 0.2423 1 1 +151126 ZNF385B zinc finger protein 385B 2 protein-coding ZNF533 zinc finger protein 385B|zinc finger protein 533 42 0.005749 4.521 1 1 +151162 10.38 0 1 +151174 LOC151174 uncharacterized LOC151174 2 ncRNA - - 2 0.0002737 2.721 1 1 +151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 2 protein-coding AIP-6|AIP6|PFAAP1 ADP-ribosylation factor-like protein 6-interacting protein 6|ADP-ribosylation factor GTPase 6 interacting protein 6|ADP-ribosylation factor-like 6 interacting protein 6|ADP-ribosylation-like factor 6 interacting protein 6|ARL-6-interacting protein 6|phosphonoformate immuno-associated protein 1|regulated by phosphonoformate 18 0.002464 8.479 1 1 +151194 METTL21A methyltransferase like 21A 2 protein-coding FAM119A|HCA557b|HSPA-KMT protein N-lysine methyltransferase METTL21A|HSPA lysine methyltransferase|family with sequence similarity 119, member A|heat shock protein 70kDa lysine (K) methyltransferase|hepatocellular carcinoma-associated antigen 557b|methyltransferase-like protein 21A 17 0.002327 7.85 1 1 +151195 CCNYL1 cyclin Y like 1 2 protein-coding - cyclin-Y-like protein 1 14 0.001916 8.812 1 1 +151230 KLHL23 kelch like family member 23 2 protein-coding DITHP kelch-like protein 23|kelch-like 23 33 0.004517 6.607 1 1 +151234 SULT1C2P1 sulfotransferase family 1C member 2 pseudogene 1 2 pseudo SULT1C1P sulfotransferase family, cytosolic, 1C, member 2 pseudogene 1 1 0.0001369 1 0 +151242 PPP1R1C protein phosphatase 1 regulatory inhibitor subunit 1C 2 protein-coding IPP5 protein phosphatase 1 regulatory subunit 1C|PP1 inhibitor protein 5|inhibitor-5 of protein phosphatase 1|protein phosphatase 1 regulatory subunit 1A 7 0.0009581 3.25 1 1 +151246 SGO2 shugoshin 2 2 protein-coding SGOL2|TRIPIN shugoshin 2|shugoshin-like 2 91 0.01246 7.326 1 1 +151254 ALS2CR11 amyotrophic lateral sclerosis 2 chromosome region candidate 11 2 protein-coding - amyotrophic lateral sclerosis 2 chromosomal region candidate gene 11 protein|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 11|testicular tissue protein Li 16 51 0.006981 2.484 1 1 +151258 SLC38A11 solute carrier family 38 member 11 2 protein-coding AVT2 putative sodium-coupled neutral amino acid transporter 11 34 0.004654 3.085 1 1 +151278 CCDC140 coiled-coil domain containing 140 2 protein-coding - coiled-coil domain-containing protein 140 15 0.002053 0.4422 1 1 +151295 SLC23A3 solute carrier family 23 member 3 2 protein-coding E2BP3|SVCT3|Yspl1 solute carrier family 23 member 3|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 (nucleobase transporters), member 3 39 0.005338 3.488 1 1 +151300 LINC00608 long intergenic non-protein coding RNA 608 2 ncRNA - - 0.03987 0 1 +151306 GPBAR1 G protein-coupled bile acid receptor 1 2 protein-coding BG37|GPCR19|GPR131|M-BAR|TGR5 G-protein coupled bile acid receptor 1|G-protein coupled bile acid receptor BG37|G-protein coupled receptor GPCR19|membrane bile acid receptor|membrane-type receptor for bile acids 14 0.001916 3.93 1 1 +151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B 2 protein-coding - fumarylacetoacetate hydrolase domain-containing protein 2B 31 0.004243 6.734 1 1 +151325 MYADML myeloid associated differentiation marker like (pseudogene) 2 pseudo - myeloid-associated differentiation marker-like 15 0.002053 0.2105 1 1 +151354 FAM84A family with sequence similarity 84 member A 2 protein-coding NSE1|PP11517 protein FAM84A|neurologic sensory protein 1|neurological/sensory 1 24 0.003285 8.027 1 1 +151393 RMDN2 regulator of microtubule dynamics 2 2 protein-coding BLOCK18|FAM82A|FAM82A1|PRO34163|PYST9371|RMD-2|RMD2|RMD4 regulator of microtubule dynamics protein 2|family with sequence similarity 82, member A|family with sequence similarity 82, member A1|microtubule-associated protein 37 0.005064 6.315 1 1 +151449 GDF7 growth differentiation factor 7 2 protein-coding BMP12 growth/differentiation factor 7|GDF-7 16 0.00219 1.049 1 1 +151457 LOC151457 developmentally regulated GTP binding protein 1 pseudogene 2 pseudo - - 0 0 1 0 +151473 SLC16A14 solute carrier family 16 member 14 2 protein-coding MCT14 monocarboxylate transporter 14|MCT 14|monocarboxylic acid transporter 14|solute carrier family 16 (monocarboxylic acid transporters), member 14|solute carrier family 16, member 14 (monocarboxylic acid transporter 14) 41 0.005612 6.961 1 1 +151477 LINC00471 long intergenic non-protein coding RNA 471 2 ncRNA C2orf52 - 14 0.001916 2.506 1 1 +151507 MSL3P1 male-specific lethal 3 homolog (Drosophila) pseudogene 1 2 pseudo MSL3L2 MSL3-like 2|male-specific lethal 3 homolog pseudogene|male-specific lethal 3-like 2|male-specific lethal-3 homolog 2|putative male-specific lethal-3 protein-like 2 24 0.003285 6.522 1 1 +151516 ASPRV1 aspartic peptidase, retroviral-like 1 2 protein-coding MUNO|SASP|SASPase|Taps retroviral-like aspartic protease 1|TPA-inducible aspartic proteinase-like protein|skin aspartic protease|skin-specific retroviral-like aspartic protease 29 0.003969 5.682 1 1 +151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 2 protein-coding UBOX6|WDSAM1 WD repeat, SAM and U-box domain-containing protein 1 22 0.003011 7.593 1 1 +151531 UPP2 uridine phosphorylase 2 2 protein-coding UDRPASE2|UP2|UPASE2 uridine phosphorylase 2|UPase 2|liver-specific uridine phosphorylase|urdPase 2 34 0.004654 1.547 1 1 +151534 LBX2-AS1 LBX2 antisense RNA 1 2 ncRNA - LBX2 antisense RNA 1 (non-protein coding) 7.049 0 1 +151556 GPR155 G protein-coupled receptor 155 2 protein-coding DEP.7|DEPDC3|PGR22 integral membrane protein GPR155|G-protein coupled receptor PGR22 53 0.007254 7.808 1 1 +151613 TTC14 tetratricopeptide repeat domain 14 3 protein-coding DRDL5813|PRO19630 tetratricopeptide repeat protein 14|TPR repeat protein 14 65 0.008897 9.053 1 1 +151636 DTX3L deltex E3 ubiquitin ligase 3L 3 protein-coding BBAP E3 ubiquitin-protein ligase DTX3L|B-lymphoma- and BAL-associated protein|deltex 3 like, E3 ubiquitin ligase|deltex 3-like|rhysin-2|rhysin2 36 0.004927 10.78 1 1 +151647 FAM19A4 family with sequence similarity 19 member A4, C-C motif chemokine like 3 protein-coding TAFA-4|TAFA4 protein FAM19A4|chemokine-like protein TAFA-4|family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 21 0.002874 1.424 1 1 +151648 SGO1 shugoshin 1 3 protein-coding CAID|NY-BR-85|SGO|SGOL1 shugoshin 1|serologically defined breast cancer antigen NY-BR-85|shugoshin 1AB protein|shugoshin 1CD protein|shugoshin 1EF protein|shugoshin 1GH protein|shugoshin 1KL protein 40 0.005475 5.519 1 1 +151649 PP2D1 protein phosphatase 2C like domain containing 1 3 protein-coding C3orf48 protein phosphatase 2C-like domain-containing protein 1 5 0.0006844 0.4474 1 1 +151651 EFHB EF-hand domain family member B 3 protein-coding CFAP21 EF-hand domain-containing family member B|cilia and flagella associated protein 21 72 0.009855 2.791 1 1 +151658 LINC00635 long intergenic non-protein coding RNA 635 3 ncRNA - - 0 0 0.2602 1 1 +151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L 3 protein-coding PP2C-epsilon|PP2CE|PPM1-LIKE protein phosphatase 1L|PP2C epsilon|Protein phosphatase 2C epsilon isoform|protein phosphatase 2C isoform epsilon 33 0.004517 5.962 1 1 +151790 WDR49 WD repeat domain 49 3 protein-coding - WD repeat-containing protein 49 124 0.01697 1.647 1 1 +151827 LRRC34 leucine rich repeat containing 34 3 protein-coding - leucine-rich repeat-containing protein 34 24 0.003285 5.638 1 1 +151835 CPNE9 copine family member 9 3 protein-coding - copine-9|copine IX|copine family member IX|copine-like protein 31 0.004243 1.74 1 1 +151871 DPPA2 developmental pluripotency associated 2 3 protein-coding CT100|ECAT15-2|PESCRG1 developmental pluripotency-associated protein 2|cancer/testis antigen 100|embryonic stem cell (ESC) associated transcript 15-2|pluripotent embryonic stem cell-related gene 1 protein 59 0.008076 0.5092 1 1 +151877 MAGI1-IT1 MAGI1 intronic transcript 1 3 unknown - MAGI1 intronic transcript 1 (non-protein coding) 2 0.0002737 1 0 +151887 CCDC80 coiled-coil domain containing 80 3 protein-coding DRO1|SSG1|URB|okuribin 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 91 0.01246 10.26 1 1 +151888 BTLA B and T lymphocyte associated 3 protein-coding BTLA1|CD272 B- and T-lymphocyte attenuator|B- and T-lymphocyte-associated protein 17 0.002327 3.28 1 1 +151903 CCDC12 coiled-coil domain containing 12 3 protein-coding - coiled-coil domain-containing protein 12 6 0.0008212 9.271 1 1 +151963 MB21D2 Mab-21 domain containing 2 3 protein-coding C3orf59 protein MB21D2|mab-21 domain-containing protein 2 62 0.008486 7.226 1 1 +151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 3 protein-coding PP4R2 serine/threonine-protein phosphatase 4 regulatory subunit 2 22 0.003011 8.355 1 1 +152002 XXYLT1 xyloside xylosyltransferase 1 3 protein-coding C3orf21 xyloside xylosyltransferase 1|UDP-xylose:alpha-xyloside alpha-1,3-xylosyltransferase 31 0.004243 8.535 1 1 +152006 RNF38 ring finger protein 38 9 protein-coding - E3 ubiquitin-protein ligase RNF38 22 0.003011 9.791 1 1 +152007 GLIPR2 GLI pathogenesis related 2 9 protein-coding C9orf19|GAPR-1|GAPR1 Golgi-associated plant pathogenesis-related protein 1|17kD fetal brain protein|gliPR 2|glioma pathogenesis-related protein 2|golgi-associated PR-1 protein 14 0.001916 8.974 1 1 +152015 ROPN1B rhophilin associated tail protein 1B 3 protein-coding - ropporin-1B|AKAP-binding sperm protein ropporin|rhophilin-associated protein 1B|ropporin, rhophilin associated protein 1B|testis tissue sperm-binding protein Li 83P 17 0.002327 2.255 1 1 +152024 LINC00691 long intergenic non-protein coding RNA 691 3 ncRNA - - 11 0.001506 0.5043 1 1 +152065 C3orf22 chromosome 3 open reading frame 22 3 protein-coding - uncharacterized protein C3orf22 12 0.001642 0.1064 1 1 +152078 PQLC2L PQ loop repeat containing 2 like 3 protein-coding C3orf55 putative uncharacterized protein PQLC2L|PQ-loop repeat-containing protein 2-like 9 0.001232 2.952 1 1 +152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 3 protein-coding ZCW2 zinc finger CW-type PWWP domain protein 2|zinc finger CW-type and PWWP domain 2|zinc finger, CW type with PWWP domain 2 41 0.005612 3.504 1 1 +152100 CMC1 C-X9-C motif containing 1 3 protein-coding C3orf68 COX assembly mitochondrial protein homolog|C-x(9)-C motif containing 1|COX assembly mitochondrial protein 1 homolog|CX9C mitochondrial protein required for full expression of COX 1|cmc1p|mitochondrial metallochaperone-like protein 4 0.0005475 7.376 1 1 +152110 NEK10 NIMA related kinase 10 3 protein-coding - serine/threonine-protein kinase Nek10|NIMA (never in mitosis gene a)- related kinase 10|never in mitosis A-related kinase 10|nimA-related protein kinase 10 88 0.01204 2.949 1 1 +152118 C3orf79 chromosome 3 open reading frame 79 3 protein-coding - putative uncharacterized protein C3orf79 10 0.001369 0.08107 1 1 +152137 CCDC50 coiled-coil domain containing 50 3 protein-coding C3orf6|DFNA44|YMER coiled-coil domain-containing protein 50|protein Ymer 41 0.005612 10.56 1 1 +152138 PYDC2 pyrin domain containing 2 3 protein-coding POP2|cPOP2 pyrin domain-containing protein 2|cellular POP2|pyrin-only protein 2 14 0.001916 0.009909 1 1 +152185 SPICE1 spindle and centriole associated protein 1 3 protein-coding CCDC52|SPICE spindle and centriole-associated protein 1|coiled-coil domain-containing protein 52 50 0.006844 8.325 1 1 +152189 CMTM8 CKLF like MARVEL transmembrane domain containing 8 3 protein-coding CKLFSF8|CKLFSF8-V2 CKLF-like MARVEL transmembrane domain-containing protein 8|chemokine-like factor superfamily member 8 9 0.001232 6.915 1 1 +152195 NUDT16P1 nudix hydrolase 16 pseudogene 1 3 pseudo NUDT16P nudix (nucleoside diphosphate linked moiety X)-type motif 16 pseudogene 1|nudix-type motif 16 pseudogene 6.265 0 1 +152206 CCDC13 coiled-coil domain containing 13 3 protein-coding - coiled-coil domain-containing protein 13 65 0.008897 3.604 1 1 +152217 NCBP2-AS2 NCBP2 antisense RNA 2 (head to head) 3 ncRNA - - 3 0.0004106 8.465 1 1 +152225 LOC152225 uncharacterized LOC152225 3 ncRNA - - 1.305 0 1 +152273 FGD5 FYVE, RhoGEF and PH domain containing 5 3 protein-coding ZFYVE23 FYVE, RhoGEF and PH domain-containing protein 5|zinc finger FYVE domain-containing protein 23 113 0.01547 8.345 1 1 +152302 CIDECP cell death-inducing DFFA-like effector c pseudogene 3 pseudo CICE cell death-inducing CIDE-like effector pseudogene 19 0.002601 6.885 1 1 +152330 CNTN4 contactin 4 3 protein-coding AXCAM|BIG-2 contactin-4|axonal-associated cell adhesion molecule|brain-derived immunoglobulin superfamily protein 2|neural cell adhesion protein BIG-2 122 0.0167 5.734 1 1 +152404 IGSF11 immunoglobulin superfamily member 11 3 protein-coding BT-IgSF|CT119|CXADRL1|Igsf13|VSIG3 immunoglobulin superfamily member 11|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 53 0.007254 4.057 1 1 +152405 C3orf30 chromosome 3 open reading frame 30 3 protein-coding TSCPA uncharacterized protein C3orf30 57 0.007802 0.349 1 1 +152485 ZNF827 zinc finger protein 827 4 protein-coding - zinc finger protein 827 80 0.01095 7.205 1 1 +152503 SH3D19 SH3 domain containing 19 4 protein-coding EBP|EVE1|Kryn|SH3P19 SH3 domain-containing protein 19|ADAM-binding protein Eve-1|EEN-binding protein|SH3 domain protein D19 48 0.00657 10 1 1 +152518 NFXL1 nuclear transcription factor, X-box binding like 1 4 protein-coding CDZFP|HOZFP|OZFP|URCC5 NF-X1-type zinc finger protein NFXL1|cytoplasm-distribution zinc finger protein|ovarian zinc finger protein|up-regulated in colon cancer 5 52 0.007117 7.771 1 1 +152519 NIPAL1 NIPA like domain containing 1 4 protein-coding NPAL1 magnesium transporter NIPA3|NIPA-like protein 1|non-imprinted in Prader-Willi/Angelman syndrome region protein 3 25 0.003422 4.176 1 1 +152559 PAQR3 progestin and adipoQ receptor family member 3 4 protein-coding RKTG progestin and adipoQ receptor family member 3|Raf kinase trapping to Golgi|progestin and adipoQ receptor family member III 20 0.002737 8.103 1 1 +152573 SHISA3 shisa family member 3 4 protein-coding hShisa3 protein shisa-3 homolog|shisa homolog 3 18 0.002464 3.51 1 1 +152579 SCFD2 sec1 family domain containing 2 4 protein-coding STXBP1L1 sec1 family domain-containing protein 2|syntaxin binding protein 1-like 1 45 0.006159 8.346 1 1 +152641 WWC2-AS2 WWC2 antisense RNA 2 4 ncRNA C4orf38 WWC2 antisense RNA 2 (non-protein coding) 5 0.0006844 3.117 1 1 +152687 ZNF595 zinc finger protein 595 4 protein-coding - zinc finger protein 595 37 0.005064 7.167 1 1 +152756 FAM218A family with sequence similarity 218 member A 4 protein-coding C4orf39 protein FAM218A|uncharacterized protein C4orf39 8 0.001095 3.678 1 1 +152789 JAKMIP1 janus kinase and microtubule interacting protein 1 4 protein-coding Gababrbp|JAMIP1|MARLIN1 janus kinase and microtubule-interacting protein 1|GABA-B receptor-binding protein|Jak and microtubule interacting protein 1|marlin-1|multiple alpha-helices and RNA-linker protein 1|multiple coiled-coil GABABR1-binding protein 95 0.013 4.145 1 1 +152815 THAP6 THAP domain containing 6 4 protein-coding - THAP domain-containing protein 6 18 0.002464 8.029 1 1 +152816 C4orf26 chromosome 4 open reading frame 26 4 protein-coding AI2A4 uncharacterized protein C4orf26 24 0.003285 0.9538 1 1 +152831 KLB klotho beta 4 protein-coding BKL beta-klotho|betaKlotho|klotho beta like|klotho beta-like protein 74 0.01013 3.544 1 1 +152845 LOC152845 PLAG1 like zinc finger 2 pseudogene 4 pseudo - pleiomorphic adenoma gene-like 2 pseudogene 3 0.0004106 1 0 +152877 FAM53A family with sequence similarity 53 member A 4 protein-coding DNTNP protein FAM53A|dorsal neural-tube nuclear protein 13 0.001779 4.615 1 1 +152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K 4 protein-coding BDP|MSUDMV|PP2Ckappa|PP2Cm|PTMP|UG0882E07 protein phosphatase 1K, mitochondrial|PP2C domain-containing protein phosphatase 1K|PP2C-kappa|PP2C-type mitochondrial phosphoprotein phosphatase|branched-chain alpha-ketoacid dehydrogenase phosphatase|protein phosphatase 2C kappa 28 0.003832 7.693 1 1 +152940 C4orf45 chromosome 4 open reading frame 45 4 protein-coding - uncharacterized protein C4orf45 15 0.002053 0.1018 1 1 +152992 TRMT44 tRNA methyltransferase 44 homolog (S. cerevisiae) 4 protein-coding C4orf23|METTL19|TRM44 probable tRNA (uracil-O(2)-)-methyltransferase|methyltransferase like 19|methyltransferase-like protein 19 29 0.003969 7.663 1 1 +153020 RASGEF1B RasGEF domain family member 1B 4 protein-coding GPIG4 ras-GEF domain-containing family member 1B|GPI gamma-4 36 0.004927 7.3 1 1 +153090 DAB2IP DAB2 interacting protein 9 protein-coding AF9Q34|AIP-1|AIP1|DIP1/2 disabled homolog 2-interacting protein|ASK-interacting protein 1|ASK1-interacting protein 1|DAB2 interaction protein|DOC-2/DAB2 interactive protein|nGAP-like protein 59 0.008076 10.59 1 1 +153129 SLC38A9 solute carrier family 38 member 9 5 protein-coding URLC11 sodium-coupled neutral amino acid transporter 9|putative sodium-coupled neutral amino acid transporter 9|up-regulated in lung cancer 11 35 0.004791 7.698 1 1 +153163 MGC32805 uncharacterized LOC153163 5 ncRNA - CTC-210G5.1 1 0.0001369 1 0 +153201 SLC36A2 solute carrier family 36 member 2 5 protein-coding PAT2|TRAMD1 proton-coupled amino acid transporter 2|solute carrier family 36 (proton/amino acid symporter), member 2|tramdorin-1 41 0.005612 0.4801 1 1 +153218 SPINK13 serine peptidase inhibitor, Kazal type 13 (putative) 5 protein-coding HBVDNAPTP1|HESPINTOR|LiESP6|SPINK5L3 serine protease inhibitor Kazal-type 13|Hepatitis B Virus (HBV) DNA polymerase transactivated protein 1|hepatitis B virus DNA polymerase transactivated human serine protease inhibitor|hepatitis B virus DNA polymerase transactivated serine protease inhibitor|serine protease inhibitor Kazal-type 5-like 3 11 0.001506 0.834 1 1 +153222 CREBRF CREB3 regulatory factor 5 protein-coding C5orf41|LRF CREB3 regulatory factor|UPF0474 protein C5orf41|adult retina protein|luman recruitment factor|luman-recruiting factor|luman/CREB3 recruitment factor 41 0.005612 8.102 1 1 +153241 CEP120 centrosomal protein 120 5 protein-coding CCDC100|SRTD13 centrosomal protein of 120 kDa|centrosomal protein 120kDa|coiled-coil domain-containing protein 100 56 0.007665 8.688 1 1 +153328 SLC25A48 solute carrier family 25 member 48 5 protein-coding - solute carrier family 25 member 48|CTC-321K16.1 19 0.002601 2.315 1 1 +153339 TMEM167A transmembrane protein 167A 5 protein-coding TMEM167 protein kish-A|transmembrane protein 167 8 0.001095 10.92 1 1 +153364 MBLAC2 metallo-beta-lactamase domain containing 2 5 protein-coding - metallo-beta-lactamase domain-containing protein 2 8 0.001095 7.327 1 1 +153396 TMEM161B transmembrane protein 161B 5 protein-coding FLB3342|PRO1313 transmembrane protein 161B 33 0.004517 7.824 1 1 +153443 SRFBP1 serum response factor binding protein 1 5 protein-coding BUD22|P49|Rlb1|STRAP|p49/STRAP serum response factor-binding protein 1|BUD22 homolog|SRF-dependent transcription regulation-associated protein 40 0.005475 7.627 1 1 +153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B 5 protein-coding - pleckstrin homology domain-containing family G member 4B|CTD-2231H16.1|PH domain-containing family G member 4B|pleckstrin homology domain containing, family G (with RhoGef domain) member 4B 119 0.01629 5.419 1 1 +153527 ZMAT2 zinc finger matrin-type 2 5 protein-coding Ptg-12|Snu23 zinc finger matrin-type protein 2 13 0.001779 10.68 1 1 +153562 MARVELD2 MARVEL domain containing 2 5 protein-coding DFNB49|MARVD2|MRVLDC2|Tric MARVEL domain-containing protein 2|MARVEL (membrane-associating) domain containing 2|tricellulin 41 0.005612 7.682 1 1 +153571 C5orf38 chromosome 5 open reading frame 38 5 protein-coding CEI|IRX2NB protein CEI|IRX2 neighbor|coordinated expression to IRX2|coordinated expression to IRXA2 homeobox|coordinated expression to IRXA2 protein 26 0.003559 3.808 1 1 +153572 IRX2 iroquois homeobox 2 5 protein-coding IRXA2 iroquois-class homeodomain protein IRX-2|homeodomain protein IRXA2|iroquois homeobox protein 2 50 0.006844 5.453 1 1 +153579 BTNL9 butyrophilin like 9 5 protein-coding BTN3|BTN8|VDLS1900 butyrophilin-like protein 9|butyrophilin 3 43 0.005886 6.416 1 1 +153642 ARSK arylsulfatase family member K 5 protein-coding TSULF arylsulfatase K|ASK|telethon sulfatase 34 0.004654 7.17 1 1 +153643 FAM81B family with sequence similarity 81 member B 5 protein-coding - protein FAM81B 41 0.005612 2.007 1 1 +153657 TTC23L tetratricopeptide repeat domain 23 like 5 protein-coding MC25-1 tetratricopeptide repeat protein 23-like 26 0.003559 2.798 1 1 +153684 LOC153684 uncharacterized LOC153684 5 ncRNA - - 4.627 0 1 +153733 CCDC112 coiled-coil domain containing 112 5 protein-coding MBC1 coiled-coil domain-containing protein 112|mutated in bladder cancer 1|mutated in bladder cancer protein 1 23 0.003148 7.298 1 1 +153743 PPP1R2P3 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 3 5 pseudo - protein phosphatase inhibitor 2-like protein 1 0.0001369 5.807 1 1 +153745 FAM71B family with sequence similarity 71 member B 5 protein-coding - protein FAM71B|testicular tissue protein Li 68 112 0.01533 0.04619 1 1 +153768 PRELID2 PRELI domain containing 2 5 protein-coding - PRELI domain-containing protein 2|CTC-806A22.1 11 0.001506 5.54 1 1 +153769 SH3RF2 SH3 domain containing ring finger 2 5 protein-coding HEPP1|POSHER|PPP1R39|RNF158 putative E3 ubiquitin-protein ligase SH3RF2|POSH-eliminating RING protein|RING finger protein 158|SH3 domain-containing RING finger protein 2|heart protein phosphatase 1-binding protein|phosphatase 1 binding protein|protein phosphatase 1 regulatory subunit 39 53 0.007254 6.771 1 1 +153770 PLAC8L1 PLAC8 like 1 5 protein-coding - PLAC8-like protein 1 9 0.001232 1.501 1 1 +153830 RNF145 ring finger protein 145 5 protein-coding - RING finger protein 145 75 0.01027 10.65 1 1 +153910 LOC153910 uncharacterized LOC153910 6 ncRNA - - 0.6558 0 1 +153918 ZC2HC1B zinc finger C2HC-type containing 1B 6 protein-coding C6orf94|FAM164B|dJ468K18.5 zinc finger C2HC domain-containing protein 1B|family with sequence similarity 164, member B|protein FAM164B 2 0.0002737 0.3236 1 1 +154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 6 protein-coding C6orf151|dJ336K20B.1|dJ512B11.2 U11/U12 small nuclear ribonucleoprotein 48 kDa protein|U11/U12 snRNP 48 kDa protein|U11/U12 snRNP 48K|U11/U12-48K|small nuclear ribonucleoprotein 48kDa (U11/U12)|small nuclear ribonucleoprotein, U11/U12 48KDa subunit 31 0.004243 8.324 1 1 +154043 CNKSR3 CNKSR family member 3 6 protein-coding MAGI1 connector enhancer of kinase suppressor of ras 3|CNK homolog protein 3|CNK3|connector enhancer of KSR 3|maguin-like protein|membrane associated guanylate kinase, WW and PDZ domain containing 1|membrane-associated guanylate kinase-interacting protein-like 1 40 0.005475 8.145 1 1 +154064 RAET1L retinoic acid early transcript 1L 6 protein-coding ULBP6 retinoic acid early transcript 1L protein|UL16 binding protein 6 13 0.001779 1.787 1 1 +154075 SAMD3 sterile alpha motif domain containing 3 6 protein-coding - sterile alpha motif domain-containing protein 3|SAM domain-containing protein 3 58 0.007939 3.88 1 1 +154089 LINC01312 long intergenic non-protein coding RNA 1312 6 ncRNA - uncharacterized protein MGC34034 0.08223 0 1 +154091 SLC2A12 solute carrier family 2 member 12 6 protein-coding GLUT12|GLUT8 solute carrier family 2, facilitated glucose transporter member 12|GLUT-12|glucose transporter type 12|solute carrier family 2 (facilitated glucose transporter), member 12 38 0.005201 7.093 1 1 +154141 MBOAT1 membrane bound O-acyltransferase domain containing 1 6 protein-coding LPEAT1|LPLAT|LPLAT 1|LPSAT|OACT1|dJ434O11.1 lysophospholipid acyltransferase 1|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|membrane-bound O-acyltransferase domain-containing protein 1 38 0.005201 8.18 1 1 +154150 HDGFL1 hepatoma derived growth factor-like 1 6 protein-coding PWWP1|dJ309H15.1 hepatoma-derived growth factor-like protein 1|HDGF (hepatoma-derived growth factor) like|PWWP domain containing 1|PWWP domain-containing protein 1|testicular tissue protein Li 84 20 0.002737 0.2952 1 1 +154197 PNLDC1 PARN like, ribonuclease domain containing 1 6 protein-coding - poly(A)-specific ribonuclease PARN-like domain-containing protein 1|poly(A)-specific ribonuclease (PARN)-like domain containing 1 52 0.007117 1.513 1 1 +154214 RNF217 ring finger protein 217 6 protein-coding C6orf172|IBRDC1|OSTL|dJ84N20.1 probable E3 ubiquitin-protein ligase RNF217|IBR domain containing 1|opposite STL 33 0.004517 5.912 1 1 +154215 NKAIN2 Na+/K+ transporting ATPase interacting 2 6 protein-coding FAM77B|NKAIP2|TCBA|TCBA1 sodium/potassium-transporting ATPase subunit beta-1-interacting protein 2|Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 2|T-cell lymphoma breakpoint-associated target protein 1 31 0.004243 3.072 1 1 +154288 KHDC3L KH domain containing 3 like, subcortical maternal complex member 6 protein-coding C6orf221|ECAT1|HYDM2 KHDC3-like protein|ES cell-associated transcript 1 protein 29 0.003969 0.5216 1 1 +154313 CFAP206 cilia and flagella associated protein 206 6 protein-coding C6orf165|dJ382I10.1 UPF0704 protein C6orf165 71 0.009718 3.592 1 1 +154386 LINC01600 long intergenic non-protein coding RNA 1600 6 ncRNA C6orf195|bA145H9.2 - 15 0.002053 0.9387 1 1 +154442 BVES-AS1 BVES antisense RNA 1 6 ncRNA C6orf112|bA99L11.2 BVES antisense RNA 1 (non-protein coding)|Putative uncharacterized protein C6orf112 4 0.0005475 1 0 +154449 LOC154449 uncharacterized LOC154449 6 ncRNA - - 0.09405 0 1 +154467 CCDC167 coiled-coil domain containing 167 6 protein-coding C6orf129|HSPC265 coiled-coil domain-containing protein 167|transmembrane and coiled-coil domain-containing protein C6orf129 5 0.0006844 8.254 1 1 +154661 RUNDC3B RUN domain containing 3B 7 protein-coding RPIB9|RPIP9 RUN domain-containing protein 3B|RPIP-9|Rap2 binding protein 9|Rap2-interacting protein 9|rap2-binding protein 9 55 0.007528 4.834 1 1 +154664 ABCA13 ATP binding cassette subfamily A member 13 7 protein-coding - ATP-binding cassette sub-family A member 13|ATP binding cassette transporter A13|ATP-binding cassette sub-family A member 13 variant 2|ATP-binding cassette sub-family A member 13 variant 3|ATP-binding cassette, sub-family A (ABC1), member 13 406 0.05557 4.072 1 1 +154743 BMT2 base methyltransferase of 25S rRNA 2 homolog 7 protein-coding C7orf60 probable methyltransferase BTM2 homolog|UPF0532 protein C7orf60 46 0.006296 8.117 1 1 +154754 PRSS3P2 protease, serine 3 pseudogene 2 7 pseudo T6|TRY6 Putative trypsin-6|Serine protease 3 pseudogene 2|protease, serine, 1 (trypsin 1)|trypsinogen C 127 0.01738 1.176 1 1 +154761 LOC154761 family with sequence similarity 115, member C pseudogene 7 pseudo - - 1 0.0001369 4.863 1 1 +154790 CLEC2L C-type lectin domain family 2 member L 7 protein-coding - C-type lectin domain family 2 member L 3 0.0004106 2.149 1 1 +154791 FMC1 formation of mitochondrial complex V assembly factor 1 homolog 7 protein-coding C7orf55|HSPC268 UPF0562 protein C7orf55|formation of mitochondrial complexes 1 homolog 4 0.0005475 8.206 1 1 +154796 AMOT angiomotin X protein-coding - angiomotin|angiomotin p130 isoform|angiomotin p80 isoform 88 0.01204 8.689 1 1 +154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 7 protein-coding - vitamin K epoxide reductase complex subunit 1-like protein 1|VKORC1-like protein 1 12 0.001642 10.12 1 1 +154810 AMOTL1 angiomotin like 1 11 protein-coding JEAP angiomotin-like protein 1|junction-enriched and associated protein 69 0.009444 10.1 1 1 +154822 LINC00689 long intergenic non-protein coding RNA 689 7 ncRNA - - 3.064 0 1 +154860 FEZF1-AS1 FEZF1 antisense RNA 1 7 ncRNA - FEZF1 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +154865 IQUB IQ motif and ubiquitin domain containing 7 protein-coding - IQ and ubiquitin-like domain-containing protein 70 0.009581 3.313 1 1 +154881 KCTD7 potassium channel tetramerization domain containing 7 7 protein-coding CLN14|EPM3 BTB/POZ domain-containing protein KCTD7|potassium channel tetramerisation domain containing 7 36 0.004927 8.335 1 1 +154907 C7orf66 chromosome 7 open reading frame 66 7 protein-coding - uncharacterized protein C7orf66|putative uncharacterized protein LOC154907 18 0.002464 0.02388 1 1 +155006 TMEM213 transmembrane protein 213 7 protein-coding - transmembrane protein 213 8 0.001095 1.624 1 1 +155038 GIMAP8 GTPase, IMAP family member 8 7 protein-coding IAN-9|IAN6|IAN9|IANT GTPase IMAP family member 8|human immune associated nucleotide 6|immune-associated nucleotide-binding protein 9 92 0.01259 7.697 1 1 +155051 CRYGN crystallin gamma N 7 protein-coding - gamma-crystallin N|gamma-N-crystallin|gammaN-crystallin 13 0.001779 1.793 1 1 +155054 ZNF425 zinc finger protein 425 7 protein-coding - zinc finger protein 425 68 0.009307 6.135 1 1 +155060 LOC155060 AI894139 pseudogene 7 pseudo - - 7.445 0 1 +155061 ZNF746 zinc finger protein 746 7 protein-coding PARIS zinc finger protein 746|parkin-interacting substrate|parkin-interacting sustrate 48 0.00657 8.975 1 1 +155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 7 protein-coding ATP6V0E2L|C7orf32 V-type proton ATPase subunit e 2|H+-ATPase e2 subunit|V-ATPase subunit e 2|lysosomal 9 kDa H(+)-transporting ATPase V0 subunit e2|vacuolar proton pump subunit e 2|vacuolar proton-ATPase subunit 18 0.002464 9.987 1 1 +155100 CCT8L1P chaperonin containing TCP1 subunit 8 like 1, pseudogene 7 pseudo CCT8L1 chaperonin containing TCP1, subunit 8 (theta)-like 1, pseudogene 1 0.0001369 1 0 +155184 SLC2A7 solute carrier family 2 member 7 1 protein-coding GLUT7 solute carrier family 2, facilitated glucose transporter member 7|GLUT-7|glucose transporter type 7|intestinal facilitative glucose transporter 7|solute carrier family 2 (facilitated glucose transporter), member 7 34 0.004654 0.2059 1 1 +155185 AMZ1 archaelysin family metallopeptidase 1 7 protein-coding - archaemetzincin-1|archeobacterial metalloproteinase-like protein 1|metalloproteinase-like protein 40 0.005475 3.595 1 1 +155368 WBSCR27 Williams Beuren syndrome chromosome region 27 7 protein-coding - Williams-Beuren syndrome chromosomal region 27 protein 20 0.002737 5.457 1 1 +155370 SBDSP1 Shwachman-Bodian-Diamond syndrome pseudogene 1 7 pseudo SBDSP - 1 0.0001369 8.802 1 1 +155382 VPS37D VPS37D, ESCRT-I subunit 7 protein-coding WBSCR24 vacuolar protein sorting-associated protein 37D|ESCRT-I complex subunit VPS37D|Williams Beuren syndrome chromosome region 24|Williams-Beuren syndrome critical region protein 24|vacuolar protein sorting 37 homolog D|vacuolar protein sorting 37D|williams-Beuren syndrome chromosomal region 24 protein|williams-Beuren syndrome region protein 24 13 0.001779 6.152 1 1 +155400 NSUN5P1 NOP2/Sun RNA methyltransferase family member 5 pseudogene 1 7 pseudo NSUN5B|WBSCR20B NOL1/NOP2/Sun domain family, member 5B|NOP2/Sun domain family, member 5 pseudogene 1|NOP2/Sun domain family, member 5B, pseudogene|Williams Beuren syndrome chromosome region 20B|Williams-Beuren Syndrome critical region protein 20 copy B 20 0.002737 6.985 1 1 +155435 RBM33 RNA binding motif protein 33 7 protein-coding PRR8 RNA-binding protein 33|hypothetical protein MGC20460|proline rich 8|proline-rich protein 8 66 0.009034 9.959 1 1 +155465 AGR3 anterior gradient 3, protein disulphide isomerase family member 7 protein-coding AG-3|AG3|BCMP11|HAG3|PDIA18|hAG-3 anterior gradient protein 3|anterior gradient homolog 3|anterior gradient protein 3 homolog|breast cancer membrane protein 11|protein disulfide isomerase family A, member 18 20 0.002737 3.975 1 1 +157285 SGK223 homolog of rat pragma of Rnd2 8 protein-coding PRAGMIN tyrosine-protein kinase SgK223|sugen kinase 223 113 0.01547 8.958 1 1 +157310 PEBP4 phosphatidylethanolamine binding protein 4 8 protein-coding CORK-1|CORK1|GWTM1933|HEL-S-300|PEBP-4|PRO4408|hPEBP4 phosphatidylethanolamine-binding protein 4|cousin-of-RKIP 1 protein|epididymis secretory protein Li 300|protein cousin-of-RKIP 1 9 0.001232 3.181 1 1 +157313 CDCA2 cell division cycle associated 2 8 protein-coding PPP1R81|Repo-Man cell division cycle-associated protein 2|protein phosphatase 1, regulatory subunit 81|recruits PP1 onto mitotic chromatin at anaphase protein 62 0.008486 6.477 1 1 +157376 FER1L6-AS2 FER1L6 antisense RNA 2 8 ncRNA C8orf78 FER1L6 antisense RNA 2 (non-protein coding) 6 0.0008212 1 0 +157378 TMEM65 transmembrane protein 65 8 protein-coding - transmembrane protein 65 8 0.001095 8.797 1 1 +157381 LINC00964 long intergenic non-protein coding RNA 964 8 ncRNA - - 1.595 0 1 +157489 SDAD1P1 SDA1 domain containing 1 pseudogene 1 8 pseudo - - 27 0.003696 1 0 +157506 RDH10 retinol dehydrogenase 10 (all-trans) 8 protein-coding SDR16C4 retinol dehydrogenase 10|short chain dehydrogenase/reductase family 16C member 4 19 0.002601 9.397 1 1 +157556 BAALC-AS2 BAALC antisense RNA 2 8 ncRNA BAALCOS|C8orf56 BAALC opposite strand 2 0.0002737 1.135 1 1 +157567 ANKRD46 ankyrin repeat domain 46 8 protein-coding ANK-S|GENX-115279 ankyrin repeat domain-containing protein 46|ankyrin repeat small protein 16 0.00219 8.803 1 1 +157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 8 protein-coding 2410004I17Rik|EFO2|RBS N-acetyltransferase ESCO2|ECO1 homolog 2 41 0.005612 6.148 1 1 +157574 FBXO16 F-box protein 16 8 protein-coding FBX16 F-box only protein 16 25 0.003422 4.937 1 1 +157627 LINC00599 long intergenic non-protein coding RNA 599 8 ncRNA Rncr3 retinal non-coding RNA 3 3 0.0004106 0.8939 1 1 +157638 FAM84B family with sequence similarity 84 member B 8 protein-coding BCMP101|NSE2 protein FAM84B|breast cancer membrane protein 101|breast cancer membrane-associated protein 101|neurological/sensory 2 15 0.002053 10.12 1 1 +157657 C8orf37 chromosome 8 open reading frame 37 8 protein-coding BBS21|CORD16|RP64|smalltalk protein C8orf37 14 0.001916 5.885 1 1 +157680 VPS13B vacuolar protein sorting 13 homolog B 8 protein-coding CHS1|COH1 vacuolar protein sorting-associated protein 13B 296 0.04051 9.613 1 1 +157695 TDRP testis development related protein 8 protein-coding C8orf42|Inm01|TDRP1|TDRP2 testis development-related protein 16 0.00219 7.875 1 1 +157697 ERICH1 glutamate rich 1 8 protein-coding HSPC319 glutamate-rich protein 1 45 0.006159 7.955 1 1 +157724 SLC7A13 solute carrier family 7 member 13 8 protein-coding AGT-1|AGT1|XAT2 solute carrier family 7 member 13|X-amino acid transporter 2|amino acid transporter XAT2|sodium-independent aspartate/glutamate transporter 1|solute carrier family 7 (anionic amino acid transporter), member 13|solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 58 0.007939 0.4626 1 1 +157739 TDH L-threonine dehydrogenase (pseudogene) 8 pseudo SDR14E1P short chain dehydrogenase/reductase family 14E, member 1 (pseudogene) 14 0.001916 1.732 1 1 +157753 TMEM74 transmembrane protein 74 8 protein-coding NET36 transmembrane protein 74 43 0.005886 2.339 1 1 +157769 FAM91A1 family with sequence similarity 91 member A1 8 protein-coding - protein FAM91A1|skeletal muscle cells re-entry induced 65 0.008897 10.33 1 1 +157773 C8orf48 chromosome 8 open reading frame 48 8 protein-coding - uncharacterized protein C8orf48 15 0.002053 3.679 1 1 +157777 MCMDC2 minichromosome maintenance domain containing 2 8 protein-coding C8orf45 MCM domain-containing protein 2|MCM domain-containing protein C8orf45 41 0.005612 5.084 1 1 +157807 CLVS1 clavesin 1 8 protein-coding CRALBPL|RLBP1L1 clavesin-1|clathrin vesicle-associated Sec14 protein 1|retinaldehyde-binding protein 1-like 1 57 0.007802 3.179 1 1 +157848 NKX6-3 NK6 homeobox 3 8 protein-coding NKX6.3 homeobox protein Nkx-6.3|NK6 transcription factor related, locus 3 9 0.001232 0.3246 1 1 +157855 KCNU1 potassium calcium-activated channel subfamily U member 1 8 protein-coding KCNMC1|KCa5|KCa5.1|Kcnma3|Slo3 potassium channel subfamily U member 1|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 138 0.01889 0.5228 1 1 +157869 SBSPON somatomedin B and thrombospondin type 1 domain containing 8 protein-coding C8orf84|RPESP somatomedin-B and thrombospondin type-1 domain-containing protein|RPE-spondin 18 0.002464 6.159 1 1 +157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 9 protein-coding - calmodulin-regulated spectrin-associated protein 1 110 0.01506 9.811 1 1 +157927 C9orf62 chromosome 9 open reading frame 62 9 protein-coding - putative uncharacterized protein C9orf62 5 0.0006844 1 0 +157983 C9orf66 chromosome 9 open reading frame 66 9 protein-coding - uncharacterized protein C9orf66 18 0.002464 3.54 1 1 +158035 LINC00032 long intergenic non-protein coding RNA 32 9 ncRNA C9orf14|NCRNA00032 - 6 0.0008212 0.3362 1 1 +158038 LINGO2 leucine rich repeat and Ig domain containing 2 9 protein-coding LERN3|LRRN6C leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 2|leucine rich repeat neuronal 6C|leucine-rich repeat neuronal protein 3|leucine-rich repeat neuronal protein 6C 100 0.01369 1.797 1 1 +158046 NXNL2 nucleoredoxin-like 2 9 protein-coding C9orf121|RDCVF2 nucleoredoxin-like protein 2|rod-derived cone viability factor 2 9 0.001232 2.094 1 1 +158055 C9orf163 chromosome 9 open reading frame 163 9 protein-coding - uncharacterized protein C9orf163 17 0.002327 3.439 1 1 +158056 MAMDC4 MAM domain containing 4 9 protein-coding AEGP apical endosomal glycoprotein|MAM domain-containing protein 4|apical early endosomal glycoprotein|endotubin 57 0.007802 6.416 1 1 +158062 LCN6 lipocalin 6 9 protein-coding LCN5|UNQ643|hLcn5 epididymal-specific lipocalin-6|epididymal-specific lipocalin LCN6|lipocalin 5 8 0.001095 1.043 1 1 +158067 AK8 adenylate kinase 8 9 protein-coding AK 8|C9orf98|DDX31 adenylate kinase 8|ATP-AMP transphosphorylase 8|putative adenylate kinase-like protein C9orf98 33 0.004517 5.136 1 1 +158104 RPS10P3 ribosomal protein S10 pseudogene 3 9 pseudo RPS10_10_994 - 1 0.0001369 1 0 +158131 OR1Q1 olfactory receptor family 1 subfamily Q member 1 9 protein-coding HSTPCR106|OR1Q2|OR1Q3|OR9-25|OR9-A|OST226|OST226OR9-A|TPCR106 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 38 0.005201 0.2969 1 1 +158135 TTLL11 tubulin tyrosine ligase like 11 9 protein-coding C9orf20|bA244O19.1 tubulin polyglutamylase TTLL11|tubulin tyrosine ligase like11|tubulin tyrosine ligase-like family, member 11|tubulin--tyrosine ligase-like protein 11 59 0.008076 5.984 1 1 +158158 RASEF RAS and EF-hand domain containing 9 protein-coding RAB45 ras and EF-hand domain-containing protein|ras-related protein Rab-45 65 0.008897 5.963 1 1 +158160 HSD17B7P2 hydroxysteroid 17-beta dehydrogenase 7 pseudogene 2 10 pseudo HSD17B7|Hsd17b_2|bA291L22.1 17beta-hydroxysteroid dehydrogenase type 7 form 2 309 0.04229 5.27 1 1 +158219 TTC39B tetratricopeptide repeat domain 39B 9 protein-coding C9orf52 tetratricopeptide repeat protein 39B|TPR repeat protein 39B 29 0.003969 6.457 1 1 +158222 LDHAP4 lactate dehydrogenase A pseudogene 4 9 pseudo LDHAL4 lactate dehydrogenase A-like 4|lactate dehydrogenase pseudogene 1 0.0001369 1 0 +158228 FAM201A family with sequence similarity 201 member A 9 ncRNA C9orf122 - 1 0.0001369 4.274 1 1 +158234 TRMT10B tRNA methyltransferase 10B 9 protein-coding RG9MTD3|bA3J10.9 tRNA methyltransferase 10 homolog B|RNA (guanine-9-) methyltransferase domain containing 3|RNA (guanine-9-)-methyltransferase domain-containing protein 3 17 0.002327 7.187 1 1 +158248 TTC16 tetratricopeptide repeat domain 16 9 protein-coding - tetratricopeptide repeat protein 16|TPR repeat protein 16 63 0.008623 2.499 1 1 +158257 MIRLET7DHG MIRLET7D host gene 9 ncRNA - MIRLET7D host gene (non-protein coding) 3 0.0004106 1 0 +158293 FAM120AOS family with sequence similarity 120A opposite strand 9 protein-coding C9orf10OS uncharacterized protein FAM120AOS|FAM120A opposite strand protein|putative FAM120A opposite strand protein 13 0.001779 9.917 1 1 +158297 SAXO1 stabilizer of axonemal microtubules 1 9 protein-coding C9orf138|FAM154A stabilizer of axonemal microtubules 1|4930500O09Rik|family with sequence similarity 154, member A|protein FAM154A 37 0.005064 0.6332 1 1 +158314 LINC00475 long intergenic non-protein coding RNA 475 9 ncRNA C9orf44 - 14 0.001916 1.234 1 1 +158326 FREM1 FRAS1 related extracellular matrix 1 9 protein-coding BNAR|C9orf143|C9orf145|C9orf154|MOTA|TILRR|TRIGNO2 FRAS1-related extracellular matrix protein 1|extracellular matrix protein QBRICK 168 0.02299 4.618 1 1 +158358 KIAA2026 KIAA2026 9 protein-coding - uncharacterized protein KIAA2026 124 0.01697 9.197 1 1 +158376 LINC00961 long intergenic non-protein coding RNA 961 9 ncRNA - - 3.898 0 1 +158381 ATP8B5P ATPase phospholipid transporting 8B5, pseudogene 9 pseudo FetA ATPase, Class I, type 8B family pseudogene|ATPase, class I, type 8B, member 5, pseudogene|flippase expressed in testis splicing form A pseudogene|zinc finger, AN1-type domain 6 pseudogene 27 0.003696 4.842 1 1 +158399 ZNF483 zinc finger protein 483 9 protein-coding ZKSCAN16|ZSCAN48 zinc finger protein 483|zinc finger protein HIT-10|zinc finger protein with KRAB and SCAN domains 16 60 0.008212 4.121 1 1 +158401 C9orf84 chromosome 9 open reading frame 84 9 protein-coding - uncharacterized protein C9orf84 90 0.01232 2.174 1 1 +158405 KIAA1958 KIAA1958 9 protein-coding - uncharacterized protein KIAA1958 51 0.006981 5.612 1 1 +158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 9 protein-coding C9orf97 thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 2|PP4189|rhodanese domain-containing protein 2|rhodanese like domain containing 2|thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 31 0.004243 8.652 1 1 +158431 ZNF782 zinc finger protein 782 9 protein-coding - zinc finger protein 782 44 0.006022 5.776 1 1 +158471 PRUNE2 prune homolog 2 9 protein-coding BMCC1|BNIPXL|C9orf65|KIAA0367 protein prune homolog 2|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|olfaxin|truncated PRUNE2 260 0.03559 8.134 1 1 +158506 ZNF645 zinc finger protein 645 X protein-coding CT138|HAKAIL E3 ubiquitin-protein ligase ZNF645|E3 ubiquitin ligase 46 0.006296 0.077 1 1 +158511 CSAG1 chondrosarcoma associated gene 1 X protein-coding CSAGE|CT24.1 putative chondrosarcoma-associated gene 1 protein|cancer/testis antigen 24.1|cancer/testis antigen CSAGE|cancer/testis antigen family 24, member 1 16 0.00219 1.732 1 1 +158521 FMR1NB fragile X mental retardation 1 neighbor X protein-coding CT37|NY-SAR-35|NYSAR35 fragile X mental retardation 1 neighbor protein|cancer/testis antigen 37|sarcoma antigen NY-SAR-35 39 0.005338 0.2929 1 1 +158572 USP27X-AS1 USP27X antisense RNA 1 (head to head) X ncRNA - - 7 0.0009581 4.708 1 1 +158584 FAAH2 fatty acid amide hydrolase 2 X protein-coding AMDD fatty-acid amide hydrolase 2|amidase domain containing|amidase domain-containing protein|anandamide amidohydrolase 2|oleamide hydrolase 2 41 0.005612 6.653 1 1 +158586 ZXDB zinc finger, X-linked, duplicated B X protein-coding ZNF905|dJ83L6.1 zinc finger X-linked protein ZXDB 57 0.007802 8.543 1 1 +158696 LINC00889 long intergenic non-protein coding RNA 889 X ncRNA - - 1.943 0 1 +158724 FAM47A family with sequence similarity 47 member A X protein-coding - protein FAM47A 175 0.02395 0.1259 1 1 +158747 MOSPD2 motile sperm domain containing 2 X protein-coding - motile sperm domain-containing protein 2 34 0.004654 7.862 1 1 +158763 ARHGAP36 Rho GTPase activating protein 36 X protein-coding - rho GTPase-activating protein 36 96 0.01314 2.391 1 1 +158787 RIBC1 RIB43A domain with coiled-coils 1 X protein-coding 2610028I09Rik RIB43A-like with coiled-coils protein 1 26 0.003559 4.979 1 1 +158798 AKAP14 A-kinase anchoring protein 14 X protein-coding AKAP28|PRKA14 A-kinase anchor protein 14|A kinase (PRKA) anchor protein 14|A-kinase anchor protein 28 kDa|A-kinase anchoring protein 28|AKAP 28|AKAP-14|protein kinase A-anchoring protein 14 17 0.002327 0.7285 1 1 +158800 RHOXF1 Rhox homeobox family member 1 X protein-coding OTEX|PEPP1 rhox homeobox family member 1|PEPP subfamily gene 1|ovary-, testis- and epididymis-expressed gene protein|paired-like homeobox protein PEPP-1 23 0.003148 1.263 1 1 +158801 NKAPP1 NFKB activating protein pseudogene 1 X pseudo CXorf42 - 3 0.0004106 4.381 1 1 +158809 MAGEB6 MAGE family member B6 X protein-coding CT3.4|MAGE-B6|MAGEB6A melanoma-associated antigen B6|MAGE-B6 antigen|cancer/testis antigen 3.4|cancer/testis antigen family 3, member 4|melanoma antigen family B, 6|melanoma antigen family B6 80 0.01095 0.4061 1 1 +158830 CXorf65 chromosome X open reading frame 65 X protein-coding - uncharacterized protein CXorf65 20 0.002737 0.9875 1 1 +158833 AWAT1 acyl-CoA wax alcohol acyltransferase 1 X protein-coding DGA2|DGAT2L3 acyl-CoA wax alcohol acyltransferase 1|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 27 0.003696 0.1834 1 1 +158835 AWAT2 acyl-CoA wax alcohol acyltransferase 2 X protein-coding ARAT|DC4|DGAT2L4|MFAT|WS acyl-CoA wax alcohol acyltransferase 2|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 23 0.003148 0.5621 1 1 +158866 ZDHHC15 zinc finger DHHC-type containing 15 X protein-coding MRX91 palmitoyltransferase ZDHHC15|DHHC-15|zinc finger DHHC domain-containing protein 15|zinc finger, DHHC domain containing 15 37 0.005064 4.926 1 1 +158880 USP51 ubiquitin specific peptidase 51 X protein-coding - ubiquitin carboxyl-terminal hydrolase 51|deubiquitinating enzyme 51|ubiquitin thioesterase 51|ubiquitin thiolesterase 51|ubiquitin-specific-processing protease 51 58 0.007939 4.775 1 1 +158931 TCEAL6 transcription elongation factor A like 6 X protein-coding Tceal3|WEX2 transcription elongation factor A protein-like 6|TCEA-like protein 6|transcription elongation factor A (SII)-like 3|transcription elongation factor A (SII)-like 6|transcription elongation factor S-II protein-like 6 32 0.00438 4.769 1 1 +158983 H2BFWT H2B histone family member W, testis specific X protein-coding - histone H2B type W-T 25 0.003422 0.3322 1 1 +159013 CXorf38 chromosome X open reading frame 38 X protein-coding - uncharacterized protein CXorf38 29 0.003969 7.528 1 1 +159090 FAM122B family with sequence similarity 122B X protein-coding SPACIA2 protein FAM122B|synoviocyte proliferation associated in collagen-induced arthritis 2 14 0.001916 9.503 1 1 +159091 FAM122C family with sequence similarity 122C X protein-coding - protein FAM122C 26 0.003559 5.159 1 1 +159119 HSFY2 heat shock transcription factor, Y-linked 2 Y protein-coding HSF2L|HSFY heat shock transcription factor, Y-linked|heat shock transcription factor 2-like protein 0.3531 0 1 +159125 RBMY2EP RNA binding motif protein, Y-linked, family 2, member E pseudogene Y pseudo - - 20 0.002737 0.03202 1 1 +159162 RBMY2FP RNA binding motif protein, Y-linked, family 2, member F pseudogene Y pseudo - RNA binding motif protein, Y-linked, family 2, pseudogene 0.07781 0 1 +159163 RBMY1F RNA binding motif protein, Y-linked, family 1, member F Y protein-coding YRRM2 RNA-binding motif protein, Y chromosome, family 1 member F/J|y chromosome RNA recognition motif 2 0.0182 0 1 +159195 USP54 ubiquitin specific peptidase 54 10 protein-coding C10orf29|bA137L10.3|bA137L10.4 inactive ubiquitin carboxyl-terminal hydrolase 54|inactive ubiquitin-specific peptidase 54|ubiquitin specific protease 54|ubiquitin specific proteinase 54 86 0.01177 9.671 1 1 +159296 NKX2-3 NK2 homeobox 3 10 protein-coding CSX3|NK2.3|NKX2.3|NKX2C|NKX4-3 homeobox protein Nkx-2.3|NK2 transcription factor related, locus 3|homeobox protein NK-2 homolog C 13 0.001779 1.724 1 1 +159371 SLC35G1 solute carrier family 35 member G1 10 protein-coding C10orf60|POST|TMEM20 solute carrier family 35 member G1|partner of STIM1|transmembrane protein 20 15 0.002053 6.49 1 1 +159686 CFAP58 cilia and flagella associated protein 58 10 protein-coding C10orf80|CCDC147|bA127L20.4|bA127L20.5|bA554P13.1 cilia- and flagella-associated protein 58|bA127L20.4 (novel protein)|bA127L20.5 (novel protein)|coiled-coil domain containing 147|coiled-coil domain-containing protein 147 80 0.01095 2.81 1 1 +159963 SLC5A12 solute carrier family 5 member 12 11 protein-coding SMCT2 sodium-coupled monocarboxylate transporter 2|electroneutral sodium monocarboxylate cotransporter|low-affinity sodium-lactate cotransporter|sodium-iodide related cotransporter|solute carrier family 5 (sodium/glucose cotransporter), member 12|solute carrier family 5 (sodium/monocarboxylate cotransporter), member 12 74 0.01013 2.789 1 1 +159989 DEUP1 deuterosome assembly protein 1 11 protein-coding CCDC67 deuterosome protein 1|coiled-coil domain containing 67|coiled-coil domain-containing protein 67 58 0.007939 1.726 1 1 +160065 PATE1 prostate and testis expressed 1 11 protein-coding PATE prostate and testis expressed protein 1|expressed in prostate and testis 19 0.002601 0.06198 1 1 +160140 C11orf65 chromosome 11 open reading frame 65 11 protein-coding - uncharacterized protein C11orf65 21 0.002874 2.7 1 1 +160287 LDHAL6A lactate dehydrogenase A like 6A 11 protein-coding LDH6A L-lactate dehydrogenase A-like 6A 18 0.002464 0.9635 1 1 +160298 C11orf42 chromosome 11 open reading frame 42 11 protein-coding - uncharacterized protein C11orf42 21 0.002874 0.8041 1 1 +160313 KRT19P2 keratin 19 pseudogene 2 12 pseudo KRT19P5 keratin 19 pseudogene 5 9 0.001232 1 0 +160335 TMTC2 transmembrane and tetratricopeptide repeat containing 2 12 protein-coding IBDBP1 transmembrane and TPR repeat-containing protein 2 87 0.01191 7.923 1 1 +160364 CLEC12A C-type lectin domain family 12 member A 12 protein-coding CD371|CLL-1|CLL1|DCAL-2|MICL C-type lectin domain family 12 member A|C-type lectin protein CLL-1|C-type lectin-like molecule-1|dendritic cell-associated lectin 2|myeloid inhibitory C-type lectin-like receptor 28 0.003832 3.903 1 1 +160365 CLECL1 C-type lectin like 1 12 protein-coding DCAL-1|DCAL1 C-type lectin-like domain family 1|DC-associated lectin-1|dendritic cell-associated lectin 1|type II transmembrane protein DCAL1 13 0.001779 2.755 1 1 +160418 TMTC3 transmembrane and tetratricopeptide repeat containing 3 12 protein-coding SMILE transmembrane and TPR repeat-containing protein 3 75 0.01027 9.269 1 1 +160419 C12orf50 chromosome 12 open reading frame 50 12 protein-coding - uncharacterized protein C12orf50 56 0.007665 0.3102 1 1 +160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 12 protein-coding mtFDH mitochondrial 10-formyltetrahydrofolate dehydrogenase|10-formyltetrahydrofolate dehydrogenase ALDH1L2|aldehyde dehydrogenase family 1 member L2, mitochondrial|mitochondrial 10-FTHFDH|probable 10-formyltetrahydrofolate dehydrogenase ALDH1L2 65 0.008897 7.1 1 1 +160492 LMNTD1 lamin tail domain containing 1 12 protein-coding IFLTD1|PAS1C1 lamin tail domain-containing protein 1|intermediate filament tail domain containing 1|intermediate filament tail domain-containing protein 1 34 0.004654 0.6027 1 1 +160518 DENND5B DENN domain containing 5B 12 protein-coding - DENN domain-containing protein 5B|DENN/MADD domain containing 5B|rab6IP1-like protein 98 0.01341 8.099 1 1 +160622 GRASP general receptor for phosphoinositides 1 associated scaffold protein 12 protein-coding TAMALIN general receptor for phosphoinositides 1-associated scaffold protein|GRP1 (general receptor for phosphoinositides 1)-associated scaffold protein 14 0.001916 7.035 1 1 +160728 SLC5A8 solute carrier family 5 member 8 12 protein-coding AIT|SMCT|SMCT1 sodium-coupled monocarboxylate transporter 1|apical iodide transporter|electrogenic sodium monocarboxylate cotransporter|sodium iodide-related cotransporter|solute carrier family 5 (iodide transporter), member 8|solute carrier family 5 (sodium/monocarboxylate cotransporter), member 8 73 0.009992 2.027 1 1 +160760 PPTC7 PTC7 protein phosphatase homolog 12 protein-coding TA-PP2C|TAPP2C protein phosphatase PTC7 homolog 29 0.003969 8.525 1 1 +160762 CCDC63 coiled-coil domain containing 63 12 protein-coding ODA5 coiled-coil domain-containing protein 63|outer row dynein assembly 5 homolog 54 0.007391 0.1942 1 1 +160777 CCDC60 coiled-coil domain containing 60 12 protein-coding - coiled-coil domain-containing protein 60 78 0.01068 1.195 1 1 +160824 SP3P Sp3 transcription factor pseudogene 13 pseudo - - 1 0.0001369 1 0 +160851 DGKH diacylglycerol kinase eta 13 protein-coding DGKeta diacylglycerol kinase eta|DAG kinase eta|diglyceride kinase eta 69 0.009444 5.174 1 1 +160857 CCDC122 coiled-coil domain containing 122 13 protein-coding - coiled-coil domain-containing protein 122 16 0.00219 5.475 1 1 +160897 GPR180 G protein-coupled receptor 180 13 protein-coding ITR integral membrane protein GPR180|intimal thickness-related receptor 22 0.003011 8.123 1 1 +161003 STOML3 stomatin like 3 13 protein-coding Epb7.2l|SRO stomatin-like protein 3|EPB72-like 3|SLP-3|erythrocyte band 7 integral membrane protein|protein 7.2B|stomatin (EPB72)-like 3 32 0.00438 0.9753 1 1 +161142 FAM71D family with sequence similarity 71 member D 14 protein-coding C14orf54 protein FAM71D 13 0.001779 4.267 1 1 +161145 TMEM229B transmembrane protein 229B 14 protein-coding C14orf83 transmembrane protein 229B 12 0.001642 7.915 1 1 +161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 14 protein-coding C14orf49|NET53|Nesp3 nesprin-3|nuclear envelope spectrin repeat protein 3 80 0.01095 4.884 1 1 +161198 CLEC14A C-type lectin domain family 14 member A 14 protein-coding C14orf27|CEG1|EGFR-5 C-type lectin domain family 14 member A|ClECT and EGF-like domain containing protein|epidermal growth factor receptor 5 69 0.009444 8.306 1 1 +161247 FITM1 fat storage inducing transmembrane protein 1 14 protein-coding FIT1 fat storage-inducing transmembrane protein 1|fat-inducing protein 1|fat-inducing transcript 1 19 0.002601 3.089 1 1 +161253 REM2 RRAD and GEM like GTPase 2 14 protein-coding - GTP-binding protein REM 2|RAS (RAD and GEM)-like GTP binding 2|RAS-like GTP binding 2|Rad and Gem-related 2 (rat homolog)|rad and Gem-like GTP-binding protein 2 19 0.002601 3.58 1 1 +161291 TMEM30B transmembrane protein 30B 14 protein-coding CDC50B cell cycle control protein 50B|P4-ATPase flippase complex beta subunit TMEM30B 9 0.001232 8.882 1 1 +161342 LINC00519 long intergenic non-protein coding RNA 519 14 unknown C14orf30|c14_5317 - 0 0 1 0 +161357 MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 14 protein-coding MAMDC1|c14_5286 MAM domain-containing glycosylphosphatidylinositol anchor protein 2|MAM domain containing 1 154 0.02108 1.742 1 1 +161394 SAMD15 sterile alpha motif domain containing 15 14 protein-coding C14orf174|FAM15A sterile alpha motif domain-containing protein 15|SAM domain-containing protein 15|SAM domain-containing protein C14orf174|family with sequence similarity 15, member A 52 0.007117 4.311 1 1 +161424 NOP9 NOP9 nucleolar protein 14 protein-coding C14orf21 nucleolar protein 9|NOP9 nucleolar protein homolog|pumilio domain-containing protein C14orf21 34 0.004654 7.957 1 1 +161436 EML5 echinoderm microtubule associated protein like 5 14 protein-coding EMAP-2 echinoderm microtubule-associated protein-like 5|EMAP-5 119 0.01629 5.535 1 1 +161497 STRC stereocilin 15 protein-coding DFNB16 stereocilin 36 0.004927 3.471 1 1 +161502 CFAP161 cilia and flagella associated protein 161 15 protein-coding C15orf26 cilia- and flagella-associated protein 161|uncharacterized protein C15orf26 27 0.003696 1.486 1 1 +161514 TBC1D21 TBC1 domain family member 21 15 protein-coding MgcRabGAP TBC1 domain family member 21|male germ cell-specific expressed, containing a RabGAP domain 28 0.003832 0.02438 1 1 +161582 DYX1C1 dyslexia susceptibility 1 candidate 1 15 protein-coding CILD25|DNAAF4|DYX1|DYXC1|EKN1|RD dyslexia susceptibility 1 candidate gene 1 protein|dynein, axonemal, assembly factor 4 41 0.005612 5.687 1 1 +161635 CSNK1A1P1 casein kinase 1 alpha 1 pseudogene 1 15 pseudo CSNK1A1P casein kinase 1, alpha 1 pseudogene|casein kinase I alpha-like pseudogene 12 0.001642 0.7447 1 1 +161725 OTUD7A OTU deubiquitinase 7A 15 protein-coding C15orf16|C16ORF15|CEZANNE2|OTUD7 OTU domain-containing protein 7A|OTU domain-containing 7A|cezanne 2|zinc finger protein Cezanne 2 68 0.009307 3.654 1 1 +161742 SPRED1 sprouty related EVH1 domain containing 1 15 protein-coding NFLS|PPP1R147|hSpred1|spred-1 sprouty-related, EVH1 domain-containing protein 1|protein phosphatase 1, regulatory subunit 147|suppressor of Ras/MAPK activation 46 0.006296 9.838 1 1 +161753 ODF3L1 outer dense fiber of sperm tails 3 like 1 15 protein-coding - outer dense fiber protein 3-like protein 1 15 0.002053 2.855 1 1 +161779 PGBD4 piggyBac transposable element derived 4 15 protein-coding - piggyBac transposable element-derived protein 4 28 0.003832 4.979 1 1 +161823 ADAL adenosine deaminase like 15 protein-coding - adenosine deaminase-like protein 21 0.002874 7.247 1 1 +161829 EXD1 exonuclease 3'-5' domain containing 1 15 protein-coding EXDL1 piRNA biogenesis protein EXD1|exonuclease 3'-5' domain-containing protein 1|exonuclease 3'-5' domain-like-containing protein 1|inactive exonuclease EXD1 36 0.004927 0.7036 1 1 +161835 FSIP1 fibrous sheath interacting protein 1 15 protein-coding HSD10 fibrous sheath-interacting protein 1 45 0.006159 3.703 1 1 +161882 ZFPM1 zinc finger protein, FOG family member 1 16 protein-coding FOG|FOG1|ZC2HC11A|ZNF408|ZNF89A zinc finger protein ZFPM1|FOG-1|friend of GATA 1|friend of GATA protein 1|zinc finger protein 89A|zinc finger protein, multitype 1 48 0.00657 7.114 1 1 +161931 ADAD2 adenosine deaminase domain containing 2 16 protein-coding TENRL adenosine deaminase domain-containing protein 2 61 0.008349 1.689 1 1 +162073 ITPRIPL2 inositol 1,4,5-trisphosphate receptor interacting protein like 2 16 protein-coding - inositol 1,4,5-trisphosphate receptor-interacting protein-like 2|inositol 1,4,5-triphosphate receptor-interacting protein-like 2 24 0.003285 10.42 1 1 +162083 C16orf82 chromosome 16 open reading frame 82 16 protein-coding TNT protein TNT 31 0.004243 0.2176 1 1 +162239 ZFP1 ZFP1 zinc finger protein 16 protein-coding ZNF475 zinc finger protein 1 homolog|zinc finger protein 475 15 0.002053 7.788 1 1 +162282 ANKFN1 ankyrin repeat and fibronectin type III domain containing 1 17 protein-coding - ankyrin repeat and fibronectin type-III domain-containing protein 1 78 0.01068 1.781 1 1 +162333 MARCH10 membrane associated ring-CH-type finger 10 17 protein-coding MARCH-X|RNF190 probable E3 ubiquitin-protein ligase MARCH10|membrane associated ring finger 10|membrane-associated RING finger protein 10|membrane-associated RING-CH protein X|membrane-associated ring finger (C3HC4) 10, E3 ubiquitin protein ligase|ring finger protein 190|testis secretory sperm-binding protein Li 228n 62 0.008486 1.964 1 1 +162387 MFSD6L major facilitator superfamily domain containing 6 like 17 protein-coding - major facilitator superfamily domain-containing protein 6-like 38 0.005201 3.81 1 1 +162394 SLFN5 schlafen family member 5 17 protein-coding - schlafen family member 5 67 0.009171 8.595 1 1 +162417 NAGS N-acetylglutamate synthase 17 protein-coding AGAS|ARGA N-acetylglutamate synthase, mitochondrial|amino-acid acetyltransferase 18 0.002464 6.118 1 1 +162427 FAM134C family with sequence similarity 134 member C 17 protein-coding - protein FAM134C 21 0.002874 10.83 1 1 +162461 TMEM92 transmembrane protein 92 17 protein-coding - transmembrane protein 92 14 0.001916 4.963 1 1 +162466 PHOSPHO1 phosphoethanolamine/phosphocholine phosphatase 17 protein-coding - phosphoethanolamine/phosphocholine phosphatase|phosphatase, orphan 1 15 0.002053 3.097 1 1 +162494 RHBDL3 rhomboid like 3 17 protein-coding RHBDL4|VRHO rhomboid-related protein 3|rhomboid, veinlet-like 3|rhomboid, veinlet-like 4|ventrhoid transmembrane protein 27 0.003696 4.609 1 1 +162514 TRPV3 transient receptor potential cation channel subfamily V member 3 17 protein-coding FNEPPK2|OLMS|VRL3 transient receptor potential cation channel subfamily V member 3|VRL-3|vanilloid receptor-like 3|vanilloid receptor-related osmotically activated channel protein 64 0.00876 2.769 1 1 +162515 SLC16A11 solute carrier family 16 member 11 17 protein-coding MCT11 monocarboxylate transporter 11|MCT 11|monocarboxylic acid transporter 11|solute carrier family 16 (monocarboxylic acid transporters), member 11 18 0.002464 4.232 1 1 +162517 FBXO39 F-box protein 39 17 protein-coding CT144|Fbx39 F-box only protein 39 30 0.004106 2.092 1 1 +162540 SPPL2C signal peptide peptidase like 2C 17 protein-coding IMP5 signal peptide peptidase-like 2C|IMP-5|SPP-like 2C|intramembrane protease 5 48 0.00657 0.2711 1 1 +162605 KRT28 keratin 28 17 protein-coding K25IRS4|KRT25D keratin, type I cytoskeletal 28|CK-28|K25D|K28|cytokeratin-28|keratin 28, type I|keratin-25D|type I inner root sheath specific keratin 25 irs4|type I inner root sheath-specific keratin-K25irs4 58 0.007939 0.08149 1 1 +162632 USP32P1 ubiquitin specific peptidase 32 pseudogene 1 17 pseudo - TL132 pseudogene|ubiquitin specific peptidase 6 (Tre-2 oncogene) pseudogene 8 0.001095 6.536 1 1 +162655 ZNF519 zinc finger protein 519 18 protein-coding HsT2362 zinc finger protein 519 39 0.005338 5.346 1 1 +162681 C18orf54 chromosome 18 open reading frame 54 18 protein-coding LAS2 lung adenoma susceptibility protein 2 28 0.003832 6.469 1 1 +162699 TCEB3C transcription elongation factor B subunit 3C 18 protein-coding HsT829|TCEB3L2 RNA polymerase II transcription factor SIII subunit A3|eloA3|elongin-A3|transcription elongation factor B polypeptide 3C (elongin A3) 21 0.002874 0.2489 1 1 +162962 ZNF836 zinc finger protein 836 19 protein-coding - zinc finger protein 836 62 0.008486 6.708 1 1 +162963 ZNF610 zinc finger protein 610 19 protein-coding - zinc finger protein 610|zink finger protein 45 0.006159 5.72 1 1 +162966 ZNF600 zinc finger protein 600 19 protein-coding KR-ZNF1 zinc finger protein 600|zinc finger protein KR-ZNF1 54 0.007391 7.172 1 1 +162967 ZNF320 zinc finger protein 320 19 protein-coding ZFPL zinc finger protein 320|zinc finger gene 320|zinc finger protein like 65 0.008897 8.529 1 1 +162968 ZNF497 zinc finger protein 497 19 protein-coding - zinc finger protein 497|zinc finger-like protein 20 0.002737 6.061 1 1 +162972 ZNF550 zinc finger protein 550 19 protein-coding - zinc finger protein 550 19 0.002601 7.373 1 1 +162979 ZNF296 zinc finger protein 296 19 protein-coding ZFP296|ZNF342 zinc finger protein 296|zinc finger protein 342 26 0.003559 5.781 1 1 +162989 DEDD2 death effector domain containing 2 19 protein-coding FLAME-3|FLAME3 DNA-binding death effector domain-containing protein 2|DED-containing protein FLAME-3|FADD-like anti-apoptotic molecule 3 15 0.002053 9.323 1 1 +162993 ZNF846 zinc finger protein 846 19 protein-coding - zinc finger protein 846 45 0.006159 6.17 1 1 +162998 OR7D2 olfactory receptor family 7 subfamily D member 2 19 protein-coding HTPCRH03|OR19-10|OR19-4 olfactory receptor 7D2|olfactory receptor 19-4|olfactory receptor OR19-10 46 0.006296 1.433 1 1 +163033 ZNF579 zinc finger protein 579 19 protein-coding - zinc finger protein 579 25 0.003422 7.86 1 1 +163049 ZNF791 zinc finger protein 791 19 protein-coding - zinc finger protein 791 54 0.007391 7.565 1 1 +163050 ZNF564 zinc finger protein 564 19 protein-coding - zinc finger protein 564 32 0.00438 7.862 1 1 +163051 ZNF709 zinc finger protein 709 19 protein-coding - zinc finger protein 709 51 0.006981 6.306 1 1 +163059 ZNF433 zinc finger protein 433 19 protein-coding - zinc finger protein 433 38 0.005201 6.225 1 1 +163071 ZNF114 zinc finger protein 114 19 protein-coding - zinc finger protein 114|zinc finger protein 114 (Y18) 27 0.003696 4.026 1 1 +163081 ZNF567 zinc finger protein 567 19 protein-coding - zinc finger protein 567 65 0.008897 6.887 1 1 +163087 ZNF383 zinc finger protein 383 19 protein-coding HSD17 zinc finger protein 383 41 0.005612 6.339 1 1 +163115 ZNF781 zinc finger protein 781 19 protein-coding - zinc finger protein 781 38 0.005201 4.183 1 1 +163126 EID2 EP300 interacting inhibitor of differentiation 2 19 protein-coding CRI2|EID-2 EP300-interacting inhibitor of differentiation 2|CREBBP/EP300 inhibitor 2|CREBBP/EP300 inhibitory protein 2|E1A like inhibitor of differentiation 2|EID-1-like inhibitor of differentiation 2 8 0.001095 8.175 1 1 +163131 ZNF780B zinc finger protein 780B 19 protein-coding ZNF779 zinc finger protein 780B|zinc finger protein 779 62 0.008486 7.991 1 1 +163154 PRR22 proline rich 22 19 protein-coding - proline-rich protein 22 22 0.003011 5.379 1 1 +163175 LGI4 leucine rich repeat LGI family member 4 19 protein-coding LGIL3 leucine-rich repeat LGI family member 4|LGI1-like protein 3|leucine-rich glioma-inactivated gene 4|leucine-rich glioma-inactivated protein 4 37 0.005064 5.921 1 1 +163183 SYNE4 spectrin repeat containing nuclear envelope family member 4 19 protein-coding C19orf46|DFNB76|Nesp4 nesprin-4|deafness, autosomal recessive 76|nuclear envelope spectrin repeat protein 4 23 0.003148 5.64 1 1 +163223 ZNF676 zinc finger protein 676 19 protein-coding - zinc finger protein 676 151 0.02067 2.57 1 1 +163227 ZNF100 zinc finger protein 100 19 protein-coding - zinc finger protein 100|zinc finger protein 100 (Y1) 46 0.006296 7.367 1 1 +163255 ZNF540 zinc finger protein 540 19 protein-coding Nbla10512 zinc finger protein 540|CTD-3064H18.6|putative protein product of Nbla10512 55 0.007528 5.835 1 1 +163259 DENND2C DENN domain containing 2C 1 protein-coding dJ1156J9.1 DENN domain-containing protein 2C|DENN/MADD domain containing 2C|RP5-1156J9.1 84 0.0115 5.344 1 1 +163351 GBP6 guanylate binding protein family member 6 1 protein-coding - guanylate-binding protein 6|GBP-6|GTP-binding protein 6|guanine nucleotide-binding protein 6 59 0.008076 3.686 1 1 +163404 PLPPR5 phospholipid phosphatase related 5 1 protein-coding LPPR5|PAP2|PAP2D|PRG5 phospholipid phosphatase-related protein type 5|PRG-5|lipid phosphate phosphatase-related protein type 5|phosphatidic acid phosphatase 2d|phosphatidic acid phosphatase type 2|phosphatidic acid phosphatase type 2d|plasticity-related gene 5 protein|plasticity-related protein 5 57 0.007802 2.086 1 1 +163479 FNDC7 fibronectin type III domain containing 7 1 protein-coding - fibronectin type III domain-containing protein 7 52 0.007117 0.5286 1 1 +163486 DENND1B DENN domain containing 1B 1 protein-coding C1ORF18|C1orf218|FAM31B DENN domain-containing protein 1B|DENN/MADD domain containing 1B|connecdenn 2|family with sequence similarity 31, member B 44 0.006022 6.043 1 1 +163589 TDRD5 tudor domain containing 5 1 protein-coding TUDOR3 tudor domain-containing protein 5|testicular tissue protein Li 194 107 0.01465 3.914 1 1 +163590 TOR1AIP2 torsin 1A interacting protein 2 1 protein-coding IFRG15|LULL1|NET9 torsin-1A-interacting protein 2|interferon alpha responsive protein|15 kDa interferon-responsive protein|interferon responsive gene 15|lumenal domain like LAP1|torsin A interacting protein 2 43 0.005886 8.485 1 1 +163688 CALML6 calmodulin like 6 1 protein-coding CAGLP calmodulin-like protein 6|EF-hand protein|calglandulin-like protein 11 0.001506 1.26 1 1 +163702 IFNLR1 interferon lambda receptor 1 1 protein-coding CRF2/12|IFNLR|IL-28R1|IL28RA|LICR2 interferon lambda receptor 1|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|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 25 0.003422 7.033 1 1 +163720 CYP4Z2P cytochrome P450 family 4 subfamily Z member 2, pseudogene 1 pseudo - cytochrome P450 4Z2 pseudogene|cytochrome P450, family 4, subfamily Z, polypeptide 2, pseudogene 69 0.009444 1.553 1 1 +163732 CITED4 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 4 1 protein-coding - cbp/p300-interacting transactivator 4|MRG-2|MSG1-related protein 2|transcriptional co-activator 4 7.908 0 1 +163742 SLC25A3P1 solute carrier family 25 member 3 pseudogene 1 1 pseudo - solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 pseudogene 1|solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene 1 9 0.001232 0.125 1 1 +163747 LEXM lymphocyte expansion molecule 1 protein-coding C1orf177|LEM lymphocyte expansion molecule|uncharacterized protein C1orf177 45 0.006159 1.328 1 1 +163778 SPRR4 small proline rich protein 4 1 protein-coding - small proline-rich protein 4 11 0.001506 0.6996 1 1 +163782 KANK4 KN motif and ankyrin repeat domains 4 1 protein-coding ANKRD38|dJ1078M7.1 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 89 0.01218 4.956 1 1 +163786 SASS6 SAS-6 centriolar assembly protein 1 protein-coding MCPH14|SAS-6|SAS6 spindle assembly abnormal protein 6 homolog|hsSAS-6|spindle assembly 6 homolog 39 0.005338 7.043 1 1 +163859 SDE2 SDE2 telomere maintenance homolog 1 protein-coding C1orf55|dJ671D7.1 protein SDE2 homolog|UPF0667 protein C1orf55 33 0.004517 9.267 1 1 +163882 CNST consortin, connexin sorting protein 1 protein-coding C1orf71|PPP1R64 consortin|protein phosphatase 1, regulatory subunit 64 70 0.009581 9.295 1 1 +163933 FAM43B family with sequence similarity 43 member B 1 protein-coding - protein FAM43B 14 0.001916 3.958 1 1 +164045 HFM1 HFM1, ATP dependent DNA helicase homolog 1 protein-coding MER3|POF9|SEC63D1|Si-11|Si-11-6|helicase probable ATP-dependent DNA helicase HFM1|SEC63 domain-containing protein 1|helicase-like protein HFM1 160 0.0219 2.236 1 1 +164091 PAQR7 progestin and adipoQ receptor family member 7 1 protein-coding MPRA|PGLP|mSR membrane progestin receptor alpha|2310021M12Rik|mPR alpha|progestin and adipoQ receptor family member VII 19 0.002601 8.803 1 1 +164118 TTC24 tetratricopeptide repeat domain 24 1 protein-coding - tetratricopeptide repeat protein 24|TPR repeat protein 24 31 0.004243 1.415 1 1 +164127 CCDC185 coiled-coil domain containing 185 1 protein-coding C1orf65 coiled-coil domain-containing protein 185 49 0.006707 1.116 1 1 +164153 UBL4B ubiquitin like 4B 1 protein-coding - ubiquitin-like protein 4B 8 0.001095 1.258 1 1 +164237 WFDC13 WAP four-disulfide core domain 13 20 protein-coding C20orf138|WAP13|dJ601O1.3 WAP four-disulfide core domain protein 13|protease inhibitor WAP13|protein WFDC13 5 0.0006844 0.4949 1 1 +164284 APCDD1L APC down-regulated 1 like 20 protein-coding - protein APCDD1-like|adenomatosis polyposis coli down-regulated 1 like 39 0.005338 3.638 1 1 +164312 LRRN4 leucine rich repeat neuronal 4 20 protein-coding C20orf75|NLRR-4|NLRR4|dJ1056H1.1 leucine-rich repeat neuronal protein 4|neuronal leucine-rich repeat protein 4 49 0.006707 2.972 1 1 +164380 CST13P cystatin 13, pseudogene 20 pseudo CSTT|CTES6 cystatin T|cystatin pseudogene 3 0.0004106 0.03401 1 1 +164395 TTLL9 tubulin tyrosine ligase like 9 20 protein-coding C20orf125 probable tubulin polyglutamylase TTLL9|tubulin tyrosine ligase-like family, member 9|tubulin--tyrosine ligase-like protein 9 44 0.006022 3.526 1 1 +164592 CCDC116 coiled-coil domain containing 116 22 protein-coding - coiled-coil domain-containing protein 116 52 0.007117 2.116 1 1 +164633 CABP7 calcium binding protein 7 22 protein-coding CALN2 calcium-binding protein 7|calneuron 2|calneuron II 6 0.0008212 3.44 1 1 +164656 TMPRSS6 transmembrane protease, serine 6 22 protein-coding IRIDA transmembrane protease serine 6|matriptase-2|membrane-bound mosaic serine proteinase matriptase-2|type II transmembrane serine protease 6 63 0.008623 4.06 1 1 +164668 APOBEC3H apolipoprotein B mRNA editing enzyme catalytic subunit 3H 22 protein-coding A3H|ARP-10|ARP10 DNA dC->dU-editing enzyme APOBEC-3H|APOBEC-related protein 10|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3H 17 0.002327 3.103 1 1 +164684 WBP2NL WBP2 N-terminal like 22 protein-coding GRAMD7|PAWP postacrosomal sheath WW domain-binding protein|WW domain-binding protein 2-like 19 0.002601 2.418 1 1 +164714 TTLL8 tubulin tyrosine ligase like 8 22 protein-coding - protein monoglycylase TTLL8|tubulin tyrosine ligase-like family, member 8|tubulin--tyrosine ligase-like protein 8 38 0.005201 0.07395 1 1 +164781 DAW1 dynein assembly factor with WD repeats 1 2 protein-coding ODA16|WDR69 dynein assembly factor with WDR repeat domains 1|WD repeat domain 69|WD repeat-containing protein 69|outer row dynein assembly 16 homolog|outer row dynein assembly protein 16 homolog|testis tissue sperm-binding protein Li 93mP 40 0.005475 1.248 1 1 +164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 2 protein-coding RNF192 LON peptidase N-terminal domain and RING finger protein 2|RING finger protein 192|neuroblastoma apoptosis-related protease 56 0.007665 7.145 1 1 +165055 CCDC138 coiled-coil domain containing 138 2 protein-coding - coiled-coil domain-containing protein 138 50 0.006844 5.622 1 1 +165082 ADGRF3 adhesion G protein-coupled receptor F3 2 protein-coding GPR113|PGR23 adhesion G-protein coupled receptor F3|G protein-coupled receptor 113|G protein-coupled receptor PGR23|probable G-protein coupled receptor 113|seven transmembrane helix receptor 45 0.006159 2.956 1 1 +165100 C2orf57 chromosome 2 open reading frame 57 2 protein-coding - uncharacterized protein C2orf57 24 0.003285 0.1697 1 1 +165140 OXER1 oxoeicosanoid receptor 1 2 protein-coding GPCR|GPR170|TG1019 oxoeicosanoid receptor 1|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|OXE receptor|oxoeicosanoid (OXE) receptor 1 24 0.003285 4.872 1 1 +165186 FAM179A family with sequence similarity 179 member A 2 protein-coding - protein FAM179A 86 0.01177 3.392 1 1 +165215 FAM171B family with sequence similarity 171 member B 2 protein-coding KIAA1946 protein FAM171B 102 0.01396 7.354 1 1 +165257 C1QL2 complement C1q like 2 2 protein-coding C1QTNF10|CTRP10 complement C1q-like protein 2|C1q and tumor necrosis factor-related protein 10|C1q-domain containing protein|C1q/TNF-related protein 10|complement component 1, q subcomponent-like 2 18 0.002464 1.512 1 1 +165324 UBXN2A UBX domain protein 2A 2 protein-coding UBXD4 UBX domain-containing protein 2A|UBX domain containing 4|UBX domain-containing protein 4 27 0.003696 8.116 1 1 +165530 CLEC4F C-type lectin domain family 4 member F 2 protein-coding CLECSF13|KCLR C-type lectin domain family 4 member F|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 13 62 0.008486 2.575 1 1 +165545 DQX1 DEAQ-box RNA dependent ATPase 1 2 protein-coding - ATP-dependent RNA helicase DQX1|DEAQ RNA-dependent ATPase DQX1|DEAQ box polypeptide 1 (RNA-dependent ATPase) 53 0.007254 3.54 1 1 +165631 PARP15 poly(ADP-ribose) polymerase family member 15 3 protein-coding ARTD7|BAL3|pART7 poly [ADP-ribose] polymerase 15|ADP-ribosyltransferase diphtheria toxin-like 7|B-aggressive lymphoma 3|B-aggressive lymphoma protein 3|PARP-15 40 0.005475 3.612 1 1 +165679 SPTSSB serine palmitoyltransferase small subunit B 3 protein-coding ADMP|C3orf57|SSSPTB serine palmitoyltransferase small subunit B|androgen down regulated in mouse prostate|likely ortholog of androgen down regulated gene expressed in mouse prostate|small subunit of serine palmitoyltransferase B 9 0.001232 4.914 1 1 +165721 DNAJB8 DnaJ heat shock protein family (Hsp40) member B8 3 protein-coding CT156|DJ6 dnaJ homolog subfamily B member 8|DnaJ (Hsp40) homolog, subfamily B, member 8|testicular tissue protein Li 56 30 0.004106 0.1011 1 1 +165829 GPR156 G protein-coupled receptor 156 3 protein-coding GABABL|PGR28 probable G-protein coupled receptor 156|G protein-coupled receptor PGR28|GABAB-related G-protein coupled receptor 63 0.008623 2.248 1 1 +165904 XIRP1 xin actin binding repeat containing 1 3 protein-coding CMYA1|Xin xin actin-binding repeat-containing protein 1|cardiomyopathy associated 1|cardiomyopathy-associated protein 1 130 0.01779 3.381 1 1 +165918 RNF168 ring finger protein 168 3 protein-coding hRNF168 E3 ubiquitin-protein ligase RNF168|ring finger protein 168, E3 ubiquitin protein ligase 43 0.005886 7.139 1 1 +166012 CHST13 carbohydrate sulfotransferase 13 3 protein-coding C4ST3 carbohydrate sulfotransferase 13|C4ST-3|carbohydrate (chondroitin 4) sulfotransferase 13|chondroitin 4-O-sulfotransferase 3|chondroitin 4-sulfotransferase 3 24 0.003285 3.703 1 1 +166336 PRICKLE2 prickle planar cell polarity protein 2 3 protein-coding EPM5 prickle-like protein 2|prickle homolog 2 75 0.01027 8.425 1 1 +166348 KBTBD12 kelch repeat and BTB domain containing 12 3 protein-coding KLHDC6 kelch repeat and BTB domain-containing protein 12|kelch domain containing 6|kelch domain-containing protein 6|kelch repeat and BTB (POZ) domain containing 12 50 0.006844 2.846 1 1 +166378 SPATA5 spermatogenesis associated 5 4 protein-coding AFG2|EHLMRS|SPAF spermatogenesis-associated protein 5|ATPase family gene 2 homolog|ATPase family protein 2 homolog|spermatogenesis associated factor SPAF|spermatogenesis-associated factor protein 57 0.007802 7.539 1 1 +166379 BBS12 Bardet-Biedl syndrome 12 4 protein-coding C4orf24 Bardet-Biedl syndrome 12 protein|truncated Bardet-Biedl syndrome 12 protein 52 0.007117 6.792 1 1 +166614 DCLK2 doublecortin like kinase 2 4 protein-coding CL2|CLICK-II|CLICK2|CLIK2|DCAMKL2|DCDC3|DCDC3B|DCK2 serine/threonine-protein kinase DCLK2|CaMK-like CREB regulatory kinase 2|doublecortin and CaM kinase-like 2|doublecortin domain-containing protein 3B|doublecortin-like and CAM kinase-like 2 51 0.006981 6.923 1 1 +166647 ADGRA3 adhesion G protein-coupled receptor A3 4 protein-coding GPR125|PGR21|TEM5L adhesion G protein-coupled receptor A3|G-protein coupled receptor 125|probable G-protein coupled receptor 125 101 0.01382 9.588 1 1 +166655 TRIM60 tripartite motif containing 60 4 protein-coding RNF129|RNF33 tripartite motif-containing protein 60|ring finger protein 129|ring finger protein 33 48 0.00657 0.17 1 1 +166752 FREM3 FRAS1 related extracellular matrix 3 4 protein-coding - FRAS1-related extracellular matrix protein 3 24 0.003285 1 0 +166785 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type 4 protein-coding cblA methylmalonic aciduria type A protein, mitochondrial|mutant adenosylcobalamin 30 0.004106 7.745 1 1 +166793 ZBTB49 zinc finger and BTB domain containing 49 4 protein-coding ZNF509 zinc finger and BTB domain-containing protein 49|zinc finger protein 509 60 0.008212 6.551 1 1 +166815 TIGD2 tigger transposable element derived 2 4 protein-coding HEL106 tigger transposable element-derived protein 2|epididymis luminal protein 106 38 0.005201 7.202 1 1 +166824 RASSF6 Ras association domain family member 6 4 protein-coding - ras association domain-containing protein 6|Ras association (RalGDS/AF-6) domain family 6|Ras association (RalGDS/AF-6) domain family member 6|putative RAS binding protein 26 0.003559 5.589 1 1 +166863 RBM46 RNA binding motif protein 46 4 protein-coding CT68 probable RNA-binding protein 46|cancer/testis antigen 68 54 0.007391 1.008 1 1 +166929 SGMS2 sphingomyelin synthase 2 4 protein-coding SMS2 phosphatidylcholine:ceramide cholinephosphotransferase 2|SM synthase 18 0.002464 8.555 1 1 +166968 MIER3 MIER family member 3 5 protein-coding - mesoderm induction early response protein 3|mesoderm induction early response 1, family member 3|mi-er3 31 0.004243 8.929 1 1 +166979 CDC20B cell division cycle 20B 5 protein-coding G6VTS76519 cell division cycle protein 20 homolog B|CDC20 cell division cycle 20 homolog B|CDC20-like protein|cell division cycle 20 homolog B 48 0.00657 1.572 1 1 +167127 UGT3A2 UDP glycosyltransferase family 3 member A2 5 protein-coding - UDP-glucuronosyltransferase 3A2|UDP glycosyltransferase 3 family, polypeptide A2|UDPGT 3A2 77 0.01054 2.241 1 1 +167153 PAPD4 poly(A) RNA polymerase D4, non-canonical 5 protein-coding GLD2|TUT2 poly(A) RNA polymerase GLD2|PAP associated domain containing 4|PAP-associated domain-containing protein 4|TUTase 2|hGLD-2|terminal uridylyltransferase 2 35 0.004791 9.634 1 1 +167227 DCP2 decapping mRNA 2 5 protein-coding NUDT20 m7GpppN-mRNA hydrolase|DCP2 decapping enzyme homolog|hDpc|mRNA-decapping enzyme 2|nudix (nucleoside diphosphate linked moiety X)-type motif 20 27 0.003696 9.507 1 1 +167359 NIM1K NIM1 serine/threonine protein kinase 5 protein-coding NIM1 serine/threonine-protein kinase NIM1 30 0.004106 3.715 1 1 +167410 LIX1 limb and CNS expressed 1 5 protein-coding C5orf11|Lft protein limb expression 1 homolog|Lix1 homolog|Lowfat homolog|limb expression 1 14 0.001916 2.833 1 1 +167465 ZNF366 zinc finger protein 366 5 protein-coding DCSCRIPT zinc finger protein 366 79 0.01081 4.188 1 1 +167555 FAM151B family with sequence similarity 151 member B 5 protein-coding UNQ9217 protein FAM151B|AASA9217 20 0.002737 3.93 1 1 +167681 PRSS35 protease, serine 35 6 protein-coding C6orf158|dJ223E3.1 inactive serine protease 35 52 0.007117 3.598 1 1 +167691 LCA5 LCA5, lebercilin 6 protein-coding C6orf152 lebercilin|Leber congenital amaurosis 5|leber congenital amaurosis 5 protein 61 0.008349 6.893 1 1 +167826 OLIG3 oligodendrocyte transcription factor 3 6 protein-coding Bhlhb7|bHLHe20 oligodendrocyte transcription factor 3|class B basic helix-loop-helix protein 7|class E basic helix-loop-helix protein 20|oligo3 31 0.004243 0.3516 1 1 +167838 TXLNB taxilin beta 6 protein-coding C6orf198|LST001|MDP77|dJ522B19.2 beta-taxilin|muscle-derived protein 77 65 0.008897 4.869 1 1 +168002 DACT2 dishevelled binding antagonist of beta catenin 2 6 protein-coding C6orf116|DAPPER2|DPR2|bA503C24.7 dapper homolog 2|dapper antagonist of catenin 2|dapper homolog 2, antagonist of beta-catenin|dapper, antagonist of beta-catenin, homolog 2 16 0.00219 4.365 1 1 +168090 C6orf118 chromosome 6 open reading frame 118 6 protein-coding bA85G2.1|dJ416F21.2 uncharacterized protein C6orf118|dJ416F21.2 (novel protein) 97 0.01328 1.135 1 1 +168330 PRSS3P1 protease, serine 3 pseudogene 1 7 pseudo TRY5 protease, serine, 1 (trypsin 1) 1 0.0001369 1 0 +168374 ZNF92 zinc finger protein 92 7 protein-coding HEL-203|HPF12|HTF12|TF12 zinc finger protein 92|epididymis luminal protein 203|zinc finger protein HTF12 29 0.003969 7.92 1 1 +168391 GALNTL5 polypeptide N-acetylgalactosaminyltransferase-like 5 7 protein-coding GALNACT19|GALNT15|GalNAc-T5L inactive polypeptide N-acetylgalactosaminyltransferase-like protein 5|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 15|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5|galNAc-T15|polypeptide GalNAc transferase 15|polypeptide GalNAc transferase-like 5|pp-GaNTase 15|protein-UDP acetylgalactosaminyltransferase 15|putative polypeptide N-acetylgalactosaminyltransferase-like protein 5|testis tissue sperm-binding protein Li 61n 55 0.007528 0.1813 1 1 +168400 DDX53 DEAD-box helicase 53 X protein-coding CAGE|CT26 DEAD box protein 53|DEAD (Asp-Glu-Ala-Asp) box polypeptide 53|DEAD-box protein CAGE|cancer-associated gene protein|cancer/testis antigen 26|probable ATP-dependent RNA helicase DDX53 43 0.005886 0.3886 1 1 +168417 ZNF679 zinc finger protein 679 7 protein-coding - zinc finger protein 679|hypothetical protein MGC42415 70 0.009581 0.2027 1 1 +168433 RNF133 ring finger protein 133 7 protein-coding - E3 ubiquitin-protein ligase RNF133 46 0.006296 0.9291 1 1 +168448 CDC14C cell division cycle 14C, pseuodgene 7 pseudo CDC14B2|CDC14Bretro|CDC14CP CDC14 cell division cycle 14 C pseudogene|CDC14 cell division cycle 14 homolog C|cell division cycle 14C 1 0.0001369 2.923 1 1 +168451 THAP5 THAP domain containing 5 7 protein-coding - THAP domain-containing protein 5 26 0.003559 9.002 1 1 +168455 CCDC71L coiled-coil domain containing 71-like 7 protein-coding C7orf74 coiled-coil domain-containing protein 71L 2 0.0002737 8.397 1 1 +168474 SEPHS1P1 selenophosphate synthetase 1 pseudogene 1 7 pseudo SEPHS1P - 2.325 0 1 +168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting 7 protein-coding PRO19563 polycystic kidney disease protein 1-like 1|PC1-like 1 protein|polycystic kidney disease 1 like 1|polycystin-1L1 210 0.02874 3.38 1 1 +168537 GIMAP7 GTPase, IMAP family member 7 7 protein-coding IAN7|hIAN7 GTPase IMAP family member 7|IAN-7|immune associated nucleotide|immune-associated nucleotide-binding protein 7|immunity-associated nucleotide 7 protein 43 0.005886 7.311 1 1 +168544 ZNF467 zinc finger protein 467 7 protein-coding EZI|Zfp467 zinc finger protein 467|zinc finger protein EZI 39 0.005338 7.235 1 1 +168620 BHLHA15 basic helix-loop-helix family member a15 7 protein-coding BHLHB8|MIST1 class A basic helix-loop-helix protein 15|MIST-1|basic helix-loop-helix domain containing, class B, 8|class B basic helix-loop-helix protein 8|class II bHLH protein MIST1|muscle, intestine and stomach expression 1 11 0.001506 2.646 1 1 +168667 BMPER BMP binding endothelial regulator 7 protein-coding CRIM3|CV-2|CV2 BMP-binding endothelial regulator protein|BMP-binding endothelial regulator precursor protein|bone morphogenetic protein-binding endothelial cell precursor-derived regulator|crossveinless 2|hCV2 87 0.01191 4.101 1 1 +168741 PER4 period circadian clock 3 pseudogene 7 pseudo - period 3 pseudogene|period 4 pseudogene|period homolog 3 pseudogene 0.04014 0 1 +168850 ZNF800 zinc finger protein 800 7 protein-coding - zinc finger protein 800 77 0.01054 8.513 1 1 +168975 CNBD1 cyclic nucleotide binding domain containing 1 8 protein-coding - cyclic nucleotide-binding domain-containing protein 1 86 0.01177 0.05604 1 1 +169026 SLC30A8 solute carrier family 30 member 8 8 protein-coding ZNT8|ZnT-8 zinc transporter 8|solute carrier family 30 (zinc transporter), member 8|zinc transporter ZnT-8 52 0.007117 1.726 1 1 +169044 COL22A1 collagen type XXII alpha 1 chain 8 protein-coding - collagen alpha-1(XXII) chain|collagen, type XXII, alpha 1 277 0.03791 5.472 1 1 +169166 SNX31 sorting nexin 31 8 protein-coding - sorting nexin-31 41 0.005612 2.29 1 1 +169200 TMEM64 transmembrane protein 64 8 protein-coding - transmembrane protein 64 17 0.002327 9.083 1 1 +169270 ZNF596 zinc finger protein 596 8 protein-coding - zinc finger protein 596 33 0.004517 5.824 1 1 +169355 IDO2 indoleamine 2,3-dioxygenase 2 8 protein-coding INDOL1 indoleamine 2,3-dioxygenase 2|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 39 0.005338 1.581 1 1 +169436 STKLD1 serine/threonine kinase like domain containing 1 9 protein-coding C9orf96|SgK071|Sk521 serine/threonine kinase-like domain-containing protein STKLD1|probable inactive protein kinase-like protein SgK071|serine/threonine kinase-like domain-containing protein 1|sugen kinase 071 53 0.007254 3.11 1 1 +169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 9 protein-coding KV11.1|Kv8.2|RCD3B potassium voltage-gated channel subfamily V member 2|potassium channel, subfamily V, member 2|potassium channel, voltage gated modifier subfamily V, member 2|voltage-gated potassium channel subunit Kv8.2 61 0.008349 1.003 1 1 +169611 OLFML2A olfactomedin like 2A 9 protein-coding PRO34319 olfactomedin-like protein 2A|photomedin-1 44 0.006022 9.231 1 1 +169693 TMEM252 transmembrane protein 252 9 protein-coding C9orf71 transmembrane protein 252|transmembrane protein C9orf71 22 0.003011 0.7686 1 1 +169714 QSOX2 quiescin sulfhydryl oxidase 2 9 protein-coding QSCN6L1|SOXN sulfhydryl oxidase 2|neuroblastoma-derived sulfhydryl oxidase|quiescin Q6 sulfhydryl oxidase 2|quiescin Q6-like 1|quiescin Q6-like protein 1|thiol oxidase 2 50 0.006844 9.05 1 1 +169792 GLIS3 GLIS family zinc finger 3 9 protein-coding NDH|ZNF515 zinc finger protein GLIS3|GLI-similar 3|OK/KNS-cl.4|zinc finger protein 515 88 0.01204 7.557 1 1 +169834 ZNF883 zinc finger protein 883 9 protein-coding - zinc finger protein 883 39 0.005338 5.113 1 1 +169841 ZNF169 zinc finger protein 169 9 protein-coding - zinc finger protein 169 48 0.00657 5.913 1 1 +169966 FAM46D family with sequence similarity 46 member D X protein-coding CT1.26|CT112 protein FAM46D|cancer/testis antigen 112 61 0.008349 0.4999 1 1 +169981 SPIN3 spindlin family member 3 X protein-coding SPIN-3|TDRD27|bA445O16.1 spindlin-3|bA445O16.1 (DXF34)|spindlin-like protein 3 21 0.002874 7.689 1 1 +170062 FAM47B family with sequence similarity 47 member B X protein-coding - protein FAM47B 134 0.01834 0.0417 1 1 +170063 1.126 0 1 +170067 SUPT20HL2 SPT20 homolog, SAGA complex component-like 2 X protein-coding FAM48B1|FAM48B2 putative transcription factor SPT20 homolog-like 2|Putative protein FAM48B2|family with sequence similarity 48, member B1|family with sequence similarity 48, member B2|suppressor of Ty 20 homolog (S. cerevisiae)-like 2 14 0.001916 0.4942 1 1 +170082 TCEANC transcription elongation factor A N-terminal and central domain containing X protein-coding - transcription elongation factor A N-terminal and central domain-containing protein|TFIIS central domain-containing protein 1|TFS2-M domain-containing protein 1|transcription elongation factor A (SII) N-terminal and central domain containing 23 0.003148 5.331 1 1 +170261 ZCCHC12 zinc finger CCHC-type containing 12 X protein-coding PNMA7A|SIZN|SIZN1 zinc finger CCHC domain-containing protein 12|paraneoplastic Ma antigen family member 7A|smad-interacting zinc finger protein 1|zinc finger, CCHC domain containing 12 51 0.006981 3.554 1 1 +170302 ARX aristaless related homeobox X protein-coding CT121|EIEE1|ISSX|MRX29|MRX32|MRX33|MRX36|MRX38|MRX43|MRX54|MRX76|MRX87|MRXS1|PRTS homeobox protein ARX|aristaless-related homeobox, X-linked|cancer/testis antigen 121 18 0.002464 2.729 1 1 +170370 FAM170B family with sequence similarity 170 member B 10 protein-coding C10orf73 protein FAM170B|acrosome-related protein|putative protein FAM170B 14 0.001916 0.2413 1 1 +170371 C10orf128 chromosome 10 open reading frame 128 10 protein-coding - putative uncharacterized protein C10orf128 13 0.001779 3.356 1 1 +170384 FUT11 fucosyltransferase 11 10 protein-coding - alpha-(1,3)-fucosyltransferase 11|alpha (1,3) fucosyltransferase|fuc-TXI|fucT-XI|fucosyltransferase 11 (alpha (1,3) fucosyltransferase)|fucosyltransferase XI|galactoside 3-L-fucosyltransferase 11 21 0.002874 7.379 1 1 +170392 OIT3 oncoprotein induced transcript 3 10 protein-coding LZP oncoprotein-induced transcript 3 protein|liver-specific ZP domain-containing protein|liver-specific zona pellucida domain-containing protein 40 0.005475 2.624 1 1 +170393 C10orf91 chromosome 10 open reading frame 91 10 protein-coding bA432J24.4 uncharacterized protein C10orf91 10 0.001369 1.645 1 1 +170394 PWWP2B PWWP domain containing 2B 10 protein-coding PWWP2|bA432J24.1|pp8607 PWWP domain-containing protein 2B|PWWP domain containing 2 39 0.005338 8.758 1 1 +170463 SSBP4 single stranded DNA binding protein 4 19 protein-coding - single-stranded DNA-binding protein 4 22 0.003011 9.424 1 1 +170482 CLEC4C C-type lectin domain family 4 member C 12 protein-coding BDCA2|CD303|CLECSF11|CLECSF7|DLEC|HECL|PRO34150 C-type lectin domain family 4 member C|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 33 0.004517 0.6227 1 1 +170487 ACTL10 actin like 10 20 protein-coding C20orf134|dJ63M2.2 actin-like protein 10 12 0.001642 5.154 1 1 +170506 DHX36 DEAH-box helicase 36 3 protein-coding DDX36|G4R1|MLEL1|RHAU ATP-dependent RNA helicase DHX36|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 36|DEAH (Asp-Glu-Ala-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 78 0.01068 9.755 1 1 +170572 HTR3C 5-hydroxytryptamine receptor 3C 3 protein-coding - 5-hydroxytryptamine receptor 3C|5-HT3-C|5-HT3C|5-hydroxytryptamine (serotonin) receptor 3, family member C|5-hydroxytryptamine (serotonin) receptor 3C, ionotropic|5-hydroxytryptamine receptor 3 subunit C|serotonin receptor 3C 45 0.006159 0.3953 1 1 +170575 GIMAP1 GTPase, IMAP family member 1 7 protein-coding HIMAP1|IAN2|IMAP1|IMAP38 GTPase IMAP family member 1|immune-associated nucleotide-binding protein 2|immunity associated protein 1 47 0.006433 6.423 1 1 +170589 GPHA2 glycoprotein hormone alpha 2 11 protein-coding A2|GPA2|ZSIG51 glycoprotein hormone alpha-2|cysteine knot protein|glycoprotein alpha 2|putative secreted protein Zsig51|thyrostimulin subunit alpha 7 0.0009581 0.8661 1 1 +170591 S100Z S100 calcium binding protein Z 5 protein-coding Gm625|S100-zeta protein S100-Z|S100 calcium binding protein, zeta 9 0.001232 1.324 1 1 +170622 COMMD6 COMM domain containing 6 13 protein-coding Acrg COMM domain-containing protein 6|Acrg embryonic lethality minimal region ortholog 11 0.001506 10.22 1 1 +170626 XAGE3 X antigen family member 3 X protein-coding CT12.3a|CT12.3b|GAGED4|PLAC6|XAGE-3|pp9012 X antigen family member 3|CT12.3|G antigen, family D, 4|cancer/testis antigen 12.3|cancer/testis antigen family 12, member 3a|cancer/testis antigen family 12, member 3b|g antigen family D member 4|placenta-specific 6|placenta-specific gene 6 protein|protein XAGE-3 7 0.0009581 0.16 1 1 +170627 XAGE5 X antigen family member 5 X protein-coding CT12.5|GAGED5|XAGE-5 X antigen family member 5|G antigen, family D, 5|cancer/testis antigen 12.5|cancer/testis antigen family 12, member 5|g antigen family D member 5|protein XAGE-5 17 0.002327 0.1188 1 1 +170679 PSORS1C1 psoriasis susceptibility 1 candidate 1 6 protein-coding C6orf16|SEEK1 psoriasis susceptibility 1 candidate gene 1 protein 16 0.00219 3.253 1 1 +170680 PSORS1C2 psoriasis susceptibility 1 candidate 2 6 protein-coding C6orf17|SPR1 psoriasis susceptibility 1 candidate gene 2 protein 6 0.0008212 2.413 1 1 +170685 NUDT10 nudix hydrolase 10 X protein-coding APS2|DIPP3-alpha|DIPP3a diphosphoinositol polyphosphate phosphohydrolase 3-alpha|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 3-alpha|diadenosine hexaphosphate hydrolase (AMP-forming)|nucleoside diphosphate-linked moiety X motif 10|nudix (nucleoside diphosphate linked moiety X)-type motif 10|nudix motif 10 12 0.001642 4.354 1 1 +170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 11 protein-coding - 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 69 0.009444 4.899 1 1 +170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 5 protein-coding ADAMTS16s 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 207 0.02833 4.218 1 1 +170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 15 protein-coding - A disintegrin and metalloproteinase with thrombospondin motifs 17|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 17 91 0.01246 5.539 1 1 +170692 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif 18 16 protein-coding ADAMTS21|KNO2|MMCAT 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 172 0.02354 3.069 1 1 +170712 COX7B2 cytochrome c oxidase subunit 7B2 4 protein-coding - cytochrome c oxidase subunit 7B2, mitochondrial|cytochrome c oxidase polypeptide VIIb2|cytochrome c oxidase subunit VIIb2 16 0.00219 0.5874 1 1 +170825 GSX2 GS homeobox 2 4 protein-coding GSH2 GS homeobox 2|genetic-screened homeobox 2|homeobox protein GSH-2 26 0.003559 0.355 1 1 +170850 KCNG3 potassium voltage-gated channel modifier subfamily G member 3 2 protein-coding KV10.1|KV6.3 potassium voltage-gated channel subfamily G member 3|potassium channel, voltage gated modifier subfamily G, member 3|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 20 0.002737 2.557 1 1 +170954 PPP1R18 protein phosphatase 1 regulatory subunit 18 6 protein-coding HKMT1098|KIAA1949 phostensin|protein phosphatase 1 F-actin cytoskeleton targeting subunit 39 0.005338 10.51 1 1 +170958 ZNF525 zinc finger protein 525 19 pseudo - - 33 0.004517 7.38 1 1 +170959 ZNF431 zinc finger protein 431 19 protein-coding - zinc finger protein 431 46 0.006296 7.097 1 1 +170960 ZNF721 zinc finger protein 721 4 protein-coding - zinc finger protein 721 63 0.008623 8.707 1 1 +170961 ANKRD24 ankyrin repeat domain 24 19 protein-coding - ankyrin repeat domain-containing protein 24 53 0.007254 5.035 1 1 +171017 ZNF384 zinc finger protein 384 12 protein-coding CAGH1|CAGH1A|CIZ|ERDA2|NMP4|NP|TNRC1 zinc finger protein 384|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 45 0.006159 10.22 1 1 +171019 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif 19 5 protein-coding - 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 164 0.02245 1.806 1 1 +171022 ABHD11-AS1 ABHD11 antisense RNA 1 (tail to tail) 7 ncRNA LINC00035|NCRNA00035|WBSCR26 ABHD11 antisense RNA 1 (non-protein coding)|Williams Beuren syndrome chromosome region 26 (non-protein coding)|long intergenic non-protein coding RNA 35 3.142 0 1 +171023 ASXL1 additional sex combs like 1, transcriptional regulator 20 protein-coding BOPS|MDS putative Polycomb group protein ASXL1|additional sex combs like 1|additional sex combs like transcriptional regulator 1 138 0.01889 10.6 1 1 +171024 SYNPO2 synaptopodin 2 4 protein-coding - synaptopodin-2|genethonin-2|myopodin 119 0.01629 8.864 1 1 +171169 SPACA4 sperm acrosome associated 4 19 protein-coding SAMP14 sperm acrosome membrane-associated protein 4|sperm acrosomal membrane protein 14|sperm acrosomal membrane-associated protein 14|testicular tissue protein Li 167 9 0.001232 1.652 1 1 +171177 RHOV ras homolog family member V 15 protein-coding ARHV|CHP|WRCH2 rho-related GTP-binding protein RhoV|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 11 0.001506 6.564 1 1 +171389 NLRP6 NLR family pyrin domain containing 6 11 protein-coding AVR|CLR11.4|NALP6|NAVR|NAVR/AVR|PAN3|PYPAF5 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 57 0.007802 2.353 1 1 +171392 ZNF675 zinc finger protein 675 19 protein-coding TBZF|TIZ zinc finger protein 675|TRAF6 inhibitory zinc finger|TRAF6-binding zinc finger protein|TRAF6-inhibitory zinc finger protein 68 0.009307 6.991 1 1 +171422 CRPP1 C-reactive protein pseudogene 1 1 pseudo - C-reactive protein, pentraxin-related pseudogene 1 0.0001369 1 0 +171423 PDIA3P1 protein disulfide isomerase family A member 3 pseudogene 1 1 pseudo ERp60|GRP58P|PDIA3P ER-60 protein processed pseudogene|glucose regulated protein, 58kDa pseudogene|protein disulfide isomerase family A, member 3 pseudogene|protein disulfide isomerase-associated 3 pseudogene 0 0 11.55 1 1 +171425 CLYBL citrate lyase beta like 13 protein-coding CLB citrate lyase subunit beta-like protein, mitochondrial|beta-methylmalate synthase|malate synthase 26 0.003559 6.513 1 1 +171482 FAM9A family with sequence similarity 9 member A X protein-coding TEX39A protein FAM9A|testis expressed 39A 40 0.005475 0.1676 1 1 +171483 FAM9B family with sequence similarity 9 member B X protein-coding TEX39B protein FAM9B|testis expressed 39B 23 0.003148 0.3384 1 1 +171484 FAM9C family with sequence similarity 9 member C X protein-coding TEX39C protein FAM9C|testis expressed 39C 13 0.001779 0.6764 1 1 +171489 0.2121 0 1 +171546 SPTSSA serine palmitoyltransferase small subunit A 14 protein-coding C14orf147|SSSPTA serine palmitoyltransferase small subunit A|small subunit of serine palmitoyltransferase A 8 0.001095 10.34 1 1 +171558 PTCRA pre T-cell antigen receptor alpha 6 protein-coding PT-ALPHA|PTA pre T-cell antigen receptor alpha|pT-alpha-TCR|pre-T-cell receptor alpha chain 24 0.003285 1.96 1 1 +171568 POLR3H RNA polymerase III subunit H 22 protein-coding RPC22.9|RPC8 DNA-directed RNA polymerase III subunit RPC8|DNA-directed RNA polymerase III subunit 22.9 kDa polypeptide|DNA-directed RNA polymerase III subunit H|RNA nucleotidyltransferase (DNA-directed)|RNA polymerase III subunit C8|polymerase (RNA) III (DNA directed) polypeptide H (22.9kD)|polymerase (RNA) III subunit H 13 0.001779 10.11 1 1 +171586 ABHD3 abhydrolase domain containing 3 18 protein-coding LABH3 phospholipase ABHD3|abhydrolase domain-containing protein 3|alpha/beta hydrolase domain containing protein 3|lung alpha/beta hydrolase 3 19 0.002601 8.805 1 1 +191585 PLAC4 placenta specific 4 21 protein-coding C21orf115|PRED78 placenta-specific protein 4 15 0.002053 2.379 1 1 +192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase 12 protein-coding BXLBV68 serine/threonine-protein phosphatase PGAM5, mitochondrial|Bcl-XL-binding protein v68|PGAM family member 5, serine/threonine protein phosphatase, mitochondrial|phosphoglycerate mutase family member 5 19 0.002601 8.933 1 1 +192134 B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 11 protein-coding B3Gn-T6|BGnT-6|beta-1,3-Gn-T6|beta3Gn-T6 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase|beta-1,3-N-acetylglucosaminyltransferase 6|beta-1,3-N-acetylglucosaminyltransferase protein|core 3 synthase 37 0.005064 1.646 1 1 +192286 HIGD2A HIG1 hypoxia inducible domain family member 2A 5 protein-coding RCF1b HIG1 domain family member 2A, mitochondrial|HIG1 domain family, member 2A|RCF1 homolog B 7 0.0009581 10.26 1 1 +192666 KRT24 keratin 24 17 protein-coding K24|KA24 keratin, type I cytoskeletal 24|CK-24|cytokeratin-24|keratin 24, type I|type I keratin-24 44 0.006022 0.9288 1 1 +192668 CYS1 cystin 1 2 protein-coding - cystin-1|cilia-associated protein 2 0.0002737 6.165 1 1 +192669 AGO3 argonaute 3, RISC catalytic component 1 protein-coding EIF2C3 protein argonaute-3|argonaute 3|argonaute RISC catalytic component 3|eukaryotic translation initiation factor 2C, 3|hAgo3 62 0.008486 6.902 1 1 +192670 AGO4 argonaute 4, RISC catalytic component 1 protein-coding EIF2C4 protein argonaute-4|argonaute 4|argonaute RISC catalytic component 4|argonaute4|eIF-2C 4|eIF2C 4|eukaryotic translation initiation factor 2C, 4|hAgo4 63 0.008623 7.954 1 1 +192683 SCAMP5 secretory carrier membrane protein 5 15 protein-coding - secretory carrier-associated membrane protein 5|hSCAMP5 18 0.002464 8.878 1 1 +193629 LINC00189 long intergenic non-protein coding RNA 189 21 ncRNA C21orf109|NCRNA00189 - 1 0.0001369 1.176 1 1 +195814 SDR16C5 short chain dehydrogenase/reductase family 16C, member 5 8 protein-coding EPHD-2|RDH#2|RDH-E2|RDHE2|retSDR2 epidermal retinol dehydrogenase 2|epidermal retinal dehydrogenase 2|retinal short chain dehydrogenase reductase|retinal short-chain dehydrogenase reductase 2 25 0.003422 4.776 1 1 +195827 AAED1 AhpC/TSA antioxidant enzyme domain containing 1 9 protein-coding C9orf21 thioredoxin-like protein AAED1|UPF0308 protein C9orf21|ahpC/TSA antioxidant enzyme domain-containing protein 1 8 0.001095 7.165 1 1 +195828 ZNF367 zinc finger protein 367 9 protein-coding AFF29|CDC14B|ZFF29 zinc finger protein 367|C2H2 zinc finger protein ZFF29|C2H2 zinc finger protein ZFF29a|CDC14 cell division cycle 14 homolog B 24 0.003285 7.421 1 1 +195977 ANTXRL anthrax toxin receptor-like 10 protein-coding - anthrax toxin receptor-like 3 0.0004106 0.3421 1 1 +196047 EMX2OS EMX2 opposite strand/antisense RNA 10 ncRNA EMX2-AS1|NCRNA00045 EMX2 opposite strand/antisense RNA (non-protein coding)|empty spiracles homeobox 2 opposite strand|empty spiracles homolog 2 opposite strand 1 0.0001369 4.248 1 1 +196051 PLPP4 phospholipid phosphatase 4 10 protein-coding DPPL2|PPAPDC1|PPAPDC1A phospholipid phosphatase 4|diacylglycerol pyrophosphate like 2|diacylglycerol pyrophosphate phosphatase-like 2|phosphatidate phosphatase PPAPDC1A|phosphatidic acid phosphatase type 2 domain containing 1A|phosphatidic acid phosphatase type 2 domain-containing protein 1A 30 0.004106 4.87 1 1 +196074 METTL15 methyltransferase like 15 11 protein-coding METT5D1 probable methyltransferase-like protein 15|methyltransferase 5 domain containing 1|methyltransferase 5 domain-containing protein 1|probable S-adenosyl-L-methionine-dependent methyltransferase METT5D1|putative S-adenosyl-L-methionine-dependent methyltransferase METT5D1 24 0.003285 8.197 1 1 +196264 MPZL3 myelin protein zero like 3 11 protein-coding - myelin protein zero-like protein 3 19 0.002601 4.529 1 1 +196294 IMMP1L inner mitochondrial membrane peptidase subunit 1 11 protein-coding IMMP1|IMP1|IMP1-LIKE mitochondrial inner membrane protease subunit 1|IMP1 inner mitochondrial membrane peptidase-like 12 0.001642 6.186 1 1 +196335 OR56B4 olfactory receptor family 56 subfamily B member 4 11 protein-coding OR11-67 olfactory receptor 56B4|olfactory receptor OR11-67 40 0.005475 0.5884 1 1 +196374 KRT78 keratin 78 12 protein-coding CK-78|K5B|K78|Kb40 keratin, type II cytoskeletal 78|cytokeratin-78|keratin 78, type II|keratin-5b|type-II keratin Kb40 43 0.005886 1.683 1 1 +196383 RILPL2 Rab interacting lysosomal protein like 2 12 protein-coding RLP2 RILP-like protein 2|p40phox-binding protein|rab-interacting lysosomal protein-like 2 9 0.001232 8.563 1 1 +196385 DNAH10 dynein axonemal heavy chain 10 12 protein-coding - dynein heavy chain 10, axonemal|axonemal beta dynein heavy chain 10|ciliary dynein heavy chain 10|dynein, axonemal, heavy polypeptide 10 315 0.04312 4.069 1 1 +196394 AMN1 antagonist of mitotic exit network 1 homolog 12 protein-coding - protein AMN1 homolog 13 0.001779 7.51 1 1 +196403 DTX3 deltex E3 ubiquitin ligase 3 12 protein-coding RNF154|deltex3 probable E3 ubiquitin-protein ligase DTX3|RING finger protein 154|deltex 3, E3 ubiquitin ligase|deltex homolog 3|protein deltex-3 33 0.004517 9.143 1 1 +196410 METTL7B methyltransferase like 7B 12 protein-coding ALDI methyltransferase-like protein 7B|associated with lipid droplets 1 19 0.002601 6.601 1 1 +196415 C12orf77 chromosome 12 open reading frame 77 12 protein-coding - putative uncharacterized protein C12orf77 15 0.002053 0.2867 1 1 +196441 ZFC3H1 zinc finger C3H1-type containing 12 protein-coding CCDC131|CSRC2|PSRC2 zinc finger C3H1 domain-containing protein|coiled-coil domain containing 131|coiled-coil domain-containing protein 131|proline/serine-rich coiled-coil 2|proline/serine-rich coiled-coil protein 2 121 0.01656 9.349 1 1 +196446 MYRFL myelin regulatory factor-like 12 protein-coding C12orf15|C12orf28|bcm1377 myelin regulatory factor-like protein 5 0.0006844 1 0 +196463 PLBD2 phospholipase B domain containing 2 12 protein-coding P76 putative phospholipase B-like 2|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 34 0.004654 9.627 1 1 +196472 FAM71C family with sequence similarity 71 member C 12 protein-coding - protein FAM71C 31 0.004243 0.1487 1 1 +196475 RMST rhabdomyosarcoma 2 associated transcript (non-protein coding) 12 ncRNA LINC00054|NCRMS|NCRNA00054 long intergenic non-protein coding RNA 54|non-coding RNA in rhabdomyosarcoma (RMS)|rhabdomyosarcoma 2 associated transcript (non-coding RNA) 8 0.001095 1.82 1 1 +196477 CCER1 coiled-coil glutamate rich protein 1 12 protein-coding C12orf12 coiled-coil domain-containing glutamate-rich protein 1 65 0.008897 0.06921 1 1 +196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase 16 protein-coding FAM86A|SB153|eEF2-KMT protein-lysine N-methyltransferase EEF2KMT|eEF2-lysine methyltransferase|family with sequence similarity 86, member A|protein FAM86A|putative protein N-methyltransferase FAM86A 23 0.003148 8.613 1 1 +196500 PIANP PILR alpha associated neural protein 12 protein-coding C12orf53|LEDA1|PANP|leda-1 PILR alpha-associated neural protein|PILR-associating neural protein|liver endothelial differentiation-associated protein-1|paired immunoglobin-like type 2 receptor-associating neural protein 17 0.002327 4.603 1 1 +196513 DCP1B decapping mRNA 1B 12 protein-coding DCP1 mRNA-decapping enzyme 1B|DCP1 decapping enzyme homolog B|decapping enzyme hDcp1b 65 0.008897 8.301 1 1 +196527 ANO6 anoctamin 6 12 protein-coding BDPLT7|SCTS|TMEM16F anoctamin-6|SCAN channel|small-conductance calcium-activated nonselective cation channel|transmembrane protein 16F 73 0.009992 10.79 1 1 +196528 ARID2 AT-rich interaction domain 2 12 protein-coding BAF200|p200 AT-rich interactive domain-containing protein 2|ARID domain-containing protein 2|AT rich interactive domain 2 (ARID, RFX-like)|BRG1-associated factor 200|zinc finger protein with activation potential|zipzap|zipzap/p200 204 0.02792 9.43 1 1 +196541 METTL21C methyltransferase like 21C 13 protein-coding C13orf39 protein-lysine methyltransferase METTL21C|methyltransferase-like protein 21C 29 0.003969 0.3201 1 1 +196549 EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 13 pseudo - eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) pseudogene 30 0.004106 1.519 1 1 +196740 VSTM4 V-set and transmembrane domain containing 4 10 protein-coding C10orf72 V-set and transmembrane domain-containing protein 4 40 0.005475 8.345 1 1 +196743 PAOX polyamine oxidase 10 protein-coding PAO peroxisomal N(1)-acetyl-spermine/spermidine oxidase|peroxisomal N1-acetyl-spermine/spermidine oxidase|polyamine oxidase (exo-N4-amino) 32 0.00438 7.062 1 1 +196792 FAM24B family with sequence similarity 24 member B 10 protein-coding - protein FAM24B 6 0.0008212 4.533 1 1 +196872 LINC00638 long intergenic non-protein coding RNA 638 14 ncRNA - - 4.788 0 1 +196883 ADCY4 adenylate cyclase 4 14 protein-coding AC4 adenylate cyclase type 4|ATP pyrophosphate-lyase 4|adenylate cyclase type IV|adenylyl cyclase 4 78 0.01068 6.681 1 1 +196913 LINC01599 long intergenic non-protein coding RNA 1599 14 ncRNA C14orf183 - 15 0.002053 0.1449 1 1 +196951 FAM227B family with sequence similarity 227 member B 15 protein-coding C15orf33 protein FAM227B 53 0.007254 4.245 1 1 +196968 DNM1P46 dynamin 1 pseudogene 46 15 pseudo C15orf51|DNM1DN14.2|DNM1DN14@ DNM1 pseudogene 46 107 0.01465 2.211 1 1 +196993 CT62 cancer/testis antigen 62 15 protein-coding - cancer/testis antigen 62 5 0.0006844 1.606 1 1 +196996 GRAMD2 GRAM domain containing 2 15 protein-coding - GRAM domain-containing protein 2 25 0.003422 5.38 1 1 +197003 MGC15885 uncharacterized protein MGC15885 15 ncRNA - - 0.2154 0 1 +197021 LCTL lactase like 15 protein-coding KLG|KLPH lactase-like protein|KL lactase phlorizin hydrolase|klotho gamma|klotho/lactase-phlorizin hydrolase-related protein 40 0.005475 1.684 1 1 +197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 15 protein-coding JBS 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 89 0.01218 9.309 1 1 +197135 PATL2 PAT1 homolog 2 15 protein-coding Pat1a|hPat1a protein PAT1 homolog 2|PAT1-like protein 2|protein PAT1 homolog a|protein associated with topoisomerase II homolog 2 12 0.001642 3.408 1 1 +197187 SNAI3-AS1 SNAI3 antisense RNA 1 16 ncRNA - - 2 0.0002737 5.229 1 1 +197257 LDHD lactate dehydrogenase D 16 protein-coding DLD probable D-lactate dehydrogenase, mitochondrial|D-lactate dehydrogenase 29 0.003969 7.059 1 1 +197258 FUK fucokinase 16 protein-coding 1110046B12Rik L-fucose kinase 49 0.006707 8.775 1 1 +197259 MLKL mixed lineage kinase domain like 16 protein-coding hMLKL mixed lineage kinase domain-like protein 34 0.004654 7.565 1 1 +197320 ZNF778 zinc finger protein 778 16 protein-coding - zinc finger protein 778 40 0.005475 6.14 1 1 +197322 ACSF3 acyl-CoA synthetase family member 3 16 protein-coding - acyl-CoA synthetase family member 3, mitochondrial|malonyl-CoA synthetase 49 0.006707 8.735 1 1 +197331 TUBB8P7 tubulin beta 8 class VIII pseudogene 7 16 pseudo - HSA16q24 beta-tubulin 4Q pseudogene 222 0.03039 1 0 +197335 WDR90 WD repeat domain 90 16 protein-coding C16orf15|C16orf16|C16orf17|C16orf18|C16orf19 WD repeat-containing protein 90 106 0.01451 8.948 1 1 +197342 EME2 essential meiotic structure-specific endonuclease subunit 2 16 protein-coding SLX2B|gs125 probable crossover junction endonuclease EME2|SLX2 structure-specific endonuclease subunit homolog B|essential meiotic endonuclease 1 homolog 2|homolog of yeast EME1 endonuclease 2 22 0.003011 4.057 1 1 +197350 CASP16P caspase 16, pseudogene 16 pseudo CASP16 caspase 16, apoptosis-related cysteine peptidase (putative)|caspase 16, apoptosis-related cysteine peptidase pseudogene|putative caspase-14-like pseudogene 4 0.0005475 1 0 +197358 NLRC3 NLR family CARD domain containing 3 16 protein-coding CLR16.2|NOD3 protein NLRC3|CARD15-like protein|NOD-like receptor C3|caterpiller protein 16.2|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 3 109 0.01492 6.576 1 1 +197370 NSMCE1 NSE1 homolog, SMC5-SMC6 complex component 16 protein-coding NSE1 non-structural maintenance of chromosomes element 1 homolog|non-SMC element 1 homolog 19 0.002601 10.14 1 1 +197407 ZNF48 zinc finger protein 48 16 protein-coding ZNF553 zinc finger protein 48|zinc finger protein 553 40 0.005475 7.877 1 1 +198437 LKAAEAR1 LKAAEAR motif containing 1 20 protein-coding C20orf201 protein LKAAEAR1|LKAAEAR motif-containing protein 1|bA299N6.3 3 0.0004106 1.294 1 1 +199221 DZIP1L DAZ interacting zinc finger protein 1 like 3 protein-coding DZIP2 zinc finger protein DZIP1L|DAZ interacting protein 1-like|DAZ-interacting protein 1-like protein 69 0.009444 5.79 1 1 +199223 TTC21A tetratricopeptide repeat domain 21A 3 protein-coding IFT139A|STI2 tetratricopeptide repeat protein 21A|TPR domain containing STI2|TPR repeat protein 21A|stress-inducible protein 2|testicular tissue protein Li 212 88 0.01204 5.965 1 1 +199675 MCEMP1 mast cell expressed membrane protein 1 19 protein-coding C19orf59 mast cell-expressed membrane protein 1 14 0.001916 2.583 1 1 +199692 ZNF627 zinc finger protein 627 19 protein-coding - zinc finger protein 627 24 0.003285 8.426 1 1 +199699 DAND5 DAN domain BMP antagonist family member 5 19 protein-coding CER2|CERL2|CKTSF1B3|COCO|CRL2|DANTE|GREM3|SP1 DAN domain family member 5|DAN domain family member 5, BMP antagonist|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 17 0.002327 1.998 1 1 +199704 ZNF585A zinc finger protein 585A 19 protein-coding - zinc finger protein 585A 62 0.008486 6.912 1 1 +199713 NLRP7 NLR family pyrin domain containing 7 19 protein-coding CLR19.4|HYDM|NALP7|NOD12|PAN7|PYPAF3 NACHT, LRR and PYD domains-containing protein 7|NACHT, LRR and PYD 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 135 0.01848 2.747 1 1 +199720 GGN gametogenetin 19 protein-coding - gametogenetin 51 0.006981 3.487 1 1 +199731 CADM4 cell adhesion molecule 4 19 protein-coding IGSF4C|NECL4|Necl-4|TSLL2|synCAM4 cell adhesion molecule 4|TSLC1-like 2|TSLC1-like protein 2|immunoglobulin superfamily member 4C|nectin-like 4|nectin-like protein 4 27 0.003696 9.011 1 1 +199745 THAP8 THAP domain containing 8 19 protein-coding - THAP domain-containing protein 8 16 0.00219 7.235 1 1 +199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 19 protein-coding U2AF1-RS3|U2AF1L3|U2AF1L3V1|U2AF1RS3|U2af26 splicing factor U2AF 26 kDa subunit|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 4|U2AF1-like protein 3 18 0.002464 7.207 1 1 +199777 ZNF626 zinc finger protein 626 19 protein-coding - zinc finger protein 626|CTC-513N18.7 86 0.01177 7.017 1 1 +199786 FAM129C family with sequence similarity 129 member C 19 protein-coding BCNP1 niban-like protein 2|B-cell novel protein 1 51 0.006981 2.325 1 1 +199800 ADM5 adrenomedullin 5 (putative) 19 protein-coding AM5|C19orf76 putative adrenomedullin-5-like protein|adrenomedullin 5 homolog (pig) 7 0.0009581 4.481 1 1 +199834 LCE4A late cornified envelope 4A 1 protein-coding LEP8|SPRL4A 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 12 0.001642 0.01808 1 1 +199857 ALG14 ALG14, UDP-N-acetylglucosaminyltransferase subunit 1 protein-coding CMS15 UDP-N-acetylglucosamine transferase subunit ALG14 homolog 12 0.001642 7.642 1 1 +199870 FAM76A family with sequence similarity 76 member A 1 protein-coding - protein FAM76A 16 0.00219 7.768 1 1 +199899 LINC00466 long intergenic non-protein coding RNA 466 1 ncRNA - - 2 0.0002737 1 0 +199920 C1orf168 chromosome 1 open reading frame 168 1 protein-coding - uncharacterized protein C1orf168|RP4-758N20.2 71 0.009718 2.903 1 1 +199953 TMEM201 transmembrane protein 201 1 protein-coding Ima1|NET5|SAMP1 transmembrane protein 201|RP13-15M17.2|spindle-associated membrane protein 1 28 0.003832 8.877 1 1 +199964 TMEM61 transmembrane protein 61 1 protein-coding - transmembrane protein 61 18 0.002464 3.659 1 1 +199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 1 protein-coding CYP4A20 cytochrome P450 4Z1|CYPIVZ1|cytochrome P450, family 4, subfamily Z, polypeptide 1 45 0.006159 1.904 1 1 +199990 FAAP20 Fanconi anemia core complex associated protein 20 1 protein-coding C1orf86|FP7162 Fanconi anemia core complex-associated protein 20|FANCA-associated protein of 20 kDa|Fanconi anemia-associated protein of 20 kDa 17 0.002327 9.108 1 1 +200008 CDCP2 CUB domain containing protein 2 1 protein-coding - CUB domain-containing protein 2 29 0.003969 0.6004 1 1 +200010 SLC5A9 solute carrier family 5 member 9 1 protein-coding SGLT4 sodium/glucose cotransporter 4|Na(+)/glucose cotransporter 4|hSGLT4|solute carrier family 5 (sodium/glucose cotransporter), member 9|solute carrier family 5 (sodium/sugar cotransporter), member 9 68 0.009307 3.466 1 1 +200014 CC2D1B coiled-coil and C2 domain containing 1B 1 protein-coding - coiled-coil and C2 domain-containing protein 1B|FRE under dual repression-binding protein 2|five prime repressor element under dual repression-binding protein 2|freud-2 55 0.007528 9.734 1 1 +200030 NBPF11 neuroblastoma breakpoint family member 11 1 protein-coding NBPF24 neuroblastoma breakpoint family member 11|neuroblastoma breakpoint family, member 24 3 0.0004106 8.668 1 1 +200035 NUDT17 nudix hydrolase 17 1 protein-coding - nucleoside diphosphate-linked moiety X motif 17|nudix (nucleoside diphosphate linked moiety X)-type motif 17|nudix motif 17 21 0.002874 5.286 1 1 +200058 FLJ23867 uncharacterized protein FLJ23867 1 ncRNA - - 8.916 0 1 +200081 TXLNA taxilin alpha 1 protein-coding IL14|TXLN alpha-taxilin|interleukin 14 31 0.004243 10.96 1 1 +200132 TCTEX1D1 Tctex1 domain containing 1 1 protein-coding - tctex1 domain-containing protein 1 30 0.004106 3.052 1 1 +200150 PLD5 phospholipase D family member 5 1 protein-coding PLDC inactive phospholipase D5|inactive PLD 5|inactive choline phosphatase 5|inactive phosphatidylcholine-hydrolyzing phospholipase D5 76 0.0104 1.989 1 1 +200159 C1orf100 chromosome 1 open reading frame 100 1 protein-coding - uncharacterized protein C1orf100 9 0.001232 0.04298 1 1 +200162 SPAG17 sperm associated antigen 17 1 protein-coding CT143|PF6 sperm-associated antigen 17|projection protein PF6 homolog 199 0.02724 3.699 1 1 +200172 SLFNL1 schlafen like 1 1 protein-coding - schlafen-like protein 1|testicular tissue protein Li 173 27 0.003696 2.971 1 1 +200185 KRTCAP2 keratinocyte associated protein 2 1 protein-coding KCP2 keratinocyte-associated protein 2|KCP-2|keratinocytes associated protein 2 11 0.001506 10.87 1 1 +200186 CRTC2 CREB regulated transcription coactivator 2 1 protein-coding TORC-2|TORC2 CREB-regulated transcription coactivator 2|transducer of regulated cAMP response element-binding protein (CREB) 2 46 0.006296 10.08 1 1 +200197 TMEM51-AS1 TMEM51 antisense RNA 1 1 ncRNA C1orf126 - 3 0.0004106 5.619 1 1 +200205 IBA57 IBA57 homolog, iron-sulfur cluster assembly 1 protein-coding C1orf69|MMDS3|SPG74 putative transferase CAF17, mitochondrial|IBA57, iron-sulfur cluster assembly homolog|iron-sulfur cluster assembly factor for biotin synthase- and aconitase-like mitochondrial proteins, with a mass of 57kDa|putative transferase C1orf69, mitochondrial 28 0.003832 7.849 1 1 +200232 FAM209A family with sequence similarity 209 member A 20 protein-coding C20orf106|dJ1153D9.3 protein FAM209A|uncharacterized protein C20orf106 15 0.002053 0.8129 1 1 +200312 RNF215 ring finger protein 215 22 protein-coding - RING finger protein 215 18 0.002464 7.985 1 1 +200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A 22 protein-coding A3A|ARP3|PHRBN|bK150C2.1 DNA dC->dU-editing enzyme APOBEC-3A|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3A|phorbolin-1|probable DNA dC->dU-editing enzyme APOBEC-3A 10 0.001369 4.309 1 1 +200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F 22 protein-coding A3F|ARP8|BK150C2.4.MRNA|KA6 DNA dC->dU-editing enzyme APOBEC-3F|apolipoprotein B editing enzyme catalytic polypeptide-like 3F|apolipoprotein B mRNA editing enzyme cytidine deaminase|apolipoprotein B mRNA-editing enzyme catalytic polypeptide-like 3F|induced upon T-cell activation 15 0.002053 7.285 1 1 +200350 FOXD4L1 forkhead box D4-like 1 2 protein-coding FOXD5|bA395L14.1 forkhead box protein D4-like 1|FOXD4-like 1 28 0.003832 2.669 1 1 +200373 CFAP221 cilia and flagella associated protein 221 2 protein-coding FAP221|PCDP1 cilia- and flagella-associated protein 221|flagellar associated protein 221 homolog|primary ciliary dyskinesia 1 homolog|primary ciliary dyskinesia protein 1 49 0.006707 3.43 1 1 +200403 VWA3B von Willebrand factor A domain containing 3B 2 protein-coding SCAR22 von Willebrand factor A domain-containing protein 3B 135 0.01848 2.371 1 1 +200407 CREG2 cellular repressor of E1A stimulated genes 2 2 protein-coding - protein CREG2 14 0.001916 2.389 1 1 +200420 ALMS1P1 ALMS1, centrosome and basal body associated protein pseudogene 1 2 pseudo ALMS1L|ALMS1P Alstrom syndrome 1 pseudogene 34 0.004654 1.668 1 1 +200424 TET3 tet methylcytosine dioxygenase 3 2 protein-coding hCG_40738 methylcytosine dioxygenase TET3|probable methylcytosine dioxygenase TET3|putative methylcytosine dioxygenase|tet oncogene family member 3 104 0.01423 9.372 1 1 +200504 GKN2 gastrokine 2 2 protein-coding BRICD1B|GDDR|PRO813|TFIZ1|VLTI465 gastrokine-2|BRICHOS domain containing 1B|blottin|down-regulated in gastric cancer GDDR|trefoil factor interactions(z) 1 15 0.002053 0.7014 1 1 +200523 TEX37 testis expressed 37 2 protein-coding C2orf51|TSC21 testis-expressed sequence 37 protein|Testis-Specific Conserved gene 21kDa|protein TSC21|testis tissue sperm-binding protein Li 93mP|testis-specific conserved protein of 21 kDa 26 0.003559 0.1968 1 1 +200539 ANKRD23 ankyrin repeat domain 23 2 protein-coding DARP|MARP3 ankyrin repeat domain-containing protein 23|diabetes related ankyrin repeat protein|muscle ankyrin repeat protein 3 23 0.003148 5.41 1 1 +200558 APLF aprataxin and PNKP like factor 2 protein-coding APFL|C2orf13|PALF|Xip1|ZCCHH1 aprataxin and PNK-like factor|PNK and APTX-like FHA domain-containing protein|PNK and APTX-like FHA protein|XRCC1-interacting protein 1|aprataxin- and PNK-like factor|apurinic-apyrimidinic endonuclease APLF|zinc finger, CX5CX6HX5H motif containing 1 42 0.005749 5.7 1 1 +200575 CRYGEP crystallin gamma E, pseudogene 2 pseudo CCL|CRYG5|CRYGEP1|D2S1472|G2 crystallin, gamma D pseudogene|crystallin, gamma E pseudogene 1 1 0.0001369 1 0 +200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing 2 protein-coding CFD|FAB1|HEL37|PIP5K|PIP5K3|ZFYVE29 1-phosphatidylinositol 3-phosphate 5-kinase|PIPkin-III|epididymis luminal protein 37|phosphatidylinositol 3-phosphate 5-kinase type III|phosphatidylinositol-3-phosphate/phosphatidylinositol 5-kinase, type III|phosphoinositide kinase, FYVE finger containing|type III PIP kinase|zinc finger, FYVE domain containing 29 119 0.01629 9.42 1 1 +200634 KRTCAP3 keratinocyte associated protein 3 2 protein-coding KCP3 keratinocyte-associated protein 3|keratinocytes associated protein 3 13 0.001779 7.15 1 1 +200726 LOC200726 hCG1657980 2 protein-coding - uncharacterized protein LOC200726 5 0.0006844 0.2248 1 1 +200728 TMEM17 transmembrane protein 17 2 protein-coding - transmembrane protein 17 12 0.001642 6.183 1 1 +200734 SPRED2 sprouty related EVH1 domain containing 2 2 protein-coding Spred-2 sprouty-related, EVH1 domain-containing protein 2|sprouty protein with EVH-1 domain 2, related sequence 36 0.004927 9.926 1 1 +200765 TIGD1 tigger transposable element derived 1 2 protein-coding EEYORE tigger transposable element-derived protein 1 8 0.001095 7.027 1 1 +200810 ALG1L ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like 3 protein-coding ALG1L1 putative glycosyltransferase ALG1-like|asparagine-linked glycosylation 1-like 1|beta-1,4-mannosyltransferase-like 12 0.001642 5.028 1 1 +200844 C3orf67 chromosome 3 open reading frame 67 3 protein-coding - uncharacterized protein C3orf67 42 0.005749 5.066 1 1 +200845 KCTD6 potassium channel tetramerization domain containing 6 3 protein-coding KCASH3 BTB/POZ domain-containing protein KCTD6|potassium channel tetramerisation domain containing 6 19 0.002601 7.484 1 1 +200879 LIPH lipase H 3 protein-coding AH|ARWH2|HYPT7|LAH2|LPDLR|PLA1B|mPA-PLA1 lipase member H|LPD lipase-related protein|lipase, member H|mPA-PLA1 alpha|membrane-associated phosphatidic acid-selective phospholipase A1-alpha|membrane-bound phosphatidic acid-selective phospholipase A1|phospholipase A(1)|phospholipase A1 member B 37 0.005064 6.048 1 1 +200894 ARL13B ADP ribosylation factor like GTPase 13B 3 protein-coding ARL2L1|JBTS8 ADP-ribosylation factor-like protein 13B|ADP-ribosylation factor-like 13B|ADP-ribosylation factor-like 2-like 1|ARL2-like protein 1 41 0.005612 7.826 1 1 +200895 DHFR2 dihydrofolate reductase 2 3 protein-coding DHFRL1|DHFRP4 dihydrofolate reductase, mitochondrial|dihydrofolate reductase like 1|dihydrofolate reductase pseudogene 4|dihydrofolate reductase-like protein 1 20 0.002737 7.677 1 1 +200909 HTR3D 5-hydroxytryptamine receptor 3D 3 protein-coding 5HT3D 5-hydroxytryptamine receptor 3D|5-hydroxytryptamine (serotonin) receptor 3 family member D|5-hydroxytryptamine (serotonin) receptor 3D, ionotropic|5-hydroxytryptamine receptor 3 subunit D|serotonin 5-HT-3D receptor|serotonin receptor 3D 34 0.004654 0.07821 1 1 +200916 RPL22L1 ribosomal protein L22 like 1 3 protein-coding - 60S ribosomal protein L22-like 1 11 0.001506 9.14 1 1 +200931 SLC51A solute carrier family 51 alpha subunit 3 protein-coding OSTA|OSTalpha organic solute transporter subunit alpha|OST-alpha|organic solute transporter alpha|organic solute transporter, alpha subunit|solute carrier family 51 subunit alpha 21 0.002874 4.666 1 1 +200933 FBXO45 F-box protein 45 3 protein-coding Fbx45 F-box/SPRY domain-containing protein 1|F-box only protein 45|hFbxo45 15 0.002053 9.118 1 1 +200942 KLHDC8B kelch domain containing 8B 3 protein-coding CHL kelch domain-containing protein 8B 28 0.003832 9.009 1 1 +200958 MUC20 mucin 20, cell surface associated 3 protein-coding MUC-20 mucin-20|transmembrane mucin MUC20S 67 0.009171 8.178 1 1 +200959 GABRR3 gamma-aminobutyric acid type A receptor rho3 subunit (gene/pseudogene) 3 protein-coding - gamma-aminobutyric acid receptor subunit rho-3|GABA(A) receptor subunit rho-3|GABA(C) receptor|gamma-aminobutyric acid (GABA) A receptor, rho 3 33 0.004517 0.1006 1 1 +201134 CEP112 centrosomal protein 112 17 protein-coding CCDC46|MACOCO centrosomal protein of 112 kDa|centrosomal protein 112kDa|coiled-coil domain-containing protein 46 59 0.008076 6.698 1 1 +201140 DHRS7C dehydrogenase/reductase 7C 17 protein-coding SDR32C2 dehydrogenase/reductase SDR family member 7C|dehydrogenase/reductase (SDR family) member 7C|short-chain dehydrogenase/reductase family 32C member 2 38 0.005201 0.2056 1 1 +201158 TVP23C trans-golgi network vesicle protein 23 homolog C 17 protein-coding FAM18B2 Golgi apparatus membrane protein TVP23 homolog C|family with sequence similarity 18, member B2|protein FAM18B2 53 0.007254 7.875 1 1 +201161 CENPV centromere protein V 17 protein-coding 3110013H01Rik|CENP-V|PRR6|p30 centromere protein V|nuclear protein p30|proline rich 6|proline-rich protein 6 6 0.0008212 6.962 1 1 +201163 FLCN folliculin 17 protein-coding BHD|FLCL folliculin|BHD skin lesion fibrofolliculoma protein|birt-Hogg-Dube syndrome protein 49 0.006707 9.419 1 1 +201164 PLD6 phospholipase D family member 6 17 protein-coding ZUC mitochondrial cardiolipin hydrolase|PLD 6|choline phosphatase 6|mitoPLD|mitochondrial phospholipase|phosphatidylcholine-hydrolyzing phospholipase D6|phospholipase D6|protein zucchini homolog 14 0.001916 6.981 1 1 +201175 3.428 0 1 +201176 ARHGAP27 Rho GTPase activating protein 27 17 protein-coding CAMGAP1|PP905|SH3D20|SH3P20 rho GTPase-activating protein 27|CIN85-associated multi-domain-containing Rho GTPase-activating protein 1|SH3 domain containing 20|SH3 domain-containing protein 20|rho-type GTPase-activating protein 27 48 0.00657 9.323 1 1 +201181 ZNF385C zinc finger protein 385C 17 protein-coding - zinc finger protein 385C|CTD-2132N18.2|CTD-2132N18.4 11 0.001506 1 0 +201191 SAMD14 sterile alpha motif domain containing 14 17 protein-coding - sterile alpha motif domain-containing protein 14|SAM domain-containing protein 14 34 0.004654 5.006 1 1 +201229 LYRM9 LYR motif containing 9 17 protein-coding C17orf108|HSD24 LYR motif-containing protein 9|UPF0631 protein C17orf108 2 0.0002737 7.509 1 1 +201232 SLC16A13 solute carrier family 16 member 13 17 protein-coding MCT13 monocarboxylate transporter 13|MCT 13|monocarboxylic acid transporter 13|solute carrier family 16 (monocarboxylic acid transporters), member 13|solute carrier family 16, member 13 (monocarboxylic acid transporter 13) 20 0.002737 6.358 1 1 +201243 C17orf74 chromosome 17 open reading frame 74 17 protein-coding - uncharacterized protein C17orf74 50 0.006844 0.4121 1 1 +201254 CENPX centromere protein X 17 protein-coding CENP-X|D9|FAAP10|MHF2|STRA13 centromere protein X|FANCM associated histone fold protein 2|FANCM-interacting histone fold protein 2|Fanconi anemia-associated polypeptide of 10 kDa|retinoic acid-inducible gene D9 protein homolog|stimulated by retinoic acid 13 homolog|stimulated by retinoic acid gene 13 protein homolog 4 0.0005475 9.25 1 1 +201255 LRRC45 leucine rich repeat containing 45 17 protein-coding - leucine-rich repeat-containing protein 45 30 0.004106 8.712 1 1 +201266 SLC39A11 solute carrier family 39 member 11 17 protein-coding C17orf26|ZIP11 zinc transporter ZIP11|ZIP-11|Zrt- and Irt-like protein 11|solute carrier family 39 (metal ion transporter), member 11 24 0.003285 9.469 1 1 +201283 AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 17 pseudo - putative archaemetzincin-2-like protein 76 0.0104 7.341 1 1 +201292 TRIM65 tripartite motif containing 65 17 protein-coding 4732463G12Rik tripartite motif-containing protein 65 27 0.003696 9.142 1 1 +201294 UNC13D unc-13 homolog D 17 protein-coding FHL3|HLH3|HPLH3|Munc13-4 protein unc-13 homolog D 68 0.009307 8.55 1 1 +201299 RDM1 RAD52 motif containing 1 17 protein-coding RAD52B RAD52 motif-containing protein 1|RAD52 homolog B|RAD52 motif 1 12 0.001642 3.22 1 1 +201305 SPNS3 sphingolipid transporter 3 (putative) 17 protein-coding - protein spinster homolog 3|SPNS sphingolipid transporter 3 (putative)|spinster homolog 3 38 0.005201 3.616 1 1 +201456 FBXO15 F-box protein 15 18 protein-coding FBX15 F-box only protein 15 47 0.006433 3.664 1 1 +201475 RAB12 RAB12, member RAS oncogene family 18 protein-coding - ras-related protein Rab-12|putative Ras-related protein Rab-12 21 0.002874 9.606 1 1 +201501 ZBTB7C zinc finger and BTB domain containing 7C 18 protein-coding APM-1|APM1|ZBTB36|ZNF857C zinc finger and BTB domain-containing protein 7C|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 protein 857C 59 0.008076 7.654 1 1 +201514 ZNF584 zinc finger protein 584 19 protein-coding - zinc finger protein 584 25 0.003422 7.57 1 1 +201516 ZSCAN4 zinc finger and SCAN domain containing 4 19 protein-coding ZNF494 zinc finger and SCAN domain-containing protein 4|zinc finger protein 494 57 0.007802 1.317 1 1 +201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 3 protein-coding PTPLB very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 2|protein tyrosine phosphatase-like (proline instead of catalytic arginine), member b|protein-tyrosine phosphatase-like member B|very-long-chain (3R)-3-hydroxyacyl-[acyl-carrier protein] dehydratase 2 8 0.001095 7.141 1 1 +201595 STT3B STT3B, catalytic subunit of the oligosaccharyltransferase complex 3 protein-coding CDG1X|SIMP|STT3-B dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3B|STT3, subunit of the oligosaccharyltransferase complex, homolog B|STT3B, subunit of the oligosaccharyltransferase complex (catalytic)|dolichyl-diphosphooligosaccharide protein glycotransferase|homolog of yeast STT3|oligosaccharyl transferase subunit STT3B|source of immunodominant MHC-associated peptides homolog 36 0.004927 10.33 1 1 +201625 DNAH12 dynein axonemal heavy chain 12 3 protein-coding DHC3|DLP12|DNAH12L|DNAH7L|DNAHC12|DNAHC3|DNHD2|HDHC3|HL-19|HL19 dynein heavy chain 12, axonemal|axonemal beta dynein heavy chain 12|axonemal dynein heavy chain isotype3|ciliary dynein heavy chain 12|dynein heavy chain domain-containing protein 2|dynein, axonemal, heavy polypeptide 12|dynein, heavy chain-5 81 0.01109 1.895 1 1 +201626 PDE12 phosphodiesterase 12 3 protein-coding 2'-PDE|2-PDE 2',5'-phosphodiesterase 12|2'-phosphodiesterase|mitochondrial deadenylase 30 0.004106 9.076 1 1 +201627 DENND6A DENN domain containing 6A 3 protein-coding AFI1A|FAM116A protein DENND6A|DENN domain-containing protein 6A|DENN/MADD domain containing 6A|family with sequence similarity 116, member A|protein FAM116A 40 0.005475 9.079 1 1 +201633 TIGIT T-cell immunoreceptor with Ig and ITIM domains 3 protein-coding VSIG9|VSTM3|WUCAM 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 28 0.003832 5.034 1 1 +201651 AADACP1 arylacetamide deacetylase pseudogene 1 3 pseudo - arylacetamide deacetylase (esterase) pseudogene 2.113 0 1 +201725 C4orf46 chromosome 4 open reading frame 46 4 protein-coding RCDG1 renal cancer differentiation gene 1 protein 11 0.001506 7.739 1 1 +201780 SLC10A4 solute carrier family 10 member 4 4 protein-coding P4 sodium/bile acid cotransporter 4|Na(+)/bile acid cotransporter 4|bile acid transporter SLC10A4|solute carrier family 10 (sodium/bile acid cotransporter family), member 4 29 0.003969 2.914 1 1 +201798 TIGD4 tigger transposable element derived 4 4 protein-coding - tigger transposable element-derived protein 4 34 0.004654 3.359 1 1 +201799 TMEM154 transmembrane protein 154 4 protein-coding - transmembrane protein 154 11 0.001506 6.56 1 1 +201853 LINC00504 long intergenic non-protein coding RNA 504 4 ncRNA - - 3 0.0004106 1 0 +201895 SMIM14 small integral membrane protein 14 4 protein-coding C4orf34 small integral membrane protein 14 8 0.001095 9.203 1 1 +201931 TMEM192 transmembrane protein 192 4 protein-coding - transmembrane protein 192 15 0.002053 8.91 1 1 +201965 RWDD4 RWD domain containing 4 4 protein-coding FAM28A|RWDD4A RWD domain-containing protein 4|RWD domain containing 4A|RWD domain-containing protein 4A|family with sequence similarity 28, member A 11 0.001506 8.79 1 1 +201973 PRIMPOL primase and DNA directed polymerase 4 protein-coding CCDC111|MYP22|Primpol1 DNA-directed primase/polymerase protein|coiled-coil domain-containing protein 111|hPrimpol1 26 0.003559 7.312 1 1 +202018 TAPT1 transmembrane anterior posterior transformation 1 4 protein-coding CMVFR|OCLSBG transmembrane anterior posterior transformation protein 1 homolog|cytomegalovirus partial fusion receptor 25 0.003422 9.145 1 1 +202020 TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) 4 ncRNA - - 15 0.002053 6.117 1 1 +202051 SPATA24 spermatogenesis associated 24 5 protein-coding CCDC161|T6441 spermatogenesis-associated protein 24|coiled-coil domain containing 161|testis protein T6441 homolog 5 0.0006844 5.402 1 1 +202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 5 protein-coding - dnaJ homolog subfamily C member 18|DnaJ (Hsp40) homolog, subfamily C, member 18 30 0.004106 7.157 1 1 +202134 FAM153B family with sequence similarity 153 member B 5 protein-coding - protein FAM153B 32 0.00438 1.436 1 1 +202151 RANBP3L RAN binding protein 3 like 5 protein-coding - ran-binding protein 3-like 51 0.006981 3.34 1 1 +202181 LOC202181 SUMO interacting motifs containing 1 pseudogene 5 pseudo - - 0 0 4.898 1 1 +202227 LOC202227 peptidylprolyl isomerase A (cyclophilin A) pseudogene 5 pseudo - - 0 0 1 0 +202243 CCDC125 coiled-coil domain containing 125 5 protein-coding KENAE coiled-coil domain-containing protein 125|Kenae 39 0.005338 7.976 1 1 +202299 LINC01554 long intergenic non-protein coding RNA 1554 5 ncRNA C5orf27|FIS - 1 0.0001369 2.361 1 1 +202309 GAPT GRB2 binding adaptor protein, transmembrane 5 protein-coding C5orf29 protein GAPT|GRB2-binding transmembrane adaptor|growth factor receptor-bound protein 2-binding adapter protein, transmembrane 18 0.002464 4.564 1 1 +202333 CMYA5 cardiomyopathy associated 5 5 protein-coding C5orf10|SPRYD2|TRIM76 cardiomyopathy-associated protein 5|2310076E16Rik|SPRY domain-containing protein 2|dystrobrevin-binding protein 2|genethonin-3|myospryn|tripartite motif-containing 76|tripartite motif-containing protein 76 241 0.03299 6.789 1 1 +202374 STK32A serine/threonine kinase 32A 5 protein-coding YANK1 serine/threonine-protein kinase 32A|A930015B13Rik|CTB-108O6.2|yet another novel kinase 1 26 0.003559 3.146 1 1 +202459 OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 6 pseudo DC2L|OSTCL - 13 0.001779 2.525 1 1 +202500 TCTE1 t-complex-associated-testis-expressed 1 6 protein-coding D6S46|DRC5|FAP155 T-complex-associated testis-expressed protein 1|tcte-1 41 0.005612 1.352 1 1 +202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 6 protein-coding SLM-1|SLM1 KH domain-containing, RNA-binding, signal transduction-associated protein 2|KH domain containing, RNA binding, signal transduction associated 2|Sam68-like mammalian protein 1 86 0.01177 1.5 1 1 +202658 TRIM39-RPP21 TRIM39-RPP21 readthrough 6 protein-coding TRIM39R TRIM39-RPP21 protein|Rpp21 domain-containing TRIM protein|TRIM39-RPP21 read-through transcript 11 0.001506 1 0 +202781 PAXIP1-AS1 PAXIP1 antisense RNA 1 (head to head) 7 ncRNA - - 7.681 0 1 +202865 C7orf33 chromosome 7 open reading frame 33 7 protein-coding - uncharacterized protein C7orf33 22 0.003011 0.1932 1 1 +202915 TMEM184A transmembrane protein 184A 7 protein-coding SDMG1 transmembrane protein 184A|sexually dimorphic, expressed in male gonads 1 65 0.008897 7.622 1 1 +203054 ADCK5 aarF domain containing kinase 5 8 protein-coding - uncharacterized aarF domain-containing protein kinase 5 54 0.007391 7.667 1 1 +203062 TSNARE1 t-SNARE domain containing 1 8 protein-coding - t-SNARE domain-containing protein 1 53 0.007254 7.997 1 1 +203068 TUBB tubulin beta class I 6 protein-coding CDCBM6|CSCSC1|M40|OK/SW-cl.56|TUBB1|TUBB5 tubulin beta chain|beta Ib tubulin|tubulin beta-1 chain|tubulin beta-5 chain|tubulin, beta polypeptide 23 0.003148 14.11 1 1 +203069 R3HCC1 R3H domain and coiled-coil containing 1 8 protein-coding - R3H and coiled-coil domain-containing protein 1 9 0.001232 9.33 1 1 +203074 PRSS55 protease, serine 55 8 protein-coding CT153|T-SP1|TSP1|UNQ9391 serine protease 55|probable serine protease UNQ9391/PRO34284|testis serine protease 1|tryptophan/serine protease 41 0.005612 0.3955 1 1 +203076 C8orf74 chromosome 8 open reading frame 74 8 protein-coding - uncharacterized protein C8orf74 29 0.003969 0.06766 1 1 +203100 HTRA4 HtrA serine peptidase 4 8 protein-coding - serine protease HTRA4|high-temperature requirement factor A4|probable serine protease HTRA4 27 0.003696 2.605 1 1 +203102 ADAM32 ADAM metallopeptidase domain 32 8 protein-coding - disintegrin and metalloproteinase domain-containing protein 32|a disintegrin and metalloprotease domain 32|a disintegrin and metalloproteinase domain 32|metalloproteinase 12-like protein|testicular tissue protein Li 13 53 0.007254 2.737 1 1 +203111 ERICH5 glutamate rich 5 8 protein-coding C8orf47 glutamate-rich protein 5 24 0.003285 4.237 1 1 +203190 LGI3 leucine rich repeat LGI family member 3 8 protein-coding LGIL4 leucine-rich repeat LGI family member 3|LGI1-like protein 4|leucine-rich glioma-inactivated protein 3 42 0.005749 4.072 1 1 +203197 TMEM268 transmembrane protein 268 9 protein-coding C9orf91 transmembrane protein C9orf91 17 0.002327 8.998 1 1 +203228 C9orf72 chromosome 9 open reading frame 72 9 protein-coding ALSFTD|DENNL72|FTDALS|FTDALS1 protein C9orf72 28 0.003832 8.029 1 1 +203238 CCDC171 coiled-coil domain containing 171 9 protein-coding C9orf93|bA536D16.1|bA778P13.1 coiled-coil domain-containing protein 171|myosin tail domain containing protein 77 0.01054 5.231 1 1 +203245 NAIF1 nuclear apoptosis inducing factor 1 9 protein-coding C9orf90|bA379C10.2 nuclear apoptosis-inducing factor 1 25 0.003422 7.789 1 1 +203259 FAM219A family with sequence similarity 219 member A 9 protein-coding C9orf25 protein FAM219A|uncharacterized protein C9orf25 19 0.002601 9.074 1 1 +203260 CCDC107 coiled-coil domain containing 107 9 protein-coding PSEC0222 coiled-coil domain-containing protein 107 11 0.001506 8.745 1 1 +203286 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 9 protein-coding ANKRD14|NPHP16|PKDR1|SAMD6 ankyrin repeat and SAM domain-containing protein 6|SAM domain-containing protein 6|ankyrin repeat domain 14|samCystin 52 0.007117 8.83 1 1 +203328 SUSD3 sushi domain containing 3 9 protein-coding - sushi domain-containing protein 3 23 0.003148 6.613 1 1 +203413 CT83 cancer/testis antigen 83 X protein-coding CXorf61|KK-LC-1|KKLC1 kita-kyushu lung cancer antigen 1 12 0.001642 0.9209 1 1 +203414 LINC01560 long intergenic non-protein coding RNA 1560 X ncRNA CXorf24 - 2 0.0002737 1 0 +203427 SLC25A43 solute carrier family 25 member 43 X protein-coding - solute carrier family 25 member 43 20 0.002737 8.556 1 1 +203430 ZCCHC5 zinc finger CCHC-type containing 5 X protein-coding Mar3|Mart3|ZHC5 zinc finger CCHC domain-containing protein 5|mammalian retrotransposon-derived 3|zinc finger, CCHC domain containing 5 76 0.0104 1.081 1 1 +203447 NRK Nik related kinase X protein-coding NESK nik-related protein kinase 143 0.01957 4.201 1 1 +203522 INTS6L integrator complex subunit 6 like X protein-coding DDX26B integrator complex subunit 6-like|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26B|protein DDX26B 71 0.009718 7.078 1 1 +203523 ZNF449 zinc finger protein 449 X protein-coding ZSCAN19 zinc finger protein 449|zinc finger and SCAN domain-containing protein 19 38 0.005201 7.094 1 1 +203547 VMA21 VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) X protein-coding MEAX|XMEA vacuolar ATPase assembly integral membrane protein VMA21|myopathy with excessive autophagy protein 10 0.001369 10.21 1 1 +203562 TMEM31 transmembrane protein 31 X protein-coding - transmembrane protein 31|testicular secretory protein Li 58 13 0.001779 1.356 1 1 +203569 PAGE2 PAGE family member 2 X protein-coding CT16.4|GAGEC2|GAGEE2|PAGE-2 P antigen family member 2|G antigen family C 2|G antigen, family E, 2|P antigen family, member 2 (prostate associated)|g antigen family E member 2|prostate-associated gene 2 protein 14 0.001916 0.542 1 1 +203611 CDY2B chromodomain Y-linked 2B Y protein-coding CDY testis-specific chromodomain protein Y 2|Y chromosome chromodomain protein 2B|chromodomain protein, Y chromosome, 2 related|chromodomain protein, Y-linked, 2B|testis-specific chromodomain protein Y protein 2 related 2 0.0002737 0.04555 1 1 +203859 ANO5 anoctamin 5 11 protein-coding GDD1|LGMD2L|TMEM16E anoctamin-5|gnathodiaphyseal dysplasia 1 protein|integral membrane protein GDD1|transmembrane protein 16E 114 0.0156 5.337 1 1 +204010 RPSAP52 ribosomal protein SA pseudogene 52 12 pseudo RPSA_17_1251 - 6 0.0008212 1.814 1 1 +204219 CERS3 ceramide synthase 3 15 protein-coding ARCI9|LASS3 ceramide synthase 3|LAG1 homolog, ceramide synthase 3|LAG1 longevity assurance homolog 3|dihydroceramide synthase 3 40 0.005475 2.615 1 1 +204474 PDILT protein disulfide isomerase like, testis expressed 16 protein-coding PDIA7 protein disulfide-isomerase-like protein of the testis|protein disulfide isomerase family A, member 7 77 0.01054 0.1516 1 1 +204801 NLRP11 NLR family pyrin domain containing 11 19 protein-coding CLR19.6|NALP11|NOD17|PAN10|PYPAF6|PYPAF7 NACHT, LRR and PYD domains-containing protein 11|NACHT, leucine rich repeat and PYD containing 11|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 106 0.01451 1.518 1 1 +204851 HIPK1 homeodomain interacting protein kinase 1 1 protein-coding Myak|Nbak2 homeodomain-interacting protein kinase 1|homeodomain interacting protein kinase 1-like protein|nuclear body associated kinase 2b|nuclear body-associated kinase 2 75 0.01027 10.57 1 1 +204962 SLC44A5 solute carrier family 44 member 5 1 protein-coding CTL5 choline transporter-like protein 5 84 0.0115 5.416 1 1 +205147 AMER3 APC membrane recruitment protein 3 2 protein-coding FAM123C APC membrane recruitment protein 3|family with sequence similarity 123C|protein FAM123C 119 0.01629 1.558 1 1 +205251 LINC00116 long intergenic non-protein coding RNA 116 2 ncRNA NCRNA00116 - 1 0.0001369 7.956 1 1 +205327 C2orf69 chromosome 2 open reading frame 69 2 protein-coding - UPF0565 protein C2orf69 17 0.002327 8.598 1 1 +205428 C3orf58 chromosome 3 open reading frame 58 3 protein-coding DIA1|GoPro49|HASF deleted in autism protein 1|Golgi Protein of 49 kDa|Golgi protein GoPro49|UPF0672 protein C3orf58|deleted in autism 1|hypoxia and AKT-induced stem cell factor|hypoxia and Akt induced stem cell factor 32 0.00438 8.928 1 1 +205564 SENP5 SUMO1/sentrin specific peptidase 5 3 protein-coding - sentrin-specific protease 5|SUMO1/sentrin specific protease 5|sentrin/SUMO-specific protease SENP5 46 0.006296 9.576 1 1 +205717 USF3 upstream transcription factor family member 3 3 protein-coding KIAA2018 basic helix-loop-helix domain-containing protein USF3|upstream transcription factor 3 137 0.01875 9.053 1 1 +205860 TRIML2 tripartite motif family like 2 4 protein-coding SPRYD6 probable E3 ubiquitin-protein ligase TRIML2|SPRY domain-containing protein 6|tripartite motif family-like protein 2 91 0.01246 0.9193 1 1 +206338 LVRN laeverin 5 protein-coding APQ|AQPEP|TAQPEP aminopeptidase Q|AP-Q|CHL2 antigen 91 0.01246 2.015 1 1 +206358 SLC36A1 solute carrier family 36 member 1 5 protein-coding Dct1|LYAAT1|PAT1|TRAMD3 proton-coupled amino acid transporter 1|lysosomal amino acid transporter 1|proton/amino acid transporter 1|solute carrier family 36 (proton/amino acid symporter), member 1 38 0.005201 8.57 1 1 +206412 C6orf163 chromosome 6 open reading frame 163 6 protein-coding - uncharacterized protein C6orf163 4 0.0005475 2.631 1 1 +206426 PIP5K1P1 phosphatidylinositol-4-phosphate 5-kinase type 1 pseudogene 1 6 pseudo - PIP5K1A pseudogene|phosphatidylinositol-4-phosphate 5-kinase, type I, pseudogene 1 1.327 0 1 +207063 DHRSX dehydrogenase/reductase X-linked X|Y protein-coding CXorf11|DHRS5X|DHRS5Y|DHRSXY|DHRSY|SDR46C1|SDR7C6 dehydrogenase/reductase SDR family member on chromosome X|dehydrogenase/reductase (SDR family) X chromosome|dehydrogenase/reductase (SDR family) X-linked|dehydrogenase/reductase (SDR family) Y-linked|short chain dehydrogenase/reductase family 46C member 1|short chain dehydrogenase/reductase family 7C member 6 8.811 0 1 +207107 SFTA1P surfactant associated 1, pseudogene 10 pseudo SFTPF surfactant associated protein F 2.362 0 1 +219285 SAMD9L sterile alpha motif domain containing 9 like 7 protein-coding ATXPC|C7orf6|DRIF2|UEF1 sterile alpha motif domain-containing protein 9-like|SAM domain-containing protein 9-like 141 0.0193 8.964 1 1 +219287 AMER2 APC membrane recruitment protein 2 13 protein-coding FAM123A APC membrane recruitment protein 2|family with sequence similarity 123A|protein FAM123A 59 0.008076 1.432 1 1 +219293 ATAD3C ATPase family, AAA domain containing 3C 1 protein-coding - ATPase family AAA domain-containing protein 3C|ATPase family, AAA domain containing 3A 27 0.003696 5.952 1 1 +219333 USP12 ubiquitin specific peptidase 12 13 protein-coding UBH1|USP12L1 ubiquitin carboxyl-terminal hydrolase 12|deubiquitinating enzyme 12|ubiquitin specific protease 12 like 1|ubiquitin thioesterase 12|ubiquitin thiolesterase 12|ubiquitin-hydrolyzing enzyme 1|ubiquitin-specific-processing protease 12 30 0.004106 7.668 1 1 +219347 TMEM254-AS1 TMEM254 antisense RNA 1 10 ncRNA - - 4 0.0005475 5.412 1 1 +219348 PLAC9 placenta specific 9 10 protein-coding - placenta-specific protein 9 6 0.0008212 5.143 1 1 +219402 MTIF3 mitochondrial translational initiation factor 3 13 protein-coding IF3mt translation initiation factor IF-3, mitochondrial|IF-3(Mt) 13 0.001779 9.38 1 1 +219409 GSX1 GS homeobox 1 13 protein-coding GSH1|Gsh-1 GS homeobox 1|GS homeo box protein 1|genomic screened homeo box 1|homeobox protein Gsh-1 14 0.001916 0.3583 1 1 +219417 OR8U1 olfactory receptor family 8 subfamily U member 1 11 protein-coding - olfactory receptor 8U1 60 0.008212 0.007917 1 1 +219428 OR4C16 olfactory receptor family 4 subfamily C member 16 (gene/pseudogene) 11 protein-coding OR11-135 olfactory receptor 4C16|olfactory receptor OR11-135|olfactory receptor, family 4, subfamily C, member 16 96 0.01314 0.007119 1 1 +219429 OR4C11 olfactory receptor family 4 subfamily C member 11 11 protein-coding OR11-136|OR4C11P olfactory receptor 4C11|olfactory receptor OR11-136|olfactory receptor, family 4, subfamily C, member 11 pseudogene 59 0.008076 0.01271 1 1 +219431 OR4S2 olfactory receptor family 4 subfamily S member 2 11 protein-coding OR11-137|OR4S2P|OST725 olfactory receptor 4S2|olfactory receptor OR11-137|olfactory receptor, family 4, subfamily S, member 2 pseudogene 71 0.009718 0.004031 1 1 +219432 OR4C6 olfactory receptor family 4 subfamily C member 6 11 protein-coding OR11-138 olfactory receptor 4C6|olfactory receptor OR11-138 93 0.01273 0.275 1 1 +219436 OR5D14 olfactory receptor family 5 subfamily D member 14 11 protein-coding OR11-141|OR11-150 olfactory receptor 5D14|olfactory receptor OR11-141|olfactory receptor OR11-150 96 0.01314 0.00595 1 1 +219437 OR5L1 olfactory receptor family 5 subfamily L member 1 (gene/pseudogene) 11 protein-coding OR11-151|OST262 olfactory receptor 5L1|olfactory receptor OR11-151|olfactory receptor, family 5, subfamily L, member 1 95 0.013 0.004438 1 1 +219438 OR5D18 olfactory receptor family 5 subfamily D member 18 11 protein-coding OR11-143 olfactory receptor 5D18|olfactory receptor OR11-143|olfactory receptor OR11-152 95 0.013 0.009117 1 1 +219445 OR7E5P olfactory receptor family 7 subfamily E member 5 pseudogene 11 pseudo OR11-12|OR11-156|OR7F5P olfactory receptor OR11-156 pseudogene|olfactory receptor, family 7, subfamily F, member 5 pseudogene|seven transmembrane helix receptor 1 0.0001369 0.2105 1 1 +219447 OR5AS1 olfactory receptor family 5 subfamily AS member 1 11 protein-coding OR11-168 olfactory receptor 5AS1|olfactory receptor OR11-168 79 0.01081 0.007404 1 1 +219453 OR8K5 olfactory receptor family 8 subfamily K member 5 11 protein-coding OR11-174 olfactory receptor 8K5|olfactory receptor OR11-174 69 0.009444 0.01374 1 1 +219464 OR5T2 olfactory receptor family 5 subfamily T member 2 11 protein-coding OR11-177 olfactory receptor 5T2|olfactory receptor OR11-177 77 0.01054 0.02162 1 1 +219469 OR8H1 olfactory receptor family 8 subfamily H member 1 11 protein-coding OR11-180 olfactory receptor 8H1|olfactory receptor OR11-180 71 0.009718 0.008347 1 1 +219473 OR8K3 olfactory receptor family 8 subfamily K member 3 (gene/pseudogene) 11 protein-coding OR11-181 olfactory receptor 8K3|olfactory receptor OR11-181|olfactory receptor, family 8, subfamily K, member 3 71 0.009718 0.01141 1 1 +219477 OR8J1 olfactory receptor family 8 subfamily J member 1 11 protein-coding OR11-183 olfactory receptor 8J1|olfactory receptor OR11-183 63 0.008623 0.01031 1 1 +219479 OR5R1 olfactory receptor family 5 subfamily R member 1 (gene/pseudogene) 11 protein-coding OR11-185|OR5R1P olfactory receptor 5R1|olfactory receptor OR11-185|olfactory receptor, family 5, subfamily R, member 1 pseudogene 59 0.008076 0.004678 1 1 +219482 OR5M3 olfactory receptor family 5 subfamily M member 3 11 protein-coding OR11-191 olfactory receptor 5M3|olfactory receptor OR11-191 83 0.01136 0.004161 1 1 +219484 OR5M8 olfactory receptor family 5 subfamily M member 8 11 protein-coding OR11-194 olfactory receptor 5M8|olfactory receptor OR11-194 66 0.009034 0.02254 1 1 +219487 OR5M11 olfactory receptor family 5 subfamily M member 11 11 protein-coding OR11-199 olfactory receptor 5M11|olfactory receptor OR11-199 pseudogene 49 0.006707 0.2121 1 1 +219493 OR5AR1 olfactory receptor family 5 subfamily AR member 1 (gene/pseudogene) 11 protein-coding OR11-209 olfactory receptor 5AR1|olfactory receptor OR11-209|olfactory receptor, family 5, subfamily AR, member 1 54 0.007391 0.00759 1 1 +219527 LRRC55 leucine rich repeat containing 55 11 protein-coding - leucine-rich repeat-containing protein 55|BK channel auxiliary gamma subunit LRRC55|BK channel auxilliary gamma snit LRRC55 38 0.005201 4.006 1 1 +219537 SMTNL1 smoothelin like 1 11 protein-coding CHASM smoothelin-like protein 1|calponin homology-associated smooth muscle protein 43 0.005886 2.566 1 1 +219539 YPEL4 yippee like 4 11 protein-coding - protein yippee-like 4 11 0.001506 4.472 1 1 +219541 MED19 mediator complex subunit 19 11 protein-coding DT2P1G7|LCMR1|MED19AS mediator of RNA polymerase II transcription subunit 19|lung cancer metastasis-related protein 1|mediator of RNA polymerase II transcription, subunit 19 homolog|putative mediator subunit MED19AS protein 6 0.0008212 8.139 1 1 +219557 C7orf62 chromosome 7 open reading frame 62 7 protein-coding - uncharacterized protein C7orf62 39 0.005338 0.08223 1 1 +219578 ZNF804B zinc finger protein 804B 7 protein-coding - zinc finger protein 804B|zinc finger 804B 263 0.036 0.5617 1 1 +219595 FOLH1B folate hydrolase 1B 11 protein-coding FOLH2|FOLHP|GCP3|GCPIII|PSM|PSMA-LIKE|PSMAL putative N-acetylated-alpha-linked acidic dipeptidase|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 folate hydrolase 1B 150 0.02053 1.486 1 1 +219621 C10orf107 chromosome 10 open reading frame 107 10 protein-coding bA63A2.1 uncharacterized protein C10orf107 15 0.002053 2.843 1 1 +219623 TMEM26 transmembrane protein 26 10 protein-coding - transmembrane protein 26 36 0.004927 5.244 1 1 +219654 ZCCHC24 zinc finger CCHC-type containing 24 10 protein-coding C10orf56|Z3CXXC8 zinc finger CCHC domain-containing protein 24|zinc finger, 3CxxC-type 8|zinc finger, CCHC domain containing 24 15 0.002053 9.439 1 1 +219670 ENKUR enkurin, TRPC channel interacting protein 10 protein-coding C10orf63|CFAP106 enkurin 29 0.003969 3.42 1 1 +219681 ARMC3 armadillo repeat containing 3 10 protein-coding CT81|KU-CT-1 armadillo repeat-containing protein 3|beta-catenin-like protein|cancer/testis antigen 81 90 0.01232 2.298 1 1 +219699 UNC5B unc-5 netrin receptor B 10 protein-coding UNC5H2|p53RDL1 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|unc-5 homolog B 72 0.009855 9.931 1 1 +219736 STOX1 storkhead box 1 10 protein-coding C10orf24 storkhead-box protein 1|winged-helix domain-containing protein 59 0.008076 5.992 1 1 +219738 C10orf35 chromosome 10 open reading frame 35 10 protein-coding - uncharacterized protein C10orf35 13 0.001779 7.181 1 1 +219743 TYSND1 trypsin domain containing 1 10 protein-coding NET41 peroxisomal leader peptide-processing protease|peroxisomal cysteine endopeptidase|trypsin domain-containing protein 1 33 0.004517 9.101 1 1 +219749 ZNF25 zinc finger protein 25 10 protein-coding KOX19|Zfp9 zinc finger protein 25|zinc finger protein 25 (KOX 19)|zinc finger protein KOX19 39 0.005338 7.881 1 1 +219770 GJD4 gap junction protein delta 4 10 protein-coding CX40.1 gap junction delta-4 protein|connexin-40.1|connexin40.1|gap junction protein, delta 4, 40.1kDa 26 0.003559 0.6001 1 1 +219771 CCNY cyclin Y 10 protein-coding C10orf9|CBCP1|CCNX|CFP1 cyclin-Y|cyc-Y|cyclin box protein 1|cyclin fold protein 1|cyclin-X|cyclin-box carrying protein 1 19 0.002601 10.76 1 1 +219790 RTKN2 rhotekin 2 10 protein-coding PLEKHK1|bA531F24.1 rhotekin-2|PH domain-containing family K member 1|pleckstrin homology domain-containing family K member 1 47 0.006433 6.625 1 1 +219793 TBATA thymus, brain and testes associated 10 protein-coding C10orf27|SPATIAL protein TBATA|stromal protein associated with thymii and lymph node homolog|thymus, brain and testes-associated protein 34 0.004654 0.4923 1 1 +219833 C11orf45 chromosome 11 open reading frame 45 11 protein-coding - putative uncharacterized protein C11orf45 10 0.001369 5.39 1 1 +219844 HYLS1 HYLS1, centriolar and ciliogenesis associated 11 protein-coding HLS hydrolethalus syndrome protein 1|hydrolethalus syndrome 1 14 0.001916 6.931 1 1 +219854 TMEM218 transmembrane protein 218 11 protein-coding - transmembrane protein 218 9 0.001232 7.924 1 1 +219855 SLC37A2 solute carrier family 37 member 2 11 protein-coding pp11662 glucose-6-phosphate exchanger SLC37A2|solute carrier family 37 (glucose-6-phosphate transporter), member 2|solute carrier family 37 (glycerol-3-phosphate transporter), member 2|sugar phosphate exchanger 2 29 0.003969 7.811 1 1 +219858 OR8B12 olfactory receptor family 8 subfamily B member 12 11 protein-coding OR11-317 olfactory receptor 8B12|olfactory receptor OR11-317 42 0.005749 0.02423 1 1 +219865 OR8G5 olfactory receptor family 8 subfamily G member 5 11 protein-coding OR11-298|OR8G5P|OR8G6 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 13 0.001779 0.03524 1 1 +219869 OR10G8 olfactory receptor family 10 subfamily G member 8 11 protein-coding OR11-274|OR11-282 olfactory receptor 10G8|olfactory receptor OR11-274 pseudogene|olfactory receptor OR11-282 75 0.01027 0.009754 1 1 +219870 OR10G9 olfactory receptor family 10 subfamily G member 9 11 protein-coding OR10G10P olfactory receptor 10G9|olfactory receptor 10G10|olfactory receptor OR11-272 47 0.006433 0.00937 1 1 +219873 OR10S1 olfactory receptor family 10 subfamily S member 1 11 protein-coding OR11-279 olfactory receptor 10S1|olfactory receptor OR11-279 50 0.006844 0.03108 1 1 +219874 OR6T1 olfactory receptor family 6 subfamily T member 1 11 protein-coding OR11-277 olfactory receptor 6T1|olfactory receptor OR11-277 54 0.007391 0.06219 1 1 +219875 OR4D5 olfactory receptor family 4 subfamily D member 5 11 protein-coding OR11-276 olfactory receptor 4D5|olfactory receptor OR11-276 65 0.008897 0.0306 1 1 +219899 TBCEL tubulin folding cofactor E like 11 protein-coding El|LRRC35 tubulin-specific chaperone cofactor E-like protein|E-like|catastrophin|leucine rich repeat containing 35|leucine-rich repeat-containing protein 35|tubulin-specific chaperone e-like 34 0.004654 8.044 1 1 +219902 TMEM136 transmembrane protein 136 11 protein-coding - transmembrane protein 136 8 0.001095 7.12 1 1 +219927 MRPL21 mitochondrial ribosomal protein L21 11 protein-coding L21mt|MRP-L21 39S ribosomal protein L21, mitochondrial 16 0.00219 9.317 1 1 +219931 TPCN2 two pore segment channel 2 11 protein-coding SHEP10|TPC2 two pore calcium channel protein 2|voltage-dependent calcium channel protein TPC2 45 0.006159 8.41 1 1 +219938 SPATA19 spermatogenesis associated 19 11 protein-coding CT132|SPAS1|spergen1 spermatogenesis-associated protein 19, mitochondrial|cancer/testis antigen 132|spergen-1|spermatogenic cell-specific gene 1 protein|spermatogenic specific-gene1|testis secretory sperm-binding protein Li 243mP 26 0.003559 0.1627 1 1 +219952 OR6Q1 olfactory receptor family 6 subfamily Q member 1 (gene/pseudogene) 11 protein-coding OR11-226 olfactory receptor 6Q1|olfactory receptor OR11-226|olfactory receptor, family 6, subfamily Q, member 1 36 0.004927 0.01751 1 1 +219954 OR9I1 olfactory receptor family 9 subfamily I member 1 11 protein-coding OR11-228 olfactory receptor 9I1|olfactory receptor OR11-228 30 0.004106 0.02348 1 1 +219956 OR9Q1 olfactory receptor family 9 subfamily Q member 1 11 protein-coding - olfactory receptor 9Q1 36 0.004927 0.06797 1 1 +219957 OR9Q2 olfactory receptor family 9 subfamily Q member 2 11 protein-coding OR9Q2P olfactory receptor 9Q2|olfactory receptor, family 9, subfamily Q, member 2 pseudogene 36 0.004927 0.01081 1 1 +219958 OR1S2 olfactory receptor family 1 subfamily S member 2 11 protein-coding OR11-231 olfactory receptor 1S2|olfactory receptor OR11-231 42 0.005749 0.007413 1 1 +219959 OR1S1 olfactory receptor family 1 subfamily S member 1 (gene/pseudogene) 11 protein-coding OR11-232|OST034 olfactory receptor 1S1|olfactory receptor OR11-232|olfactory receptor, family 1, subfamily S, member 1 47 0.006433 0.004199 1 1 +219960 OR10Q1 olfactory receptor family 10 subfamily Q member 1 11 protein-coding OR11-233 olfactory receptor 10Q1|olfactory receptor OR11-233 60 0.008212 0.1813 1 1 +219965 OR5B17 olfactory receptor family 5 subfamily B member 17 11 protein-coding OR11-237|OR5B20P olfactory receptor 5B17|olfactory receptor 5B20|olfactory receptor OR11-237|olfactory receptor, family 5, subfamily B, member 20 pseudogene 35 0.004791 0.007571 1 1 +219968 OR5B21 olfactory receptor family 5 subfamily B member 21 11 protein-coding - olfactory receptor 5B21 37 0.005064 0.04832 1 1 +219970 GLYATL2 glycine-N-acyltransferase like 2 11 protein-coding BXMAS2-10|GATF-B glycine N-acyltransferase-like protein 2|acyl-CoA:glycine N-acyltransferase-like protein 2|glycine acyltransferase family-B 37 0.005064 2.824 1 1 +219972 MPEG1 macrophage expressed 1 11 protein-coding MPG1|MPS1|Mpg-1 macrophage-expressed gene 1 protein|macrophage expressed gene 1|macrophage gene 1 protein|perforin 2 61 0.008349 8.799 1 1 +219981 OR5A2 olfactory receptor family 5 subfamily A member 2 11 protein-coding - olfactory receptor 5A2|olfactory receptor OR11-248 39 0.005338 0.01472 1 1 +219982 OR5A1 olfactory receptor family 5 subfamily A member 1 11 protein-coding OR11-249|OR5A1P|OST181 olfactory receptor 5A1|olfactory receptor OR11-249|olfactory receptor, family 5, subfamily A, member 1 pseudogene 56 0.007665 0.06811 1 1 +219983 OR4D6 olfactory receptor family 4 subfamily D member 6 11 protein-coding OR11-250 olfactory receptor 4D6|olfactory receptor OR11-250 41 0.005612 0.08942 1 1 +219986 OR4D11 olfactory receptor family 4 subfamily D member 11 11 protein-coding OR4D11P olfactory receptor 4D11|olfactory receptor OR11-252 pseudogene|olfactory receptor, family 4, subfamily D, member 11 pseudogene 60 0.008212 0.02422 1 1 +219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor 11 protein-coding Pat1b|hPat1b protein PAT1 homolog 1|PAT1-like protein 1|protein PAT1 homolog b|protein associated with topoisomerase II homolog 1 48 0.00657 10.22 1 1 +219990 OOSP2 oocyte secreted protein 2 11 protein-coding PLAC1L|TMEM122 oocyte-secreted protein 2|placenta-specific 1-like protein|testicular tissue protein Li 142|transmembrane protein 122 20 0.002737 0.05122 1 1 +219995 MS4A15 membrane spanning 4-domains A15 11 protein-coding - membrane-spanning 4-domains subfamily A member 15 24 0.003285 2.028 1 1 +220001 VWCE von Willebrand factor C and EGF domains 11 protein-coding URG11|VWC1 von Willebrand factor C and EGF domain-containing protein|HBV X protein up-regulated gene 11 protein|HBxAg up-regulated gene 11 protein 71 0.009718 4.687 1 1 +220002 CYB561A3 cytochrome b561 family member A3 11 protein-coding CYBASC3|LCYTB cytochrome b ascorbate-dependent protein 3|cytochrome b, ascorbate dependent 3|lysosomal cytochrome b 15 0.002053 10.15 1 1 +220004 PPP1R32 protein phosphatase 1 regulatory subunit 32 11 protein-coding C11orf66|IIIG9 protein phosphatase 1 regulatory subunit 32 36 0.004927 4.117 1 1 +220032 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 11 protein-coding GDE6 glycerophosphodiester phosphodiesterase domain-containing protein 4|GDPD domain containing protein|glycerophosphodiester phosphodiesterase 6|ugpQ 45 0.006159 0.7899 1 1 +220042 DDIAS DNA damage induced apoptosis suppressor 11 protein-coding C11orf82|noxin DNA damage-induced apoptosis suppressor protein|nitric oxide-inducible gene protein 66 0.009034 6.52 1 1 +220047 CCDC83 coiled-coil domain containing 83 11 protein-coding CT148|HSD9 coiled-coil domain-containing protein 83 50 0.006844 0.353 1 1 +220064 ORAOV1 oral cancer overexpressed 1 11 protein-coding TAOS1 oral cancer-overexpressed protein 1|oral cancer overexpressed protein 1-A|tumor-amplified and overexpressed sequence 1 13 0.001779 8.123 1 1 +220070 SHANK2-AS3 SHANK2 antisense RNA 3 11 ncRNA C11orf76 SHANK2 antisense RNA 3 (non-protein coding) 2 0.0002737 1 0 +220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing 11 protein-coding CFAP111|DFNB63|LRRC51 transmembrane O-methyltransferase|leucine-rich repeat-containing protein 51|leucine rich transmembrane and 0-methyltransferase domain containing 18 0.002464 7.757 1 1 +220077 LOC220077 dedicator of cytokinesis 1 pseudogene 11 pseudo - docking protein 1 pseudogene 0 0 1 0 +220081 ERICH6B glutamate rich 6B 13 protein-coding FAM194B glutamate-rich protein 6B|family with sequence similarity 194, member B|protein FAM194B 63 0.008623 0.06068 1 1 +220082 SPERT spermatid associated 13 protein-coding CBY2|NURIT spermatid-associated protein|chibby family member 2|novel leucine zipper testicular protein|protein chibby homolog 2|spermatid flower-like structure protein|testicular tissue protein Li 182|testis-specific leucine zipper protein nurit 52 0.007117 1.606 1 1 +220107 DLEU7 deleted in lymphocytic leukemia, 7 13 protein-coding - leukemia-associated protein 7 6 0.0008212 2.29 1 1 +220108 FAM124A family with sequence similarity 124 member A 13 protein-coding - protein FAM124A|family with sequence similarity 124A 40 0.005475 4.965 1 1 +220115 TPTE2P3 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 3 13 pseudo TPTEps1 TPTE and PTEN homologous inositol lipid phosphatase pseudogene 2 0.0002737 0.8503 1 1 +220134 SKA1 spindle and kinetochore associated complex subunit 1 18 protein-coding C18orf24 spindle and kinetochore-associated protein 1|spindle and KT (kinetochore) associated 1 17 0.002327 6.448 1 1 +220136 CFAP53 cilia and flagella associated protein 53 18 protein-coding CCDC11|HTX6 cilia- and flagella-associated protein 53|coiled-coil domain containing 11 37 0.005064 4.359 1 1 +220164 DOK6 docking protein 6 18 protein-coding DOK5L|HsT3226 docking protein 6|downstream of tyrosine kinase 6 56 0.007665 4.949 1 1 +220202 ATOH7 atonal bHLH transcription factor 7 10 protein-coding Math5|NCRNA|PHPVAR|RNANC|bHLHa13 protein atonal homolog 7|atonal homolog 7|atonal homolog bHLH transcription factor 7|class A basic helix-loop-helix protein 13|helix-loop-helix protein hATH-5 6 0.0008212 1.68 1 1 +220213 OTUD1 OTU deubiquitinase 1 10 protein-coding DUBA7|OTDC1 OTU domain-containing protein 1|DUBA-7|OTU domain containing 1 6 0.0008212 8.696 1 1 +220296 HEPACAM hepatic and glial cell adhesion molecule 11 protein-coding GlialCAM|MLC2A|MLC2B hepatocyte cell adhesion molecule|protein hepaCAM 32 0.00438 2.084 1 1 +220323 OAF out at first homolog 11 protein-coding NS5ATP13TP2 out at first protein homolog|HCV NS5A-transactivated protein 13 target protein 2|OAF homolog 24 0.003285 9.447 1 1 +220359 TIGD3 tigger transposable element derived 3 11 protein-coding - tigger transposable element-derived protein 3 38 0.005201 4.106 1 1 +220382 FAM181B family with sequence similarity 181 member B 11 protein-coding - protein FAM181B 22 0.003011 3.943 1 1 +220388 CCDC89 coiled-coil domain containing 89 11 protein-coding - coiled-coil domain-containing protein 89|bc8 orange-interacting protein 34 0.004654 3.699 1 1 +220416 LRRC63 leucine rich repeat containing 63 13 protein-coding - leucine-rich repeat-containing protein 63 14 0.001916 1 0 +220429 CTAGE10P CTAGE family member 10, pseudogene 13 pseudo - CTAGE family, member 5 pseudogene 1.782 0 1 +220441 RNF152 ring finger protein 152 18 protein-coding - E3 ubiquitin-protein ligase RNF152 25 0.003422 5.183 1 1 +220594 USP32P2 ubiquitin specific peptidase 32 pseudogene 2 17 pseudo TL132 TL132 protein|ubiquitin specific peptidase 6 (Tre-2 oncogene) pseudogene 19 0.002601 5.243 1 1 +220729 LOC220729 succinate dehydrogenase complex flavoprotein subunit A pseudogene 3 pseudo - succinate dehydrogenase complex, subunit A, flavoprotein (Fp) pseudogene 7 0.0009581 6.991 1 1 +220832 FABP5P3 fatty acid binding protein 5 pseudogene 3 7 pseudo FABP5L3 Putative fatty acid-binding protein 5-like protein 3|TCAG_1781704|fatty acid binding protein 5-like 3 (pseudogene) 16 0.00219 1.002 1 1 +220869 CBWD5 COBW domain containing 5 9 protein-coding DC36 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 5 0.0006844 1.178 1 1 +220906 WAC-AS1 WAC antisense RNA 1 (head to head) 10 ncRNA - - 0 0 1 0 +220929 ZNF438 zinc finger protein 438 10 protein-coding bA330O11.1 zinc finger protein 438 69 0.009444 7.721 1 1 +220930 ZEB1-AS1 ZEB1 antisense RNA 1 10 ncRNA - ZEB1 antisense RNA 1 (non-protein coding) 0 0 6.36 1 1 +220963 SLC16A9 solute carrier family 16 member 9 10 protein-coding C10orf36|MCT9 monocarboxylate transporter 9|MCT 9|monocarboxylic acid transporter 9|solute carrier family 16 (monocarboxylic acid transporters), member 9|solute carrier family 16, member 9 (monocarboxylic acid transporter 9) 34 0.004654 7.104 1 1 +220965 FAM13C family with sequence similarity 13 member C 10 protein-coding FAM13C1 protein FAM13C|family with sequence similarity 13, member C1 82 0.01122 6.061 1 1 +220972 MARCH8 membrane associated ring-CH-type finger 8 10 protein-coding CMIR|MARCH-VIII|MIR|RNF178|c-MIR 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 8|membrane-associated RING finger protein 8|membrane-associated RING-CH protein VIII|membrane-associated ring finger (C3HC4) 8, E3 ubiquitin protein ligase 27 0.003696 7.597 1 1 +220979 C10orf25 chromosome 10 open reading frame 25 10 protein-coding - uncharacterized protein C10orf25 7 0.0009581 5.699 1 1 +220980 TMEM72-AS1 TMEM72 antisense RNA 1 10 ncRNA - TMEM72 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 2 protein-coding 2610510D13Rik|D10S102|FBRNP|HNRPA3 heterogeneous nuclear ribonucleoprotein A3 30 0.004106 12.23 1 1 +220992 ZNF485 zinc finger protein 485 10 protein-coding - zinc finger protein 485|Zinc finger protein 93 (Zinc finger protein HTF34) 42 0.005749 5.754 1 1 +221002 RASGEF1A RasGEF domain family member 1A 10 protein-coding CG4853 ras-GEF domain-containing family member 1A|CG4853 gene product 30 0.004106 6.086 1 1 +221016 5.116 0 1 +221035 REEP3 receptor accessory protein 3 10 protein-coding C10orf74|Yip2b receptor expression-enhancing protein 3 14 0.001916 8.922 1 1 +221037 JMJD1C jumonji domain containing 1C 10 protein-coding TRIP-8|TRIP8 probable JmjC domain-containing histone demethylation protein 2C|TR-interacting protein 8|thyroid hormone receptor interactor 8|thyroid receptor-interacting protein 8 158 0.02163 10.15 1 1 +221044 UCMA upper zone of growth plate and cartilage matrix associated 10 protein-coding C10orf49|GRP|GRP/UCMA unique cartilage matrix-associated protein|Gla-rich protein 12 0.001642 0.11 1 1 +221060 C10orf111 chromosome 10 open reading frame 111 10 protein-coding bA455B2.4 uncharacterized protein C10orf111 9 0.001232 2.593 1 1 +221061 FAM171A1 family with sequence similarity 171 member A1 10 protein-coding C10orf38 protein FAM171A1|astroprincin 98 0.01341 8.916 1 1 +221074 SLC39A12 solute carrier family 39 member 12 10 protein-coding LZT-Hs8|ZIP-12|bA570F3.1 zinc transporter ZIP12|LIV-1 subfamily of ZIP zinc transporter 8|solute carrier family 39 (metal ion transporter), member 12|solute carrier family 39 (zinc transporter), member 12|zrt- and Irt-like protein 12 127 0.01738 1.132 1 1 +221078 NSUN6 NOP2/Sun RNA methyltransferase family member 6 10 protein-coding 4933414E04Rik|ARL5B-AS1|NOPD1 putative methyltransferase NSUN6|ARL5B antisense RNA 1|NOL1/NOP2/Sun and PUA domain-containing protein 1|NOL1/NOP2/Sun domain family, member 6|NOP2/Sun domain family, member 6|nucleolar protein (NOL1/NOP2/sun) and PUA domains 1 43 0.005886 7.675 1 1 +221079 ARL5B ADP ribosylation factor like GTPase 5B 10 protein-coding ARL8 ADP-ribosylation factor-like protein 5B|ADP-ribosylation factor-like 5B|ADP-ribosylation factor-like 8|ADP-ribosylation factor-like protein 8|ADP-ribosylation-like factor 8 18 0.002464 7.766 1 1 +221091 LRRN4CL LRRN4 C-terminal like 11 protein-coding - LRRN4 C-terminal-like protein 14 0.001916 4.83 1 1 +221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 11 protein-coding HNRPUL2|SAF-A2 heterogeneous nuclear ribonucleoprotein U-like protein 2|scaffold-attachment factor A2 54 0.007391 11.6 1 1 +221120 ALKBH3 alkB homolog 3, alpha-ketoglutaratedependent dioxygenase 11 protein-coding ABH3|DEPC-1|DEPC1|PCA1|hABH3 alpha-ketoglutarate-dependent dioxygenase alkB homolog 3|alkB homolog 3, alpha-ketoglutarate-dependent dioxygenase|alkB, alkylation repair homolog 3|alkylated DNA repair protein alkB homolog 3|prostate cancer antigen-1 22 0.003011 8.254 1 1 +221122 LOC221122 uncharacterized LOC221122 11 ncRNA - - 0.3474 0 1 +221143 EEF1AKMT1 eukaryotic translation elongation factor 1 alpha lysine methyltransferase 1 13 protein-coding ESP13|N6AMT2 protein-lysine N-methyltransferase N6AMT2|N-6 adenine-specific DNA methyltransferase 2 (putative)|n(6)-adenine-specific DNA methyltransferase 2 14 0.001916 6.914 1 1 +221150 SKA3 spindle and kinetochore associated complex subunit 3 13 protein-coding C13orf3|RAMA1 spindle and kinetochore-associated protein 3 33 0.004517 6.823 1 1 +221154 MICU2 mitochondrial calcium uptake 2 13 protein-coding 1110008L20Rik|EFHA1 calcium uptake protein 2, mitochondrial|EF hand domain family A1|EF hand domain family, member A1|EF-hand domain-containing family member A1|Smhs2 homolog 33 0.004517 9.61 1 1 +221178 SPATA13 spermatogenesis associated 13 13 protein-coding ARHGEF29|ASEF2 spermatogenesis-associated protein 13|APC-stimulated guanine nucleotide exchange factor 2|adenomatous polyposis coli stimulated exchange factor 2 43 0.005886 7.803 1 1 +221184 CPNE2 copine 2 16 protein-coding COPN2|CPN2 copine-2|copine II 33 0.004517 9.604 1 1 +221188 ADGRG5 adhesion G protein-coupled receptor G5 16 protein-coding GPR114|PGR27 adhesion G-protein coupled receptor G5|G protein-coupled receptor 114|G protein-coupled receptor PGR27|probable G-protein coupled receptor 114 46 0.006296 4.794 1 1 +221191 PRSS54 protease, serine 54 16 protein-coding CT67|KLKBL4 inactive serine protease 54|cancer/testis antigen 67|plasma kallikrein-like protein 4|testis tissue sperm-binding protein Li 40a 29 0.003969 0.2943 1 1 +221223 CES5A carboxylesterase 5A 16 protein-coding CAUXIN|CES4C1|CES5|CES7|HEL126 carboxylesterase 5A|carboxylesterase 5|carboxylesterase 7|carboxylesterase-like urinary excreted protein homolog|epididymis luminal protein 126 57 0.007802 0.8153 1 1 +221241 LINC00305 long intergenic non-protein coding RNA 305 18 ncRNA C18orf20|HsT1235|NCRNA00305 - 1 0.0001369 0.09393 1 1 +221262 CCDC162P coiled-coil domain containing 162, pseudogene 6 pseudo C6orf184|C6orf185|CCDC162|bA425D10.3|bA425D10.7 - 6 0.0008212 1 0 +221264 AK9 adenylate kinase 9 6 protein-coding AK 9|AKD1|AKD2|C6orf199|C6orf224|dJ70A9.1 adenylate kinase 9|adenylate kinase domain containing 1|adenylate kinase domain containing 2 115 0.01574 6.571 1 1 +221294 NT5DC1 5'-nucleotidase domain containing 1 6 protein-coding C6orf200|LP2642|NT5C2L1 5'-nucleotidase domain-containing protein 1|5'-nucleotidase, cytosolic II-like 1 protein 30 0.004106 9.216 1 1 +221301 FAM26D family with sequence similarity 26 member D 6 protein-coding C6orf78 protein FAM26D 18 0.002464 0.2823 1 1 +221302 ZUFSP zinc finger with UFM1 specific peptidase domain 6 protein-coding C6orf113|dJ412I7.3 zinc finger with UFM1-specific peptidase domain protein 37 0.005064 7.314 1 1 +221303 FAM162B family with sequence similarity 162 member B 6 protein-coding C6orf189|bA86F4.2 protein FAM162B 17 0.002327 3.993 1 1 +221322 TBC1D32 TBC1 domain family member 32 6 protein-coding BROMI|C6orf170|C6orf171|bA301B7.2|bA57L9.1|dJ310J6.1 protein broad-minded|bA301B7.2 (novel protein)|broad-minded homolog|dJ310J6.1 (novel protein) 92 0.01259 6.224 1 1 +221336 BEND6 BEN domain containing 6 6 protein-coding C6orf65 BEN domain-containing protein 6 35 0.004791 5.405 1 1 +221357 GSTA5 glutathione S-transferase alpha 5 6 protein-coding - glutathione S-transferase A5|GST class-alpha member 5|glutathione S-transferase A5-5|glutathione transferase A5 24 0.003285 0.1173 1 1 +221391 OPN5 opsin 5 6 protein-coding GPR136|GRP136|PGR12|TMEM13 opsin-5|G-protein coupled receptor 136|neuropsin|transmembrane protein 13 37 0.005064 0.2505 1 1 +221393 ADGRF4 adhesion G protein-coupled receptor F4 6 protein-coding GPR115|PGR18 adhesion G protein-coupled receptor F4|G-protein coupled receptor 115|G-protein coupled receptor PGR18|probable G-protein coupled receptor 115|seven transmembrane helix receptor 75 0.01027 3.706 1 1 +221395 ADGRF5 adhesion G protein-coupled receptor F5 6 protein-coding GPR116|KPG_001 adhesion G protein-coupled receptor F5|G-protein coupled receptor 116|Ig-Hepta homolog|probable G-protein coupled receptor 116 94 0.01287 9.284 1 1 +221400 TDRD6 tudor domain containing 6 6 protein-coding CT41.2|NY-CO-45|SPATA36|TDR2|bA446F17.4 tudor domain-containing protein 6|antigen NY-CO-45|cancer/testis antigen 41.2|spermatogenesis associated 36|tudor repeat 2 171 0.02341 3.677 1 1 +221409 SPATS1 spermatogenesis associated serine rich 1 6 protein-coding DDIP|SPATA8|SRSP1 spermatogenesis-associated serine-rich protein 1 28 0.003832 0.7064 1 1 +221416 C6orf223 chromosome 6 open reading frame 223 6 protein-coding - uncharacterized protein C6orf223 17 0.002327 4.066 1 1 +221421 RSPH9 radial spoke head 9 homolog 6 protein-coding C6orf206|CILD12|MRPS18AL1 radial spoke head protein 9 homolog 21 0.002874 2.718 1 1 +221424 LRRC73 leucine rich repeat containing 73 6 protein-coding C6orf154 leucine-rich repeat-containing protein 73 17 0.002327 4.73 1 1 +221438 TREML5P triggering receptor expressed on myeloid cells like 5, pseudogene 6 pseudo TLT5|TREML2P|TREML2P1 TREM like transcript 5|triggering receptor expressed on myeloid cells-like 2 pseudogene 1 0.004341 0 1 +221442 ADCY10P1 adenylate cyclase 10, soluble pseudogene 1 6 pseudo - - 11 0.001506 4.808 1 1 +221443 OARD1 O-acyl-ADP-ribose deacylase 1 6 protein-coding C6orf130|TARG1|dJ34B21.3 O-acetyl-ADP-ribose deacetylase 1|O-acetyl-ADP-ribose deacetylase C6orf130|terminal ADP-ribose protein glycohydrolase 1 13 0.001779 8.71 1 1 +221458 KIF6 kinesin family member 6 6 protein-coding C6orf102|dJ1043E3.1|dJ137F1.4|dJ188D3.1 kinesin-like protein KIF6 97 0.01328 3.633 1 1 +221468 TMEM217 transmembrane protein 217 6 protein-coding C6orf128|dJ355M6.2 transmembrane protein 217 14 0.001916 4.304 1 1 +221472 FGD2 FYVE, RhoGEF and PH domain containing 2 6 protein-coding ZFYVE4 FYVE, RhoGEF and PH domain-containing protein 2|FGD1 family, member 2|FLJ00276 protein|zinc finger FYVE domain-containing protein 4 50 0.006844 6.821 1 1 +221476 PI16 peptidase inhibitor 16 6 protein-coding CD364|CRISP9|MSMBBP|PSPBP peptidase inhibitor 16|PSP94-binding protein|cysteine-rich secretory protein 9|microseminoprotein, beta-binding protein|protease inhibitor 16 43 0.005886 4.21 1 1 +221477 C6orf89 chromosome 6 open reading frame 89 6 protein-coding BRAP bombesin receptor-activated protein C6orf89|amfion 44 0.006022 11.3 1 1 +221481 ARMC12 armadillo repeat containing 12 6 protein-coding C6orf81 armadillo repeat-containing protein 12 18 0.002464 2.561 1 1 +221491 C6orf1 chromosome 6 open reading frame 1 6 protein-coding LBH uncharacterized protein C6orf1 10 0.001369 8.908 1 1 +221496 LEMD2 LEM domain containing 2 6 protein-coding CTRCT42|NET25|dJ482C21.1 LEM domain-containing protein 2|hLEM2 22 0.003011 10.08 1 1 +221504 ZBTB9 zinc finger and BTB domain containing 9 6 protein-coding ZNF919 zinc finger and BTB domain-containing protein 9 36 0.004927 8.216 1 1 +221527 ZBTB12 zinc finger and BTB domain containing 12 6 protein-coding Bat9|C6orf46|D6S59E|G10|NG35 zinc finger and BTB domain-containing protein 12|HLA-B-associated transcript 9 25 0.003422 6.961 1 1 +221545 C6orf136 chromosome 6 open reading frame 136 6 protein-coding - uncharacterized protein C6orf136 22 0.003011 8.425 1 1 +221584 ZSCAN12P1 zinc finger and SCAN domain containing 12 pseudogene 1 6 pseudo ZNF187p1|ZNF305P1|ZNF96L1|ZNF96P1|ZSCAN12L1|dJ313I6.7 zinc finger and SCAN domain containing 12-like 1|zinc finger protein 305 pseudogene 1|zinc finger protein 96 pseudogene 1|zinc finger protein 96-like 1 4 0.0005475 4.849 1 1 +221613 HIST1H2AA histone cluster 1 H2A family member a 6 protein-coding H2AA|H2AFR|TH2A|bA317E16.2 histone H2A type 1-A|H2A histone family, member R|histone 1, H2aa|histone H2A/r|histone cluster 1, H2aa 19 0.002601 0.04788 1 1 +221656 KDM1B lysine demethylase 1B 6 protein-coding AOF1|C6orf193|LSD2|bA204B7.3|dJ298J15.2 lysine-specific histone demethylase 1B|amine oxidase (flavin containing) domain 1|amine oxidase, flavin containing 1|flavin-containing amine oxidase domain-containing protein 1|lysine (K)-specific demethylase 1B|lysine-specific histone demethylase 2 42 0.005749 9.055 1 1 +221662 RBM24 RNA binding motif protein 24 6 protein-coding RNPC6|dJ259A10.1 RNA-binding protein 24|RNA-binding region (RNP1, RRM) containing 6|RNA-binding region-containing protein 6 21 0.002874 4.439 1 1 +221687 RNF182 ring finger protein 182 6 protein-coding - E3 ubiquitin-protein ligase RNF182 24 0.003285 4.241 1 1 +221692 PHACTR1 phosphatase and actin regulator 1 6 protein-coding RPEL|RPEL1|dJ257A7.2 phosphatase and actin regulator 1|RPEL repeat containing 1 104 0.01423 4.811 1 1 +221710 SMIM13 small integral membrane protein 13 6 protein-coding C6orf228 small integral membrane protein 13|UPF0766 protein C6orf228 2 0.0002737 8.591 1 1 +221711 SYCP2L synaptonemal complex protein 2 like 6 protein-coding C6orf177|NO145|dJ62D2.1 synaptonemal complex protein 2-like|145 kDa nucleolar protein homolog|SCP-2-like 77 0.01054 2.288 1 1 +221718 LINC00518 long intergenic non-protein coding RNA 518 6 ncRNA C6orf218 - 14 0.001916 1.053 1 1 +221749 PXDC1 PX domain containing 1 6 protein-coding C6orf145 PX domain-containing protein 1|PX domain-containing protein C6orf145 12 0.001642 9.389 1 1 +221785 ZSCAN25 zinc finger and SCAN domain containing 25 7 protein-coding ZNF498 zinc finger and SCAN domain-containing protein 25|zinc finger protein 498 36 0.004927 8.531 1 1 +221786 FAM200A family with sequence similarity 200 member A 7 protein-coding C7orf38 protein FAM200A 11 0.001506 7.655 1 1 +221806 VWDE von Willebrand factor D and EGF domains 7 protein-coding - von Willebrand factor D and EGF domain-containing protein 61 0.008349 3.239 1 1 +221823 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 7 protein-coding PRPS1|PRPS3|PRPSL|PRS-III ribose-phosphate pyrophosphokinase 3|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 III 35 0.004791 0.5003 1 1 +221830 TWISTNB TWIST neighbor 7 protein-coding - DNA-directed RNA polymerase I subunit RPA43|twist neighbor protein 37 0.005064 9.018 1 1 +221833 SP8 Sp8 transcription factor 7 protein-coding BTD transcription factor Sp8|specificity protein 8 54 0.007391 1.586 1 1 +221883 HOXA11-AS HOXA11 antisense RNA 7 ncRNA HOXA-AS5|HOXA11-AS1|HOXA11AS|HOXA11S|NCRNA00076 HOXA cluster antisense RNA 5 (non-protein coding)|HOXA11 antisense RNA 1 (non-protein coding)|homeo box A11, opposite strand transcript|homeobox A11 antisense 7 0.0009581 3.172 1 1 +221895 JAZF1 JAZF zinc finger 1 7 protein-coding TIP27|ZNF802 juxtaposed with another zinc finger protein 1|TAK1-interacting protein 27|juxtaposed with another zinc finger gene 1|zinc finger protein 802 17 0.002327 8.512 1 1 +221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 7 protein-coding C7orf47 protein phosphatase 1 regulatory subunit 35|UPF0683 protein C7orf47 10 0.001369 8.133 1 1 +221914 GPC2 glypican 2 7 protein-coding - glypican-2|cerebroglycan proteoglycan|glypican proteoglycan 2, cerebroglycan proteoglycan 34 0.004654 4.75 1 1 +221927 BRAT1 BRCA1 associated ATM activator 1 7 protein-coding BAAT1|C7orf27|RMFSL BRCA1-associated ATM activator 1|BRCA1-associated protein required for ATM activation protein 1|HEAT repeat-containing protein C7orf27 53 0.007254 10.34 1 1 +221935 SDK1 sidekick cell adhesion molecule 1 7 protein-coding - protein sidekick-1|sidekick homolog 1, cell adhesion molecule 237 0.03244 7.85 1 1 +221937 FOXK1 forkhead box K1 7 protein-coding FOXK1L forkhead box protein K1|MNF|myocyte nuclear factor 44 0.006022 10.19 1 1 +221938 MMD2 monocyte to macrophage differentiation associated 2 7 protein-coding PAQR10 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 36 0.004927 0.9666 1 1 +221955 DAGLB diacylglycerol lipase beta 7 protein-coding DAGLBETA|KCCR13L sn1-specific diacylglycerol lipase beta|DGL-beta 42 0.005749 9.133 1 1 +221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated 7 protein-coding C7orf28B|H_NH0577018.2 vacuolar fusion protein CCZ1 homolog B|CCZ1 homolog, vacuolar protein trafficking and biogenesis associated B|CCZ1 vacuolar protein trafficking and biogenesis associated B|CCZ1 vacuolar protein trafficking and biogenesis associated homolog B|H_DJ1163J12.2 11 0.001506 9.177 1 1 +221981 THSD7A thrombospondin type 1 domain containing 7A 7 protein-coding - thrombospondin type-1 domain-containing protein 7A|thrombospondin, type I, domain containing 7A 219 0.02998 5.296 1 1 +222008 VSTM2A V-set and transmembrane domain containing 2A 7 protein-coding VSTM2 V-set and transmembrane domain-containing protein 2A|V-set and transmembrane domain containing 2|hypothetical protein MGC33530 43 0.005886 2.015 1 1 +222029 DKFZp434L192 uncharacterized protein DKFZp434L192 7 ncRNA - - 3 0.0004106 0.08229 1 1 +222068 TMED4 transmembrane p24 trafficking protein 4 7 protein-coding ERS25|GMP25iso|HNLF|p24a3|p24alpha3 transmembrane emp24 domain-containing protein 4|endoplasmic reticulum stress-response protein 25 kDa|p24 family protein alpha-3|putative NF-kappa-B-activating protein 156|putative NFkB activating protein HNLF|transmembrane emp24 protein transport domain containing 4 14 0.001916 10.23 1 1 +222161 DKFZP586I1420 uncharacterized protein DKFZp586I1420 7 pseudo - proteasome (prosome, macropain) 26S subunit, ATPase, 5 pseudogene 7.692 0 1 +222166 MTURN maturin, neural progenitor differentiation regulator homolog 7 protein-coding C7orf41|Ells1 maturin|UPF0452 protein C7orf41|maturin neural progenitor differentiation regulator protein homolog|protein Ells1 9 0.001232 9.576 1 1 +222171 PRR15 proline rich 15 7 protein-coding - proline-rich protein 15 8 0.001095 6.35 1 1 +222183 SRRM3 serine/arginine repetitive matrix 3 7 protein-coding - serine/arginine repetitive matrix protein 3|SRRM2-like protein 22 0.003011 6.545 1 1 +222194 RSBN1L round spermatid basic protein 1 like 7 protein-coding - round spermatid basic protein 1-like protein 46 0.006296 8.569 1 1 +222223 KIAA1324L KIAA1324 like 7 protein-coding EIG121L UPF0577 protein KIAA1324-like|EIG121-like|estrogen-induced gene 121-like protein 107 0.01465 7.23 1 1 +222229 LRWD1 leucine rich repeats and WD repeat domain containing 1 7 protein-coding CENP-33|ORCA leucine-rich repeat and WD repeat-containing protein 1|ORC-associated protein|centromere protein 33|origin recognition complex-associated protein|testicular tissue protein Li 4 33 0.004517 8.806 1 1 +222234 FAM185A family with sequence similarity 185 member A 7 protein-coding - protein FAM185A 12 0.001642 6.516 1 1 +222235 FBXL13 F-box and leucine rich repeat protein 13 7 protein-coding DRC6|Fbl13 F-box/LRR-repeat protein 13 53 0.007254 3.225 1 1 +222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D 7 protein-coding FMP30|NAPE-PLD N-acyl-phosphatidylethanolamine-hydrolyzing phospholipase D|NAPE-hydrolyzing phospholipase D 31 0.004243 8.85 1 1 +222255 ATXN7L1 ataxin 7 like 1 7 protein-coding ATXN7L4 ataxin-7-like protein 1|ataxin 7-like 4|ataxin-7-like protein 4 35 0.004791 7.494 1 1 +222256 CDHR3 cadherin related family member 3 7 protein-coding CDH28 cadherin-related family member 3|cadherin-like protein 28 82 0.01122 4.742 1 1 +222389 BEND7 BEN domain containing 7 10 protein-coding C10orf30 BEN domain-containing protein 7 28 0.003832 7.49 1 1 +222484 LNX2 ligand of numb-protein X 2 13 protein-coding PDZRN1 ligand of Numb protein X 2|PDZ domain containing ring finger 1|PDZ domain-containing RING finger protein 1|numb-binding protein 2 39 0.005338 8.79 1 1 +222487 ADGRG3 adhesion G protein-coupled receptor G3 16 protein-coding GPR97|PB99|PGR26 adhesion G protein-coupled receptor G3|G protein-coupled receptor 97|G-protein coupled receptor PGR26|probable G-protein coupled receptor 97 46 0.006296 3.636 1 1 +222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 6 protein-coding 3-OST-5|3OST5|HS3OST5|NBLA04021 heparan sulfate glucosamine 3-O-sulfotransferase 5|h3-OST-5|heparan sulfate (glucosamine) 3-O-sulfotransferase 5|heparan sulfate 3-O-sulfotransferase 5|heparan sulfate 3-OST-5|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 5 51 0.006981 1.911 1 1 +222545 GPRC6A G protein-coupled receptor class C group 6 member A 6 protein-coding GPCR|bA86F4.3 G-protein coupled receptor family C group 6 member A|G protein-coupled receptor, family C, group 6, member A|G-protein coupled receptor GPCR33|predicted with SOSUI analysis|seven transmembrane helix receptor 92 0.01259 0.432 1 1 +222546 RFX6 regulatory factor X6 6 protein-coding MTCHRS|MTFS|RFXDC1|dJ955L16.1 DNA-binding protein RFX6|regulatory factor X domain-containing protein 1|regulatory factor X, 6 103 0.0141 1.03 1 1 +222553 SLC35F1 solute carrier family 35 member F1 6 protein-coding C6orf169|dJ230I3.1 solute carrier family 35 member F1 68 0.009307 4.119 1 1 +222584 FAM83B family with sequence similarity 83 member B 6 protein-coding C6orf143 protein FAM83B 128 0.01752 4.655 1 1 +222611 ADGRF2 adhesion G protein-coupled receptor F2 6 protein-coding GPR111|PGR20|hGPCR35 adhesion G-protein coupled receptor F2|G protein-coupled receptor 111|probable G-protein coupled receptor 111 58 0.007939 1.082 1 1 +222642 TSPO2 translocator protein 2 6 protein-coding BZRPL1 translocator protein 2|benzodiazapine receptor (peripheral)-like 1|peripheral-type benzodiazepine receptor-like protein 1 10 0.001369 0.8211 1 1 +222643 UNC5CL unc-5 family C-terminal like 6 protein-coding MUXA|ZUD UNC5C-like protein|ZU5 and death domain containing|protein unc-5 homolog C-like|unc-5 homolog C (C. elegans)-like 32 0.00438 6.042 1 1 +222658 KCTD20 potassium channel tetramerization domain containing 20 6 protein-coding C6orf69|dJ108K11.3 BTB/POZ domain-containing protein KCTD20|potassium channel tetramerisation domain containing 20 46 0.006296 10.24 1 1 +222659 PXT1 peroxisomal, testis specific 1 6 protein-coding STEPP peroxisomal testis-specific protein 1|small testis-specific peroxisomal protein 12 0.001642 0.8817 1 1 +222662 LHFPL5 lipoma HMGIC fusion partner-like 5 6 protein-coding DFNB67|TMHS|dJ510O8.8 tetraspan membrane protein of hair cell stereocilia|LHFP-like protein 5|lipoma HMGIC fusion partner-like 5 protein 22 0.003011 1.099 1 1 +222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 6 protein-coding CEGF3 signal peptide, CUB and EGF-like domain-containing protein 3|CUB domain and EGF-like repeat containing 3 60 0.008212 4.965 1 1 +222696 ZSCAN23 zinc finger and SCAN domain containing 23 6 protein-coding ZNF390|ZNF453|dJ29K1.3|dJ29K1.3.1 zinc finger and SCAN domain-containing protein 23|zinc finger protein 390|zinc finger protein 453 22 0.003011 3.779 1 1 +222698 NKAPL NFKB activating protein like 6 protein-coding C6orf194|bA424I5.1 NKAP-like protein 59 0.008076 2.877 1 1 +222699 TOB2P1 transducer of ERBB2, 2 pseudogene 1 6 pseudo TOB2P|TOB4p|p373c6.3 CRA_a protein 1 0.0001369 4.964 1 1 +222826 FAM217A family with sequence similarity 217 member A 6 protein-coding C6orf146 protein FAM217A|uncharacterized protein C6orf146 40 0.005475 0.1732 1 1 +222865 TMEM130 transmembrane protein 130 7 protein-coding - transmembrane protein 130 32 0.00438 5.485 1 1 +222894 FERD3L Fer3 like bHLH transcription factor 7 protein-coding N-TWIST|NATO3|NTWIST|PTFB|bHLHa31 fer3-like protein|basic helix-loop-helix protein N-twist|class A basic helix-loop-helix protein 31|nephew of atonal 3|neuronal twist|pancreas-specific transcription factor b 58 0.007939 0.07603 1 1 +222901 RPL23P8 ribosomal protein L23 pseudogene 8 7 pseudo RPL23_4_790 - 6.451 0 1 +222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 7 protein-coding C7orf51 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 1 70 0.009581 4.251 1 1 +222962 SLC29A4 solute carrier family 29 member 4 7 protein-coding ENT4|PMAT equilibrative nucleoside transporter 4|plasma membrane monoamine transporter|solute carrier family 29 (equilibrative nucleoside transporter), member 4|solute carrier family 29 (nucleoside transporters), member 4 53 0.007254 7.24 1 1 +222967 RSPH10B radial spoke head 10 homolog B 7 protein-coding - radial spoke head 10 homolog B|radial spoke head 10 homolog B2 22 0.003011 1 0 +223075 CCDC129 coiled-coil domain containing 129 7 protein-coding - coiled-coil domain-containing protein 129 132 0.01807 1.263 1 1 +223082 ZNRF2 zinc and ring finger 2 7 protein-coding RNF202 E3 ubiquitin-protein ligase ZNRF2|RING finger protein 202|protein Ells2|zinc and ring finger 2, E3 ubiquitin protein ligase|zinc finger/RING finger 2|zinc/RING finger protein 2 10 0.001369 8.977 1 1 +223117 SEMA3D semaphorin 3D 7 protein-coding Sema-Z2|coll-2 semaphorin-3D|collapsin 2|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D 111 0.01519 5.341 1 1 +225689 MAPK15 mitogen-activated protein kinase 15 8 protein-coding ERK7|ERK8 mitogen-activated protein kinase 15|ERK-7|ERK-8|MAP kinase 15|MAPK 15|extracellular regulated kinase 8 delta|extracellular signal-regulated kinase 7|extracellular signal-regulated kinase 8 45 0.006159 4.512 1 1 +245711 SPDYA speedy/RINGO cell cycle regulator family member A 2 protein-coding RINGO3|RINGOA|SPDY1|SPY1 speedy protein A|RINGO A|hSpy/Ringo A|rapid inducer of G2/M progression in oocytes A|speedy homolog A|speedy-1 17 0.002327 3.61 1 1 +245802 MS4A6E membrane spanning 4-domains A6E 11 protein-coding - membrane-spanning 4-domains subfamily A member 6E|membrane-spanning 4-domains, subfamily A, member 6E 19 0.002601 0.2421 1 1 +245806 VGLL2 vestigial like family member 2 6 protein-coding VGL2|VITO1 transcription cofactor vestigial-like protein 2|Vestigial and Tondu related protein 1|vestigial like 2 13 0.001779 0.6593 1 1 +245812 CNPY4 canopy FGF signaling regulator 4 7 protein-coding PRAT4B protein canopy homolog 4|PRotein Associated with Tlr4|canopy 4 homolog 19 0.002601 8.078 1 1 +245908 DEFB105A defensin beta 105A 8 protein-coding BD-5|DEFB-5|DEFB105 beta-defensin 105|beta defensin 5|defensin, beta 5 1 0.0001369 0.00222 1 1 +245909 DEFB106A defensin beta 106A 8 protein-coding BD-6|DEFB-6|DEFB106 beta-defensin 106|beta-defensin 6|defensin, beta 6 1 0.0001369 0.003521 1 1 +245910 DEFB107A defensin beta 107A 8 protein-coding BD-7|DEFB-7|DEFB107 beta-defensin 107|beta-defensin 7|defensin, beta 7 0 0 0.008505 1 1 +245911 DEFB108B defensin beta 108B 11 protein-coding DEFB-8|hBD-8 beta-defensin 108B|beta-defensin 8|defensin, beta 8 6 0.0008212 0.00188 1 1 +245912 DEFB109P1 defensin beta 109 pseudogene 1 8 pseudo DEFB-9|DEFB109|DEFB109A defensin, beta 9 pseudogene 0.01123 0 1 +245913 DEFB110 defensin beta 110 6 protein-coding DEFB-10|DEFB-11|DEFB111 beta-defensin 110|beta-defensin 10|beta-defensin 11|beta-defensin 111|defensin, beta 10|defensin, beta 110 locus 19 0.002601 0.001239 1 1 +245915 DEFB112 defensin beta 112 6 protein-coding DEFB-12 beta-defensin 112|beta-defensin 12|defensin, beta 12 24 0.003285 0.001756 1 1 +245927 DEFB113 defensin beta 113 6 protein-coding DEFB-13 beta-defensin 113|beta-defensin 13|defensin, beta 13 20 0.002737 0.0002007 1 1 +245928 DEFB114 defensin beta 114 6 protein-coding DEFB-14|DEFB14 beta-defensin 114|beta-defensin 14|defensin, beta 14 15 0.002053 0.0003483 1 1 +245929 DEFB115 defensin beta 115 20 protein-coding DEFB-15 beta-defensin 115|beta-defensin 15|defensin, beta 15 13 0.001779 0.002462 1 1 +245930 DEFB116 defensin beta 116 20 protein-coding DEFB-16 beta-defensin 116|beta-defensin 16|defensin, beta 16 20 0.002737 0.004089 1 1 +245932 DEFB119 defensin beta 119 20 protein-coding DEFB-19|DEFB-20|DEFB120|DEFB20|ESC42-RELA|ESC42-RELB beta-defensin 119|defensin, beta 120|defensin, beta 19|defensin, beta 20 23 0.003148 0.1559 1 1 +245934 DEFB121 defensin beta 121 20 protein-coding DEFB21|ESC42RELC beta-defensin 121|beta-defensin 21|defensin, beta 21 8 0.001095 0.002042 1 1 +245935 DEFB122 defensin beta 122 (pseudogene) 20 pseudo DEFB-22|DEFB122P|DEFB22 defensin, beta 122|defensin, beta 22 3 0.0004106 0.02055 1 1 +245936 DEFB123 defensin beta 123 20 protein-coding DEFB-23|DEFB23|ESC42-RELD beta-defensin 123|beta defensin 23|specific to testis and epididymis 6 0.0008212 0.07549 1 1 +245937 DEFB124 defensin beta 124 20 protein-coding DEFB-24 beta-defensin 124|beta-defensin 24|defensin, beta 24 6 0.0008212 0.1208 1 1 +245938 DEFB125 defensin beta 125 20 protein-coding DEFB-25 beta-defensin 125|beta defensin 25 20 0.002737 0.03409 1 1 +245939 DEFB128 defensin beta 128 20 protein-coding DEFB-28|DEFB28|hBD-28 beta-defensin 128|beta-defensin 28|defensin, beta 28 8 0.001095 0.001964 1 1 +245940 DEFB130 defensin beta 130 8 protein-coding DEFB-30|DEFB130L|DEFB30 beta-defensin 130|beta-defensin 30|defensin, beta 30 0.00225 0 1 +245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 8 protein-coding ATP6D2|VMA6 V-type proton ATPase subunit d 2|ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d2|V-ATPase subunit d 2|vacuolar proton pump subunit d 2 34 0.004654 3.537 1 1 +245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 2 protein-coding ATP6C2|VMA5 V-type proton ATPase subunit C 2|ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C2|V-ATPase C2 subunit|vacuolar proton pump subunit C 2 42 0.005749 6.583 1 1 +246119 TTTY10 testis-specific transcript, Y-linked 10 (non-protein coding) Y ncRNA NCRNA00133|TTY10 testis transcript Y 10|transcript Y 10 0.2954 0 1 +246122 TTTY7 testis-specific transcript, Y-linked 7 (non-protein coding) Y ncRNA CLONE795723|LINC00129|NCRNA00129|TTTY7A|TTTY7B|TTY7 Putative transcript Y 7 protein|long intergenic non-protein coding RNA 129|transcript Y 7 0.01666 0 1 +246126 TXLNGY taxilin gamma pseudogene, Y-linked Y pseudo CYorf15A|CYorf15B|TXLNG2P lipopolysaccaride-specific response 5-like protein|taxilin gamma 2, pseudogene 11 0.001506 3.554 1 1 +246175 CNOT6L CCR4-NOT transcription complex subunit 6 like 4 protein-coding CCR4b CCR4-NOT transcription complex subunit 6-like|carbon catabolite repressor protein 4 homolog B 38 0.005201 9.786 1 1 +246176 GAS2L2 growth arrest specific 2 like 2 17 protein-coding GAR17 GAS2-like protein 2|GAS2-related protein on chromosome 17 77 0.01054 2.063 1 1 +246181 AKR7L aldo-keto reductase family 7 like (gene/pseudogene) 1 pseudo AFAR3|AFB1-AR3|AKR7A4 AFB1 aldehyde reductase 3|aflatoxin B1 aldehyde reductase member 4|aldo-keto reductase family 7 pseudogene|aldo-keto reductase family 7-like|aldoketoreductase 7-like 31 0.004243 4.178 1 1 +246182 AKR7A2P1 aldo-keto reductase family 7 member A2 pseudogene 1 1 pseudo AFARP1 AKR7 family pseudogene|aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) pseudogene 0 0 1.902 1 1 +246184 CDC26 cell division cycle 26 9 protein-coding ANAPC12|APC12|C9orf17 anaphase-promoting complex subunit CDC26|CDC26 subunit of anaphase promoting complex|anaphase-promoting complex subunit 12|cell division cycle 26 homolog|cell division cycle protein 26 homolog 4 0.0005475 6.446 1 1 +246213 SLC17A8 solute carrier family 17 member 8 12 protein-coding DFNA25|VGLUT3 vesicular glutamate transporter 3|solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8|solute carrier family 17 (vesicular glutamate transporter), member 8 71 0.009718 1.17 1 1 +246243 RNASEH1 ribonuclease H1 2 protein-coding H1RNA|PEOB2|RNH1 ribonuclease H1|RNase H1|ribonuclease H type II 18 0.002464 8.093 1 1 +246269 LACE1 lactation elevated 1 6 protein-coding AFG1|c222389 lactation elevated protein 1|ATPase family gene 1 homolog|CG8520 gene product 24 0.003285 5.719 1 1 +246312 C21orf91-OT1 C21orf91 overlapping transcript 1 21 ncRNA D21S2089E|NCRNA00285 - 0 0 1 0 +246329 STAC3 SH3 and cysteine rich domain 3 12 protein-coding NAM SH3 and cysteine-rich domain-containing protein 3 27 0.003696 5.991 1 1 +246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 11 protein-coding - E3 ubiquitin-protein ligase pellino homolog 3|pellino homolog 3|protein pellino homolog 3 31 0.004243 7.997 1 1 +246704 LINC00315 long intergenic non-protein coding RNA 315 21 ncRNA C21orf93|NCRNA00315 - 1 0.0001369 1 0 +246705 LINC00314 long intergenic non-protein coding RNA 314 21 ncRNA C21orf94|NCRNA00314 - 0 0 0.04939 1 1 +246721 POLR2J2 RNA polymerase II subunit J2 7 protein-coding HRPB11B|RPB11b1 DNA-directed RNA polymerase II subunit RPB11-b1|DNA directed RNA polymerase II polypeptide J-related|DNA-directed RNA polymerase II subunit J2|RNA polymerase II subunit B11-b1|polymerase (RNA) II (DNA directed) polypeptide J2|polymerase (RNA) II subunit J2 7.769 0 1 +246744 STH saitohin 17 protein-coding MAPTIT saitohin|microtubule-associated protein tau (MAPT) intronic transcript 10 0.001369 0.1669 1 1 +246754 MTVR2 mouse mammary tumor virus receptor homolog 2 17 pseudo - family with sequence similarity 89, member B pseudogene 0.3419 0 1 +246777 SPESP1 sperm equatorial segment protein 1 15 protein-coding ESP|SP-ESP sperm equatorial segment protein 1|equatorial segment protein|glycosylated 38 kDa sperm protein C-7/8 38 0.005201 4.003 1 1 +246778 IL27 interleukin 27 16 protein-coding IL-27|IL-27A|IL27A|IL27p28|IL30|p28 interleukin-27 subunit alpha|IL-27 p28 subunit|IL-27 subunit alpha|IL-27-A|IL27-A|interleukin-30 21 0.002874 1.508 1 1 +252839 TMEM9 transmembrane protein 9 1 protein-coding DERM4|TMEM9A transmembrane protein 9|dermal papilla-derived protein 4 6 0.0008212 11.11 1 1 +252884 ZNF396 zinc finger protein 396 18 protein-coding ZSCAN14 zinc finger protein 396|zinc finger and SCAN domain-containing protein 14 23 0.003148 5.126 1 1 +252946 FAM197Y2P family with sequence similarity 197 Y-linked member 2, pseudogene Y pseudo CYorf16|FAM197Y2 - 0.04203 0 1 +252948 TTTY16 testis-specific transcript, Y-linked 16 (non-protein coding) Y ncRNA NCRNA00139 - 0.009917 0 1 +252949 TTTY17A testis-specific transcript, Y-linked 17A (non-protein coding) Y ncRNA NCRNA00140|TTTY17 - 0 0 1 +252950 TTTY18 testis-specific transcript, Y-linked 18 (non-protein coding) Y ncRNA NCRNA00143 - 0.006111 0 1 +252951 TTTY20 testis-specific transcript, Y-linked 20 (non-protein coding) Y ncRNA NCRNA00145 - 0.006536 0 1 +252952 TTTY19 testis-specific transcript, Y-linked 19 (non-protein coding) Y ncRNA NCRNA00144 - 0.0003056 0 1 +252953 TTTY21 testis-specific transcript, Y-linked 21 (non-protein coding) Y ncRNA NCRNA00146 - 0.0001403 0 1 +252954 TTTY22 testis-specific transcript, Y-linked 22 (non-protein coding) Y ncRNA NCRNA00147 - 0.0004038 0 1 +252955 TTTY23 testis-specific transcript, Y-linked 23 (non-protein coding) Y ncRNA NCRNA00148|TTTY23B - 0.00416 0 1 +252969 NEIL2 nei like DNA glycosylase 2 8 protein-coding NEH2|NEI2 endonuclease 8-like 2|DNA glycosylase/AP lyase Neil2|DNA-(apurinic or apyrimidinic site) lyase Neil2|endonuclease VIII-like 2|nei endonuclease VIII-like 2|nei homolog 2|nei like 2|nei-like protein 2 18 0.002464 8.689 1 1 +252983 STXBP4 syntaxin binding protein 4 17 protein-coding Synip syntaxin-binding protein 4|STX4-interacting protein|syntaxin 4 interacting protein 42 0.005749 6.931 1 1 +252995 FNDC5 fibronectin type III domain containing 5 1 protein-coding FRCP2|irisin fibronectin type III domain-containing protein 5|fibronectin type III repeat-containing protein 2 12 0.001642 5.293 1 1 +253012 HEPACAM2 HEPACAM family member 2 7 protein-coding MIKI HEPACAM family member 2|mitotic kinetics regulator 65 0.008897 2.28 1 1 +253017 TECRL trans-2,3-enoyl-CoA reductase-like 4 protein-coding GPSN2L|SRD5A2L2|TERL trans-2,3-enoyl-CoA reductase-like|glycoprotein, synaptic 2-like|steroid 5 alpha-reductase 2-like 2|steroid 5-alpha-reductase 2-like 2 protein 89 0.01218 0.2113 1 1 +253018 HCG27 HLA complex group 27 (non-protein coding) 6 ncRNA bCX101P6.9|bPG299F13.9|bQB115I13.2 bPG299F13.9 bCX101P6.9 bQB115I13.2 2 0.0002737 3.807 1 1 +253039 PSMD5-AS1 PSMD5 antisense RNA 1 (head to head) 9 ncRNA - - 4 0.0005475 8.433 1 1 +253128 LINC00612 long intergenic non-protein coding RNA 612 12 ncRNA C12orf33 - 2 0.0002737 1 0 +253143 PRR14L proline rich 14 like 22 protein-coding C22orf30 protein PRR14L|proline rich 14-like protein 52 0.007117 9.846 1 1 +253152 EPHX4 epoxide hydrolase 4 1 protein-coding ABHD7|EH4|EPHXRP epoxide hydrolase 4|abhydrolase domain containing 7|abhydrolase domain-containing protein 7|epoxide hydrolase-related protein 43 0.005886 4.479 1 1 +253175 CDY1B chromodomain Y-linked 1B Y protein-coding CDY testis-specific chromodomain protein Y 1|chromodomain protein, Y chromosome, 1, centromeric|chromodomain protein, Y-linked, 1B|testis-specific chromodomain protein on Y, centromeric 1 0.0001369 0.01417 1 1 +253190 SERHL2 serine hydrolase-like 2 22 protein-coding dJ222E13.1 serine hydrolase-like protein 2|testis secretory sperm-binding protein Li 216e 14 0.001916 4.965 1 1 +253260 RICTOR RPTOR independent companion of MTOR complex 2 5 protein-coding AVO3|PIA|hAVO3 rapamycin-insensitive companion of mTOR|AVO3 homolog|TORC2-specific protein AVO3|pianissimo 116 0.01588 9.504 1 1 +253264 ZNF503-AS1 ZNF503 antisense RNA 1 10 ncRNA - ZNF503 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +253314 EIF4E1B eukaryotic translation initiation factor 4E family member 1B 5 protein-coding - eukaryotic translation initiation factor 4E type 1B 23 0.003148 0.6329 1 1 +253430 IPMK inositol polyphosphate multikinase 10 protein-coding - inositol polyphosphate multikinase|inositol 1,3,4,6-tetrakisphosphate 5-kinase 26 0.003559 5.11 1 1 +253461 ZBTB38 zinc finger and BTB domain containing 38 3 protein-coding CIBZ|PPP1R171|ZNF921 zinc finger and BTB domain-containing protein 38|protein phosphatase 1, regulatory subunit 171 73 0.009992 10.45 1 1 +253512 SLC25A30 solute carrier family 25 member 30 13 protein-coding KMCP1 kidney mitochondrial carrier protein 1 17 0.002327 8.333 1 1 +253558 LCLAT1 lysocardiolipin acyltransferase 1 2 protein-coding 1AGPAT8|AGPAT8|ALCAT1|HSRG1849|LYCAT|UNQ1849 lysocardiolipin acyltransferase 1|1-AGP acyltransferase 8|1-AGPAT 8|1-acylglycerol-3-phosphate O-acyltransferase 8|acyl-CoA:lysocardiolipin acyltransferase 1 43 0.005886 8.861 1 1 +253559 CADM2 cell adhesion molecule 2 3 protein-coding IGSF4D|NECL3|Necl-3|SynCAM 2|synCAM2 cell adhesion molecule 2|immunoglobulin superfamily member 4D|nectin-like 3|nectin-like protein 3|synaptic cell adhesion molecule 2 89 0.01218 2.895 1 1 +253582 TMEM244 transmembrane protein 244 6 protein-coding C6orf191|bA174C7.4 transmembrane protein 244|putative transmembrane protein C6orf191 15 0.002053 0.2025 1 1 +253635 GPATCH11 G-patch domain containing 11 2 protein-coding CCDC75|CENP-Y|CENPY G patch domain-containing protein 11|centromere protein Y|coiled-coil domain containing 75|coiled-coil domain-containing protein 75|g patch domain-containing protein 11 6 0.0008212 5.77 1 1 +253639 ZNF620 zinc finger protein 620 3 protein-coding - zinc finger protein 620 26 0.003559 5.532 1 1 +253650 ANKRD18A ankyrin repeat domain 18A 9 protein-coding - ankyrin repeat domain-containing protein 18A 22 0.003011 1 0 +253714 MMS22L MMS22 like, DNA repair protein 6 protein-coding C6orf167|dJ39B17.2 protein MMS22-like 80 0.01095 7.592 1 1 +253724 TTC41P tetratricopeptide repeat domain 41, pseudogene 12 pseudo GNN|GNNP Grp94 neighboring nucleotidase pseudogene 7 0.0009581 3.401 1 1 +253725 FAM21C family with sequence similarity 21 member C 10 protein-coding FAM21A|VPEF WASH complex subunit FAM21C|vaccinia virus penetration factor 41 0.005612 10.31 1 1 +253738 EBF3 early B-cell factor 3 10 protein-coding COE3|EBF-3|O/E-2|OE-2 transcription factor COE3|olf-1/EBF-like 2 75 0.01027 4.774 1 1 +253769 WDR27 WD repeat domain 27 6 protein-coding - WD repeat-containing protein 27 48 0.00657 6.806 1 1 +253782 CERS6 ceramide synthase 6 2 protein-coding CERS5|LASS6 ceramide synthase 6|LAG1 homolog, ceramide synthase 6|longevity assurance homolog 6 26 0.003559 9.8 1 1 +253827 MSRB3 methionine sulfoxide reductase B3 12 protein-coding DFNB74 methionine-R-sulfoxide reductase B3|methionine-R-sulfoxide reductase B3, mitochondrial 27 0.003696 8.588 1 1 +253832 ZDHHC20 zinc finger DHHC-type containing 20 13 protein-coding 4933421L13Rik|DHHC-20 probable palmitoyltransferase ZDHHC20|zinc finger DHHC domain-containing protein 20 21 0.002874 7.14 1 1 +253868 C20orf166-AS1 C20orf166 antisense RNA 1 20 ncRNA C20orf200|NCRNA00335 - 28 0.003832 1.474 1 1 +253935 ANGPTL5 angiopoietin like 5 11 protein-coding - angiopoietin-related protein 5|angiopoietin-like protein 5 29 0.003969 0.858 1 1 +253943 YTHDF3 YTH N6-methyladenosine RNA binding protein 3 8 protein-coding - YTH domain-containing family protein 3|YTH N(6)-methyladenosine RNA binding protein 3|YTH domain family protein 3|YTH domain family, member 3 37 0.005064 10.69 1 1 +253959 RALGAPA1 Ral GTPase activating protein catalytic alpha subunit 1 14 protein-coding GARNL1|GRIPE|RalGAPalpha1|TULIP1|p240 ral GTPase-activating protein subunit alpha-1|GAP-related interacting protein to E12|GTPase activating RANGAP domain-like 1|GTPase activating Rap/RanGAP domain-like 1|Ral GTPase activating protein, alpha subunit 1 (catalytic)|tuberin-like protein 1 105 0.01437 8.728 1 1 +253970 SFTA3 surfactant associated 3 14 protein-coding NANCI|SFTPH|SP-H surfactant-associated protein 3|Nkx2.1-associated noncoding intergenic RNA|putative protein SFTA3|surfactant-associated protein H 9 0.001232 1.936 1 1 +253980 KCTD13 potassium channel tetramerization domain containing 13 16 protein-coding BACURD1|FKSG86|PDIP1|POLDIP1|hBACURD1 BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 1|BTB/POZ domain-containing protein KCTD13|CTD-2574D22.4|TNFAIP1-like protein|polymerase delta-interacting protein 1|potassium channel tetramerisation domain containing 13 19 0.002601 8.361 1 1 +253982 ASPHD1 aspartate beta-hydroxylase domain containing 1 16 protein-coding - aspartate beta-hydroxylase domain-containing protein 1 29 0.003969 6.243 1 1 +254013 ETFBKMT electron transfer flavoprotein beta subunit lysine methyltransferase 12 protein-coding C12orf72|ETFB-KMT|METTL20 electron transfer flavoprotein beta subunit lysine methyltransferase|ETFB lysine methyltransferase|methyltransferase like 20|methyltransferase-like protein 20|protein N-lysine methyltransferase METTL20 13 0.001779 5.631 1 1 +254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial 2 protein-coding MAP 1D|MAP1D|MetAP 1D|Metap1l methionine aminopeptidase 1D, mitochondrial|CDS of metAP-3 within PCR fragment|MAP 1D|metAP 1D|peptidase M 1D 27 0.003696 5.866 1 1 +254048 UBN2 ubinuclein 2 7 protein-coding - ubinuclein-2 86 0.01177 9.255 1 1 +254050 LRRC43 leucine rich repeat containing 43 12 protein-coding - leucine-rich repeat-containing protein 43 69 0.009444 3.187 1 1 +254065 BRWD3 bromodomain and WD repeat domain containing 3 X protein-coding BRODL|MRX93 bromodomain and WD repeat-containing protein 3|bromo domain-containing protein disrupted in leukemia|novel WD repeat domain protein 177 0.02423 7.411 1 1 +254102 EHBP1L1 EH domain binding protein 1 like 1 11 protein-coding - EH domain-binding protein 1-like protein 1|tangerin 68 0.009307 10.15 1 1 +254122 SNX32 sorting nexin 32 11 protein-coding SNX6B sorting nexin-32|sorting nexin-6B 35 0.004791 2.518 1 1 +254158 CXorf58 chromosome X open reading frame 58 X protein-coding - putative uncharacterized protein CXorf58 32 0.00438 0.8117 1 1 +254170 FBXO33 F-box protein 33 14 protein-coding BMND12|Fbx33|c14_5247 F-box only protein 33 24 0.003285 8.354 1 1 +254173 TTLL10 tubulin tyrosine ligase like 10 1 protein-coding TTLL5 inactive polyglycylase TTLL10|tubulin tyrosine ligase-like family, member 10|tubulin tyrosine ligase-like family, member 5|tubulin--tyrosine ligase-like protein 10 34 0.004654 1.751 1 1 +254187 TSGA10IP testis specific 10 interacting protein 11 protein-coding FAM161C testis-specific protein 10-interacting protein|tsga10-interacting protein 51 0.006981 1.112 1 1 +254225 RNF169 ring finger protein 169 11 protein-coding - E3 ubiquitin-protein ligase RNF169 40 0.005475 8.716 1 1 +254228 FAM26E family with sequence similarity 26 member E 6 protein-coding C6orf188|dJ493F7.3 protein FAM26E 20 0.002737 5.902 1 1 +254240 BPIFC BPI fold containing family C 22 protein-coding BPIL2 BPI fold-containing family C protein|BPI-like 2|bactericidal/permeability-increasing protein-like 2 68 0.009307 0.6298 1 1 +254251 LCORL ligand dependent nuclear receptor corepressor like 4 protein-coding MLR1 ligand-dependent nuclear receptor corepressor-like protein|LCOR-like protein|MBLK1-related protein|transcription factor MLR1 23 0.003148 6.172 1 1 +254263 CNIH2 cornichon family AMPA receptor auxiliary protein 2 11 protein-coding CNIH-2|Cnil protein cornichon homolog 2|cornichon homolog 2 12 0.001642 5.059 1 1 +254268 AKNAD1 AKNA domain containing 1 1 protein-coding C1orf62 protein AKNAD1 80 0.01095 1.547 1 1 +254272 TBC1D28 TBC1 domain family member 28 17 protein-coding - TBC1 domain family member 28 13 0.001779 0.06714 1 1 +254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 9 protein-coding - phytanoyl-CoA dioxygenase domain-containing protein 1 15 0.002053 7.111 1 1 +254312 LINC00710 long intergenic non-protein coding RNA 710 10 ncRNA - - 6 0.0008212 0.02256 1 1 +254359 ZDHHC24 zinc finger DHHC-type containing 24 11 protein-coding - probable palmitoyltransferase ZDHHC24|DHHC-24|zinc finger DHHC domain-containing protein 24|zinc finger, DHHC domain containing 24 7 0.0009581 8.322 1 1 +254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor 6 protein-coding C6orf61|MCMDC1|ODG4|dJ329L24.1|dJ329L24.3 DNA helicase MCM9|DNA replication licensing factor MCM9|mini-chromosome maintenance deficient domain-containing protein 1|minichromosome maintenance complex component 9 44 0.006022 5.598 1 1 +254427 PROSER2 proline and serine rich 2 10 protein-coding C10orf47 proline and serine-rich protein 2 19 0.002601 7.415 1 1 +254428 SLC41A1 solute carrier family 41 member 1 1 protein-coding MgtE solute carrier family 41 member 1|solute carrier family 41 (magnesium transporter), member 1 40 0.005475 9.79 1 1 +254439 C11orf86 chromosome 11 open reading frame 86 11 protein-coding - uncharacterized protein C11orf86 8 0.001095 1.455 1 1 +254528 MEIOB meiosis specific with OB domains 16 protein-coding C16orf73|gs129 meiosis-specific with OB domain-containing protein 23 0.003148 1.296 1 1 +254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 15 protein-coding AGPAT7|AYTL3|LPAAT-eta|LPEAT2 lysophospholipid acyltransferase LPCAT4|1-AGP acyltransferase 7|1-AGPAT 7|1-acylglycerol-3-phosphate O-acyltransferase 7 (lysophosphatidic acid acyltransferase, eta)|1-acylglycerophosphocholine O-acyltransferase|1-acylglycerophosphoserine O-acyltransferase|1-alkenylglycerophosphoethanolamine O-acyltransferase|1-alkylglycerophosphocholine O-acetyltransferase|PLSC domain containing protein|acyl-CoA:lysophosphatidylethanolamine acyltransferase 2|acyltransferase-like 3|lysophosphatidylethanolamine acyltransferase 2|plasmalogen synthase 27 0.003696 9.011 1 1 +254552 NUDT8 nudix hydrolase 8 11 protein-coding - nucleoside diphosphate-linked moiety X motif 8|nucleoside diphosphate-linked moiety X motif 8, mitochondrial|nudix (nucleoside diphosphate linked moiety X)-type motif 8|nudix motif 8 10 0.001369 7.117 1 1 +254559 MIR9-3HG MIR9-3 host gene 15 ncRNA LINC00925 CTD-2335A18.1|long intergenic non-protein coding RNA 925 5.395 0 1 +254664 MAPK6PS2 mitogen-activated protein kinase 6 pseudogene 2 21 pseudo - - 1 0.0001369 1 0 +254773 LYG2 lysozyme g2 2 protein-coding LYGH|LYSG2 lysozyme g-like protein 2|lysozyme G-like 2 21 0.002874 0.6276 1 1 +254778 C8orf46 chromosome 8 open reading frame 46 8 protein-coding - uncharacterized protein C8orf46 22 0.003011 4.308 1 1 +254783 OR6C74 olfactory receptor family 6 subfamily C member 74 12 protein-coding - olfactory receptor 6C74 36 0.004927 0.008542 1 1 +254786 OR6C3 olfactory receptor family 6 subfamily C member 3 12 protein-coding OST709 olfactory receptor 6C3|HSA8 24 0.003285 0.0173 1 1 +254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 3 protein-coding - inactive N-acetylated-alpha-linked acidic dipeptidase-like protein 2|N-acetylated alpha-linked acidic dipeptidase 2|NAALADase L2|glutamate carboxypeptidase II-type non-peptidase homologue 91 0.01246 6.237 1 1 +254863 TMEM256 transmembrane protein 256 17 protein-coding C17orf61 transmembrane protein 256|UPF0451 protein C17orf61 4 0.0005475 8.862 1 1 +254879 OR2T6 olfactory receptor family 2 subfamily T member 6 1 protein-coding OR2T6P|OR2T9|OST703 olfactory receptor 2T6|olfactory receptor 2T9|olfactory receptor, family 2, subfamily T, member 6 pseudogene|seven transmembrane helix receptor 71 0.009718 0.01775 1 1 +254887 ZDHHC23 zinc finger DHHC-type containing 23 3 protein-coding DHHC-23|NIDD palmitoyltransferase ZDHHC23|zinc finger DHHC domain-containing protein 23 31 0.004243 7.421 1 1 +254910 LCE5A late cornified envelope 5A 1 protein-coding LEP18|SPRL5A 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 25 0.003422 0.3474 1 1 +254950 KRTAP15-1 keratin associated protein 15-1 21 protein-coding KAP15.1 keratin-associated protein 15-1 29 0.003969 0.005078 1 1 +254956 MORN5 MORN repeat containing 5 9 protein-coding C9orf113|C9orf18 MORN repeat-containing protein 5 20 0.002737 1.663 1 1 +254958 REXO1L1P REX1, RNA exonuclease 1 homolog-like 1, pseudogene 8 pseudo GOR|REXO1L1 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 1, pseudogene|REX1, RNA exonuclease 1 homolog-like 1|antigen GOR homolog|exonuclease GOR 9 0.001232 0.1574 1 1 +254973 OR1L4 olfactory receptor family 1 subfamily L member 4 9 protein-coding OR1L5|OR9-29|OR9-E|OST046 olfactory receptor 1L4|olfactory receptor 1L5|olfactory receptor 9-E|olfactory receptor OR9-29|olfactory receptor, family 1, subfamily L, member 5 38 0.005201 0.03896 1 1 +255022 CALHM1 calcium homeostasis modulator 1 10 protein-coding FAM26C calcium homeostasis modulator protein 1|family with sequence similarity 26, member C 25 0.003422 1.314 1 1 +255025 LINC00879 long intergenic non-protein coding RNA 879 3 ncRNA - - 1 0.0001369 0.04009 1 1 +255027 MPV17L MPV17 mitochondrial inner membrane protein like 16 protein-coding M-LPH|MLPH1|MLPH2|MPV17L1 mpv17-like protein|M-LP homolog|MPV17 mitochondrial membrane protein-like|Mpv17-like protein type 1|Mpv17-like protein type 2 9 0.001232 5.761 1 1 +255031 LINC00957 long intergenic non-protein coding RNA 957 7 ncRNA - - 19 0.002601 5.933 1 1 +255043 TMEM86B transmembrane protein 86B 19 protein-coding - lysoplasmalogenase|alkenylglycerophosphocholine hydrolase|alkenylglycerophosphoethanolamine hydrolase 9 0.001232 6.504 1 1 +255057 CBARP CACN beta subunit associated regulatory protein 19 protein-coding BARP|C19orf26|DOS voltage-dependent calcium channel beta subunit-associated regulatory protein|VGCC beta-anchoring and -regulatory protein|calcium channel, voltage-dependent, beta subunit associated regulatory protein|downstream of Stk11|protein Dos 38 0.005201 4.336 1 1 +255061 TAC4 tachykinin 4 (hemokinin) 17 protein-coding EK|HK-1|HK1|PPT-C tachykinin-4|endokinin|preprotachykinin-C 9 0.001232 0.7634 1 1 +255082 CASC2 cancer susceptibility candidate 2 (non-protein coding) 10 ncRNA C10orf5 - 6 0.0008212 5.299 1 1 +255101 CFAP65 cilia and flagella associated protein 65 2 protein-coding CCDC108 coiled-coil domain-containing protein 108|coiled-coil domain containing 108 156 0.02135 2.724 1 1 +255104 TMCO4 transmembrane and coiled-coil domains 4 1 protein-coding - transmembrane and coiled-coil domain-containing protein 4 57 0.007802 8.894 1 1 +255119 C4orf22 chromosome 4 open reading frame 22 4 protein-coding - uncharacterized protein C4orf22 24 0.003285 0.3986 1 1 +255167 LINC01018 long intergenic non-protein coding RNA 1018 5 ncRNA SRHC CTD-2195M18.1 3.605 0 1 +255189 PLA2G4F phospholipase A2 group IVF 15 protein-coding PLA2G4FZ cytosolic phospholipase A2 zeta|cPLA2-zeta 69 0.009444 4.914 1 1 +255193 CSNK1G2-AS1 CSNK1G2 antisense RNA 1 19 ncRNA C19orf34 CSNK1G2 antisense RNA 1 (non-protein coding) 2 0.0002737 0.3796 1 1 +255220 TXNDC8 thioredoxin domain containing 8 9 protein-coding SPTRX-3|TRX6|bA427L11.2 thioredoxin domain-containing protein 8|sperm-specific thioredoxin 3|spermatid-specific thioredoxin-3|spermatocyte/spermatid-specific thioredoxin-3|thioredoxin 6|thioredoxin domain containing 8 (spermatozoa) 7 0.0009581 0.002572 1 1 +255231 MCOLN2 mucolipin 2 1 protein-coding TRP-ML2|TRPML2 mucolipin-2 36 0.004927 5.078 1 1 +255239 ANKK1 ankyrin repeat and kinase domain containing 1 11 protein-coding PKK2 ankyrin repeat and protein kinase domain-containing protein 1|X-kinase|protein kinase PKK2|sgK288|sugen kinase 288 50 0.006844 2.948 1 1 +255252 LRRC57 leucine rich repeat containing 57 15 protein-coding - leucine-rich repeat-containing protein 57 20 0.002737 8.268 1 1 +255275 MYADML2 myeloid associated differentiation marker like 2 17 protein-coding - myeloid-associated differentiation marker-like protein 2 22 0.003011 1.869 1 1 +255313 CT47A11 cancer/testis antigen family 47, member A11 X protein-coding CT47.11 cancer/testis antigen 47A|cancer/testis CT47 family, member 11 0.01472 0 1 +255324 EPGN epithelial mitogen 4 protein-coding ALGV3072|EPG|PRO9904 epigen|epithelial mitogen homolog 4 0.0005475 0.9184 1 1 +255330 NUP210P1 nucleoporin 210 pseudogene 1 3 pseudo C3orf46 nucleoporin 210kDa pseudogene 1 15 0.002053 1 0 +255349 TMEM211 transmembrane protein 211 22 protein-coding bA9F11.1 transmembrane protein 211 7 0.0009581 0.5664 1 1 +255352 2.322 0 1 +255374 MBLAC1 metallo-beta-lactamase domain containing 1 7 protein-coding - metallo-beta-lactamase domain-containing protein 1 21 0.002874 5.377 1 1 +255394 TCP11L2 t-complex 11 like 2 12 protein-coding - T-complex protein 11-like protein 2|t-complex 11, testis-specific-like 2 48 0.00657 6.62 1 1 +255403 ZNF718 zinc finger protein 718 4 protein-coding - zinc finger protein 718 67 0.009171 6.006 1 1 +255426 RASGEF1C RasGEF domain family member 1C 5 protein-coding - ras-GEF domain-containing family member 1C 42 0.005749 2.653 1 1 +255488 RNF144B ring finger protein 144B 6 protein-coding IBRDC2|PIR2|bA528A10.3|p53RFP E3 ubiquitin-protein ligase RNF144B|IBR domain containing 2|IBR domain-containing protein 2|p53-inducible RING finger protein 11 0.001506 9.046 1 1 +255520 ELMOD2 ELMO domain containing 2 4 protein-coding 9830169G11Rik ELMO domain-containing protein 2|ELMO/CED-12 domain containing 2 15 0.002053 7.344 1 1 +255626 HIST1H2BA histone cluster 1 H2B family member a 6 protein-coding H2BFU|STBP|TH2B|TSH2B|TSH2B.1|bA317E16.3 histone H2B type 1-A|H2B histone family, member U, (testis-specific)|histone 1, H2ba|histone H2B, testis|histone cluster 1, H2ba|testis-specific histone H2B 12 0.001642 0.05823 1 1 +255631 COL24A1 collagen type XXIV alpha 1 chain 1 protein-coding - collagen alpha-1(XXIV) chain|collagen, type XXIV, alpha 1 162 0.02217 4.047 1 1 +255725 OR52B2 olfactory receptor family 52 subfamily B member 2 11 protein-coding OR11-70 olfactory receptor 52B2|olfactory receptor OR11-70 32 0.00438 0.06336 1 1 +255738 PCSK9 proprotein convertase subtilisin/kexin type 9 1 protein-coding FH3|HCHOLA3|LDLCQ1|NARC-1|NARC1|PC9 proprotein convertase subtilisin/kexin type 9|convertase subtilisin/kexin type 9 preproprotein|neural apoptosis regulated convertase 1|subtilisin/kexin-like protease PC9 51 0.006981 4.825 1 1 +255743 NPNT nephronectin 4 protein-coding EGFL6L|POEM nephronectin|preosteoblast EGF-like repeat protein with MAM domain 38 0.005201 9.626 1 1 +255758 TCTEX1D2 Tctex1 domain containing 2 3 protein-coding - tctex1 domain-containing protein 2 14 0.001916 6.857 1 1 +255762 PDZD9 PDZ domain containing 9 16 protein-coding C16orf65 PDZ domain-containing protein 9|PDZ domain-containing protein C16orf65 23 0.003148 0.8357 1 1 +255783 INAFM1 InaF motif containing 1 19 protein-coding PRR24 putative transmembrane protein INAFM1|inaF-motif-containing protein 1|proline rich 24|proline-rich protein 24 1 0.0001369 7.627 1 1 +255798 SMCO1 single-pass membrane protein with coiled-coil domains 1 3 protein-coding C3orf43 single-pass membrane and coiled-coil domain-containing protein 1 18 0.002464 0.5783 1 1 +255809 C19orf38 chromosome 19 open reading frame 38 19 protein-coding HIDE1 protein HIDE1|Highly expressed in immature dendritic cell transcript 1 6 0.0008212 4.52 1 1 +255812 SDHAP1 succinate dehydrogenase complex flavoprotein subunit A pseudogene 1 3 pseudo SDHAL1|SDHALP1 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 1|succinate dehydrogenase complex, subunit A, flavoprotein-like 1 212 0.02902 7.236 1 1 +255877 BCL6B B-cell CLL/lymphoma 6B 17 protein-coding BAZF|ZBTB28|ZNF62 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 39 0.005338 7.569 1 1 +255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 16 protein-coding C16orf69|NEP1-R1|NEP1R1|TMEM188|TMP125 nuclear envelope phosphatase-regulatory subunit 1|nuclear envelope phosphatase 1-regulatory subunit 1|transmembrane protein 188 6 0.0008212 7.962 1 1 +255926 ADAM5 ADAM metallopeptidase domain 5 (pseudogene) 8 pseudo ADAM5P|TMDCII a disintegrin and metalloproteinase domain 5|tMDC II 14 0.001916 0.05017 1 1 +255928 SYT14 synaptotagmin 14 1 protein-coding SCAR11|sytXIV synaptotagmin-14|synaptotagmin XIV 53 0.007254 2.72 1 1 +255967 PAN3 PAN3 poly(A) specific ribonuclease subunit 13 protein-coding - PAB-dependent poly(A)-specific ribonuclease subunit PAN3|PAB-dependent poly(A)-specific ribonuclease subunit 3|PAB1P-dependent poly(A)-nuclease|PABP-dependent poly(A) nuclease 3|PABP1-dependent poly A-specific ribonuclease subunit PAN3|PAN deadenylation complex subunit 3|PAN3 poly(A) specific ribonuclease subunit homolog 55 0.007528 9.553 1 1 +256006 ANKRD31 ankyrin repeat domain 31 5 protein-coding - putative ankyrin repeat domain-containing protein 31|ankyrin repeat domain-containing protein 31 15 0.002053 1.014 1 1 +256051 ZNF549 zinc finger protein 549 19 protein-coding - zinc finger protein 549 58 0.007939 7.026 1 1 +256076 COL6A5 collagen type VI alpha 5 chain 3 protein-coding COL29A1|VWA4 collagen alpha-5(VI) chain|collagen, type VI, alpha 5|collagen, type XXIX, alpha 1|von Willebrand factor A domain-containing protein 4 158 0.02163 1.741 1 1 +256126 SYCE2 synaptonemal complex central element protein 2 19 protein-coding CESC1 synaptonemal complex central element protein 2 15 0.002053 3.463 1 1 +256130 TMEM196 transmembrane protein 196 7 protein-coding - transmembrane protein 196 26 0.003559 0.8665 1 1 +256144 OR4C3 olfactory receptor family 4 subfamily C member 3 11 protein-coding OR11-98 olfactory receptor 4C3|olfactory receptor OR11-98 67 0.009171 0.02042 1 1 +256148 OR4S1 olfactory receptor family 4 subfamily S member 1 11 protein-coding OR11-100 olfactory receptor 4S1|olfactory receptor OR11-100 41 0.005612 0.00646 1 1 +256158 HMCN2 hemicentin 2 9 protein-coding - hemicentin-2 10 0.001369 1 0 +256190 OR4C50P olfactory receptor family 4 subfamily C member 50 pseudogene 11 pseudo - - 1 0.0001369 1 0 +256223 CDRT15L2 CMT1A duplicated region transcript 15-like 2 17 protein-coding - CMT1A duplicated region transcript 15 protein-like protein 6 0.0008212 1 0 +256227 STEAP1B STEAP family member 1B 7 protein-coding - STEAP family member 1B|STEAP family protein MGC87042 22 0.003011 4.263 1 1 +256236 NAPSB napsin B aspartic peptidase, pseudogene 19 pseudo NAP1L|NAP2|NAPB|NAPSBP napsin 2|napsin A aspartic peptidase pseudogene|napsin B pseudogene|napsin-A pseudogene|pronapsin B 5 0.0006844 6.622 1 1 +256281 NUDT14 nudix hydrolase 14 14 protein-coding UGPP|UGPPase uridine diphosphate glucose pyrophosphatase|UDP-sugar diphosphatase|UDPG pyrophosphatase|nudix (nucleoside diphosphate linked moiety X)-type motif 14 23 0.003148 8.699 1 1 +256297 PTF1A pancreas specific transcription factor, 1a 10 protein-coding PACA|PAGEN2|PTF1-p48|bHLHa29 pancreas transcription factor 1 subunit alpha|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 23 0.003148 0.3631 1 1 +256302 NATD1 N-acetyltransferase domain containing 1 17 protein-coding C17orf103|Gtlf3b protein NATD1|N-acetyltransferase domain-containing protein 1|gene trap locus F3b|protein GTLF3B|transcript expressed during hematopoiesis 2 6 0.0008212 8.434 1 1 +256309 CCDC110 coiled-coil domain containing 110 4 protein-coding CT52|KM-HN-1|KMHN1 coiled-coil domain-containing protein 110|cancer/testis antigen 52|cancer/testis antigen KM-HN-1 57 0.007802 4.29 1 1 +256329 LMNTD2 lamin tail domain containing 2 11 protein-coding C11orf35 lamin tail domain-containing protein 2 29 0.003969 5.195 1 1 +256355 RPS2P32 ribosomal protein S2 pseudogene 32 7 pseudo RPS2_14_794 - 1 0.0001369 3.731 1 1 +256356 GK5 glycerol kinase 5 (putative) 3 protein-coding - putative glycerol kinase 5|ATP:glycerol 3-phosphotransferase 5|GK 5|glycerokinase 5 29 0.003969 8.887 1 1 +256364 EML3 echinoderm microtubule associated protein like 3 11 protein-coding ELP95 echinoderm microtubule-associated protein-like 3|EMAP-3 57 0.007802 9.804 1 1 +256369 LINC00521 long intergenic non-protein coding RNA 521 14 ncRNA C14orf48|c14_5713 - 23 0.003148 0.1194 1 1 +256374 LOC256374 peptidylprolyl isomerase A (cyclophilin A) pseudogene 3 pseudo - - 0 0 1 0 +256380 SCML4 sex comb on midleg-like 4 (Drosophila) 6 protein-coding dJ47M23.1 sex comb on midleg-like protein 4 39 0.005338 4.099 1 1 +256394 SERPINA11 serpin family A member 11 14 protein-coding - serpin A11|antiproteinase-like 2|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 45 0.006159 2.179 1 1 +256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 1 protein-coding PRO7177|SIAT7C|ST6GALNACIII|STY alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3|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|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3|ST6 GalNAc alpha-2,6-sialyltransferase 3|ST6GALNAC III|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 67 0.009171 5.578 1 1 +256471 MFSD8 major facilitator superfamily domain containing 8 4 protein-coding CCMD|CLN7 major facilitator superfamily domain-containing protein 8|ceroid-lipofuscinosis, neuronal 7, late infantile 41 0.005612 8.167 1 1 +256472 TMEM151A transmembrane protein 151A 11 protein-coding TMEM151 transmembrane protein 151A|transmembrane protein 151 26 0.003559 3.408 1 1 +256536 TCERG1L transcription elongation regulator 1 like 10 protein-coding - transcription elongation regulator 1-like protein|5730476P14Rik 55 0.007528 2.607 1 1 +256586 LYSMD2 LysM domain containing 2 15 protein-coding - lysM and putative peptidoglycan-binding domain-containing protein 2|LysM, putative peptidoglycan-binding, domain containing 2 11 0.001506 7.861 1 1 +256643 CXorf23 chromosome X open reading frame 23 X protein-coding - uncharacterized protein CXorf23 41 0.005612 7.39 1 1 +256646 NUTM1 NUT midline carcinoma family member 1 15 protein-coding C15orf55|FAM22H|NUT NUT family member 1|nuclear protein in testis 84 0.0115 0.7817 1 1 +256691 MAMDC2 MAM domain containing 2 9 protein-coding - MAM domain-containing protein 2|MAM domain containing 1|MAM domain-containing proteoglycan|mamcan 49 0.006707 5.391 1 1 +256710 GLIPR1L1 GLI pathogenesis related 1 like 1 12 protein-coding ALKN2972|PRO7434 GLIPR1-like protein 1 15 0.002053 0.4411 1 1 +256714 MAP7D2 MAP7 domain containing 2 X protein-coding - MAP7 domain-containing protein 2|MAP7 domain containing 2 brain|MAP7 domain containing 2 protein varaint 1|MAP7 domain containing 2 protein varaint 2|MAP7 domain-containing protein 2 brain specific variant 1|MAP7 domain-containing protein 2 brain specific variant 2 58 0.007939 4.639 1 1 +256764 WDR72 WD repeat domain 72 15 protein-coding AI2A3 WD repeat-containing protein 72 121 0.01656 5.791 1 1 +256815 C10orf67 chromosome 10 open reading frame 67 10 protein-coding C10orf115|LINC01552|bA215C7.4 uncharacterized protein C10orf67, mitochondrial|long intergenic non-protein coding RNA 1552|uncharacterized protein C10orf67 9 0.001232 1.878 1 1 +256880 LOC256880 uncharacterized LOC256880 4 ncRNA - - 2.249 0 1 +256892 OR51F1 olfactory receptor family 51 subfamily F member 1 (gene/pseudogene) 11 protein-coding OR11-21|OR51F1P olfactory receptor 51F1|olfactory receptor OR11-21 pseudogene|olfactory receptor, family 51, subfamily F, member 1 pseudogene 54 0.007391 0.03239 1 1 +256933 NPB neuropeptide B 17 protein-coding L7|PPL7|PPNPB neuropeptide B|prepro-NPB|preproneuropeptide B|preproprotein L7 3 0.0004106 2.448 1 1 +256949 KANK3 KN motif and ankyrin repeat domains 3 19 protein-coding ANKRD47 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 45 0.006159 6.759 1 1 +256957 HEATR9 HEAT repeat containing 9 17 protein-coding C17orf66 protein HEATR9|HEAT repeat-containing protein 9 42 0.005749 0.5323 1 1 +256979 SUN3 Sad1 and UNC84 domain containing 3 7 protein-coding SUNC1 SUN domain-containing protein 3|Sad1 and UNC84 domain containing 1|hypothetical protein MGC33329|sad1/unc-84 domain-containing protein 1 37 0.005064 0.7523 1 1 +256987 SERINC5 serine incorporator 5 5 protein-coding C5orf12|TPO1 serine incorporator 5 22 0.003011 7.207 1 1 +257000 TINCR tissue differentiation-inducing non-protein coding RNA 19 ncRNA LINC00036|NCRNA00036|PLAC2|onco-lncRNA-16 long intergenic non-protein coding RNA 36|placenta-specific 2 (non-protein coding)|terminal differentiation-induced ncRNA 4 0.0005475 5.569 1 1 +257019 FRMD3 FERM domain containing 3 9 protein-coding 4.1O|EPB41L4O|EPB41LO|P410 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 52 0.007117 4.746 1 1 +257044 C1orf101 chromosome 1 open reading frame 101 1 protein-coding - uncharacterized protein C1orf101 61 0.008349 3.051 1 1 +257062 CATSPERD cation channel sperm associated auxiliary subunit delta 19 protein-coding TMEM146 cation channel sperm-associated protein subunit delta|catSper-delta|catSperdelta|catsper channel auxiliary subunit delta|transmembrane protein 146 80 0.01095 0.4259 1 1 +257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 3 protein-coding - PI-PLC X domain-containing protein 2 33 0.004517 5.544 1 1 +257101 ZNF683 zinc finger protein 683 1 protein-coding Hobit zinc finger protein 683|homolog of Blimp-1 in T cells|hypothetical protein MGC33414 41 0.005612 4.005 1 1 +257106 ARHGAP30 Rho GTPase activating protein 30 1 protein-coding - rho GTPase-activating protein 30|rho-type GTPase-activating protein 30 85 0.01163 8.578 1 1 +257144 GCSAM germinal center associated signaling and motility 3 protein-coding GCAT2|GCET2|HGAL germinal center-associated signaling and motility protein|germinal center B-cell-expressed transcript 2 protein|germinal center expressed transcript 2|germinal center-associated lymphoma protein|human germinal center-associated lymphoma 19 0.002601 4.494 1 1 +257160 RNF214 ring finger protein 214 11 protein-coding - RING finger protein 214 35 0.004791 8.319 1 1 +257169 C9orf43 chromosome 9 open reading frame 43 9 protein-coding - uncharacterized protein C9orf43 54 0.007391 3.319 1 1 +257177 CFAP126 cilia and flagella associated protein 126 1 protein-coding C1orf192|Flattop|Fltp protein Flattop|UPF0740 protein C1orf192 14 0.001916 4.444 1 1 +257194 NEGR1 neuronal growth regulator 1 1 protein-coding DMML2433|IGLON4|KILON|Ntra neuronal growth regulator 1|IgLON family member 4|a kindred of IgLON|neurotractin 54 0.007391 5.965 1 1 +257202 GPX6 glutathione peroxidase 6 6 protein-coding GPX5p|GPXP3|GPx-6|GSHPx-6|dJ1186N24|dJ1186N24.1 glutathione peroxidase 6|glutathione peroxidase 6 (olfactory)|glutathione peroxidase pseudogene 3 23 0.003148 0.07218 1 1 +257203 DSCR9 Down syndrome critical region 9 (non-protein coding) 21 ncRNA NCRNA00038 Down syndrome critical region gene 9 (non-protein coding) 17 0.002327 1.763 1 1 +257218 SHPRH SNF2 histone linker PHD RING helicase 6 protein-coding bA545I5.2 E3 ubiquitin-protein ligase SHPRH|2610103K11Rik|SNF2 histone linker PHD RING helicase, E3 ubiquitin protein ligase|SNF2, histone-linker, PHD and RING finger domain-containing helicase 126 0.01725 7.625 1 1 +257236 CCDC96 coiled-coil domain containing 96 4 protein-coding - coiled-coil domain-containing protein 96 44 0.006022 5.821 1 1 +257240 KLHL34 kelch like family member 34 X protein-coding - kelch-like protein 34|RP11-450P7.3|kelch-like 34 58 0.007939 1.297 1 1 +257313 UTS2B urotensin 2B 3 protein-coding U2B|URP|UTS2D urotensin-2B|U-IIB|UIIB|prepro-URP|urotensin 2 domain containing|urotensin II-related peptide|urotensin IIB|urotensin-2 domain-containing protein 12 0.001642 1.69 1 1 +257358 LINC01366 long intergenic non-protein coding RNA 1366 5 ncRNA - CTB-114C7.3 1.694 0 1 +257364 SNX33 sorting nexin 33 15 protein-coding SH3PX3|SH3PXD3C|SNX30 sorting nexin-33|SH3 and PX domain containing 3|SH3 and PX domain-containing protein 3 33 0.004517 9.701 1 1 +257396 LOC257396 uncharacterized LOC257396 5 ncRNA - CTD-2366F13.1 1 0.0001369 1 0 +257397 TAB3 TGF-beta activated kinase 1/MAP3K7 binding protein 3 X protein-coding MAP3K7IP3|NAP1 TGF-beta-activated kinase 1 and MAP3K7-binding protein 3|NF-kappa-B-activating protein 1|NFkB activating protein 1|TAB-3|TAK1-binding protein 3|TGF-beta-activated kinase 1-binding protein 3|mitogen-activated protein kinase kinase kinase 7 interacting protein 3 63 0.008623 9.467 1 1 +257407 C2orf72 chromosome 2 open reading frame 72 2 protein-coding - uncharacterized protein C2orf72 2 0.0002737 6.195 1 1 +257415 FAM133B family with sequence similarity 133 member B 7 protein-coding - protein FAM133B 15 0.002053 6.599 1 1 +257468 MEIS3P2 Meis homeobox 3 pseudogene 2 17 pseudo - Meis1 homolog 3 pseudogene 2|putative homeobox protein Meis3-like 2 3 0.0004106 1 0 +257629 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B 16 protein-coding HARP ankyrin repeat and SAM domain-containing protein 4B|harmonin-interacting ankyrin-repeat containing protein 34 0.004654 2.276 1 1 +258010 SVIP small VCP interacting protein 11 protein-coding - small VCP/p97-interacting protein 9 0.001232 8.194 1 1 +259173 ALS2CL ALS2 C-terminal like 3 protein-coding RN49018 ALS2 C-terminal-like protein 57 0.007802 8.055 1 1 +259197 NCR3 natural cytotoxicity triggering receptor 3 6 protein-coding 1C7|CD337|LY117|MALS|NKp30 natural cytotoxicity triggering receptor 3|NK-p30|activating NK-A1 receptor|activating natural killer receptor p30|lymphocyte antigen 117|natural killer cell p30-related protein 9 0.001232 2.632 1 1 +259215 LY6G6F lymphocyte antigen 6 complex, locus G6F 6 protein-coding C6orf21|G6f|LY6G6D|NG32 lymphocyte antigen 6 complex locus protein G6f|lymphocyte antigen 6 complex, locus G6D 12 0.001642 0.3379 1 1 +259217 HSPA12A heat shock protein family A (Hsp70) member 12A 10 protein-coding - heat shock 70 kDa protein 12A|heat shock 70kD protein 12A|heat shock 70kDa protein 12A 79 0.01081 7.686 1 1 +259230 SGMS1 sphingomyelin synthase 1 10 protein-coding MOB|MOB1|SMS1|TMEM23|hmob33 phosphatidylcholine:ceramide cholinephosphotransferase 1|medulla oblongata-derived protein|protein Mob|transmembrane protein 23 37 0.005064 9.267 1 1 +259232 NALCN sodium leak channel, non-selective 13 protein-coding CLIFAHDD|CanIon|IHPRF|IHPRF1|INNFD|VGCNL1|bA430M15.1 sodium leak channel non-selective protein|four repeat voltage-gated ion channel|voltage gated channel like 1|voltage gated channel-like protein 1 259 0.03545 4.647 1 1 +259234 DSCR10 Down syndrome critical region 10 (non-protein coding) 21 ncRNA - Down syndrome critical region gene 10 (non-protein coding) 12 0.001642 0.1352 1 1 +259236 TMIE transmembrane inner ear 3 protein-coding DFNB6 transmembrane inner ear expressed protein|transmembrane inner ear protein 8 0.001095 3.945 1 1 +259239 WFDC11 WAP four-disulfide core domain 11 20 protein-coding WAP11 protein WFDC11|protease inhibitor WAP11 5 0.0006844 0.07253 1 1 +259240 WFDC9 WAP four-disulfide core domain 9 20 protein-coding WAP9|dJ688G8.2 protein WFDC9 6 0.0008212 0.01489 1 1 +259249 MRGPRX1 MAS related GPR family member X1 11 protein-coding GPCR|MGRG2|MRGX1|SNSR4 mas-related G-protein coupled receptor member X1|G protein-coupled receptor MRGX1|G protein-coupled receptor SNSR3|MAS-related GPR, member X1|Mas-related G protein-coupled receptor G2|sensory neuron-specific G-protein coupled receptor 3/4 66 0.009034 0.0648 1 1 +259266 ASPM abnormal spindle microtubule assembly 1 protein-coding ASP|Calmbp1|MCPH5 abnormal spindle-like microcephaly-associated protein|asp (abnormal spindle) homolog, microcephaly associated 277 0.03791 7.997 1 1 +259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 4 protein-coding BOD1L|FAM44A biorientation of chromosomes in cell division protein 1-like 1|biorientation of chromosomes in cell division 1-like|family with sequence similarity 44, member A 205 0.02806 9.981 1 1 +259283 MDS2 myelodysplastic syndrome 2 translocation associated 1 ncRNA - - 12 0.001642 1.025 1 1 +259285 TAS2R39 taste 2 receptor member 39 7 protein-coding T2R39|T2R57 taste receptor type 2 member 39|taste receptor type 2 member 57|taste receptor, type 2, member 39 21 0.002874 0.03117 1 1 +259286 TAS2R40 taste 2 receptor member 40 7 protein-coding GPR60|T2R40|T2R58 taste receptor type 2 member 40|G-protein coupled receptor 60|taste receptor type 2 member 58|taste receptor, type 2, member 40 30 0.004106 0.1057 1 1 +259287 TAS2R41 taste 2 receptor member 41 7 protein-coding T2R41|T2R59 taste receptor type 2 member 41|taste receptor type 2 member 59|taste receptor, type 2, member 41 48 0.00657 0.03272 1 1 +259289 TAS2R43 taste 2 receptor member 43 12 protein-coding T2R43|T2R52 taste receptor type 2 member 43|taste receptor type 2 member 52|taste receptor, type 2, member 43 27 0.003696 0.3835 1 1 +259290 TAS2R31 taste 2 receptor member 31 12 protein-coding T2R31|T2R44|T2R53|TAS2R44 taste receptor type 2 member 31|taste receptor type 2 member 44|taste receptor type 2 member 53|taste receptor, type 2, member 31 26 0.003559 1.38 1 1 +259292 TAS2R46 taste 2 receptor member 46 12 protein-coding T2R46|T2R54 taste receptor type 2 member 46|taste receptor type 2 member 54|taste receptor, type 2, member 46 20 0.002737 0.2505 1 1 +259293 TAS2R30 taste 2 receptor member 30 12 protein-coding T2R30|T2R47|TAS2R47 taste receptor type 2 member 30|taste receptor T2R47|taste receptor type 2 member 47|taste receptor, type 2, member 30|type 2 taste receptor member 30|type 2 taste receptor member 47 28 0.003832 0.2001 1 1 +259294 TAS2R19 taste 2 receptor member 19 12 protein-coding MSTP058|T2R19|T2R23|T2R48|TAS2R23|TAS2R48 taste receptor type 2 member 19|taste receptor, type 2, member 19|taste receptor, type 2, member 23|taste receptor, type 2, member 48 28 0.003832 1.186 1 1 +259295 TAS2R20 taste 2 receptor member 20 12 protein-coding T2R20|T2R49|T2R56|TAS2R49 taste receptor type 2 member 20|taste receptor type 2 member 56|taste receptor, type 2, member 49 24 0.003285 4.166 1 1 +259296 TAS2R50 taste 2 receptor member 50 12 protein-coding T2R50|T2R51|TAS2R51 taste receptor type 2 member 50|taste receptor type 2 member 51|taste receptor, type 2, member 50 17 0.002327 0.307 1 1 +259307 IL4I1 interleukin 4 induced 1 19 protein-coding FIG1|LAAO|LAO L-amino-acid oxidase|Fig-1 protein|IL4-induced protein 1|interleukin four induced 1 31 0.004243 7.14 1 1 +259308 FAM205A family with sequence similarity 205 member A 9 protein-coding C9orf144B protein FAM205A|transmembrane protein C9orf144B 33 0.004517 0.6116 1 1 +260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 1 protein-coding CYPIVX1 cytochrome P450 4X1|cytochrome P450, family 4, subfamily X, polypeptide 1 40 0.005475 6.134 1 1 +260294 NSUN5P2 NOP2/Sun RNA methyltransferase family member 5 pseudogene 2 7 pseudo NOL1R2|NSUN5C|WBSCR20B|WBSCR20C NOL1/NOP2/Sun domain family, member 5C|NOP2/Sun domain family, member 5 pseudogene 2|NOP2/Sun domain family, member 5C (pseudogene)|Williams Beuren syndrome chromosome region 20C 6 0.0008212 8.329 1 1 +260341 TFAMP1 transcription factor A, mitochondrial pseudogene 1 7 pseudo MTTF1|TCF6L1 processed pseudogene mtTFA 1|transcription factor 6-like 1 (mitochondrial transcription factor 1-like) 0.6019 0 1 +260425 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 1 protein-coding MAGI-3|dJ730K3.2 membrane-associated guanylate kinase, WW and PDZ domain-containing protein 3|membrane-associated guanylate kinase inverted 3|membrane-associated guanylate kinase-related 3 86 0.01177 8.659 1 1 +260429 PRSS33 protease, serine 33 16 protein-coding EOS serine protease 33|serine protease EOS 14 0.001916 1.304 1 1 +260434 PYDC1 pyrin domain containing 1 16 protein-coding ASC2|POP1|PYC1|cPOP1 pyrin domain-containing protein 1|PAAD-only protein 1|PYD (pyrin domain) containing 1|cellular POP1|pyrin-only protein 1 14 0.001916 1.095 1 1 +260436 FDCSP follicular dendritic cell secreted protein 4 protein-coding C4orf7|FDC-SP follicular dendritic cell secreted peptide|FDC secreted protein 11 0.001506 2.777 1 1 +261726 TIPRL TOR signaling pathway regulator 1 protein-coding TIP|TIP41|TIPRL1 TIP41-like protein|TIP41, TOR signaling pathway regulator-like|putative MAPK-activating protein PM10|type 2A-interacting protein 23 0.003148 9.918 1 1 +261729 STEAP2 STEAP2 metalloreductase 7 protein-coding IPCA1|PCANAP1|PUMPCn|STAMP1|STMP metalloreductase STEAP2|STEAP family member 2, metalloreductase|SixTransMembrane Protein of Prostate 1|prostate cancer-associated protein 1|protein up-regulated in metastatic prostate cancer|protein upregulated in metastatic prostate cancer|six transmembrane epithelial antigen of the prostate 2|six-transmembrane epithelial antigen of prostate 2 35 0.004791 8.349 1 1 +261734 NPHP4 nephrocystin 4 1 protein-coding POC10|SLSN4 nephrocystin-4|POC10 centriolar protein homolog|nephronophthisis 4|nephroretinin 92 0.01259 8.074 1 1 +266553 OFCC1 orofacial cleft 1 candidate 1 6 protein-coding MRDS1 orofacial cleft 1 candidate gene 1 protein|orofacial clefting chromosomal breakpoint region candidate 1 protein 16 0.00219 1 0 +266629 SEC14L3 SEC14 like lipid binding 3 22 protein-coding TAP2 SEC14-like protein 3|SEC14-like 3|SEC14p-like protein TAP2|tocopherol-associated protein 2 37 0.005064 0.4832 1 1 +266655 LINC00094 long intergenic non-protein coding RNA 94 9 ncRNA LP2477|NCRNA00094|bA374P20.3 - 2 0.0002737 9.337 1 1 +266675 BEST4 bestrophin 4 1 protein-coding VMD2L2 bestrophin-4|vitelliform macular dystrophy 2-like 2|vitelliform macular dystrophy 2-like protein 2 26 0.003559 3.308 1 1 +266695 PHF2P1 PHD finger protein 2 pseudogene 1 13 pseudo DKFZp686A1627 - 1 0.0001369 0.471 1 1 +266697 POM121L4P POM121 transmembrane nucleoporin like 4, pseudogene 22 pseudo - POM121 membrane glycoprotein-like 4 pseudogene 4 0.0005475 0.2494 1 1 +266722 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 13 protein-coding HS6ST-3 heparan-sulfate 6-O-sulfotransferase 3 39 0.005338 3.916 1 1 +266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 6 protein-coding GPIM|MAMDC3 MAM domain-containing glycosylphosphatidylinositol anchor protein 1|GPI and MAM protein|MAM domain-containing protein 3|glycosyl-phosphatidyl-inositol-MAM|glycosylphosphatidylinositol-MAM 80 0.01095 6.936 1 1 +266743 NPAS4 neuronal PAS domain protein 4 11 protein-coding Le-PAS|NXF|PASD10|bHLHe79 neuronal PAS domain-containing protein 4|HLH-PAS transcription factor NXF|PAS domain-containing protein 10|class E basic helix-loop-helix protein 79|neuronal PAS4 98 0.01341 1.338 1 1 +266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 22 protein-coding Rgr ral-GDS-related protein|Ral-GDS related protein Rgr|RalGDS related oncogene|ralGDS-like 4 29 0.003969 3.087 1 1 +266812 NAP1L5 nucleosome assembly protein 1 like 5 4 protein-coding DRLM nucleosome assembly protein 1-like 5|down-regulated in liver malignancy 16 0.00219 7.022 1 1 +266954 CABYRP1 calcium binding tyrosine phosphorylation regulated pseudogene 1 3 pseudo CABYRP calcium binding tyrosine-(Y)-phosphorylation regulated (fibrousheathin 2) pseudogene|calcium binding tyrosine-(Y)-phosphorylation regulated pseudogene 1|calcium-binding tyrosine phosphorylation-regulated protein pseudogene 1 0.0001369 1 0 +266971 PIPSL PIP5K1A and PSMD4-like, pseudogene 10 pseudo PIP5K1L1|PIP5K1P3|PSMD4P2|bA429H9.1 PIP5K1A-PSMD4|phosphatidylinositol-4-phosphate 5-kinase, type I, alpha pseudogene|phosphatidylinositol-4-phosphate 5-kinase, type I-like 1|proteasome (prosome, macropain) 26S subunit, non-ATPase, 4, pseudogene 2|proteasome 26S non-ATPase subunit 4 pseudogene|putative PIP5K1A and PSMD4-like protein 88 0.01204 7.616 1 1 +266977 ADGRF1 adhesion G protein-coupled receptor F1 6 protein-coding GPR110|KPG_012|PGR19|hGPCR36 adhesion G-protein coupled receptor F1|G protein-coupled receptor 110|G protein-coupled receptor PGR19|G-protein coupled receptor KPG_012|probable G-protein coupled receptor 110|seven transmembrane helix receptor 73 0.009992 4.498 1 1 +267002 PGBD2 piggyBac transposable element derived 2 1 protein-coding - piggyBac transposable element-derived protein 2 57 0.007802 7.059 1 1 +267004 PGBD3 piggyBac transposable element derived 3 10 protein-coding - piggyBac transposable element-derived protein 3 13 0.001779 6.465 1 1 +267012 DAOA D-amino acid oxidase activator 13 protein-coding LG72|SG72 D-amino acid oxidase activator|G72 transcript|schizophrenia- and bipolar disorder-associated protein G72 24 0.003285 0.0123 1 1 +267020 ATP5L2 ATP synthase, H+ transporting, mitochondrial Fo complex subunit G2 22 protein-coding ATP5K2 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 4 0.0005475 0.7337 1 1 +280636 SELENOH selenoprotein H 11 protein-coding C11orf31|C17orf10|SELH selenoprotein H 6 0.0008212 10.11 1 1 +280655 IGBP1P1 immunoglobulin (CD79A) binding protein 1 pseudogene 1 14 pseudo C14orf19 - 2.53 0 1 +280657 SSX6 SSX family member 6, pseudogene X pseudo SSX6P|SSXP2|dJ54B20.1|psiSSX2 SSX family pseudogene 2|SSX2 pseudogene|synovial sarcoma X breakpoint 6 protein|synovial sarcoma, X breakpoint 6 (pseudogene) 13 0.001779 0.5469 1 1 +280658 SSX7 SSX family member 7 X protein-coding - protein SSX7|synovial sarcoma, X breakpoint 7 23 0.003148 0.07393 1 1 +280659 SSX8 SSX family member 8 X pseudo - synovial sarcoma, X breakpoint 8 4 0.0005475 0.2338 1 1 +280660 SSX9 SSX family member 9, pseudogene X pseudo SSX9P SSX family member 9|synovial sarcoma, X breakpoint 7, pseudogene|synovial sarcoma, X breakpoint 9 10 0.001369 0.1188 1 1 +280664 WFDC10B WAP four-disulfide core domain 10B 20 protein-coding WAP12 protein WFDC10B|protease inhibitor WAP12 6 0.0008212 0.818 1 1 +282566 LINC00515 long intergenic non-protein coding RNA 515 21 ncRNA C21orf71|PRED21 - 1.46 0 1 +282616 IFNL2 interferon lambda 2 19 protein-coding IL-28A|IL28A interferon lambda-2|IFN-lambda-2|cytokine Zcyto20|interleukin 28A (interferon, lambda 2)|interleukin-28A 24 0.003285 0.1955 1 1 +282617 IFNL3 interferon lambda 3 19 protein-coding IFN-lambda-3|IFN-lambda-4|IL-28B|IL-28C|IL28B|IL28C interferon lambda-3|cytokine Zcyto22|interferon, lambda 4|interleukin-28B|interleukin-28C 31 0.004243 0.1612 1 1 +282618 IFNL1 interferon lambda 1 19 protein-coding IL-29|IL29 interferon lambda-1|IFN-lambda-1|cytokine Zcyto21|interleukin 29 (interferon, lambda 1)|interleukin-29 12 0.001642 0.6056 1 1 +282679 AQP11 aquaporin 11 11 protein-coding AQPX1 aquaporin-11|AQP-11 11 0.001506 5.225 1 1 +282706 DAOA-AS1 DAOA antisense RNA 1 13 ncRNA DAOA-AS|DAOAAS|G30 DAOA antisense RNA 1 (non-protein coding)|G30 transcript|putative protein LG30 6 0.0008212 1 0 +282763 OR51B5 olfactory receptor family 51 subfamily B member 5 11 protein-coding HOR5'Beta5|OR11-37 olfactory receptor 51B5|odorant receptor HOR5'beta5|olfactory receptor OR11-37 43 0.005886 0.3298 1 1 +282770 OR10AG1 olfactory receptor family 10 subfamily AG member 1 11 protein-coding OR11-160 olfactory receptor 10AG1|olfactory receptor OR11-160 65 0.008897 0.01583 1 1 +282775 OR5J2 olfactory receptor family 5 subfamily J member 2 11 protein-coding OR11-266 olfactory receptor 5J2|olfactory receptor OR11-266 81 0.01109 0.0242 1 1 +282786 OR8G7P olfactory receptor family 8 subfamily G member 7 pseudogene 11 pseudo - - 1 0.0001369 1 0 +282808 RAB40AL RAB40A, member RAS oncogene family-like X protein-coding MRXSMP|RAR2|RLGP ras-related protein Rab-40A-like|Ras like GTPase|SOCS box containing protein RAR2|ras-like GTPase 20 0.002737 2.207 1 1 +282809 POC1B POC1 centriolar protein B 12 protein-coding CORD20|PIX1|TUWD12|WDR51B POC1 centriolar protein homolog B|WD repeat-containing protein 51B|proteome of centriole protein 1B 24 0.003285 8.558 1 1 +282890 ZNF311 zinc finger protein 311 6 protein-coding zf31 zinc finger protein 311|zinc finger protein zfp31 48 0.00657 5.162 1 1 +282966 C10orf53 chromosome 10 open reading frame 53 10 protein-coding - UPF0728 protein C10orf53 22 0.003011 0.1659 1 1 +282969 FUOM fucose mutarotase 10 protein-coding C10orf125|FUCU|FucM fucose mutarotase|protein fucU homolog 7 0.0009581 6.845 1 1 +282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 10 protein-coding C10orf14|C10orf39|Jamip3|NECC2|bA140A10.5 janus kinase and microtubule-interacting protein 3|neuroendocrine long coiled-coil 2|neuroendocrine long coiled-coil protein 2 60 0.008212 3.966 1 1 +282974 STK32C serine/threonine kinase 32C 10 protein-coding PKE|YANK3 serine/threonine-protein kinase 32C|PKE protein kinase|testicular tissue protein Li 187|yet another novel kinase 3 26 0.003559 7.342 1 1 +282980 LINC00700 long intergenic non-protein coding RNA 700 10 ncRNA - - 1 0.0001369 1 0 +282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 10 protein-coding BLOS2|BORCS2|CEAP|CEAP11 biogenesis of lysosome-related organelles complex 1 subunit 2|11 kDa centrosome associated protein|BLOC-1 subunit 2|centrosomal 10 kDa protein|centrosome protein oncogene 13 0.001779 9.56 1 1 +282996 RBM20 RNA binding motif protein 20 10 protein-coding - RNA-binding protein 20|probable RNA-binding protein 20 29 0.003969 4.353 1 1 +282997 PDCD4-AS1 PDCD4 antisense RNA 1 10 ncRNA - - 5.777 0 1 +283008 NUTM2E NUT family member 2E 10 pseudo FAM22E family with sequence similarity 22, member E 1 0.0001369 1 0 +283011 FLJ37201 tigger transposable element derived 2 pseudogene 10 pseudo - - 3.354 0 1 +283025 LINC01553 long intergenic non-protein coding RNA 1553 10 ncRNA C10orf40 - 3 0.0004106 0.05536 1 1 +283038 LOC283038 uncharacterized LOC283038 10 ncRNA - - 1 0.0001369 1 0 +283050 ZMIZ1-AS1 ZMIZ1 antisense RNA 1 10 ncRNA - - 0 0 4.396 1 1 +283070 8.156 0 1 +283078 MKX mohawk homeobox 10 protein-coding C10orf48|IFRX|IRXL1 homeobox protein Mohawk|Iroquois family related homeodomain protein|iroquois homeobox protein-like 1 29 0.003969 4.428 1 1 +283080 C10orf126 chromosome 10 open reading frame 126 10 protein-coding bA492M23.1 putative uncharacterized protein C10orf126 2 0.0002737 1 0 +283089 WDR11-AS1 WDR11 antisense RNA 1 10 ncRNA - WDR11 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +283092 OR4C13 olfactory receptor family 4 subfamily C member 13 11 protein-coding - olfactory receptor 4C13|olfactory receptor OR11-260 61 0.008349 0.008954 1 1 +283093 OR4C12 olfactory receptor family 4 subfamily C member 12 11 protein-coding OR11-259 olfactory receptor 4C12|olfactory receptor OR11-259|seven transmembrane helix receptor 57 0.007802 0.01264 1 1 +283102 KRT8P41 keratin 8 pseudogene 41 11 pseudo - - 1.683 0 1 +283106 CSNK2A3 casein kinase 2 alpha 3 11 protein-coding CSNK2A1P casein kinase 2, alpha 1 polypeptide-like|casein kinase 2, alpha 1 polypeptide pseudogene|casein kinase 2, alpha 3 polypeptide 21 0.002874 8.712 1 1 +283111 OR51V1 olfactory receptor family 51 subfamily V member 1 11 protein-coding OR11-36|OR51A12 olfactory receptor 51V1|odorant receptor HOR3'beta1|olfactory receptor 51A12|olfactory receptor OR11-36 61 0.008349 0.01987 1 1 +283116 TRIM49B tripartite motif containing 49B 11 protein-coding - tripartite motif-containing protein 7 0.0009581 1 0 +283120 H19 H19, imprinted maternally expressed transcript (non-protein coding) 11 ncRNA ASM|ASM1|BWS|D11S813E|LINC00008|NCRNA00008|WT2 H19, imprinted maternally expressed untranslated mRNA|long intergenic non-protein coding RNA 8 6 0.0008212 10.32 1 1 +283129 MAJIN membrane anchored junction protein 11 protein-coding C11orf85 membrane-anchored junction protein|uncharacterized protein C11orf85 15 0.002053 0.8913 1 1 +283130 SLC25A45 solute carrier family 25 member 45 11 protein-coding - solute carrier family 25 member 45 21 0.002874 6.965 1 1 +283131 NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) 11 ncRNA LINC00084|NCRNA00084|TncRNA|VINC MENepsilon/beta|long intergenic non-protein coding RNA 84|nuclear enriched abundant transcript 1|trophoblast MHC class II suppressor|trophoblast-derived noncoding RNA|virus inducible non-coding RNA 6 0.0008212 12.75 1 1 +283143 LINC00900 long intergenic non-protein coding RNA 900 11 ncRNA - CTC-774J1.2 0 0 1 0 +283149 BCL9L B-cell CLL/lymphoma 9-like 11 protein-coding BCL9-2|DLNB11 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 118 0.01615 10.78 1 1 +283150 FOXR1 forkhead box R1 11 protein-coding DLNB13|FOXN5 forkhead box protein R1|forkhead box R1 variant 1|forkhead box R1 variant 2|forkhead box protein N5 15 0.002053 0.2827 1 1 +283152 CCDC153 coiled-coil domain containing 153 11 protein-coding - coiled-coil domain-containing protein 153 24 0.003285 3.587 1 1 +283159 OR8D1 olfactory receptor family 8 subfamily D member 1 11 protein-coding JCG9|OR8D3|OST004|PDJ9J14 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 57 0.007802 0.06136 1 1 +283160 OR8D2 olfactory receptor family 8 subfamily D member 2 (gene/pseudogene) 11 protein-coding JCG2 olfactory receptor 8D2|olfactory receptor OR11-303|olfactory receptor, family 8, subfamily D, member 2|olfactory receptor-like protein JCG2 49 0.006707 0.03141 1 1 +283162 OR8B4 olfactory receptor family 8 subfamily B member 4 (gene/pseudogene) 11 protein-coding OR11-315|OR8B4P olfactory receptor 8B4|olfactory receptor OR11-315|olfactory receptor, family 8, subfamily B, member 4 pseudogene 53 0.007254 0.01207 1 1 +283165 KIRREL3-AS3 KIRREL3 antisense RNA 3 11 ncRNA NCRNA00288|PRR10 KIRREL3 antisense RNA 3 (non-protein coding)|proline rich 10 4 0.0005475 1 0 +283171 C11orf44 chromosome 11 open reading frame 44 11 protein-coding - uncharacterized protein C11orf44 0 0 1 0 +283174 MIR4697HG MIR4697 host gene 11 ncRNA LINC00947 MIR4697 host gene (non-protein coding)|long intergenic non-protein coding RNA 947 5.879 0 1 +283189 OR9G4 olfactory receptor family 9 subfamily G member 4 11 protein-coding OR11-216 olfactory receptor 9G4|olfactory receptor OR11-216 44 0.006022 0.01351 1 1 +283194 LOC283194 uncharacterized LOC283194 11 ncRNA - - 1 0.0001369 1 0 +283197 LINC00301 long intergenic non-protein coding RNA 301 11 ncRNA C11orf64|NCRNA00301 - 3 0.0004106 0.01024 1 1 +283208 P4HA3 prolyl 4-hydroxylase subunit alpha 3 11 protein-coding - prolyl 4-hydroxylase subunit alpha-3|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|prolyl 4-hydroxylase, alpha polypeptide III 34 0.004654 5.589 1 1 +283209 PGM2L1 phosphoglucomutase 2 like 1 11 protein-coding BM32A|PMMLP glucose 1,6-bisphosphate synthase 33 0.004517 8.623 1 1 +283212 KLHL35 kelch like family member 35 11 protein-coding - kelch-like protein 35|kelch-like 35 22 0.003011 4.999 1 1 +283219 KCTD21 potassium channel tetramerization domain containing 21 11 protein-coding KCASH2 BTB/POZ domain-containing protein KCTD21|potassium channel tetramerisation domain containing 21 26 0.003559 8.442 1 1 +283229 CRACR2B calcium release activated channel regulator 2B 11 protein-coding EFCAB4A EF-hand calcium-binding domain-containing protein 4A|CRAC channel regulator 2B|CRAC regulator 2B|Ca2+ release-activated Ca2+ (CRAC) channel regulator 2B|EF-hand calcium binding domain 4A|calcium release-activated calcium channel regulator 2B 21 0.002874 7.642 1 1 +283232 TMEM80 transmembrane protein 80 11 protein-coding - transmembrane protein 80 11 0.001506 8.165 1 1 +283234 CCDC88B coiled-coil domain containing 88B 11 protein-coding BRLZ|CCDC88|HKRP3|gipie coiled-coil domain-containing protein 88B|78 kDa glucose-regulated protein [GRP78]-interacting protein induced by ER stress|GRP78-interacting protein induced by ER stress|brain leucine zipper domain-containing protein|brain leucine zipper protein|coiled-coil domain containing 88|hook-related protein 3 86 0.01177 8.114 1 1 +283237 TTC9C tetratricopeptide repeat domain 9C 11 protein-coding - tetratricopeptide repeat protein 9C|TPR repeat protein 9C 8 0.001095 8.196 1 1 +283238 SLC22A24 solute carrier family 22 member 24 11 protein-coding NET46 solute carrier family 22 member 24 28 0.003832 0.2703 1 1 +283248 RCOR2 REST corepressor 2 11 protein-coding - REST corepressor 2 31 0.004243 5.88 1 1 +283254 HARBI1 harbinger transposase derived 1 11 protein-coding C11orf77 putative nuclease HARBI1|harbinger transposase-derived nuclease 23 0.003148 6.205 1 1 +283267 LINC00294 long intergenic non-protein coding RNA 294 11 ncRNA NCRNA00294 - 7.911 0 1 +283284 IGSF22 immunoglobulin superfamily member 22 11 protein-coding IGFN2 immunoglobulin superfamily member 22 85 0.01163 3.395 1 1 +283297 OR10A4 olfactory receptor family 10 subfamily A member 4 11 protein-coding JCG5|OR10A4P olfactory receptor 10A4|hP2 olfactory receptor|olfactory receptor OR11-87|olfactory receptor, family 10, subfamily A, member 4 pseudogene|olfactory receptor-like protein JCG5 41 0.005612 0.06774 1 1 +283298 OLFML1 olfactomedin like 1 11 protein-coding UNQ564 olfactomedin-like protein 1|MVAL564 27 0.003696 6.858 1 1 +283303 MRGPRG-AS1 MRGPRG antisense RNA 1 11 ncRNA C11orf36|HSD-40 MRGPRG antisense RNA 1 (non-protein coding) 5 0.0006844 0.1403 1 1 +283310 OTOGL otogelin like 12 protein-coding C12orf64|DFNB84B otogelin-like protein 186 0.02546 1 0 +283314 C1RL-AS1 C1RL antisense RNA 1 12 ncRNA MATL2963 ABC12-49244600F4.3|C1RL antisense RNA 1 (non-protein coding) 1 0.0001369 5.837 1 1 +283316 CD163L1 CD163 molecule like 1 12 protein-coding CD163B|M160|SCARI2 scavenger receptor cysteine-rich type 1 protein M160|CD163 antigen B|CD163 antigen-like 1 162 0.02217 5.646 1 1 +283332 LOC283332 uncharacterized LOC283332 12 ncRNA - - 0.1402 0 1 +283335 LOC283335 uncharacterized LOC283335 12 ncRNA - - 3 0.0004106 1 0 +283337 ZNF740 zinc finger protein 740 12 protein-coding Zfp740 zinc finger protein 740|oriLyt TD-element-binding protein 7 9 0.001232 9.5 1 1 +283345 RPL13P5 ribosomal protein L13 pseudogene 5 12 pseudo RPL13-2|RPL13L|RPL13_4_1199|RRPL13L RPL13-2 pseudogene 5 0.0006844 4.212 1 1 +283349 RASSF3 Ras association domain family member 3 12 protein-coding RASSF5 ras association domain-containing protein 3|Ras association (RalGDS/AF-6) domain family 3|Ras association (RalGDS/AF-6) domain family member 3 11 0.001506 7.169 1 1 +283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 12 protein-coding - beta-1,4-N-acetylgalactosaminyltransferase 3|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-acetyl-galactosaminyl transferase 3|beta-1,4-N-acetylgalactosaminyltransferase III|beta4GalNAcT3 71 0.009718 7.172 1 1 +283365 OR6C6 olfactory receptor family 6 subfamily C member 6 12 protein-coding - olfactory receptor 6C6 26 0.003559 0.01418 1 1 +283373 ANKRD52 ankyrin repeat domain 52 12 protein-coding ANKRD33 serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit C|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 subunit ARS-C 57 0.007802 10.39 1 1 +283375 SLC39A5 solute carrier family 39 member 5 12 protein-coding LZT-Hs7|MYP24|ZIP5 zinc transporter ZIP5|solute carrier family 39 (metal ion transporter), member 5|solute carrier family 39 (zinc transporter), member 5|zrt- and Irt-like protein 5 36 0.004927 2.862 1 1 +283377 SPRYD4 SPRY domain containing 4 12 protein-coding - SPRY domain-containing protein 4 8 0.001095 8.484 1 1 +283383 ADGRD1 adhesion G protein-coupled receptor D1 12 protein-coding GPR133|PGR25 adhesion G-protein coupled receptor D1|G-protein coupled receptor 133|G-protein coupled receptor PGR25|probable G-protein coupled receptor 133 100 0.01369 5.916 1 1 +283385 MORN3 MORN repeat containing 3 12 protein-coding - MORN repeat-containing protein 3|membrane occupation and recognition nexus repeat containing protein 25 0.003422 3.379 1 1 +283392 TRHDE-AS1 TRHDE antisense RNA 1 12 ncRNA - TRHDE antisense RNA 1 (non-protein coding) 5 0.0006844 2.192 1 1 +283403 C12orf80 chromosome 12 open reading frame 80 12 protein-coding - uncharacterized protein LOC283403 2 0.0002737 1 0 +283404 LINC00592 long intergenic non-protein coding RNA 592 12 ncRNA - - 0 0 1.055 1 1 +283416 LINC01465 long intergenic non-protein coding RNA 1465 12 ncRNA C12orf61 putative uncharacterized protein C12orf61 4 0.0005475 3.6 1 1 +283417 DPY19L2 dpy-19 like 2 12 protein-coding SPATA34|SPGF9 probable C-mannosyltransferase DPY19L2|protein dpy-19 homolog 2|spermatogenesis associated 34 83 0.01136 4.934 1 1 +283420 CLEC9A C-type lectin domain family 9 member A 12 protein-coding CD370|DNGR-1|DNGR1|UNQ9341 C-type lectin domain family 9 member A|HEEE9341 36 0.004927 2.527 1 1 +283422 LINC01559 long intergenic non-protein coding RNA 1559 12 ncRNA C12orf36 - 21 0.002874 2.317 1 1 +283431 GAS2L3 growth arrest specific 2 like 3 12 protein-coding G2L3 GAS2-like protein 3|growth arrest-specific protein 2-like 3 51 0.006981 4.93 1 1 +283446 MYO1H myosin IH 12 protein-coding - unconventional myosin-Ih|myosin-1H|myosin-Ih 77 0.01054 1.818 1 1 +283450 HECTD4 HECT domain E3 ubiquitin protein ligase 4 12 protein-coding C12orf51|POTAGE probable E3 ubiquitin-protein ligase HECTD4|AF-1 specific protein phosphatase|HECT domain containing E3 ubiquitin protein ligase 4|HECT domain-containing protein 4|probable E3 ubiquitin-protein ligase C12orf51|transmembrane protein C12orf51 242 0.03312 10.16 1 1 +283455 KSR2 kinase suppressor of ras 2 12 protein-coding - kinase suppressor of Ras 2 106 0.01451 4.894 1 1 +283458 NME2P1 NME/NM23 nucleoside diphosphate kinase 2 pseudogene 1 12 pseudo - non-metastatic cells 2, protein (NM23B) expressed in, pseudogene 1|nucleoside diphosphate kinase B-like pseudogene 6.598 0 1 +283459 GATC glutamyl-tRNA amidotransferase subunit C 12 protein-coding 15E1.2 glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial|glu-AdT subunit C|glutamyl-tRNA(Gln) amidotransferase, subunit C homolog 15 0.002053 5.23 1 1 +283460 HNF1A-AS1 HNF1A antisense RNA 1 12 ncRNA C12orf27|NCRNA00262 HNF1A antisense RNA 1 (non-protein coding) 1.853 0 1 +283461 C12orf40 chromosome 12 open reading frame 40 12 protein-coding HEL-206|HEL-S-94 uncharacterized protein C12orf40|epididymis luminal protein 206|epididymis secretory protein Li 94 76 0.0104 0.2433 1 1 +283463 MUC19 mucin 19, oligomeric 12 protein-coding MUC-19 mucin-19 16 0.00219 1 0 +283464 GXYLT1 glucoside xylosyltransferase 1 12 protein-coding GLT8D3 glucoside xylosyltransferase 1|glycosyltransferase 8 domain containing 3|glycosyltransferase 8 domain-containing protein 3 41 0.005612 8.856 1 1 +283471 TMPRSS12 transmembrane protease, serine 12 12 protein-coding CT151 transmembrane protease serine 12|testicular tissue protein Li 208|transmembrane (C-terminal) protease, serine 12 29 0.003969 0.3864 1 1 +283487 LINC00346 long intergenic non-protein coding RNA 346 13 ncRNA C13orf29|NCRNA00346 - 2 0.0002737 5.867 1 1 +283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 13 protein-coding C13orf8|CAMP|CHAMP|MRD40|ZNF828 chromosome alignment-maintaining phosphoprotein 1|zinc finger protein 828 35 0.004791 9.02 1 1 +283491 OR7E156P olfactory receptor family 7 subfamily E member 156 pseudogene 13 pseudo - - 0.1802 0 1 +283507 SUGT1P3 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone pseudogene 3 13 pseudo SUGT1L1 SGT1, suppressor of G2 allele of SKP1 like 1|SUGT1 pseudogene 3|suppressor of G2 allele of SKP1 pseudogene 3 10 0.001369 5.094 1 1 +283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 13 protein-coding - seven in absentia homolog 3|siah-3 31 0.004243 1.447 1 1 +283518 KCNRG potassium channel regulator 13 protein-coding DLTET potassium channel regulatory protein|putative potassium channel regulatory protein 18 0.002464 3.21 1 1 +283521 LINC00282 long intergenic non-protein coding RNA 282 13 ncRNA NCRNA00282 - 2.168 0 1 +283537 SLC46A3 solute carrier family 46 member 3 13 protein-coding FKSG16 solute carrier family 46 member 3 37 0.005064 8.291 1 1 +283547 LINC00639 long intergenic non-protein coding RNA 639 14 ncRNA - - 11 0.001506 1 0 +283551 LINC01588 long intergenic non-protein coding RNA 1588 14 ncRNA C14orf182 - 14 0.001916 2.296 1 1 +283554 GPR137C G protein-coupled receptor 137C 14 protein-coding TM7SF1L2 integral membrane protein GPR137C|G protein-coupled receptor TM7SF1L2|transmembrane 7 superfamily member 1-like 2 protein 26 0.003559 5.443 1 1 +283571 PROX2 prospero homeobox 2 14 protein-coding PROX-2 prospero homeobox protein 2|homeobox prospero-like protein PROX2 32 0.00438 1.059 1 1 +283576 ZDHHC22 zinc finger DHHC-type containing 22 14 protein-coding C14orf59 palmitoyltransferase ZDHHC22|DHHC-22|putative palmitoyltransferase ZDHHC22|zinc finger DHHC domain-containing protein 22|zinc finger, DHHC domain containing 22 17 0.002327 1.922 1 1 +283578 TMED8 transmembrane p24 trafficking protein family member 8 14 protein-coding FAM15B protein TMED8|family with sequence similarity 15, member B|transmembrane emp24 domain containing 8|transmembrane emp24 protein transport domain containing 8 27 0.003696 8.61 1 1 +283579 C14orf178 chromosome 14 open reading frame 178 14 protein-coding - uncharacterized protein C14orf178 8 0.001095 0.7792 1 1 +283585 LOC283585 uncharacterized LOC283585 14 ncRNA - - 1 0.0001369 1 0 +283592 FAM181A-AS1 FAM181A antisense RNA 1 14 ncRNA C14orf86 FAM181A antisense RNA 1 (non-protein coding) 0.6988 0 1 +283596 SNHG10 small nucleolar RNA host gene 10 14 ncRNA C14orf62|LINC00063|NCRNA00063 long intergenic non-protein coding RNA 63|small nucleolar RNA host gene 10 (non-protein coding) 15 0.002053 6.349 1 1 +283598 C14orf177 chromosome 14 open reading frame 177 14 protein-coding - putative uncharacterized protein C14orf177 22 0.003011 0.0275 1 1 +283600 SLC25A47 solute carrier family 25 member 47 14 protein-coding C14orf68|HDMCP|HMFN1655 solute carrier family 25 member 47|HCC-down-regulated mitochondrial carrier protein|hepatocellular carcinoma down-regulated mitochondrial carrier protein|hepatocellular carcinoma-downregulated mitochondrial carrier protein 30 0.004106 1.328 1 1 +283601 LINC00523 long intergenic non-protein coding RNA 523 14 ncRNA C14orf70 - 2 0.0002737 0.154 1 1 +283629 TSSK4 testis specific serine kinase 4 14 protein-coding C14orf20|STK22E|TSK-4|TSK4|TSSK5 testis-specific serine/threonine-protein kinase 4|serine/threonine kinase 22E|serine/threonine-protein kinase 22E 15 0.002053 3.337 1 1 +283635 FAM177A1 family with sequence similarity 177 member A1 14 protein-coding C14orf24 protein FAM177A1 10 0.001369 9.832 1 1 +283638 CEP170B centrosomal protein 170B 14 protein-coding CEP170R|FAM68C|KIAA0284 centrosomal protein of 170 kDa protein B|Cep170-related 76 0.0104 10.45 1 1 +283643 C14orf80 chromosome 14 open reading frame 80 14 protein-coding - uncharacterized protein C14orf80 11 0.001506 7.707 1 1 +283651 HMGN2P46 high mobility group nucleosomal binding domain 2 pseudogene 46 15 pseudo C15orf21|D-PCa-2 Dresden prostate cancer 2|Dresden prostate carcinoma 2 24 0.003285 5.365 1 1 +283652 SLC24A5 solute carrier family 24 member 5 15 protein-coding JSX|NCKX5|OCA6|SHEP4 sodium/potassium/calcium exchanger 5|Na(+)/K(+)/Ca(2+)-exchange protein 5|ion transporter JSX|oculocutaneous albinism 6 (autosomal recessive)|solute carrier family 24 (sodium/potassium/calcium exchanger), member 5 41 0.005612 3.16 1 1 +283659 PRTG protogenin 15 protein-coding IGDCC5 protogenin|immunoglobulin superfamily, DCC subclass, member 5|protogenin homolog (Gallus gallus)|shen-dan 99 0.01355 5.196 1 1 +283663 LINC00926 long intergenic non-protein coding RNA 926 15 ncRNA - - 4.646 0 1 +283673 EWSAT1 Ewing sarcoma associated transcript 1 15 ncRNA LINC00277|NCRNA00277|TMEM84 long intergenic non-protein coding RNA 277|testicular tissue protein Li 207|transmembrane protein 84 0 0 2.376 1 1 +283677 REC114 REC114 meiotic recombination protein 15 protein-coding C15orf60|CT147 meiotic recombination protein REC114|meiotic recombination protein REC114-like 20 0.002737 0.2329 1 1 +283683 LOC283683 uncharacterized LOC283683 15 ncRNA - - 0 0 1 0 +283685 GOLGA6L2 golgin A6 family-like 2 15 protein-coding CT105 golgin subfamily A member 6-like protein 2|cancer/testis antigen 105|golgi autoantigen, golgin subfamily a, 6-like 2 62 0.008486 1 0 +283687 ST20-AS1 ST20 antisense RNA 1 15 ncRNA C15orf37 - 7 0.0009581 5.818 1 1 +283688 LINC00927 long intergenic non-protein coding RNA 927 15 ncRNA - - 0 0 1 0 +283694 OR4N4 olfactory receptor family 4 subfamily N member 4 15 protein-coding OR15-1|OR15-5 olfactory receptor 4N4|olfactory receptor OR15-1|olfactory receptor OR15-5 85 0.01163 0.3533 1 1 +283726 SAXO2 stabilizer of axonemal microtubules 2 15 protein-coding FAM154B stabilizer of axonemal microtubules 2|family with sequence similarity 154, member B|protein FAM154B 39 0.005338 3.988 1 1 +283731 LOC283731 uncharacterized LOC283731 15 ncRNA - - 1.958 0 1 +283738 NTRK3-AS1 NTRK3 antisense RNA 1 15 ncRNA - NTRK3 antisense RNA 1 (non-protein coding) 0 0 1 0 +283742 FAM98B family with sequence similarity 98 member B 15 protein-coding - protein FAM98B 16 0.00219 8.134 1 1 +283748 PLA2G4D phospholipase A2 group IVD 15 protein-coding cPLA2delta cytosolic phospholipase A2 delta|cPLA2-delta|phospholipase A2 delta, cytosolic|phospholipase A2, group IVD (cytosolic) 48 0.00657 2.215 1 1 +283755 HERC2P3 hect domain and RLD 2 pseudogene 3 15 pseudo D15F37S4 - 162 0.02217 1 0 +283761 LINC00928 long intergenic non-protein coding RNA 928 15 ncRNA - - 1 0.0001369 0.7893 1 1 +283767 GOLGA6L1 golgin A6 family-like 1 15 protein-coding - golgin subfamily A member 6-like protein 1|golgi autoantigen, golgin subfamily a, 6-like 1 21 0.002874 0.5539 1 1 +283768 GOLGA8G golgin A8 family member G 15 pseudo - golgi autoantigen, golgin subfamily a, 8G 8 0.001095 0.4811 1 1 +283777 FAM169B family with sequence similarity 169 member B 15 protein-coding - protein FAM169B 24 0.003285 0.7501 1 1 +283796 GOLGA8IP golgin A8 family member I, pseudogene 15 pseudo GOLGA8I|GOLGA9P golgi autoantigen, golgin subfamily a, 9 pseudogene|golgin A8 family, member I|golgin A9 (pseudogene) 14 0.001916 0.9887 1 1 +283807 FBXL22 F-box and leucine rich repeat protein 22 15 protein-coding Fbl22 F-box and leucine-rich protein 22|F-box/LRR-repeat protein 22 11 0.001506 4.459 1 1 +283820 NOMO2 NODAL modulator 2 16 protein-coding Nomo|PM5 nodal modulator 2|pM5 protein 2|pM5 protein, centromeric copy 17 0.002327 10.6 1 1 +283847 TERB1 telomere repeat binding bouquet formation protein 1 16 protein-coding CCDC79 telomere repeats-binding bouquet formation protein 1|coiled-coil domain containing 79|coiled-coil domain-containing protein 79 14 0.001916 0.2574 1 1 +283848 CES4A carboxylesterase 4A 16 protein-coding CES6|CES8 carboxylesterase 4A|carboxylesterase 6|carboxylesterase 8 (putative) 20 0.002737 5.697 1 1 +283849 EXOC3L1 exocyst complex component 3 like 1 16 protein-coding EXOC3L exocyst complex component 3-like protein|protein Jiangli 39 0.005338 6.202 1 1 +283856 LOC283856 uncharacterized LOC283856 16 ncRNA - - 1.462 0 1 +283860 LINC00304 long intergenic non-protein coding RNA 304 16 ncRNA C16orf81|NCRNA00304 - 3 0.0004106 0.7612 1 1 +283867 LINC00922 long intergenic non-protein coding RNA 922 16 ncRNA - - 21 0.002874 1.479 1 1 +283869 NPW neuropeptide W 16 protein-coding L8|L8C|PPL8|PPNPW neuropeptide W|hPPL8|prepro-neuropeptide W|preproprotein L8 11 0.001506 3.341 1 1 +283870 BRICD5 BRICHOS domain containing 5 16 protein-coding C16orf79 BRICHOS domain-containing protein 5|BRICHOS domain-containing protein C16orf79 21 0.002874 4.716 1 1 +283871 PGP phosphoglycolate phosphatase 16 protein-coding AUM|G3PP|PGPase glycerol-3-phosphate phosphatase|aspartate-based ubiquitous Mg(2+)-dependent phosphatase 7 0.0009581 8.884 1 1 +283875 LINC00514 long intergenic non-protein coding RNA 514 16 ncRNA LA16c-380H5.1 - 3 0.0004106 1 0 +283897 C16orf54 chromosome 16 open reading frame 54 16 protein-coding - transmembrane protein C16orf54 11 0.001506 5.283 1 1 +283899 INO80E INO80 complex subunit E 16 protein-coding CCDC95 INO80 complex subunit E|coiled-coil domain containing 95|coiled-coil domain-containing protein 95 29 0.003969 9.547 1 1 +283902 HCCAT5 hepatocellular carcinoma associated transcript 5 (non-protein coding) 16 ncRNA FJ222407|HTA hepatoma associated protein 16 0.00219 0.2348 1 1 +283914 LINC01566 long intergenic non-protein coding RNA 1566 16 ncRNA - - 0.04701 0 1 +283922 LOC283922 pyruvate dehydrogenase phosphatase regulatory subunit pseudogene 16 pseudo - - 4 0.0005475 5.308 1 1 +283927 NUDT7 nudix hydrolase 7 16 protein-coding - peroxisomal coenzyme A diphosphatase NUDT7|nudix (nucleoside diphosphate linked moiety X)-type motif 7 26 0.003559 6.242 1 1 +283932 FBXL19-AS1 FBXL19 antisense RNA 1 (head to head) 16 ncRNA NCRNA00095 FBXL19 antisense RNA 1 (non-protein coding) 7 0.0009581 5.529 1 1 +283933 ZNF843 zinc finger protein 843 16 protein-coding - zinc finger protein 843 11 0.001506 3.137 1 1 +283948 NHLRC4 NHL repeat containing 4 16 protein-coding - NHL-repeat-containing protein 4 8 0.001095 4.334 1 1 +283951 C16orf91 chromosome 16 open reading frame 91 16 protein-coding CCSMST1|URLC5|gs103 protein CCSMST1|cattle cerebrum and skeletal muscle-specific protein 1 family member|up-regulated in lung cancer 5 27 0.003696 7.887 1 1 +283953 TMEM114 transmembrane protein 114 16 protein-coding - transmembrane protein 114 0.4788 0 1 +283970 PDXDC2P pyridoxal dependent decarboxylase domain containing 2, pseudogene 16 pseudo NPIP|PDXDC2 nuclear pore complex-interacting protein 46 0.006296 7.663 1 1 +283971 CLEC18C C-type lectin domain family 18 member C 16 protein-coding MRCL|MRCL3 C-type lectin domain family 18 member C|mannose receptor-like 3|mannose receptor-like protein 3 7 0.0009581 1.622 1 1 +283981 LINC00685 long intergenic non-protein coding RNA 685 X|Y ncRNA CXYorf10|NCRNA00107|PPP2R3B-AS1 OTTHUMT00000055574|PPP2R3B antisense RNA 1 (non-protein coding) 3.492 0 1 +283982 LINC00469 long intergenic non-protein coding RNA 469 17 ncRNA C17orf54 - 6 0.0008212 0.2914 1 1 +283985 FADS6 fatty acid desaturase 6 17 protein-coding FP18279 fatty acid desaturase 6|fatty acid desaturase domain family, member 6 14 0.001916 1.879 1 1 +283987 HID1 HID1 domain containing 17 protein-coding C17orf28|DMC1|HID-1 protein HID1|HID1 domain-containing protein|UPF0663 transmembrane protein C17orf28|down-regulated in multiple cancers 1|downregulated in multiple cancer 1|protein hid-1 homolog 43 0.005886 9.346 1 1 +283989 TSEN54 tRNA splicing endonuclease subunit 54 17 protein-coding PCH2A|PCH4|PCH5|SEN54L|sen54 tRNA-splicing endonuclease subunit Sen54|SEN54 homolog|TSEN54 tRNA splicing endonuclease subunit|hsSen54|tRNA-intron endonuclease Sen54 23 0.003148 9.066 1 1 +283991 UBALD2 UBA like domain containing 2 17 protein-coding FAM100B UBA-like domain-containing protein 2|family with sequence similarity 100, member B|protein FAM100B 4 0.0005475 10.02 1 1 +283999 TMEM235 transmembrane protein 235 17 protein-coding ARGM1 transmembrane protein 235|transmembrane protein ENSP00000364084 7 0.0009581 0.7576 1 1 +284001 CCDC57 coiled-coil domain containing 57 17 protein-coding - coiled-coil domain-containing protein 57 67 0.009171 8.58 1 1 +284004 HEXDC hexosaminidase D 17 protein-coding - hexosaminidase D|N-acetyl-beta-galactosaminidase|beta-N-acetylhexosaminidase|beta-hexosaminidase D|hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing|hexosaminidase D, cytosolic|hexosaminidase domain-containing protein 49 0.006707 8.484 1 1 +284009 LOC284009 uncharacterized LOC284009 17 ncRNA - - 2 0.0002737 0.8383 1 1 +284013 VMO1 vitelline membrane outer layer 1 homolog 17 protein-coding ERGA6350|PRO21055 vitelline membrane outer layer protein 1 homolog 12 0.001642 5.109 1 1 +284018 C17orf58 chromosome 17 open reading frame 58 17 protein-coding - UPF0450 protein C17orf58 10 0.001369 7.948 1 1 +284021 MILR1 mast cell immunoglobulin like receptor 1 17 protein-coding Allergin-1|C17orf60|MCA-32|MCA32 allergin-1|allergy inhibitory receptor 1|mast cell antigen 32|probable mast cell antigen 32 homolog 0 0 4.035 1 1 +284023 LOC284023 uncharacterized LOC284023 17 ncRNA - - 1 0.0001369 6.709 1 1 +284029 LINC00324 long intergenic non-protein coding RNA 324 17 ncRNA C17orf44|NCRNA00324 - 3 0.0004106 5.564 1 1 +284034 LINC00670 long intergenic non-protein coding RNA 670 17 ncRNA - - 3 0.0004106 1 0 +284040 CDRT4 CMT1A duplicated region transcript 4 17 protein-coding - CMT1A duplicated region transcript 4 protein 8 0.001095 7.513 1 1 +284047 CCDC144B coiled-coil domain containing 144B (pseudogene) 17 pseudo - coiled-coil domain-containing protein 144B 40 0.005475 3.701 1 1 +284058 KANSL1 KAT8 regulatory NSL complex subunit 1 17 protein-coding CENP-36|KDVS|KIAA1267|MSL1v1|NSL1|hMSL1v1 KAT8 regulatory NSL complex subunit 1|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 110 0.01506 10.07 1 1 +284067 C17orf105 chromosome 17 open reading frame 105 17 protein-coding - uncharacterized protein C17orf105 1 0.0001369 0.06041 1 1 +284069 FAM171A2 family with sequence similarity 171 member A2 17 protein-coding - protein FAM171A2 12 0.001642 6.077 1 1 +284071 MEIOC meiosis specific with coiled-coil domain 17 protein-coding C17orf104 meiosis-specific coiled-coil domain-containing protein MEIOC|meiosis-specific with coiled-coil domain protein|uncharacterized protein C17orf104 40 0.005475 3.698 1 1 +284076 TTLL6 tubulin tyrosine ligase like 6 17 protein-coding TTL.6 tubulin polyglutamylase TTLL6|tubulin tyrosine ligase-like family member 6|tubulin--tyrosine ligase-like protein 6 52 0.007117 2.474 1 1 +284083 C17orf47 chromosome 17 open reading frame 47 17 protein-coding - uncharacterized protein C17orf47 49 0.006707 1.656 1 1 +284085 KRT18P55 keratin 18 pseudogene 55 17 pseudo - - 29 0.003969 0.2716 1 1 +284086 NEK8 NIMA related kinase 8 17 protein-coding JCK|NEK12A|NPHP9|RHPD2 serine/threonine-protein kinase Nek8|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/thrionine-protein kinase NEK8 60 0.008212 6.678 1 1 +284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W 17 protein-coding Gwt1|HPMRS5 phosphatidylinositol-glycan biosynthesis class W protein|PIG-W|phosphatidylinositol glycan, class W 24 0.003285 7.72 1 1 +284099 C17orf78 chromosome 17 open reading frame 78 17 protein-coding - uncharacterized protein C17orf78 18 0.002464 0.5094 1 1 +284100 YWHAEP7 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon pseudogene 7 17 pseudo - tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide pseudogene 1.352 0 1 +284106 CISD3 CDGSH iron sulfur domain 3 17 protein-coding Miner2 CDGSH iron-sulfur domain-containing protein 3, mitochondrial|mitoNEET related 2|mitoNEET-related protein 2 10 0.001369 9.839 1 1 +284110 GSDMA gasdermin A 17 protein-coding FKSG9|GSDM|GSDM1 gasdermin-A|gasdermin-1 35 0.004791 3.627 1 1 +284111 SLC13A5 solute carrier family 13 member 5 17 protein-coding EIEE25|NACT|mIndy solute carrier family 13 member 5|Na(+)/citrate cotransporter|Na+-coupled citrate transporter protein|sodium-dependent dicarboxylate transporter|solute carrier family 13 (sodium-dependent citrate transporter), member 5 43 0.005886 2.861 1 1 +284114 TMEM102 transmembrane protein 102 17 protein-coding CBAP transmembrane protein 102|common beta-chain associated protein 28 0.003832 7.456 1 1 +284116 KRT42P keratin 42 pseudogene 17 pseudo - - 7 0.0009581 1 0 +284119 PTRF polymerase I and transcript release factor 17 protein-coding CAVIN|CAVIN1|CGL4|FKSG13|cavin-1 polymerase I and transcript release factor|RNA polymerase I and transcript release factor|TTF-I interacting peptide 12 40 0.005475 12.01 1 1 +284123 FAM27E5 family with sequence similarity E5 17 ncRNA FAM27L family with sequence similarity 27-like 46 0.006296 0.02073 1 1 +284124 FLJ36000 uncharacterized FLJ36000 17 ncRNA - - 34 0.004654 0.4027 1 1 +284129 SLC26A11 solute carrier family 26 member 11 17 protein-coding - sodium-independent sulfate anion transporter|solute carrier family 26 (anion exchanger), member 11 40 0.005475 8.609 1 1 +284131 ENDOV endonuclease V 17 protein-coding - endonuclease V|hEndoV|inosine-specific endoribonuclease 13 0.001779 7.73 1 1 +284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 17 protein-coding GDE4 glycerophosphodiester phosphodiesterase domain-containing protein 1|glycerophosphodiester phosphodiesterase 4 22 0.003011 5.332 1 1 +284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 17 protein-coding C17orf89 uncharacterized protein C17orf89 8.383 0 1 +284185 LINC00482 long intergenic non-protein coding RNA 482 17 ncRNA C17orf55 - 15 0.002053 3.551 1 1 +284186 TMEM105 transmembrane protein 105 17 protein-coding - transmembrane protein 105 13 0.001779 2.786 1 1 +284194 LGALS9B galectin 9B 17 protein-coding - galectin-9B|gal-9B|galectin-9 like|galectin-9 pseudogene|galectin-9-like protein A|lectin, galactoside-binding, soluble, 9B 20 0.002737 1.488 1 1 +284207 METRNL meteorin like, glial cell differentiation regulator 17 protein-coding - meteorin-like protein|meteorin, glial cell differentiation regulator-like|subfatin 16 0.00219 9.068 1 1 +284215 DLGAP1-AS5 DLGAP1 antisense RNA 5 18 ncRNA - DLGAP1 antisense RNA 5 (non-protein coding) 1 0.0001369 1 0 +284217 LAMA1 laminin subunit alpha 1 18 protein-coding LAMA|PTBHS|S-LAM-alpha laminin subunit alpha-1|S-LAM alpha|S-laminin subunit alpha|laminin A chain|laminin, alpha 1|laminin-3 subunit alpha 298 0.04079 6.181 1 1 +284232 ANKRD20A9P ankyrin repeat domain 20 family member A9, pseudogene 13 pseudo - ankyrin repeat domain 20 family, member A2 pseudogene|ankyrin repeat domain 20 family, member A4 pseudogene|coiled-coil domain containing 29-like 21 0.002874 3.488 1 1 +284233 CYP4F35P cytochrome P450 family 4 subfamily F member 35, pseudogene 18 pseudo - CYP4F-se8[6:7:8]|cytochrome P450, family 4, subfamily F, polypeptide 35, pseudogene 11 0.001506 2.846 1 1 +284252 KCTD1 potassium channel tetramerization domain containing 1 18 protein-coding C18orf5|SENS BTB/POZ domain-containing protein KCTD1|potassium channel tetramerisation domain containing 1|potassium channel tetramerization domain-containing protein 1 46 0.006296 8.816 1 1 +284254 DYNAP dynactin associated protein 18 protein-coding C18orf26 dynactin-associated protein|full 21 0.002874 0.4861 1 1 +284257 BOD1L2 biorientation of chromosomes in cell division 1 like 2 18 protein-coding BOD1P|FAM44C biorientation of chromosomes in cell division protein 1-like 2|biorientation of chromosomes in cell division 1 pseudogene|biorientation of chromosomes in cell division protein 1 pseudogene|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 12 0.001642 1 0 +284260 LINC00907 long intergenic non-protein coding RNA 907 18 ncRNA - - 0 0 1 0 +284266 SIGLEC15 sialic acid binding Ig like lectin 15 18 protein-coding CD33L3|HsT1361|SIGLEC-15 sialic acid-binding Ig-like lectin 15|CD33 antigen-like 3|CD33 molecule-like 3 17 0.002327 2.663 1 1 +284273 ZADH2 zinc binding alcohol dehydrogenase domain containing 2 18 protein-coding - zinc-binding alcohol dehydrogenase domain-containing protein 2 25 0.003422 9.419 1 1 +284274 SMIM21 small integral membrane protein 21 18 protein-coding C18orf62 small integral membrane protein 21 10 0.001369 0.09109 1 1 +284276 LINC00908 long intergenic non-protein coding RNA 908 18 ncRNA - - 2.375 0 1 +284293 HMSD histocompatibility minor serpin domain containing 18 protein-coding ACC-6|ACC6|C18orf53|HSMD-v serpin-like protein HMSD|minor histocompatibility protein HMSD 13 0.001779 1.528 1 1 +284297 SSC5D scavenger receptor cysteine rich family member with 5 domains 19 protein-coding S5D-SRCRB soluble scavenger receptor cysteine-rich domain-containing protein SSC5D|scavenger receptor cysteine rich domain containing (5 domains)|scavenger receptor cysteine rich family, 5 domains|scavenger receptor cysteine-rich glycoprotein|soluble scavenger protein with 5 SRCR domains|soluble scavenger with 5 domains 52 0.007117 7.55 1 1 +284306 ZNF547 zinc finger protein 547 19 protein-coding - zinc finger protein 547 32 0.00438 5.54 1 1 +284307 ZIK1 zinc finger protein interacting with K protein 1 19 protein-coding ZNF762 zinc finger protein interacting with ribonucleoprotein K|zinc finger protein 762|zinc finger protein interacting with K protein 1 homolog 51 0.006981 5.643 1 1 +284309 ZNF776 zinc finger protein 776 19 protein-coding - zinc finger protein 776 30 0.004106 8.37 1 1 +284312 ZSCAN1 zinc finger and SCAN domain containing 1 19 protein-coding MZF-1|ZNF915 zinc finger and SCAN domain-containing protein 1|zinc finger with SCAN domain 1 87 0.01191 2.419 1 1 +284323 ZNF780A zinc finger protein 780A 19 protein-coding ZNF780 zinc finger protein 780A 55 0.007528 8.035 1 1 +284325 C19orf54 chromosome 19 open reading frame 54 19 protein-coding - UPF0692 protein C19orf54 19 0.002601 8.331 1 1 +284338 PRR19 proline rich 19 19 protein-coding - proline-rich protein 19 22 0.003011 5.287 1 1 +284339 TMEM145 transmembrane protein 145 19 protein-coding - transmembrane protein 145 53 0.007254 3.675 1 1 +284340 CXCL17 C-X-C motif chemokine ligand 17 19 protein-coding DMC|Dcip1|UNQ473|VCC-1|VCC1 VEGF coregulated chemokine 1|C-X-C motif chemokine 17|VEGF co-regulated chemokine 1|chemokine (C-X-C motif) ligand 17|dendritic cell and monocyte chemokine-like protein 6 0.0008212 5.15 1 1 +284346 ZNF575 zinc finger protein 575 19 protein-coding - zinc finger protein 575 9 0.001232 5.416 1 1 +284348 LYPD5 LY6/PLAUR domain containing 5 19 protein-coding PRO4356 ly6/PLAUR domain-containing protein 5|metastasis-associated protein 15 0.002053 6.057 1 1 +284349 ZNF283 zinc finger protein 283 19 protein-coding HZF19|HZF41 zinc finger protein 283|zinc finger protein 41|zinc finger protein HZF19 42 0.005749 5.595 1 1 +284352 PPP1R37 protein phosphatase 1 regulatory subunit 37 19 protein-coding LRRC68 protein phosphatase 1 regulatory subunit 37|leucine rich repeat containing 68|leucine-rich repeat-containing protein 68 4 0.0005475 1 0 +284353 NKPD1 NTPase, KAP family P-loop domain containing 1 19 protein-coding - NTPase KAP family P-loop domain-containing protein 1 37 0.005064 3.675 1 1 +284355 TPRX1 tetrapeptide repeat homeobox 1 19 protein-coding TPRX tetra-peptide repeat homeobox protein 1|CRX like homeobox 2|tetra-peptide repeat homeobox 1 62 0.008486 0.129 1 1 +284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator 19 protein-coding MASTR MEF2-activating motif and SAP domain-containing transcriptional regulator|MEF2-activating SAP transcriptional regulatory protein|likely ortholog of MEF2-activating SAP transcriptional regulator 23 0.003148 5.014 1 1 +284359 IZUMO1 izumo sperm-egg fusion 1 19 protein-coding IZUMO|OBF izumo sperm-egg fusion protein 1|oocyte binding/fusion factor|sperm-specific protein Izumo 34 0.004654 0.7427 1 1 +284361 EMC10 ER membrane protein complex subunit 10 19 protein-coding C19orf63|HSM1|HSS1 ER membrane protein complex subunit 10|UPF0510 protein INM02|hematopoietic signal peptide-containing membrane domain-containing 1|hematopoietic signal peptide-containing secreted 1 18 0.002464 11.85 1 1 +284366 KLK9 kallikrein related peptidase 9 19 protein-coding KLK-L3|KLKL3 kallikrein-9|kallikrein-like protein 3 13 0.001779 1.264 1 1 +284367 SIGLEC17P sialic acid binding Ig like lectin 17, pseudogene 19 pseudo HSPC078|SIGLECP2|SIGLECP3 sialic acid binding Ig-like lectin, pseudogene 3|silec pseudogene-2 4 0.0005475 2.624 1 1 +284369 SIGLECL1 SIGLEC family like 1 19 protein-coding C19orf75|SIGLEC23P|SIGLECP7 SIGLEC family-like protein 1|sialic acid binding Ig-like lectin, pseudogene 7 23 0.003148 0.1173 1 1 +284370 ZNF615 zinc finger protein 615 19 protein-coding - zinc finger protein 615 84 0.0115 7.496 1 1 +284371 ZNF841 zinc finger protein 841 19 protein-coding - zinc finger protein 841 55 0.007528 7.638 1 1 +284379 LOC284379 solute carrier family 7 member 3 pseudogene 19 pseudo - - 0.4957 0 1 +284382 ACTL9 actin like 9 19 protein-coding HSD21 actin-like protein 9|testicular tissue protein Li 15|testicular tissue protein Li 9 70 0.009581 0.04954 1 1 +284383 OR2Z1 olfactory receptor family 2 subfamily Z member 1 19 protein-coding OR19-4|OR2Z2 olfactory receptor 2Z1|olfactory receptor 2Z2|olfactory receptor OR19-4|olfactory receptor, family 2, subfamily Z, member 2 44 0.006022 0.03025 1 1 +284390 ZNF763 zinc finger protein 763 19 protein-coding ZNF|ZNF440L zinc finger protein 763|DNA-binding protein|zinc finger protein 440 like 35 0.004791 5.609 1 1 +284391 ZNF844 zinc finger protein 844 19 protein-coding - zinc finger protein 844 43 0.005886 6.812 1 1 +284402 SCGB2B2 secretoglobin family 2B member 2 19 protein-coding SCGB4A2|SCGBL secretoglobin family 2B member 2|secretoglobin-like protein 8 0.001095 0.5579 1 1 +284403 WDR62 WD repeat domain 62 19 protein-coding C19orf14|MCPH2 WD repeat-containing protein 62|microcephaly, primary autosomal recessive 2|truncated WDR62 88 0.01204 7.218 1 1 +284406 ZFP82 ZFP82 zinc finger protein 19 protein-coding ZNF545 zinc finger protein 82 homolog|zinc finger protein 545|zinc finger protein 85 50 0.006844 6.096 1 1 +284415 VSTM1 V-set and transmembrane domain containing 1 19 protein-coding SIRL-1|SIRL1|UNQ3033 V-set and transmembrane domain-containing protein 1|LAIR homolog|OSCAR-like transcript-1|signal inhibitory receptor on leukocytes-1 40 0.005475 0.7397 1 1 +284417 TMEM150B transmembrane protein 150B 19 protein-coding TMEM224 transmembrane protein 150B|hCG1651476|transmembrane protein 224|transmembrane protein LOC284417 12 0.001642 3.58 1 1 +284418 FAM71E2 family with sequence similarity 71 member E2 19 protein-coding C19orf16 protein FAM71E2|putative protein FAM71E2 38 0.005201 0.8605 1 1 +284422 SMIM24 small integral membrane protein 24 19 protein-coding C19orf77|HSPC323|MARDI small integral membrane protein 24|MAP17-related dimer|transmembrane protein C19orf77|transmembrane protein HSPC323 3 0.0004106 4.097 1 1 +284424 MIR7-3HG MIR7-3 host gene 19 ncRNA C19orf30|Huh7|LINC00306|NCRNA00306|PGSF1|uc002mbe.2 MIR7-3 host gene (non-protein coding)|long intergenic non-protein coding RNA 306|pituitary gland specific factor 1 10 0.001369 0.8068 1 1 +284427 SLC25A41 solute carrier family 25 member 41 19 protein-coding APC4 solute carrier family 25 member 41 31 0.004243 2.083 1 1 +284428 MBD3L5 methyl-CpG binding domain protein 3 like 5 19 protein-coding - putative methyl-CpG-binding domain protein 3-like 5|MBD3-like 5|MBD3-like protein 5 2 0.0002737 0.08126 1 1 +284433 OR10H5 olfactory receptor family 10 subfamily H member 5 19 protein-coding OR19-25|OR19-26 olfactory receptor 10H5|olfactory receptor OR19-25|olfactory receptor OR19-26 30 0.004106 0.2025 1 1 +284434 NWD1 NACHT and WD repeat domain containing 1 19 protein-coding - NACHT domain- and WD repeat-containing protein 1|NACHT and WD repeat domain-containing protein 1 130 0.01779 4.044 1 1 +284439 SLC25A42 solute carrier family 25 member 42 19 protein-coding - mitochondrial coenzyme A transporter SLC25A42 25 0.003422 8.245 1 1 +284440 LINC00663 long intergenic non-protein coding RNA 663 19 ncRNA - CTC-559E9.1 6.195 0 1 +284441 LOC284441 actin-related protein 2 pseudogene 19 pseudo - ARP2 actin-related protein 2 homolog (yeast) pseudogene 6.236 0 1 +284443 ZNF493 zinc finger protein 493 19 protein-coding - zinc finger protein 493 80 0.01095 7.135 1 1 +284451 ODF3L2 outer dense fiber of sperm tails 3 like 2 19 protein-coding C19orf19 outer dense fiber protein 3-like protein 2 22 0.003011 1.668 1 1 +284459 HKR1 HKR1, GLI-Kruppel zinc finger family member 19 protein-coding ZNF875 Krueppel-related zinc finger protein 1|GLI-Kruppel family member HKR1|oncogene HKR1|zinc finger protein 875 43 0.005886 9.255 1 1 +284467 FAM19A3 family with sequence similarity 19 member A3, C-C motif chemokine like 1 protein-coding TAFA-3|TAFA3 protein FAM19A3|chemokine-like protein TAFA-3|family with sequence similarity 19 (chemokine (C-C motif)-like), member A3 13 0.001779 2.054 1 1 +284485 RIIAD1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 1 protein-coding C1orf230|NCRNA00166 RIIa domain-containing protein 1|RIIa domain-containing protein C1orf230|RIIa domain-containing protein ENSP00000357824 4 0.0005475 1.503 1 1 +284486 THEM5 thioesterase superfamily member 5 1 protein-coding ACOT15 acyl-coenzyme A thioesterase THEM5|acyl-CoA thioesterase THEM5|acyl-coenzyme A thioesterase 15 25 0.003422 2.273 1 1 +284498 C1orf167 chromosome 1 open reading frame 167 1 protein-coding - uncharacterized protein C1orf167 11 0.001506 1 0 +284521 OR2L13 olfactory receptor family 2 subfamily L member 13 1 protein-coding OR2L14 olfactory receptor 2L13|olfactory receptor 2L14|olfactory receptor, family 2, subfamily L, member 14 82 0.01122 1.085 1 1 +284525 SLC9C2 solute carrier family 9 member C2 (putative) 1 protein-coding SLC9A11 sodium/hydrogen exchanger 11|NHE-11|Na(+)/H(+) exchanger 11|solute carrier family 9|solute carrier family 9 member C2|solute carrier family 9, member 11 111 0.01519 0.791 1 1 +284532 OR14A16 olfactory receptor family 14 subfamily A member 16 1 protein-coding OR5AT1 olfactory receptor 14A16|olfactory receptor 5AT1|olfactory receptor OR1-45|olfactory receptor, family 5, subfamily AT, member 1 63 0.008623 0.02892 1 1 +284541 CYP4A22 cytochrome P450 family 4 subfamily A member 22 1 protein-coding - cytochrome P450 4A22|CYPIVA22|cytochrome P450 4A22K|cytochrome P450, family 4, subfamily A, polypeptide 22|fatty acid omega-hydroxylase|lauric acid omega-hydroxylase|long-chain fatty acid omega-monooxygenase 52 0.007117 0.7004 1 1 +284546 C1orf185 chromosome 1 open reading frame 185 1 protein-coding - uncharacterized protein C1orf185 4 0.0005475 0.05186 1 1 +284551 LINC01226 long intergenic non-protein coding RNA 1226 1 ncRNA - - 0.8336 0 1 +284565 NBPF15 neuroblastoma breakpoint family member 15 1 protein-coding AB14|AG3|NBPF16 neuroblastoma breakpoint family member 15|neuroblastoma breakpoint family, member 16 16 0.00219 7.496 1 1 +284573 LINC00303 long intergenic non-protein coding RNA 303 1 ncRNA C1orf157|NCRNA00303 - 24 0.003285 0.367 1 1 +284578 LOC284578 uncharacterized LOC284578 1 ncRNA - - 2.453 0 1 +284593 FAM41C family with sequence similarity 41 member C 1 ncRNA - Putative protein FAM41C 18 0.002464 3.6 1 1 +284611 FAM102B family with sequence similarity 102 member B 1 protein-coding SYM-3B protein FAM102B|sym-3 homolog B 20 0.002737 8.837 1 1 +284612 SYPL2 synaptophysin like 2 1 protein-coding MG29 synaptophysin-like protein 2|mitsugumin 29 19 0.002601 4.832 1 1 +284613 CYB561D1 cytochrome b561 family member D1 1 protein-coding - cytochrome b561 domain-containing protein 1|cytochrome b-561 domain containing 1 12 0.001642 8.208 1 1 +284615 ANKRD34A ankyrin repeat domain 34A 1 protein-coding ANKRD34 ankyrin repeat domain-containing protein 34A|ankyrin repeat domain 34 49 0.006707 4.776 1 1 +284618 RUSC1-AS1 RUSC1 antisense RNA 1 1 protein-coding C1orf104 putative uncharacterized protein RUSC1-AS1|RUSC1 antisense RNA 1 (non-protein coding)|RUSC1 antisense gene protein 1 19 0.002601 5.718 1 1 +284632 LOC284632 uncharacterized LOC284632 1 ncRNA - - 1 0.0001369 0.4622 1 1 +284654 RSPO1 R-spondin 1 1 protein-coding CRISTIN3|RSPO R-spondin-1|R-spondin homolog|roof plate-specific spondin-1 24 0.003285 2.554 1 1 +284656 EPHA10 EPH receptor A10 1 protein-coding - ephrin type-A receptor 10|EphA10s protein 83 0.01136 5.411 1 1 +284661 LOC284661 uncharacterized LOC284661 1 ncRNA - - 0.1689 0 1 +284677 C1orf204 chromosome 1 open reading frame 204 1 protein-coding - uncharacterized protein LOC284677 5 0.0006844 4.969 1 1 +284680 C1orf111 chromosome 1 open reading frame 111 1 protein-coding HSD20 uncharacterized protein C1orf111 20 0.002737 0.9969 1 1 +284685 LOC284685 EWS RNA binding protein 1 pseudogene 1 pseudo - Ewing sarcoma breakpoint region 1 pseudogene 0 0 1 0 +284688 LINC01142 long intergenic non-protein coding RNA 1142 1 ncRNA - - 0.4158 0 1 +284695 ZNF326 zinc finger protein 326 1 protein-coding ZAN75|ZIRD|Zfp326|dJ871E2.1 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 36 0.004927 8.694 1 1 +284697 BTBD8 BTB domain containing 8 1 protein-coding - BTB/POZ domain-containing protein 8|BTB (POZ) domain containing 8|double BTB/POZ domain containing protein 36 0.004927 2.48 1 1 +284702 9.112 0 1 +284716 RIMKLA ribosomal modification protein rimK like family member A 1 protein-coding FAM80A|NAAGS|NAAGS-II N-acetylaspartylglutamate synthase A|N-acetylaspartyl-glutamate synthetase A|N-acetylaspartylglutamate synthetase II|N-acetylaspartylglutamylglutamate synthase A|NAAG synthetase A|RP11-157D18.1|family with sequence similarity 80, member A|ribosomal protein S6 modification-like protein A 25 0.003422 6.124 1 1 +284723 SLC25A34 solute carrier family 25 member 34 1 protein-coding - solute carrier family 25 member 34 15 0.002053 4.729 1 1 +284729 ESPNP espin pseudogene 1 pseudo dJ1182A14.1 - 179 0.0245 1.409 1 1 +284739 LINC00176 long intergenic non-protein coding RNA 176 20 ncRNA NCRNA00176|PRR17 proline rich 17 3 0.0004106 4.48 1 1 +284749 LINC00494 long intergenic non-protein coding RNA 494 20 ncRNA - - 0 0 2.191 1 1 +284756 C20orf197 chromosome 20 open reading frame 197 20 protein-coding - uncharacterized protein C20orf197 10 0.001369 2.324 1 1 +284759 SIRPB2 signal regulatory protein beta 2 20 protein-coding PTPN1L|PTPNS1L3|dJ776F14.2 signal-regulatory protein beta-2|SIRP-beta-2|protein tyrosine phosphatase non-receptor type substrate protein|protein tyrosine phosphatase, non-receptor type substrate 1-like 3 31 0.004243 5.207 1 1 +284788 LOC284788 uncharacterized LOC284788 20 ncRNA - - 2 0.0002737 0.07519 1 1 +284798 LOC284798 uncharacterized LOC284798 20 ncRNA - - 0.8327 0 1 +284800 FAM182A family with sequence similarity 182 member A 20 ncRNA C20orf91|bB329D4.1 - 60 0.008212 1.42 1 1 +284802 FRG1BP FSHD region gene 1 family member B, pseudogene 20 pseudo C20orf80|FRG1B|bA348I14.2 FSHD region gene 1 family, member B 440 0.06022 7.712 1 1 +284805 C20orf203 chromosome 20 open reading frame 203 20 protein-coding - uncharacterized protein C20orf203|alugen 4 0.0005475 1.655 1 1 +284827 KRTAP13-4 keratin associated protein 13-4 21 protein-coding KAP13.4 keratin-associated protein 13-4 31 0.004243 0.01767 1 1 +284835 LINC00323 long intergenic non-protein coding RNA 323 21 ncRNA C21orf130|NCRNA00323|PRED42 - 1.917 0 1 +284836 LINC00319 long intergenic non-protein coding RNA 319 21 ncRNA C21orf125|NCRNA00319|PRED49 - 2 0.0002737 3.197 1 1 +284837 AATBC apoptosis associated transcript in bladder cancer 21 ncRNA - - 4.711 0 1 +284900 TTC28-AS1 TTC28 antisense RNA 1 22 ncRNA TTC28-AS|TTC28AS|dJ353E16.2 TTC28 antisense RNA (non-protein coding)|TTC28 antisense RNA 1 (non-protein coding) 2 0.0002737 7.324 1 1 +284904 SEC14L4 SEC14 like lipid binding 4 22 protein-coding TAP3 SEC14-like protein 4|SEC14-like 4|SEC14p-like protein TAP3|tocopherol-associated protein 3 34 0.004654 2.458 1 1 +284912 LOC284912 uncharacterized LOC284912 22 unknown - CITF22-62D4.1 0 0 1 0 +284942 RPL23AP82 ribosomal protein L23a pseudogene 82 22 pseudo RPL23A_43_1761 - 3 0.0004106 6.808 1 1 +284948 SH2D6 SH2 domain containing 6 2 protein-coding - SH2 domain-containing protein 6 13 0.001779 1.351 1 1 +284958 NT5DC4 5'-nucleotidase domain containing 4 2 protein-coding - - 3 0.0004106 1 0 +284992 CCDC150 coiled-coil domain containing 150 2 protein-coding - coiled-coil domain-containing protein 150 60 0.008212 4.554 1 1 +284996 RNF149 ring finger protein 149 2 protein-coding DNAPTP2 E3 ubiquitin-protein ligase RNF149|DNA polymerase-transactivated protein 2 24 0.003285 9.981 1 1 +285016 FAM150B family with sequence similarity 150 member B 2 protein-coding AUGA|PRO1097|RGPG542 protein FAM150B|AUG-alpha|augmentor alpha|augmentor-beta 6 0.0008212 3.015 1 1 +285025 CCDC141 coiled-coil domain containing 141 2 protein-coding CAMDI coiled-coil domain-containing protein 141|coiled-coil protein associated with myosin II and DISC1 130 0.01779 3.129 1 1 +285033 STARD7-AS1 STARD7 antisense RNA 1 2 ncRNA - - 5.161 0 1 +285045 LINC00486 long intergenic non-protein coding RNA 486 2 ncRNA - - 5 0.0006844 0.1866 1 1 +285051 C2orf61 chromosome 2 open reading frame 61 2 protein-coding - uncharacterized protein C2orf61 15 0.002053 0.6966 1 1 +285074 LOC285074 anaphase promoting complex subunit 1 pseudogene 2 pseudo - - 7.716 0 1 +285093 RTP5 receptor transporter protein 5 (putative) 2 protein-coding C2orf85|CXXC11|Z3CXXC5 receptor-transporting protein 5|3CxxC-type zinc finger protein 5|CXXC finger protein 11|CXXC-type zinc finger protein 11|receptor (chemosensory) transporter protein 5 (putative)|zinc finger, 3CxxC-type 5 44 0.006022 1.605 1 1 +285103 MED15P9 mediator complex subunit 15 pseudogene 9 2 pseudo CCDC74B-AS1|MED15P2 CCDC74B antisense RNA 1 (non-protein coding)|mediator complex subunit 15 pseudogene 2 13 0.001779 1 0 +285126 DNAJC5G DnaJ heat shock protein family (Hsp40) member C5 gamma 2 protein-coding CSP-gamma dnaJ homolog subfamily C member 5G|DnaJ (Hsp40) homolog, subfamily C, member 5 gamma|cysteine string protein-gamma|gamma-CSP|gamma-cysteine string protein 20 0.002737 0.3888 1 1 +285141 ERICH2 glutamate rich 2 2 protein-coding - glutamate-rich protein 2 2 0.0002737 1 0 +285148 IAH1 isoamyl acetate-hydrolyzing esterase 1 homolog 2 protein-coding - isoamyl acetate-hydrolyzing esterase 1 homolog|testicular tissue protein Li 92 13 0.001779 9.238 1 1 +285150 FLJ33534 uncharacterized LOC285150 2 ncRNA - - 2 0.0002737 1 0 +285154 CYP1B1-AS1 CYP1B1 antisense RNA 1 2 ncRNA C2orf58 CYP1B1 antisense RNA 1 (non-protein coding) 5 0.0006844 2.356 1 1 +285172 FAM126B family with sequence similarity 126 member B 2 protein-coding HYCC2 protein FAM126B 23 0.003148 8.728 1 1 +285175 UNC80 unc-80 homolog, NALCN activator 2 protein-coding C2orf21|UNC-80 protein unc-80 homolog 130 0.01779 3.34 1 1 +285180 RUFY4 RUN and FYVE domain containing 4 2 protein-coding ZFYVE31 RUN and FYVE domain-containing protein 4 33 0.004517 3.043 1 1 +285189 PLGLA plasminogen-like A (pseudogene) 2 pseudo PLGLA1|PLGP2|PRGA plasminogen pseudogene 2|plasminogen-like A1|plasminogen-related protein A 23 0.003148 0.1702 1 1 +285190 RGPD4 RANBP2-like and GRIP domain containing 4 2 protein-coding RGP4 ranBP2-like and GRIP domain-containing protein 4 110 0.01506 6.948 1 1 +285193 DUSP28 dual specificity phosphatase 28 2 protein-coding DUSP26|VHP dual specificity phosphatase 28 4 0.0005475 6.543 1 1 +285194 TUSC7 tumor suppressor candidate 7 (non-protein coding) 3 ncRNA LINC00902|LSAMP-AS1|LSAMP-AS3|LSAMPAS3|NCRNA00295 LSAMP antisense RNA 3 (non-protein coding) 0.06806 0 1 +285195 SLC9A9 solute carrier family 9 member A9 3 protein-coding AUTS16|NHE9 sodium/hydrogen exchanger 9|Na(+)/H(+) exchanger 9|putative protein product of Nbla00118|sodium/proton exchanger NHE9|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9, subfamily A (NHE9, cation proton antiporter 9), member 9 74 0.01013 7.102 1 1 +285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase 3 protein-coding AER61|AOS4|C3orf64|EOGT1 EGF domain-specific O-linked N-acetylglucosamine transferase|AER61 glycosyltransferase|EGF domain-specific O-linked N-acetylglucosamine (GlcNAc) transferase|EGF-O-GlcNAc transferase|extracellular O-linked N-acetylglucosamine transferase 25 0.003422 8.518 1 1 +285205 LINC00636 long intergenic non-protein coding RNA 636 3 ncRNA - - 2 0.0002737 0.6634 1 1 +285220 EPHA6 EPH receptor A6 3 protein-coding EHK-2|EHK2|EK12|EPA6|HEK12|PRO57066 ephrin type-A receptor 6|EPH homology kinase 2|EPH-like kinase 12|ephrin receptor EphA6 174 0.02382 2.163 1 1 +285224 DNAJB8-AS1 DNAJB8 antisense RNA 1 3 ncRNA - DNAJB8 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +285231 FBXW12 F-box and WD repeat domain containing 12 3 protein-coding FBW12|FBXO12|FBXO35 F-box/WD repeat-containing protein 12|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 36 0.004927 0.3332 1 1 +285237 C3orf38 chromosome 3 open reading frame 38 3 protein-coding - uncharacterized protein C3orf38 25 0.003422 8.593 1 1 +285242 HTR3E 5-hydroxytryptamine receptor 3E 3 protein-coding 5-HT3-E|5-HT3E|5-HT3c1 5-hydroxytryptamine receptor 3E|5-hydroxytryptamine (serotonin) receptor 3, family member E|5-hydroxytryptamine (serotonin) receptor 3E, ionotropic|5-hydroxytryptamine receptor 3 subunit E 46 0.006296 0.4688 1 1 +285266 ENTPD3-AS1 ENTPD3 antisense RNA 1 3 ncRNA - ENTPD3 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +285267 ZNF619 zinc finger protein 619 3 protein-coding - zinc finger protein 619 41 0.005612 5.712 1 1 +285268 ZNF621 zinc finger protein 621 3 protein-coding - zinc finger protein 621 23 0.003148 9.023 1 1 +285282 RABL3 RAB, member of RAS oncogene family like 3 3 protein-coding - rab-like protein 3 17 0.002327 9.052 1 1 +285311 C3orf56 chromosome 3 open reading frame 56 3 protein-coding - putative uncharacterized protein C3orf56 19 0.002601 1 0 +285313 IGSF10 immunoglobulin superfamily member 10 3 protein-coding CMF608 immunoglobulin superfamily member 10|calvaria mechanical force protein 608 197 0.02696 4.598 1 1 +285315 C3orf33 chromosome 3 open reading frame 33 3 protein-coding AC3-33 protein C3orf33|AP-1 activity suppressor 18 0.002464 6.657 1 1 +285331 CCDC66 coiled-coil domain containing 66 3 protein-coding - coiled-coil domain-containing protein 66 70 0.009581 7.592 1 1 +285335 SLC9C1 solute carrier family 9 member C1 3 protein-coding NHE|NHE-10|SLC9A10|sperm-NHE sodium/hydrogen exchanger 10|solute carrier family 9, member 10|solute carrier family 9, subfamily C (Na+-transporting carboxylic acid decarboxylase), member 1|sperm-specific Na(+)/H(+) exchanger|sperm-specific sodium proton exchanger 100 0.01369 0.8791 1 1 +285343 TCAIM T-cell activation inhibitor, mitochondrial 3 protein-coding C3orf23|TOAG-1|TOAG1 T-cell activation inhibitor, mitochondrial|tolerance associated gene-1 protein 32 0.00438 9.025 1 1 +285346 ZNF852 zinc finger protein 852 3 protein-coding - zinc finger protein 852|putative zinc finger protein 852 19 0.002601 1 0 +285349 ZNF660 zinc finger protein 660 3 protein-coding - zinc finger protein 660 27 0.003696 3.288 1 1 +285352 KIF9-AS1 KIF9 antisense RNA 1 3 ncRNA - - 3 0.0004106 1 0 +285359 PDCL3P4 phosducin-like 3 pseudogene 4 3 pseudo - - 6.04 0 1 +285362 SUMF1 sulfatase modifying factor 1 3 protein-coding AAPA3037|FGE|UNQ3037 sulfatase-modifying factor 1|C-alpha-formylglycine-generating enzyme 1|FGly-generating enzyme 27 0.003696 9.714 1 1 +285367 RPUSD3 RNA pseudouridylate synthase domain containing 3 3 protein-coding - RNA pseudouridylate synthase domain-containing protein 3 14 0.001916 8.968 1 1 +285368 PRRT3 proline rich transmembrane protein 3 3 protein-coding - proline-rich transmembrane protein 3 37 0.005064 6.921 1 1 +285370 LINC00606 long intergenic non-protein coding RNA 606 3 ncRNA - - 0.3326 0 1 +285375 LINC00620 long intergenic non-protein coding RNA 620 3 ncRNA - - 6 0.0008212 0.1246 1 1 +285381 DPH3 diphthamide biosynthesis 3 3 protein-coding DELGIP|DELGIP1|DESR1|DPH3A|KTI11|ZCSL2 DPH3 homolog|CSL-type zinc finger-containing protein 2|DPH3 homolog (KTI11, S. cerevisiae)|DPH3, KTI11 homolog|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 5 0.0006844 9.186 1 1 +285382 C3orf70 chromosome 3 open reading frame 70 3 protein-coding - UPF0524 protein C3orf70 38 0.005201 6.619 1 1 +285386 TPRG1 tumor protein p63 regulated 1 3 protein-coding FAM79B tumor protein p63-regulated gene 1 protein|family with sequence similarity 79, member B 26 0.003559 5.081 1 1 +285401 LINC00698 long intergenic non-protein coding RNA 698 3 ncRNA - - 4 0.0005475 0.5557 1 1 +285407 ALG1L9P asparagine-linked glycosylation 1-like 9, pseudogene 11 pseudo - asparagine-linked glycosylation 1 homolog pseudogene|beta-1,4-mannosyltransferase pseudogene 1 0.0001369 1 0 +285419 LINC01091 long intergenic non-protein coding RNA 1091 4 ncRNA - - 1.846 0 1 +285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 4 protein-coding WDR21B DDB1- and CUL4-associated factor 4-like protein 1|WD repeat domain 21B|WD repeat-containing protein 21B 41 0.005612 2.911 1 1 +285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 4 protein-coding BCD|CYP4AH1 cytochrome P450 4V2|cytochrome P450, family 4, subfamily V, polypeptide 2|docosahexaenoic acid omega-hydroxylase CYP4V2 33 0.004517 9.147 1 1 +285456 RPL34-AS1 RPL34 antisense RNA 1 (head to head) 4 ncRNA - RP11-462C24.1|RPL34 antisense RNA 1 (non-protein coding) 2 0.0002737 1.173 1 1 +285464 CRIPAK cysteine rich PAK1 inhibitor 4 protein-coding - cysteine-rich PAK1 inhibitor|cysteine-rich inhibitor of PAK1 78 0.01068 7.624 1 1 +285489 DOK7 docking protein 7 4 protein-coding C4orf25|CMS10|CMS1B protein Dok-7|downstream of tyrosine kinase 7 34 0.004654 5.021 1 1 +285492 LINC00955 long intergenic non-protein coding RNA 955 4 ncRNA - - 4 0.0005475 1 0 +285498 RNF212 ring finger protein 212 4 protein-coding ZHP3 probable E3 SUMO-protein ligase RNF212 19 0.002601 4.147 1 1 +285501 LINC01098 long intergenic non-protein coding RNA 1098 4 ncRNA - - 0.2109 0 1 +285512 FAM13A-AS1 FAM13A antisense RNA 1 4 ncRNA FAM13A1OS|FAM13AOS|NCRNA00039 FAM13A antisense RNA 1 (non-protein coding)|FAM13A opposite strand (non-protein coding)|FAM13A1 opposite strand (non-protein coding)|family with sequence similarity 13, member A1 opposite strand 1 0.0001369 5.042 1 1 +285513 GPRIN3 GPRIN family member 3 4 protein-coding GRIN3 G protein-regulated inducer of neurite outgrowth 3 72 0.009855 6.274 1 1 +285521 COX18 COX18, cytochrome c oxidase assembly factor 4 protein-coding COX18HS mitochondrial inner membrane protein COX18|cytochrome c oxidase assembly homolog 18|cytochrome c oxidase assembly protein 18 13 0.001779 8.517 1 1 +285525 YIPF7 Yip1 domain family member 7 4 protein-coding FinGER9 protein YIPF7|YIP1 family member 7|five-pass transmembrane protein localizing in the Golgi apparatus and the endoplasmic reticulum 9 30 0.004106 0.5634 1 1 +285527 FRYL FRY like transcription coactivator 4 protein-coding AF4p12|KIAA0826|MOR2 protein furry homolog-like|ALL1-fused gene from chromosome 4p12 protein|FRY-like|furry homolog-like|furry-like|mor2 cell polarity protein homolog 162 0.02217 10.01 1 1 +285533 RNF175 ring finger protein 175 4 protein-coding - RING finger protein 175 15 0.002053 3.494 1 1 +285548 LINC01096 long intergenic non-protein coding RNA 1096 4 ncRNA - - 1.496 0 1 +285550 FAM200B family with sequence similarity 200 member B 4 protein-coding - protein FAM200B|Putative protein FAM200B 26 0.003559 8.579 1 1 +285555 STPG2 sperm tail PG-rich repeat containing 2 4 protein-coding C4orf37 sperm-tail PG-rich repeat-containing protein 2 47 0.006433 0.6017 1 1 +285556 LOC285556 uncharacterized LOC285556 4 protein-coding - - 3 0.0004106 1 0 +285588 EFCAB9 EF-hand calcium binding domain 9 5 protein-coding - EF-hand calcium-binding domain-containing protein 9|EF-hand domain-containing protein 3 0.0004106 1 0 +285590 SH3PXD2B SH3 and PX domains 2B 5 protein-coding FAD49|FTHS|HOFI|KIAA1295|TKS4|TSK4 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 62 0.008486 10.13 1 1 +285593 LOC285593 uncharacterized LOC285593 5 ncRNA - CTB-33O18.3 1.951 0 1 +285596 FAM153A family with sequence similarity 153 member A 5 protein-coding NY-REN-7 protein FAM153A|NY REN 7 antigen|renal carcinoma antigen NY-REN-7 14 0.001916 2.317 1 1 +285598 ARL10 ADP ribosylation factor like GTPase 10 5 protein-coding ARL10A ADP-ribosylation factor-like protein 10|ADP-ribosylation factor-like 10A|ADP-ribosylation factor-like membrane-associated protein 10 0.001369 4.716 1 1 +285600 KIAA0825 KIAA0825 5 protein-coding C5orf36 uncharacterized protein KIAA0825 51 0.006981 5.18 1 1 +285601 GPR150 G protein-coupled receptor 150 5 protein-coding PGR11 probable G-protein coupled receptor 150|seven transmembrane helix receptor 10 0.001369 0.9262 1 1 +285605 DTWD2 DTW domain containing 2 5 protein-coding - DTW domain-containing protein 2 11 0.001506 7.303 1 1 +285613 RELL2 RELT like 2 5 protein-coding C5orf16 RELT-like protein 2|receptor expressed in lymphoid tissues like 2 27 0.003696 6.19 1 1 +285622 NBPF22P neuroblastoma breakpoint family member 22, pseudogene 5 pseudo - - 38 0.005201 0.4616 1 1 +285627 LOC285627 uncharacterized LOC285627 5 ncRNA - - 0.03656 0 1 +285629 LOC285629 uncharacterized LOC285629 5 ncRNA - - 2.016 0 1 +285636 C5orf51 chromosome 5 open reading frame 51 5 protein-coding - UPF0600 protein C5orf51 25 0.003422 9.789 1 1 +285641 SLC36A3 solute carrier family 36 member 3 5 protein-coding PAT3|TRAMD2|tramdorin2 proton-coupled amino acid transporter 3|proton/amino acid transporter 3|solute carrier family 36 (proton/amino acid symporter), member 3|tramdorin 2 30 0.004106 0.156 1 1 +285643 KIF4B kinesin family member 4B 5 protein-coding - chromosome-associated kinesin KIF4B|chromokinesin-B 139 0.01903 2.977 1 1 +285659 OR2V2 olfactory receptor family 2 subfamily V member 2 5 protein-coding OR2V3|OST713 olfactory receptor 2V2|olfactory receptor 2V3|olfactory receptor OR5-3|olfactory receptor, family 2, subfamily V, member 3 41 0.005612 0.04344 1 1 +285668 C5orf64 chromosome 5 open reading frame 64 5 protein-coding - uncharacterized protein C5orf64 7 0.0009581 0.9499 1 1 +285671 RNF180 ring finger protein 180 5 protein-coding RINES E3 ubiquitin-protein ligase RNF180 42 0.005749 6.359 1 1 +285672 SREK1IP1 SREK1 interacting protein 1 5 protein-coding P18SRP|SFRS12IP1 protein SREK1IP1|SFRS12-interacting protein 1|p18 splicing regulatory protein|protein SFRS12IP1|splicing regulatory protein of 18 kDa 16 0.00219 9.15 1 1 +285676 ZNF454 zinc finger protein 454 5 protein-coding - zinc finger protein 454 56 0.007665 3.587 1 1 +285679 C5orf60 chromosome 5 open reading frame 60 5 protein-coding - putative uncharacterized protein FLJ35723|putative uncharacterized protein C5orf60 19 0.002601 0.4532 1 1 +285692 LOC285692 uncharacterized LOC285692 5 ncRNA - CTD-2143L24.1 0.04585 0 1 +285696 LOC285696 uncharacterized LOC285696 5 ncRNA - - 1 0.0001369 1.244 1 1 +285704 RGMB repulsive guidance molecule family member b 5 protein-coding DRAGON RGM domain family member B|DRG11-responsive axonal guidance and outgrowth of neurite|RGM domain family, member B|repulsive guidance molecule B 30 0.004106 9.282 1 1 +285733 1.081 0 1 +285735 LINC00326 long intergenic non-protein coding RNA 326 6 ncRNA NCRNA00326 - 3 0.0004106 0.2512 1 1 +285740 PHACTR2-AS1 PHACTR2 antisense RNA 1 6 ncRNA - - 0.4236 0 1 +285753 CEP57L1 centrosomal protein 57 like 1 6 protein-coding C6orf182|bA487F23.2|cep57R centrosomal protein CEP57L1|centrosomal protein 57kDa-like 1|centrosomal protein 57kDa-like protein 1|centrosomal protein of 57 kDa-related protein|cep57-related protein 25 0.003422 6.822 1 1 +285755 PPIL6 peptidylprolyl isomerase like 6 6 protein-coding PPIase|RSPH12|bA425D10.6|dJ919F19.1 peptidyl-prolyl cis-trans isomerase-like 6|cyclophilin-like protein PPIL6|peptidyl-prolyl cis-trans isomerase-like variant a|peptidylprolyl isomerase (cyclophilin)-like 6|radial spoke 12 homolog|rotamase PPIL6 14 0.001916 5.712 1 1 +285759 FLJ34503 uncharacterized FLJ34503 6 ncRNA - - 0.6692 0 1 +285761 DCBLD1 discoidin, CUB and LCCL domain containing 1 6 protein-coding dJ94G16.1 discoidin, CUB and LCCL domain-containing protein 1 34 0.004654 8.31 1 1 +285768 LINC01622 long intergenic non-protein coding RNA 1622 6 ncRNA - TCONS_00011202 1.319 0 1 +285780 LY86-AS1 LY86 antisense RNA 1 6 ncRNA LY86-AS|LY86AS LY86 antisense RNA (non-protein coding)|LY86 antisense RNA 1 (non-protein coding) 5 0.0006844 0.6434 1 1 +285782 CAGE1 cancer antigen 1 6 protein-coding CT3|CT95|CTAG3|bA69L16.7 cancer-associated gene 1 protein|cancer/testis antigen 3|cancer/testis antigen 95|cancer/testis antigen gene 1 50 0.006844 1.036 1 1 +285796 PACRG-AS1 PACRG antisense RNA 1 6 ncRNA - PACRG antisense RNA 1 (non-protein coding) 0.6288 0 1 +285800 PRR18 proline rich 18 6 protein-coding - proline-rich protein 18|proline rich region 18 9 0.001232 2.39 1 1 +285830 HLA-F-AS1 HLA-F antisense RNA 1 6 ncRNA - HLA-F antisense RNA 1 (non-protein coding) 14 0.001916 4.896 1 1 +285834 HCG22 HLA complex group 22 6 ncRNA PBMUCL2 HLA complex group 22 (non-protein coding)|panbronchiolitis related mucin-like 2 0 0 1.849 1 1 +285847 LOC285847 uncharacterized LOC285847 6 ncRNA - - 0.5529 0 1 +285848 PNPLA1 patatin like phospholipase domain containing 1 6 protein-coding ARCI10|dJ50J22.1 patatin-like phospholipase domain-containing protein 1 43 0.005886 1.715 1 1 +285849 COX6A1P2 cytochrome c oxidase subunit 6A1 pseudogene 2 6 pseudo - cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 2|ytochrome c oxidase subunit VIa polypeptide 1 pseudogene 2 1 0.0001369 1 0 +285852 TREML4 triggering receptor expressed on myeloid cells like 4 6 protein-coding TLT-4|TLT4 trem-like transcript 4 protein|TREM like transcript 4|triggering receptor expressed on myeloid cells-like protein 4 20 0.002737 0.6561 1 1 +285855 RPL7L1 ribosomal protein L7 like 1 6 protein-coding dJ475N16.4 60S ribosomal protein L7-like 1 10 0.001369 9.779 1 1 +285877 POM121L12 POM121 transmembrane nucleoporin like 12 7 protein-coding - POM121-like protein 12|POM121 membrane glycoprotein-like 12 128 0.01752 0.01025 1 1 +285888 CNPY1 canopy FGF signaling regulator 1 7 protein-coding - protein canopy homolog 1|canopy 1 homolog 14 0.001916 0.6455 1 1 +285905 INTS4P1 integrator complex subunit 4 pseudogene 1 7 pseudo INTS4L1 integrator complex subunit 4-like 1 36 0.004927 4.288 1 1 +285908 LINC00174 long intergenic non-protein coding RNA 174 7 ncRNA NCRNA00174 - 11 0.001506 7.224 1 1 +285941 C7orf71 chromosome 7 open reading frame 71 7 protein-coding - putative uncharacterized protein C7orf71 2 0.0002737 0.3497 1 1 +285943 HOXA-AS2 HOXA cluster antisense RNA 2 7 ncRNA HOXA3as HOXA cluster antisense RNA 2 (non-protein coding) 2 0.0002737 1 0 +285954 INHBA-AS1 INHBA antisense RNA 1 7 ncRNA - INHBA antisense RNA 1 (non-protein coding) 5 0.0006844 1.565 1 1 +285955 SPDYE1 speedy/RINGO cell cycle regulator family member E1 7 protein-coding Ringo1|SPDYE|WBSCR19 putative WBSCR19-like protein 6|Speedy E|Williams Beuren syndrome chromosome region 19 protein|speedy homolog E1|speedy protein E1|williams-Beuren syndrome chromosomal region 19 protein 13 0.001779 3.144 1 1 +285958 SNHG15 small nucleolar RNA host gene 15 7 ncRNA C7orf40|Linc-Myo1g|MYO1GUT MYO1G upstream transcript|Putative uncharacterized protein C7orf40|small nucleolar RNA host gene 15 (non-protein coding) 2 0.0002737 8.384 1 1 +285961 SEPT7P9 septin 7 pseudogene 9 10 pseudo CDC10L|SEPT7L|bA291L22.2 CDC10 cell division cycle 10 homolog-like|CDC10-like|septin 7-like 17 0.002327 0.6926 1 1 +285962 WEE2-AS1 WEE2 antisense RNA 1 7 ncRNA - - 0 0 4.465 1 1 +285965 EPHA1-AS1 EPHA1 antisense RNA 1 7 ncRNA - EPHA1 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +285966 TCAF2 TRPM8 channel associated factor 2 7 protein-coding FAM115C|FAM139A TRPM8 channel-associated factor 2|TRP channel-associated factor 2|family with sequence similarity 115, member C|family with sequence similarity 139, member A|protein FAM115C 28 0.003832 7.497 1 1 +285971 ZNF775 zinc finger protein 775 7 protein-coding - zinc finger protein 775 38 0.005201 6.738 1 1 +285973 ATG9B autophagy related 9B 7 protein-coding APG9L2|NOS3AS|SONE autophagy-related protein 9B|APG9-like 2|ATG9 autophagy related 9 homolog B|autophagy 9-like 2 protein|endothelial nitric oxide synthase antisense|nitric oxide synthase 3-overlapping antisense gene protein 56 0.007665 5.141 1 1 +285987 DLX6-AS1 DLX6 antisense RNA 1 7 ncRNA DLX6-AS|DLX6AS|Evf-2|NCRNA00212 DLX6 antisense RNA (non-protein coding)|DLX6 antisense RNA 1 (non-protein coding) 0 0 1.826 1 1 +285989 ZNF789 zinc finger protein 789 7 protein-coding - zinc finger protein 789 33 0.004517 6.413 1 1 +286002 SLC26A4-AS1 SLC26A4 antisense RNA 1 7 ncRNA - SLC26A4 antisense RNA 1 (non-protein coding) 2.663 0 1 +286006 LSMEM1 leucine rich single-pass membrane protein 1 7 protein-coding C7orf53 leucine-rich single-pass membrane protein 1 7 0.0009581 4.006 1 1 +286016 TPI1P2 triosephosphate isomerase 1 pseudogene 2 7 pseudo - Putative triosephosphate isomerase-like protein LOC286016 4.136 0 1 +286042 FAM86B3P family with sequence similarity 86, member A pseudogene 8 pseudo - - 3 0.0004106 3.642 1 1 +286046 XKR6 XK related 6 8 protein-coding C8orf21|C8orf5|C8orf7|XRG6 XK-related protein 6|Transmembrane protein C8orf5|X Kell blood group precursor-related family, member 6|X-linked Kx blood group related 6|XK, Kell blood group complex subunit-related family, member 6 57 0.007802 3.195 1 1 +286053 NSMCE2 NSE2/MMS21 homolog, SMC5-SMC6 complex SUMO ligase 8 protein-coding C8orf36|MMS21|NSE2|ZMIZ7 E3 SUMO-protein ligase NSE2|MMS21 homolog|hMMS21|methyl methanesulfonate sensitivity gene 21|non-SMC element 2 homolog|non-SMC element 2, MMS21 homolog|non-structural maintenance of chromosomes element 2 homolog|zinc finger, MIZ-type containing 7 16 0.00219 8.336 1 1 +286065 MAPK6PS4 mitogen-activated protein kinase 6 pseudogene 4 8 pseudo Erk3ps4 - 1 0.0001369 1 0 +286075 ZNF707 zinc finger protein 707 8 protein-coding - zinc finger protein 707 26 0.003559 7.913 1 1 +286076 BREA2 breast cancer estrogen-induced apoptosis 2 8 ncRNA - - 2.244 0 1 +286077 FAM83H family with sequence similarity 83 member H 8 protein-coding AI3 protein FAM83H|FAM83H variant 1|FAM83H variant 2 83 0.01136 10.52 1 1 +286083 LOC286083 uncharacterized LOC286083 8 ncRNA - - 1 0.0001369 1 0 +286094 LINC01591 long intergenic non-protein coding RNA 1591 8 ncRNA - - 0.04433 0 1 +286097 MICU3 mitochondrial calcium uptake family member 3 8 protein-coding EFHA2 calcium uptake protein 3, mitochondrial|EF hand domain family A2|EF-hand domain family, member A2|EF-hand domain-containing family member A2|mitochondrial uptake family, member 3 50 0.006844 5.52 1 1 +286101 ZNF252P zinc finger protein 252, pseudogene 8 pseudo ZNF252 zinc finger protein pseudogene 39 0.005338 9.144 1 1 +286102 TMED10P1 transmembrane p24 trafficking protein 10 pseudogene 1 8 pseudo TMED10P|Tmp21-II Tmp21-II , transcribed pseudogene|transmembrane emp24-like trafficking protein 10 (yeast) pseudogene 1 1 0.0001369 5.537 1 1 +286103 ZNF252P-AS1 ZNF252P antisense RNA 1 8 ncRNA C8orf77 ZNF252P antisense RNA 1 (non-protein coding) 2 0.0002737 3.297 1 1 +286122 C8orf31 chromosome 8 open reading frame 31 8 protein-coding - uncharacterized protein C8orf31 23 0.003148 3.665 1 1 +286128 ZFP41 ZFP41 zinc finger protein 8 protein-coding ZNF753|zfp-41 zinc finger protein 41 homolog 25 0.003422 8.374 1 1 +286133 SCARA5 scavenger receptor class A member 5 8 protein-coding NET33|Tesr scavenger receptor class A member 5|scavenger receptor class A, member 5 (putative)|scavenger receptor hlg|testis expressed scavenger receptor 45 0.006159 3.931 1 1 +286135 FAM183CP family with sequence similarity 183 member C, pseudogene 8 ncRNA - - 0 0 0.0423 1 1 +286140 RNF5P1 ring finger protein 5 pseudogene 1 8 pseudo - ring finger protein 5, E3 ubiquitin protein ligase pseudogene 1 2 0.0002737 7.47 1 1 +286144 TRIQK triple QxxK/R motif containing 8 protein-coding C8orf83|PRO0845|UPF0599 triple QxxK/R motif-containing protein|protein TRIQK|triple repetitive-sequence of QXXK/R protein homolog 1 0.0001369 9.305 1 1 +286148 DPY19L4 dpy-19 like 4 (C. elegans) 8 protein-coding - probable C-mannosyltransferase DPY19L4|dpy-19-like 4|dpy-19-like protein 4|protein dpy-19 homolog 4 55 0.007528 9.725 1 1 +286151 FBXO43 F-box protein 43 8 protein-coding EMI2|ERP1|FBX43 F-box only protein 43|early mitotic inhibitor 2|endogenous meiotic inhibitor 2 59 0.008076 3.773 1 1 +286183 NKAIN3 Na+/K+ transporting ATPase interacting 3 8 protein-coding FAM77D sodium/potassium-transporting ATPase subunit beta-1-interacting protein 3|Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 3|family with sequence similarity 77, member D 19 0.002601 0.5735 1 1 +286187 PPP1R42 protein phosphatase 1 regulatory subunit 42 8 protein-coding LRRC67|TLLR|dtr protein phosphatase 1 regulatory subunit 42|leucine rich repeat containing 67|leucine-rich repeat-containing protein 67|testis leucine-rich repeat 23 0.003148 0.8762 1 1 +286204 CRB2 crumbs 2, cell polarity complex component 9 protein-coding FSGS9|VMCKD protein crumbs homolog 2|crumbs family member 2|crumbs-like protein 2 78 0.01068 3.609 1 1 +286205 SCAI suppressor of cancer cell invasion 9 protein-coding C9orf126|NET40 protein SCAI|suppressor of cancer cell invasion protein 50 0.006844 7.914 1 1 +286207 CFAP157 cilia and flagella associated protein 157 9 protein-coding C9orf117 uncharacterized protein C9orf117 15 0.002053 3.157 1 1 +286223 C9orf47 chromosome 9 open reading frame 47 9 protein-coding C9orf108|bA791O21.3 uncharacterized protein C9orf47 5 0.0006844 2.76 1 1 +286234 SPATA31E1 SPATA31 subfamily E member 1 9 protein-coding C9orf79|FAM75E1 spermatogenesis-associated protein 31E1|FAM75-like protein C9orf79|XXyac-YM21GA2.5|family with sequence similarity 75, member E1|protein FAM75E1 109 0.01492 0.2988 1 1 +286238 LOC286238 uncharacterized LOC286238 9 protein-coding - uncharacterized protein LOC286238 3 0.0004106 0.04449 1 1 +286256 LCN12 lipocalin 12 9 protein-coding - epididymal-specific lipocalin-12|lipocalcin 12 12 0.001642 4.247 1 1 +286257 C9orf142 chromosome 9 open reading frame 142 9 protein-coding PAXX|XLS protein PAXX|XRCC4-like small protein|paralog of XRCC4 and XLF 9 0.001232 8.834 1 1 +286262 TPRN taperin 9 protein-coding C9orf75|DFNB79 taperin 30 0.004106 9.068 1 1 +286310 LCN1P1 lipocalin 1 pseudogene 1 9 pseudo LCN1L1|bA430N14.2 lipocalin 1 (tear prealbumin) pseudogene|lipocalin 1-like 1 0 0 1 0 +286319 TUSC1 tumor suppressor candidate 1 9 protein-coding TSG-9|TSG9 tumor suppressor candidate gene 1 protein 18 0.002464 8.179 1 1 +286333 FAM225A family with sequence similarity 225 member A (non-protein coding) 9 ncRNA C9orf109|LINC00256A|NCRNA00256A long intergenic non-protein coding RNA 256A|non-protein coding RNA 256A 3.431 0 1 +286336 FAM78A family with sequence similarity 78 member A 9 protein-coding C9orf59 protein FAM78A 22 0.003011 7.305 1 1 +286343 LURAP1L leucine rich adaptor protein 1 like 9 protein-coding C9orf150|HYST0841|LRAP35b|bA3L8.2 leucine rich adaptor protein 1-like|leucine repeat adaptor protein 35b 79 0.01081 7.948 1 1 +286359 LOC286359 uncharacterized LOC286359 9 ncRNA - - 0.1007 0 1 +286362 OR13C9 olfactory receptor family 13 subfamily C member 9 9 protein-coding OR37L|OR9-13 olfactory receptor 13C9|olfactory receptor OR9-13 36 0.004927 0.01695 1 1 +286365 OR13D1 olfactory receptor family 13 subfamily D member 1 9 protein-coding OR9-15 olfactory receptor 13D1|olfactory receptor OR9-15 36 0.004927 0.06341 1 1 +286367 4.82 0 1 +286380 FOXD4L3 forkhead box D4-like 3 9 protein-coding FOXD4L2|FOXD6 forkhead box protein D4-like 3|FOXD4-like 2|FOXD4-like 3|Forkhead box protein D4-like 3|forkhead box protein D4-like 2 9 0.001232 0.361 1 1 +286410 ATP11C ATPase phospholipid transporting 11C X protein-coding ATPIG|ATPIQ phospholipid-transporting ATPase IG|ATPase, class VI, type 11C|P4-ATPase flippase complex alpha subunit ATP11C|probable phospholipid-transporting ATPase IG 92 0.01259 8.72 1 1 +286411 LINC00632 long intergenic non-protein coding RNA 632 X ncRNA - - 0.7744 0 1 +286423 MRRFP1 mitochondrial ribosome recycling factor pseudogene 1 X pseudo MRRFP MRRF pseudogene|novel protein similar to mitochondrial ribosome recycling factor isoform 1 (LOC286423) 2 0.0002737 1 0 +286436 H2BFM H2B histone family member M X protein-coding - histone H2B type F-M|H2B/s|histone H2B.s 15 0.002053 0.3268 1 1 +286451 YIPF6 Yip1 domain family member 6 X protein-coding FinGER6 protein YIPF6|YIP1 family member 6 15 0.002053 8.149 1 1 +286456 LOC286456 NGFI-A binding protein 1 (EGR1 binding protein 1) pseudogene X pseudo - - 1 0.0001369 1 0 +286464 CFAP47 cilia and flagella associated protein 47 X protein-coding CHDC2|CXorf22|CXorf30|CXorf59 cilia- and flagella-associated protein 47|calponin homology domain-containing protein 2 222 0.03039 0.7449 1 1 +286467 FIRRE firre intergenic repeating RNA element X ncRNA LINC01200 functional intergenic repeating RNA element 2.875 0 1 +286499 FAM133A family with sequence similarity 133 member A X protein-coding CT115 protein FAM133A|cancer/testis antigen 115 37 0.005064 2.737 1 1 +286514 MAGEB18 MAGE family member B18 X protein-coding - melanoma-associated antigen B18|MAGE-B18 antigen|melanoma antigen family B, 18|melanoma antigen family B18 55 0.007528 0.1222 1 1 +286527 TMSB15B thymosin beta 15B X protein-coding Tbeta15b thymosin beta-15B 3 0.0004106 4.967 1 1 +286530 P2RY8 purinergic receptor P2Y8 X|Y protein-coding P2Y8 P2Y purinoceptor 8|G-protein coupled purinergic receptor P2Y8|purinergic receptor P2Y, G-protein coupled, 8 6.649 0 1 +286554 BCORP1 BCL6 corepressor pseudogene 1 Y pseudo BCORL2 putative BCoR-like protein 2|BCL-6 corepressor pseudogene 1|BCL-6 corepressor-like protein 2|BCL6 co-repressor pseudogene|BCL6 co-repressor-like 2|BCL6 corepressor-like 2|BCoR-like protein 2 3 0.0004106 0.871 1 1 +286557 RBMY1A3P RNA binding motif protein, Y-linked, family 1, member A3 pseudogene Y pseudo - RNA binding motif protein, Y chromosome, family 1, member A3 pseudogene 1 0.0001369 0.01107 1 1 +286676 ILDR1 immunoglobulin like domain containing receptor 1 3 protein-coding DFNB42|ILDR1alpha|ILDR1alpha'|ILDR1beta immunoglobulin-like domain-containing receptor 1|immunoglobulin-like domain-containing receptor 1 alpha|immunoglobulin-like domain-containing receptor 1 beta 41 0.005612 6.308 1 1 +286749 STON1-GTF2A1L STON1-GTF2A1L readthrough 2 protein-coding SALF STON1-GTF2A1L protein|stoned B/TFIIA-alpha/beta-like factor 73 0.009992 1.351 1 1 +286753 TUSC5 tumor suppressor candidate 5 17 protein-coding DSPB1|IFITMD3|LOST1 tumor suppressor candidate 5|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 13 0.001779 1.525 1 1 +286826 LIN9 lin-9 DREAM MuvB core complex component 1 protein-coding BARA|BARPsv|Lin-9|TGS|TGS1|TGS2 protein lin-9 homolog|TUDOR gene similar protein|beta subunit-associated regulator of apoptosis|lin-9 homolog|pRB-associated protein|rb related pathway actor|type I interferon receptor beta chain-associated protein 44 0.006022 7.11 1 1 +286827 TRIM59 tripartite motif containing 59 3 protein-coding IFT80L|MRF1|RNF104|TRIM57|TSBF1 tripartite motif-containing protein 59|RING finger protein 104|tripartite motif-containing 57|tumor suppressor TSBF-1|tumor suppressor TSBF1 26 0.003559 7.465 1 1 +286828 CSN1S2AP casein alpha s2-like A, pseudogene 4 pseudo CSN1S2A alpha-S2-like casein A 3 0.0004106 0.01338 1 1 +286887 KRT6C keratin 6C 12 protein-coding K6E|KRT6E|PPKNEFD keratin, type II cytoskeletal 6C|CK-6C|CK-6E|K6C|cytokeratin-6C|cytokeratin-6E|keratin 6C, type II|keratin 6E|keratin K6h|type-II keratin Kb12 41 0.005612 3.75 1 1 +286967 FAM223B family with sequence similarity 223 member B (non-protein coding) X ncRNA CXorf52|CXorf52B|LINC00204B|NCRNA00204B long intergenic non-protein coding RNA 204B|non-protein coding RNA 204B 2.349 0 1 +287015 TRIM42 tripartite motif containing 42 3 protein-coding PPP1R40|T4A1 tripartite motif-containing protein 42|protein phosphatase 1, regulatory subunit 40 97 0.01328 0.07502 1 1 +317648 NOP14-AS1 NOP14 antisense RNA 1 4 ncRNA C4orf10|RES4-24 NOP14 antisense RNA 1 (non-protein coding) 5 0.0006844 8.284 1 1 +317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 3 protein-coding eIF-4E3|eIF4E-3 eukaryotic translation initiation factor 4E type 3 15 0.002053 8.971 1 1 +317662 FAM149B1 family with sequence similarity 149 member B1 10 protein-coding KIAA0974 protein FAM149B1 18 0.002464 8.667 1 1 +317671 RFESD Rieske Fe-S domain containing 5 protein-coding - Rieske domain-containing protein 9 0.001232 4.593 1 1 +317701 VN1R2 vomeronasal 1 receptor 2 19 protein-coding V1RL2 vomeronasal type-1 receptor 2|G-protein coupled receptor GPCR25|V1R-like 2|V1r-like receptor 2|hGPCR25|pheromone receptor 67 0.009171 0.1394 1 1 +317703 VN1R4 vomeronasal 1 receptor 4 19 protein-coding V1RL4 vomeronasal type-1 receptor 4|CTD-2245F17.9|G-protein coupled receptor GPCR27|V1R-like 4|V1r-like receptor 4|hGPCR27|pheromone receptor 40 0.005475 0.02406 1 1 +317705 VN1R5 vomeronasal 1 receptor 5 (gene/pseudogene) 1 protein-coding V1RL5 vomeronasal type-1 receptor 5|G-protein coupled receptor GPCR26|V1R-like 5|V1r-like receptor 5|hGPCR26|pheromone receptor 16 0.00219 0.3041 1 1 +317712 0.00203 0 1 +317716 BPIFA4P BPI fold containing family A member 4, pseudogene 20 pseudo BASE PLUNC family pseudogene|breast cancer and salivary gland expression|gene expressed only in the salivary gland and breast cancers 8 0.001095 0.1282 1 1 +317719 KLHL10 kelch like family member 10 17 protein-coding SPGF11 kelch-like protein 10|testicular tissue protein Li 104 39 0.005338 1.199 1 1 +317749 DHRS4L2 dehydrogenase/reductase 4 like 2 14 protein-coding SDR25C3 dehydrogenase/reductase SDR family member 4-like 2|NADP(H)-dependent retinol dehydrogenase/reductase short isoform-like protein|NADPH-dependent retinol dehydrogenase/reductase-like protein 2|dehydrogenase/reductase (SDR family) member 4 like 2|dehydrogenase/reductase (SDR family) member 4 like 2A3|short chain dehydrogenase/reductase family 25C member 3 18 0.002464 8.258 1 1 +317751 MESTIT1 MEST intronic transcript 1, antisense RNA 7 ncRNA MEST-AS1|MEST-IT|MEST-IT1|NCRNA00040|PEG1-AS MEST intronic transcript 1 (non-protein coding)|paternally expressed gene, antisense transcript 1.586 0 1 +317754 POTED POTE ankyrin domain family member D 21 protein-coding A26B3|ANKRD21|CT104.1|POTE|POTE-21|POTE21 POTE ankyrin domain family member D|ANKRD26-like family B member 3|Expressed in prostate, ovary, testis, and placenta|ankyrin repeat domain 21|ankyrin repeat domain-containing protein 21|cancer/testis antigen family 104, member 1|prostate, ovary, testis-expressed protein 16 0.00219 0.1286 1 1 +317761 C14orf39 chromosome 14 open reading frame 39 14 protein-coding Six6os1 protein SIX6OS1|six6 opposite strand transcript 1 70 0.009581 1.236 1 1 +317762 CCDC85C coiled-coil domain containing 85C 14 protein-coding - coiled-coil domain-containing protein 85C 2 0.0002737 9.743 1 1 +317772 HIST2H2AB histone cluster 2 H2A family member b 1 protein-coding H2AB histone H2A type 2-B|histone 2, H2ab|histone cluster 2, H2ab 21 0.002874 0.6745 1 1 +317781 DDX51 DEAD-box helicase 51 12 protein-coding - ATP-dependent RNA helicase DDX51|DEAD (Asp-Glu-Ala-Asp) box polypeptide 51|DEAD box protein 51 36 0.004927 9.063 1 1 +319085 ITPK1-AS1 ITPK1 antisense RNA 1 14 ncRNA C14orf85|ITPK1-AS|ITPK1AS|NCRNA00203 ITPK1 antisense RNA (non-protein coding)|ITPK1 antisense RNA 1 (non-protein coding) 5 0.0006844 0.5766 1 1 +319089 TTC6 tetratricopeptide repeat domain 6 14 protein-coding C14orf25|NCRNA00291 tetratricopeptide repeat protein 6|TPR repeat protein 6 27 0.003696 1 0 +319100 TAAR6 trace amine associated receptor 6 6 protein-coding TA4|TAR4|TAR6|TRAR4|taR-4|taR-6 trace amine-associated receptor 6|trace amine receptor 4|trace amine receptor 6 41 0.005612 0.07997 1 1 +319101 KRT73 keratin 73 12 protein-coding IRT6IRS3|K6IRS3|KRT6IRS3 keratin, type II cytoskeletal 73|CK-73|K73|cytokeratin-73|keratin 6 irs3|keratin 73, type II|type II inner root sheath-specific keratin-K6irs3|type-II keratin Kb36 67 0.009171 0.3855 1 1 +319103 SNORD8 small nucleolar RNA, C/D box 8 14 snoRNA RNU6C|mgU6-53 RNA, U6C small nucleolar 0.005475 0 1 +319138 BNIP3P1 BCL2 interacting protein 3 pseudogene 1 14 pseudo BNIP3P BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 1 52 0.007117 1 0 +319139 SNORD56B small nucleolar RNA, C/D box 56B 14 snoRNA RNU56B RNA, U56B small nuclear 0 0 1 +326340 ZAR1 zygote arrest 1 4 protein-coding Z3CXXC6 zygote arrest protein 1|oocyte-specific maternal effect factor|zinc finger, 3CxxC-type 6 17 0.002327 0.321 1 1 +326342 ADGRE4P adhesion G protein-coupled receptor E4, pseudogene 19 pseudo EMR4|EMR4P|FIRE|GPR127|PGR16 EGF-TM7 receptor EMR4|G protein-coupled receptor 127|egf-like module containing, mucin-like, hormone receptor-like 4 pseudogene 27 0.003696 2.33 1 1 +326343 MT1DP metallothionein 1D, pseudogene 16 pseudo MTM metallothionein 1A pseudogene|metallothionein 1D, pseudogene (functional)|metallothionein M 5 0.0006844 1.491 1 1 +326615 MED15P1 mediator complex subunit 15 pseudogene 1 14 pseudo MED15P|PCQAPP PCQAP pseudogene 0 0 1 0 +326624 RAB37 RAB37, member RAS oncogene family 17 protein-coding - ras-related protein Rab-37|RAB37, member of RAS oncogene family 29 0.003969 6.06 1 1 +326625 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type 12 protein-coding ATR|CFAP23|cblB|cob cob(I)yrinic acid a,c-diamide adenosyltransferase, mitochondrial|ATP:cob(I)alamin adenosyltransferase|ATP:corrinoid adenosyltransferase|aquocob(I)alamin vitamin B12s adenosyltransferase|cilia and flagella associated protein 23|methylmalonic aciduria type B protein 24 0.003285 9.328 1 1 +327657 SERPINA9 serpin family A member 9 14 protein-coding GCET1|SERPINA11|SERPINA11b serpin A9|centerin|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 peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 58 0.007939 1.09 1 1 +333926 PPM1J protein phosphatase, Mg2+/Mn2+ dependent 1J 1 protein-coding PP2CZ|PP2Czeta|PPP2CZ protein phosphatase 1J|PP2C-zeta|protein phosphatase 1J (PP2C domain containing)|protein phosphatase 2C isoform zeta|protein phosphatase 2C zeta|protein phosphatase 2a, catalytic subunit, zeta isoform 20 0.002737 5.673 1 1 +333929 SNAI3 snail family transcriptional repressor 3 16 protein-coding SMUC|SNAIL3|ZNF293|Zfp293 zinc finger protein SNAI3|protein snail homolog 3|snail family zinc finger 3|snail homolog 3|zinc finger protein 293 18 0.002464 4.572 1 1 +337867 UBAC2 UBA domain containing 2 13 protein-coding PHGDHL1 ubiquitin-associated domain-containing protein 2|RP11-178C10.1|UBA domain-containing protein 2|phosphoglycerate dehydrogenase like 1|phosphoglycerate dehydrogenase-like protein 1 25 0.003422 10.59 1 1 +337873 HIST2H2BC histone cluster 2 H2B family member c (pseudogene) 1 pseudo H2B/t|HIST2H2BD histone 2, H2bc|histone H2B/s|histone cluster 2, H2bc (pseudogene) 1 0.0001369 1 0 +337875 HIST2H2BA histone cluster 2 H2B family member a (pseudogene) 1 pseudo - histone 2, H2ba|histone cluster 2, H2ba (pseudogene) 10 0.001369 3.008 1 1 +337876 CHSY3 chondroitin sulfate synthase 3 5 protein-coding CHSY2|CSS3 chondroitin sulfate synthase 3|N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase 3|N-acetylgalactosaminyltransferase 3|carbohydrate synthase 2|chSy-2|chondroitin glucuronyltransferase 3|chondroitin synthase-2|glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase II 78 0.01068 5.622 1 1 +337878 KRTAP7-1 keratin associated protein 7-1 (gene/pseudogene) 21 protein-coding KAP7.1 keratin-associated protein 7-1|high tyrosine-glycine keratin-associated protein 7.1 1 0.0001369 0.09437 1 1 +337879 KRTAP8-1 keratin associated protein 8-1 21 protein-coding KAP8.1 keratin-associated protein 8-1|high glycine-tyrosine keratin-associated protein 8.1 10 0.001369 0.03587 1 1 +337880 KRTAP11-1 keratin associated protein 11-1 21 protein-coding HACL-1|HACL1|KAP11.1 keratin-associated protein 11-1|high sulfur keratin-associated protein 11.1 41 0.005612 0.1222 1 1 +337882 KRTAP19-1 keratin associated protein 19-1 21 protein-coding KAP19.1 keratin-associated protein 19-1|high tyrosine-glycine keratin-associated protein 19.1 10 0.001369 0.1762 1 1 +337959 KRTAP13-2 keratin associated protein 13-2 21 protein-coding KAP13-2 keratin-associated protein 13-2 36 0.004927 0.2385 1 1 +337960 KRTAP13-3 keratin associated protein 13-3 21 protein-coding KAP13.3 keratin-associated protein 13-3 19 0.002601 0.004438 1 1 +337963 KRTAP23-1 keratin associated protein 23-1 21 protein-coding KAP23.1 keratin-associated protein 23-1 10 0.001369 0.001583 1 1 +337966 KRTAP6-1 keratin associated protein 6-1 21 protein-coding C21orf103|KAP6.1 keratin-associated protein 6-1 19 0.002601 0.001981 1 1 +337967 KRTAP6-2 keratin associated protein 6-2 21 protein-coding KAP6.2 keratin-associated protein 6-2 18 0.002464 0.001879 1 1 +337968 KRTAP6-3 keratin associated protein 6-3 21 protein-coding KAP6.3 keratin-associated protein 6-3 16 0.00219 0.03111 1 1 +337969 KRTAP19-2 keratin associated protein 19-2 21 protein-coding KAP19.2 keratin-associated protein 19-2 6 0.0008212 0.000291 1 1 +337970 KRTAP19-3 keratin associated protein 19-3 21 protein-coding GTRHP|KAP19.3 keratin-associated protein 19-3|GTHRP|glycine/tyrosine-rich protein 15 0.002053 0.0287 1 1 +337971 KRTAP19-4 keratin associated protein 19-4 21 protein-coding KAP19.4 keratin-associated protein 19-4 12 0.001642 0.00194 1 1 +337972 KRTAP19-5 keratin associated protein 19-5 21 protein-coding KAP19.5 keratin-associated protein 19-5 21 0.002874 0.01433 1 1 +337973 KRTAP19-6 keratin associated protein 19-6 21 protein-coding KAP19.6 keratin-associated protein 19-6 14 0.001916 0.003522 1 1 +337974 KRTAP19-7 keratin associated protein 19-7 21 protein-coding KAP19.7 keratin-associated protein 19-7 14 0.001916 0.00245 1 1 +337975 KRTAP20-1 keratin associated protein 20-1 21 protein-coding KAP20.1 keratin-associated protein 20-1 14 0.001916 0.001306 1 1 +337976 KRTAP20-2 keratin associated protein 20-2 21 protein-coding KAP20.2 keratin-associated protein 20-2 16 0.00219 0.008584 1 1 +337977 KRTAP21-1 keratin associated protein 21-1 21 protein-coding KAP21.1 keratin-associated protein 21-1 15 0.002053 0.00339 1 1 +337978 KRTAP21-2 keratin associated protein 21-2 21 protein-coding KAP21.2 keratin-associated protein 21-2 19 0.002601 0.0287 1 1 +337979 KRTAP22-1 keratin associated protein 22-1 21 protein-coding KAP22.1 keratin-associated protein 22-1 8 0.001095 0.0002518 1 1 +337985 KRTAP20-3 keratin associated protein 20-3 21 protein-coding KAP19D|KAP20.3|KRTAP19P4 keratin-associated protein 20-3|keratin associated protein 19 pseudogene 4 2 0.0002737 0.00157 1 1 +338004 LINC00226 long intergenic non-protein coding RNA 226 14 ncRNA C14orf97|NCRNA00226 - 2 0.0002737 1 0 +338005 LINC00221 long intergenic non-protein coding RNA 221 14 ncRNA C14orf98|NCRNA00221 chromosome 14 open reading frame 98 5 0.0006844 1 0 +338069 ST7-OT4 ST7 overlapping transcript 4 7 ncRNA NCRNA00042|ST7OT4 ST7 overlapping transcript 4 (non-coding RNA)|ST7 overlapping transcript 4 (non-protein coding) 4 0.0005475 1.019 1 1 +338094 FAM151A family with sequence similarity 151 member A 1 protein-coding C1orf179 protein FAM151A|hyporthetical protein MGC27169 75 0.01027 1.675 1 1 +338321 NLRP9 NLR family pyrin domain containing 9 19 protein-coding CLR19.1|NALP9|NOD6|PAN12 NACHT, LRR and PYD domains-containing protein 9|NACHT, LRR and PYD 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 120 0.01642 2.106 1 1 +338322 NLRP10 NLR family pyrin domain containing 10 11 protein-coding CLR11.1|NALP10|NOD8|PAN5|PYNOD 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 89 0.01218 0.476 1 1 +338323 NLRP14 NLR family pyrin domain containing 14 11 protein-coding CLR11.2|GC-LRR|NALP14|NOD5|PAN8 NACHT, LRR and PYD domains-containing protein 14|NACHT, LRR and PYD 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 131 0.01793 1.21 1 1 +338324 S100A7A S100 calcium binding protein A7A 1 protein-coding NICE-2|S100A15|S100A7L1|S100A7f protein S100-A7A|S100 calcium-binding protein A15|S100 calcium-binding protein A7-like 1 18 0.002464 1.64 1 1 +338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 8 protein-coding GPI-HBP1|HYPL1D glycosylphosphatidylinositol-anchored high density lipoprotein-binding protein 1|GPI anchored high density lipoprotein binding protein 1|GPI-anchored HDL-binding protein 1|endothelial cell LPL transporter 15 0.002053 5.001 1 1 +338339 CLEC4D C-type lectin domain family 4 member D 12 protein-coding CD368|CLEC-6|CLEC6|CLECSF8|MCL|MPCL C-type lectin domain family 4 member D|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 8|C-type lectin receptor|C-type lectin superfamily member 8|C-type lectin-like receptor 6|macrophage C-type lectin 28 0.003832 1.534 1 1 +338376 IFNE interferon epsilon 9 protein-coding IFN-E|IFNE1|IFNT1|INFE1|PRO655 interferon epsilon|IFN-epsilon|interferon epsilon 1|interferon tau-1 14 0.001916 1.746 1 1 +338398 TAS2R60 taste 2 receptor member 60 7 protein-coding T2R56|T2R60 taste receptor type 2 member 60|taste receptor type 2 member 56|taste receptor, type 2, member 60 43 0.005886 0.2093 1 1 +338412 TAS2R64P taste 2 receptor member 64 pseudogene 12 pseudo PS2|T2R64|T2R64P taste receptor, type 2, member 19 pseudogene|taste receptor, type 2, member 64, pseudogene 5 0.0006844 1 0 +338429 SNORD109B small nucleolar RNA, C/D box 109B 15 snoRNA HBII-438B HBII-438B C/D box snoRNA 0 0 1 +338433 SNORD115-1 small nucleolar RNA, C/D box 115-1 15 snoRNA HBII-52-1|RNHBII52 HBII-52-1 snoRNA 1 0.0001369 0 1 1 +338440 ANO9 anoctamin 9 11 protein-coding PIG5|TMEM16J|TP53I5 anoctamin-9|p53-induced gene 5 protein|transmembrane protein 16J|tumor protein p53-inducible protein 5 61 0.008349 6.83 1 1 +338442 HCAR2 hydroxycarboxylic acid receptor 2 12 protein-coding GPR109A|HCA2|HM74a|HM74b|NIACR1|PUMAG|Puma-g hydroxycarboxylic acid receptor 2|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 35 0.004791 5.153 1 1 +338557 FFAR4 free fatty acid receptor 4 10 protein-coding BMIQ10|GPR120|GPR129|GT01|O3FAR1|PGR4 free fatty acid receptor 4|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 30 0.004106 2.487 1 1 +338567 KCNK18 potassium two pore domain channel subfamily K member 18 10 protein-coding K2p18.1|MGR13|TRESK|TRESK-2|TRESK2|TRIK potassium channel subfamily K member 18|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|potassium channel, two pore domain subfamily K, member 18 57 0.007802 0.04049 1 1 +338588 LINC00705 long intergenic non-protein coding RNA 705 10 ncRNA - - 1 0.0001369 0.07194 1 1 +338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 10 protein-coding SIA8F|SIAT8-F|SIAT8F|ST8SIA-VI|ST8SiaVI alpha-2,8-sialyltransferase 8F|ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 6|sialyltransferase 8F (alpha-2, 8-sialyltransferase)|sialyltransferase St8Sia VI 63 0.008623 2.285 1 1 +338599 DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 10 protein-coding DUSP27|FMDSP dual specificity phosphatase DUPD1|atypical dual-specific protein phosphatase|dual specificity phosphatase 27 25 0.003422 0.1529 1 1 +338645 LUZP2 leucine zipper protein 2 11 protein-coding KFSP2566|PRO6246 leucine zipper protein 2 63 0.008623 3.638 1 1 +338651 KRTAP5-AS1 KRTAP5-1/KRTAP5-2 antisense RNA 1 11 ncRNA - - 5 0.0006844 3.425 1 1 +338657 CCDC84 coiled-coil domain containing 84 11 protein-coding DLNB14 coiled-coil domain-containing protein 84 16 0.00219 6.943 1 1 +338661 TMEM225 transmembrane protein 225 11 protein-coding PMP22CD|PPP1R154 transmembrane protein 225|PMP22 claudin domain-containing protein|protein phosphatase 1, regulatory subunit 154 29 0.003969 0.01576 1 1 +338662 OR8D4 olfactory receptor family 8 subfamily D member 4 11 protein-coding OR11-275 olfactory receptor 8D4|olfactory receptor OR11-275 52 0.007117 0.03668 1 1 +338674 OR5F1 olfactory receptor family 5 subfamily F member 1 11 protein-coding OR11-10 olfactory receptor 5F1|olfactory receptor 11-10|olfactory receptor OR11-167 77 0.01054 0.006549 1 1 +338675 OR5AP2 olfactory receptor family 5 subfamily AP member 2 11 protein-coding OR9J1 olfactory receptor 5AP2|olfactory receptor, family 9, subfamily J, member 1 41 0.005612 0.03035 1 1 +338692 ANKRD13D ankyrin repeat domain 13D 11 protein-coding - ankyrin repeat domain-containing protein 13D|ankyrin repeat domain 13 family, member D 34 0.004654 9.32 1 1 +338699 ANKRD42 ankyrin repeat domain 42 11 protein-coding PPP1R79|SARP ankyrin repeat domain-containing protein 42|protein phosphatase 1, regulatory subunit 79|several ankyrin repeat protein 42 0.005749 7.796 1 1 +338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 11 protein-coding - N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase 1|N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N- acetylgalactosaminyltransferase|NGalNAc-T1|beta-1,4-N-acetyl-galactosaminyl transferase 4|beta-1,4-N-acetylgalactosaminyltransferase IV|beta1,4-N-acetylgalactosaminyltransferases IV|beta4GalNAc-T4|beta4GalNAcT4|betaGT4 63 0.008623 6.385 1 1 +338739 CSTF3-AS1 CSTF3 antisense RNA 1 (head to head) 11 ncRNA - - 1 0.0001369 1 0 +338751 OR52L1 olfactory receptor family 52 subfamily L member 1 11 protein-coding OR11-50 olfactory receptor 52L1|olfactory receptor OR11-50 52 0.007117 0.07915 1 1 +338755 OR2AG2 olfactory receptor family 2 subfamily AG member 2 11 protein-coding OR11-76|OR2AG2P olfactory receptor 2AG2|olfactory receptor OR11-76 pseudogene|olfactory receptor, family 2, subfamily AG, member 2 pseudogene 38 0.005201 0.2614 1 1 +338758 LINC00936 long intergenic non-protein coding RNA 936 12 ncRNA - - 1 0.0001369 5.094 1 1 +338761 C1QL4 complement C1q like 4 12 protein-coding C1QTNF11|CTRP11 complement C1q-like protein 4|C1q and tumor necrosis factor-related protein 11|C1q/TNF-related protein 11|complement component 1, q subcomponent like 4 11 0.001506 2.985 1 1 +338773 TMEM119 transmembrane protein 119 12 protein-coding OBIF transmembrane protein 119|osteoblast induction factor 25 0.003422 8.024 1 1 +338785 KRT79 keratin 79 12 protein-coding K6L|KRT6L keratin, type II cytoskeletal 79|CK-79|K79|cytokeratin-79|keratin 6L|keratin 79, type II|type-II keratin Kb38 64 0.00876 1.236 1 1 +338799 LINC01089 long intergenic non-protein coding RNA 1089 12 ncRNA LIMT long non coding RNA inhibiting metastasis 7.8 0 1 +338809 C12orf74 chromosome 12 open reading frame 74 12 protein-coding - uncharacterized protein C12orf74 20 0.002737 1.153 1 1 +338811 FAM19A2 family with sequence similarity 19 member A2, C-C motif chemokine like 12 protein-coding TAFA-2|TAFA2 protein FAM19A2|chemokine-like protein TAFA-2|family with sequence similarity 19 (chemokine (C-C motif)-like), member A2 37 0.005064 3.805 1 1 +338821 SLCO1B7 solute carrier organic anion transporter family member 1B7 (putative) 12 protein-coding LST-3|LST-3TM12|LST3|SLC21A21 putative solute carrier organic anion transporter family member 1B7|liver-specific organic anion transporter 3|liver-specific organic anion transporter 3TM12|organic anion transporter LST-3b|solute carrier organic anion transporter family, member 1B7 (non-functional) 34 0.004654 0.6606 1 1 +338872 C1QTNF9 C1q and tumor necrosis factor related protein 9 13 protein-coding AQL1|C1QTNF9A|CTRP9 complement C1q and tumor necrosis factor-related protein 9A|complement C1q and tumor necrosis factor-related protein 9|complement C1q tumor necrosis factor-related protein 9|complement C1q tumor necrosis factor-related protein 9A 26 0.003559 1.867 1 1 +338879 RNASE10 ribonuclease A family member 10 (inactive) 14 protein-coding RAH1|RNASE9 inactive ribonuclease-like protein 10|ribonuclease A H1|ribonuclease, RNase A family, 10 (non-active) 23 0.003148 1.176 1 1 +338917 VSX2 visual system homeobox 2 14 protein-coding CHX10|HOX10|MCOP2|MCOPCB3|RET1 visual system homeobox 2|ceh-10 homeo domain containing homolog|ceh-10 homeodomain-containing homolog|homeobox protein CHX10 23 0.003148 0.6487 1 1 +338949 TMEM202 transmembrane protein 202 15 protein-coding - transmembrane protein 202 31 0.004243 0.0778 1 1 +339005 WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 15 pseudo WHAMML1|WHDC1L1 Putative WASP homolog-associated protein with actin, membranes and microtubules-like protein 1|WAS protein homolog associated with actin, golgi membranes and microtubules-like 1 (pseudogene)|WAS protein homology region 2 domain containing 1 pseudogene|WAS protein homology region 2 domain containing 1-like 1|WAS protein homology region 2 domain-containing protein 1-like protein 1|WH2 domain-containing protein 1-like protein 1|WHDC1-like protein 1 61 0.008349 5.555 1 1 +339010 0.1146 0 1 +339047 9.543 0 1 +339105 PRSS53 protease, serine 53 16 protein-coding POL3S|UNQ308 serine protease 53|EDTP308|polyserase-3|polyserine protease 3 30 0.004106 5.287 1 1 +339122 RAB43 RAB43, member RAS oncogene family 3 protein-coding RAB11B|RAB41 ras-related protein Rab-43|ras-related protein Rab-41 9 0.001232 8.102 1 1 +339123 JMJD8 jumonji domain containing 8 16 protein-coding C16orf20|PP14397 jmjC domain-containing protein 8|jumonji domain-containing protein 8 12 0.001642 10.62 1 1 +339145 FAM92B family with sequence similarity 92 member B 16 protein-coding - protein FAM92B 23 0.003148 1.451 1 1 +339168 TMEM95 transmembrane protein 95 17 protein-coding UNQ9390 transmembrane protein 95 12 0.001642 0.09946 1 1 +339175 METTL2A methyltransferase like 2A 17 protein-coding METTL2 methyltransferase-like protein 2A 23 0.003148 8.635 1 1 +339184 CCDC144NL coiled-coil domain containing 144 family, N-terminal like 17 protein-coding - putative coiled-coil domain-containing protein 144 N-terminal-like 21 0.002874 0.8903 1 1 +339192 LOC339192 uncharacterized LOC339192 17 ncRNA - - 1 0.0001369 1 0 +339201 ASB16-AS1 ASB16 antisense RNA 1 17 ncRNA C17orf65 CTB-175E5.4 1 0.0001369 7.379 1 1 +339210 C17orf67 chromosome 17 open reading frame 67 17 protein-coding - uncharacterized protein C17orf67 7 0.0009581 4.49 1 1 +339221 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 17 protein-coding ALK-SMase|E-NPP 7|NPP-7|NPP7 ectonucleotide pyrophosphatase/phosphodiesterase family member 7|alkaline sphingomyelin phosphodiesterase|alkaline sphingomyelinase|intestinal alkaline sphingomyelinase 50 0.006844 1.055 1 1 +339229 OXLD1 oxidoreductase like domain containing 1 17 protein-coding C17orf90 oxidoreductase-like domain-containing protein 1 10 0.001369 8.712 1 1 +339230 CCDC137 coiled-coil domain containing 137 17 protein-coding RaRF coiled-coil domain-containing protein 137|hepatocellular carcinoma related protein 2|retinoic acid resistance factor 19 0.002601 9.203 1 1 +339231 ARL16 ADP ribosylation factor like GTPase 16 17 protein-coding - ADP-ribosylation factor-like protein 16 14 0.001916 8.971 1 1 +339240 KRT17P5 keratin 17 pseudogene 5 17 pseudo - keratin 14 pseudogene 0.4441 0 1 +339241 KRT17P2 keratin 17 pseudogene 2 17 pseudo - - 4 0.0005475 1 0 +339256 NOS2P3 nitric oxide synthase 2 pseudogene 3 17 pseudo - nitric oxide synthase 2, inducible pseudogene|nitric oxide synthase 2A pseudogene 2 0.0002737 1 0 +339263 C17orf51 chromosome 17 open reading frame 51 17 protein-coding - uncharacterized protein C17orf51 4 0.0005475 7.64 1 1 +339287 MSL1 male specific lethal 1 homolog 17 protein-coding MSL-1|hMSL1 male-specific lethal 1 homolog|MSL1-like 1|male-specific lethal 1-like 1|male-specific lethal-1 homolog 1 19 0.002601 10.76 1 1 +339290 LINC00667 long intergenic non-protein coding RNA 667 18 ncRNA - - 3 0.0004106 8.995 1 1 +339291 LRRC30 leucine rich repeat containing 30 18 protein-coding - leucine-rich repeat-containing protein 30 48 0.00657 0.05707 1 1 +339302 CPLX4 complexin 4 18 protein-coding CPX-IV|CPXIV complexin-4|CPX IV|complexin IV 18 0.002464 0.3296 1 1 +339318 ZNF181 zinc finger protein 181 19 protein-coding HHZ181 zinc finger protein 181 49 0.006707 7.642 1 1 +339324 ZNF260 zinc finger protein 260 19 protein-coding OZRF1|PEX1|ZFP260 zinc finger protein 260|zfp-260 29 0.003969 8.973 1 1 +339327 ZNF546 zinc finger protein 546 19 protein-coding ZNF49 zinc finger protein 546|CTC-471F3.6|zinc finger protein 49 58 0.007939 5.784 1 1 +339344 MYPOP Myb related transcription factor, partner of profilin 19 protein-coding P42pop myb-related transcription factor, partner of profilin|myb-related protein p42POP|p42 Myb-related transcription factor, partner of profilin|partner of profilin 24 0.003285 7.487 1 1 +339345 NANOS2 nanos C2HC-type zinc finger 2 19 protein-coding NOS2|ZC2HC12B nanos homolog 2|NOS-2 8 0.001095 0.2956 1 1 +339366 ADAMTSL5 ADAMTS like 5 19 protein-coding THSD6 ADAMTS-like protein 5|ADAMTSL-5|thrombospondin type-1 domain-containing protein 6|thrombospondin, type I, domain containing 6 21 0.002874 5.423 1 1 +339390 CLEC4G C-type lectin domain family 4 member G 19 protein-coding DTTR431|LP2698|LSECtin|UNQ431 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 24 0.003285 1.858 1 1 +339398 LINGO4 leucine rich repeat and Ig domain containing 4 1 protein-coding DAAT9248|LRRN6D|PRO34002 leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 4|leucine-rich repeat neuronal protein 6D 47 0.006433 2.705 1 1 +339400 FLG-AS1 FLG antisense RNA 1 1 ncRNA - FLG antisense RNA 1 (non-protein coding) 17 0.002327 1 0 +339403 RXFP4 relaxin/insulin like family peptide receptor 4 1 protein-coding GPCR142|GPR100|RLN3R2|RXFPR4 relaxin-3 receptor 2|G protein-coupled receptor 100|G-protein coupled receptor GPCR142|RLN3 receptor 2|insulin-like peptide INSL5 receptor|relaxin family peptide receptor 4 15 0.002053 0.9954 1 1 +339416 ANKRD45 ankyrin repeat domain 45 1 protein-coding CT117 ankyrin repeat domain-containing protein 45|cancer/testis antigen 117 27 0.003696 3.507 1 1 +339448 C1orf174 chromosome 1 open reading frame 174 1 protein-coding - UPF0688 protein C1orf174|RP13-531C17.2 16 0.00219 8.7 1 1 +339451 KLHL17 kelch like family member 17 1 protein-coding - kelch-like protein 17|actinfilin|kelch-like 17 34 0.004654 6.945 1 1 +339453 TMEM240 transmembrane protein 240 1 protein-coding C1orf70|SCA21 transmembrane protein 240|transmembrane protein C1orf70 4 0.0005475 3.399 1 1 +339456 TMEM52 transmembrane protein 52 1 protein-coding - transmembrane protein 52 28 0.003832 4.371 1 1 +339476 ERVMER61-1 endogenous retrovirus group MER61 member 1 1 other C1orf99 - 5 0.0006844 1 0 +339479 BRINP3 BMP/retinoic acid inducible neural specific 3 1 protein-coding DBCCR1L|DBCCR1L1|FAM5C BMP/retinoic acid-inducible neural-specific protein 3|DBCCR1-like protein 1|bone morphogenetic protein/retinoic acid inducible neural-specific 3|family with sequence similarity 5, member C|protein FAM5C 228 0.03121 2.54 1 1 +339483 MTMR9LP myotubularin related protein 9-like, pseudogene 1 pseudo MTMR9L myotubularin related protein 9 pseudogene 11 0.001506 6.262 1 1 +339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand 1 protein-coding ARCH|ARCH2 protein archease|archease (ARCH)|archease-like protein|zinc finger and BTB domain-containing opposite strand protein 8 16 0.00219 7.556 1 1 +339488 TFAP2E transcription factor AP-2 epsilon 1 protein-coding AP2E transcription factor AP-2-epsilon|AP2-epsilon|activating enhancer-binding protein 2-epsilon|adaptor-related protein complex 2, epsilon subunit|transcription factor AP-2 epsilon (activating enhancer binding protein 2 epsilon) 20 0.002737 4.275 1 1 +339500 ZNF678 zinc finger protein 678 1 protein-coding - zinc finger protein 678|hypothetical protein MGC42493 46 0.006296 5.339 1 1 +339501 PRSS38 protease, serine 38 1 protein-coding MPN2 serine protease 38|marapsin 2|serine protease MPN2 30 0.004106 0.1089 1 1 +339512 CCDC190 coiled-coil domain containing 190 1 protein-coding C1orf110 coiled-coil domain-containing protein 190 31 0.004243 1.531 1 1 +339521 FAM58BP cyclin-related protein FAM58B 1 pseudo FAM58B putative cyclin-related protein FAM58B 23 0.003148 0.4515 1 1 +339524 LINC01140 long intergenic non-protein coding RNA 1140 1 ncRNA - - 4.919 0 1 +339529 LOC339529 uncharacterized LOC339529 1 ncRNA - - 1 0.0001369 1 0 +339535 LINC01139 long intergenic non-protein coding RNA 1139 1 ncRNA - - 3.098 0 1 +339541 C1orf228 chromosome 1 open reading frame 228 1 protein-coding NCRNA00082|p40 uncharacterized protein C1orf228 6 0.0008212 3.57 1 1 +339559 ZFP69 ZFP69 zinc finger protein 1 protein-coding ZFP69A|ZKSCAN23A|ZNF642|ZSCAN54A zinc finger protein ZFP69|ZFP69 zinc finger protein A|zinc finger protein 642 27 0.003696 6.467 1 1 +339568 LOC339568 uncharacterized LOC339568 20 ncRNA - - 0.008674 0 1 +339665 SLC35E4 solute carrier family 35 member E4 22 protein-coding - solute carrier family 35 member E4 15 0.002053 6.701 1 1 +339669 TEX33 testis expressed 33 22 protein-coding C22orf33|EAN57|cE81G9.2 testis-expressed sequence 33 protein|protein EAN57 20 0.002737 0.03665 1 1 +339674 LINC00634 long intergenic non-protein coding RNA 634 22 ncRNA BK250D10.8 - 5 0.0006844 2.648 1 1 +339736 AK2P2 adenylate kinase 2 pseudogene 2 2 pseudo - - 0 0 1 0 +339745 SPOPL speckle type BTB/POZ protein like 2 protein-coding BTBD33 speckle-type POZ protein-like|HIB homolog 2|roadkill homolog 2 50 0.006844 9.296 1 1 +339751 MLK7-AS1 MLK7 antisense RNA 1 2 ncRNA - MLK7 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 2 protein-coding - cytochrome P450 27C1|cytochrome P450, family 27, subfamily C, polypeptide 1|cytochrome P450, family 27, subfamily C, polypeptide 13 32 0.00438 3.996 1 1 +339766 MROH2A maestro heat like repeat family member 2A 2 protein-coding HEATR7B1 maestro heat-like repeat-containing protein family member 2A|HEAT repeat containing 7B1 11 0.001506 1 0 +339768 ESPNL espin-like 2 protein-coding - espin-like protein 60 0.008212 3.871 1 1 +339778 C2orf70 chromosome 2 open reading frame 70 2 protein-coding - UPF0573 protein C2orf70 16 0.00219 2.092 1 1 +339779 PRR30 proline rich 30 2 protein-coding C2orf53 proline-rich protein 30 37 0.005064 0.0924 1 1 +339781 KRT18P19 keratin 18 pseudogene 19 2 pseudo - - 0 0 1 0 +339788 LINC00298 long intergenic non-protein coding RNA 298 2 ncRNA - - 0.4546 0 1 +339789 LINC00299 long intergenic non-protein coding RNA 299 2 ncRNA C2orf46|NCRNA00299 - 3 0.0004106 1 0 +339803 LOC339803 uncharacterized LOC339803 2 ncRNA - - 1 0.0001369 1 0 +339804 C2orf74 chromosome 2 open reading frame 74 2 protein-coding - uncharacterized protein C2orf74 6 0.0008212 7.34 1 1 +339829 CCDC39 coiled-coil domain containing 39 3 protein-coding CILD14|FAP59 coiled-coil domain-containing protein 39 115 0.01574 3.811 1 1 +339834 CCDC36 coiled-coil domain containing 36 3 protein-coding CT74 coiled-coil domain-containing protein 36|cancer/testis antigen 74 36 0.004927 2.615 1 1 +339855 KY kyphoscoliosis peptidase 3 protein-coding MFM7 kyphoscoliosis peptidase 41 0.005612 3.5 1 1 +339883 C3orf35 chromosome 3 open reading frame 35 3 protein-coding APRG1 AP20 region protein 1|AP20 region protein1|APRG1 tumor suppressor candidate 19 0.002601 2.735 1 1 +339894 LINC00880 long intergenic non-protein coding RNA 880 3 ncRNA - - 0 0 1 0 +339896 GADL1 glutamate decarboxylase like 1 3 protein-coding ADC|CSADC|HuADC|HuCSADC acidic amino acid decarboxylase GADL1|aspartate 1-decarboxylase|cysteine sulfinic acid decarboxylase|glutamate decarboxylase-like protein 1 48 0.00657 0.6835 1 1 +339906 PRSS42 protease, serine 42 3 protein-coding TESSP2 serine protease 42|putative testis serine protease 2|testis serine protease 2 19 0.002601 0.1544 1 1 +339926 EHHADH-AS1 EHHADH antisense RNA 1 3 ncRNA - EHHADH antisense RNA 1 (non-protein coding) 0 0 1 0 +339942 H1FX-AS1 H1FX antisense RNA 1 3 ncRNA C3orf47 H1FX antisense RNA 1 (non-protein coding) 4 0.0005475 5.076 1 1 +339965 CCDC158 coiled-coil domain containing 158 4 protein-coding - coiled-coil domain-containing protein 158 92 0.01259 1.995 1 1 +339967 TMPRSS11A transmembrane protease, serine 11A 4 protein-coding ECRG1 transmembrane protease serine 11A|airway trypsin-like protease 1|epidermal type-II transmembrane serine protease|esophageal cancer-susceptibility gene 1 protein 62 0.008486 1.28 1 1 +339970 GCOM2 GRINL1B complex locus 2 (pseudogene) 4 pseudo GLURR2|GRINL1B glutamate receptor, ionotropic, N-methyl D-aspartate-like 1B 1 0.0001369 1 0 +339976 TRIML1 tripartite motif family like 1 4 protein-coding RNF209 probable E3 ubiquitin-protein ligase TRIML1|RING finger protein 209 86 0.01177 0.3019 1 1 +339977 LRRC66 leucine rich repeat containing 66 4 protein-coding - leucine-rich repeat-containing protein 66 104 0.01423 3.228 1 1 +339983 NAT8L N-acetyltransferase 8 like 4 protein-coding CML3|NACED|NAT8-LIKE N-acetylaspartate synthetase|N-acetyltransferase 8-like (GCN5-related, putative)|NAA synthetase|Shati|camello-like protein 3 11 0.001506 4.936 1 1 +340017 LOC340017 uncharacterized LOC340017 4 ncRNA - - 0.2103 0 1 +340024 SLC6A19 solute carrier family 6 member 19 5 protein-coding B0AT1|HND sodium-dependent neutral amino acid transporter B(0)AT1|sodium-dependent amino acid transporter system B0|solute carrier family 6 (neurotransmitter transporter), member 19|solute carrier family 6 (neutral amino acid transporter), member 19|system B(0) neutral amino acid transporter AT1|system B0 neutral amino acid transporter 67 0.009171 1.439 1 1 +340037 PRR7-AS1 PRR7 antisense RNA 1 5 ncRNA - PRR7 antisense RNA 1 (non-protein coding) 0 0 1 0 +340061 TMEM173 transmembrane protein 173 5 protein-coding ERIS|MITA|MPYS|NET23|SAVI|STING|hMITA|hSTING stimulator of interferon genes protein|N-terminal methionine-proline-tyrosine-serine plasma membrane tetraspanner|endoplasmic reticulum IFN stimulator|endoplasmic reticulum interferon stimulator|mitochondrial mediator of IRF3 activation 22 0.003011 9.264 1 1 +340069 FAM170A family with sequence similarity 170 member A 5 protein-coding ZNFD protein FAM170A|Znf domain containing protein|zinc finger domain-containing protein|zinc finger protein ZNFD 36 0.004927 0.36 1 1 +340074 LOC340074 uncharacterized LOC340074 5 ncRNA - CTC-321K16.4 0.1363 0 1 +340075 ARSI arylsulfatase family member I 5 protein-coding ASI|SPG66 arylsulfatase I 48 0.00657 5.69 1 1 +340094 LINC01020 long intergenic non-protein coding RNA 1020 5 ncRNA - CTD-2247C11.3 0.02611 0 1 +340120 ANKRD34B ankyrin repeat domain 34B 5 protein-coding DP58 ankyrin repeat domain-containing protein 34B|cytosolic phosphoprotein DP58|dendritic phosphoprotein 58 kDa 51 0.006981 1.719 1 1 +340146 SLC35D3 solute carrier family 35 member D3 6 protein-coding FRCL1 solute carrier family 35 member D3|frc, fringe-like 1|fringe connection-like protein 1 27 0.003696 1.663 1 1 +340152 ZC3H12D zinc finger CCCH-type containing 12D 6 protein-coding C6orf95|MCPIP4|TFL|dJ281H8.1|p34 probable ribonuclease ZC3H12D|Zinc finger CCCH domain-containing protein 12D|p34|transformed follicular lymphoma|tumor suppressor TFL 24 0.003285 3.623 1 1 +340156 MYLK4 myosin light chain kinase family member 4 6 protein-coding SgK085 myosin light chain kinase family member 4|caMLCK like|sugen kinase 85 35 0.004791 4.695 1 1 +340168 DPPA5 developmental pluripotency associated 5 6 protein-coding ESG1 developmental pluripotency-associated 5 protein|embryonal stem cell specific gene 1 17 0.002327 0.2919 1 1 +340198 IFITM4P interferon induced transmembrane protein 4 pseudogene 6 pseudo dJ377H14.5 Interferon-induced transmembrane protein 3 (Interferon-inducible protein 1-8U) 0.3201 0 1 +340204 CLPSL1 colipase like 1 6 protein-coding C6orf127|ESP32|dJ510O8.6 colipase-like protein 1|colipase-like protein C6orf127 8 0.001095 0.7895 1 1 +340205 TREML1 triggering receptor expressed on myeloid cells like 1 6 protein-coding GLTL1825|PRO3438|TLT-1|TLT1|dJ238O23.3 trem-like transcript 1 protein|triggering receptor expressed on myeloid cells-like protein 1 18 0.002464 1.745 1 1 +340206 TREML3P triggering receptor expressed on myeloid cells like 3, pseudogene 6 pseudo TLT3|TREML3 TREM like transcript 3 24 0.003285 1.273 1 1 +340252 ZNF680 zinc finger protein 680 7 protein-coding - zinc finger protein 680 45 0.006159 8.051 1 1 +340260 UNCX UNC homeobox 7 protein-coding UNCX4.1 homeobox protein unc-4 homolog|UNC homeobox protein|Unc4.1 homeobox|homeobox protein Uncx4.1|truncated UNCX homeobox protein 17 0.002327 0.07676 1 1 +340267 COL28A1 collagen type XXVIII alpha 1 chain 7 protein-coding COL28 collagen alpha-1(XXVIII) chain|collagen, type XXVIII, alpha 1 102 0.01396 3.725 1 1 +340268 LOC340268 C3 and PZP like, alpha-2-macroglobulin domain containing 8 pseudogene 7 pseudo - - 0 0 1 0 +340273 ABCB5 ATP binding cassette subfamily B member 5 7 protein-coding ABCB5alpha|ABCB5beta|EST422562 ATP-binding cassette sub-family B member 5|ABCB5 P-gp|ATP-binding cassette protein|ATP-binding cassette, sub-family B (MDR/TAP), member 5|P-glycoprotein ABCB5 185 0.02532 1.678 1 1 +340277 FAM221A family with sequence similarity 221 member A 7 protein-coding C7orf46 protein FAM221A|uncharacterized protein C7orf46 19 0.002601 6.586 1 1 +340286 FAM183BP acyloxyacyl hydrolase (neutrophil) 7 pseudo FAM183B|THEG6 Protein FAM183B|family with sequence similarity 183, member B|testis highly expressed protein 6 18 0.002464 0.9201 1 1 +340307 CTAGE6 CTAGE family member 6 7 protein-coding CTAGE6P cTAGE family member 6|CTAGE family, member 6, pseudogene|cutaneous T-cell lymphoma-associated antigen 6|protein cTAGE-6|putative protein cTAGE-6 11 0.001506 2.475 1 1 +340348 TSPAN33 tetraspanin 33 7 protein-coding PEN|PEN.|TSPAN-33 tetraspanin-33|penumbra|proerythroblast new membrane 13 0.001779 8.745 1 1 +340351 AGBL3 ATP/GTP binding protein like 3 7 protein-coding CCP3 cytosolic carboxypeptidase 3 30 0.004106 2.754 1 1 +340357 LOC340357 uncharacterized LOC340357 8 ncRNA - - 0.1543 0 1 +340359 KLHL38 kelch like family member 38 8 protein-coding C8ORFK36 kelch-like protein 38|kelch-like 38 68 0.009307 2.09 1 1 +340371 NRBP2 nuclear receptor binding protein 2 8 protein-coding TRG16|pp9320 nuclear receptor-binding protein 2|transformation-related protein 16 17 0.002327 9.552 1 1 +340385 ZNF517 zinc finger protein 517 8 protein-coding - zinc finger protein 517 24 0.003285 7.982 1 1 +340390 WDR97 WD repeat domain 97 8 protein-coding KIAA1875 WD repeat-containing protein 97 8 0.001095 4.262 1 1 +340393 TMEM249 transmembrane protein 249 8 protein-coding C8ORFK29 transmembrane protein 249|putative transmembrane protein C8orfK29 4 0.0005475 2.658 1 1 +340419 RSPO2 R-spondin 2 8 protein-coding CRISTIN2 R-spondin-2|R-spondin 2 homolog|roof plate-specific spondin-2 48 0.00657 2.233 1 1 +340441 POTEA POTE ankyrin domain family member A 8 protein-coding A26A1|CT104.3|POTE-8|POTE8 POTE ankyrin domain family member A|ANKRD26-like family A, member 1|cancer/testis antigen family 104, member 3|prostate, ovary, testis-expressed protein on chromosome 8|protein expressed in prostate, ovary, testis, and placenta 8 100 0.01369 0.01535 1 1 +340460 KRT18P24 keratin 18 pseudogene 24 9 pseudo - - 0 0 1 0 +340481 ZDHHC21 zinc finger DHHC-type containing 21 9 protein-coding 9130404H11Rik|DHHC-21|DHHC21|DNZ1|HSPC097 palmitoyltransferase ZDHHC21|probable palmitoyltransferase ZDHHC21|zinc finger DHHC domain-containing protein 21|zinc finger, DHHC domain containing 21 16 0.00219 7.127 1 1 +340485 ACER2 alkaline ceramidase 2 9 protein-coding ALKCDase2|ASAH3L alkaline ceramidase 2|alkCDase 2|alkaline CDase 2|ceramide hydrolase|haCER2 18 0.002464 5.816 1 1 +340508 GAS2L1P2 growth arrest specific 2 like 1 pseudogene 2 9 pseudo - - 0.7758 0 1 +340526 RGAG4 retrotransposon gag domain containing 4 X protein-coding 6430402L03Rik|MAR5|MART5 retrotransposon gag domain-containing protein 4 50 0.006844 7.461 1 1 +340527 NHSL2 NHS like 2 X protein-coding - NHS-like protein 2 59 0.008076 4.684 1 1 +340529 PABPC1L2A poly(A) binding protein cytoplasmic 1 like 2A X protein-coding RBM32A polyadenylate-binding protein 1-like 2|RNA binding motif protein 32A|RNA-binding motif protein 32|RNA-binding protein 32 1 0.0001369 0.7639 1 1 +340533 KIAA2022 KIAA2022 X protein-coding MRX98|XPN protein KIAA2022|XLMR protein related to neurite extension|XLMR-related protein, neurite extension 177 0.02423 4.294 1 1 +340542 BEX5 brain expressed X-linked 5 X protein-coding NGFRAP1L1 protein BEX5|BEX family member 5|NGFRAP1-like 1|NGFRAP1-like protein 1|brain-expressed X-linked protein 5|nerve growth factor receptor-associated protein 2 6 0.0008212 5.263 1 1 +340543 TCEAL5 transcription elongation factor A like 5 X protein-coding WEX4 transcription elongation factor A protein-like 5|TCEA-like protein 5|transcription elongation factor A (SII)-like 5|transcription elongation factor S-II protein-like 5 30 0.004106 4.062 1 1 +340547 VSIG1 V-set and immunoglobulin domain containing 1 X protein-coding 1700062D20Rik|GPA34|dJ889N15.1 V-set and immunoglobulin domain-containing protein 1|cell surface A33 antigen|glycoprotein A34 28 0.003832 3.961 1 1 +340554 ZC3H12B zinc finger CCCH-type containing 12B X protein-coding CXorf32|MCPIP2 probable ribonuclease ZC3H12B|MCP-induced protein 2|zinc finger CCCH domain-containing protein 12B 61 0.008349 5.028 1 1 +340562 SATL1 spermidine/spermine N1-acetyl transferase-like 1 X protein-coding - spermidine/spermine N(1)-acetyltransferase-like protein 1 37 0.005064 4.594 1 1 +340578 DCAF12L2 DDB1 and CUL4 associated factor 12 like 2 X protein-coding WDR40C DDB1- and CUL4-associated factor 12-like protein 2|WD repeat-containing protein 40C 113 0.01547 1.865 1 1 +340591 CA5BP1 carbonic anhydrase 5B pseudogene 1 X pseudo CA5BL|CA5BP|PRO2325 carbonic anhydrase VB pseudogene 1|carbonic dehydratase 17 0.002327 7.936 1 1 +340595 ZCCHC16 zinc finger CCHC-type containing 16 X protein-coding Mar4|Mart4 zinc finger CCHC domain-containing protein 16|mammalian retrotransposon-derived protein 4|zinc finger, CCHC domain containing 16 42 0.005749 1.019 1 1 +340596 LHFPL1 lipoma HMGIC fusion partner-like 1 X protein-coding - lipoma HMGIC fusion partner-like 1 protein|LHFP-like protein 1 25 0.003422 2.186 1 1 +340602 CXorf67 chromosome X open reading frame 67 X protein-coding - uncharacterized protein CXorf67 31 0.004243 1.092 1 1 +340618 FAM41AY1 family with sequence similarity 41 member A, Y-linked 1 Y ncRNA FAM41AY family with sequence similarity 41, member A, Y-linked 0.02264 0 1 +340654 LIPM lipase family member M 10 protein-coding LIPL3|bA304I5.1 lipase member M|lipase M|lipase-like abhydrolase domain-containing protein 3|lipase-like, ab-hydrolase domain containing 3 10 0.001369 0.1958 1 1 +340665 CYP26C1 cytochrome P450 family 26 subfamily C member 1 10 protein-coding FFDD4 cytochrome P450 26C1|cytochrome P450, family 26, subfamily C, polypeptide 1 21 0.002874 0.9405 1 1 +340706 VWA2 von Willebrand factor A domain containing 2 10 protein-coding AMACO|CCSP-2|NET42 von Willebrand factor A domain-containing protein 2|a domain-containing protein similar to matrilin and collagen|colon cancer diagnostic marker|colon cancer secreted protein 2 50 0.006844 5.328 1 1 +340719 NANOS1 nanos C2HC-type zinc finger 1 10 protein-coding EC_Rep1a|NOS-1|NOS1|SPGF12|ZC2HC12A nanos homolog 1 3 0.0004106 7.438 1 1 +340745 LRIT2 leucine rich repeat, Ig-like and transmembrane domains 2 10 protein-coding LRRC22 leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 2|leucine rich repeat containing 22|leucine-rich repeat, immunoglobulin-like and transmembrane domains 2|leucine-rich repeat-containing protein 22 49 0.006707 0.9635 1 1 +340784 HMX3 H6 family homeobox 3 10 protein-coding NKX-5.1|NKX5.1|Nkx5-1 homeobox protein HMX3|homeo box (H6 family) 3|homeobox (H6 family) 3|homeobox protein H6 family member 3|homeobox protein Nkx-5.1 23 0.003148 0.4559 1 1 +340811 AKR1C8P aldo-keto reductase family 1 member C8, pseudogene 10 pseudo AKR1CL1 aldo-keto reductase family 1, member C-like 1|protein RAKc 20 0.002737 0.4081 1 1 +340895 MALRD1 MAM and LDL receptor class A domain containing 1 10 protein-coding C10orf112|DIET1|bA265G8.2 MAM and LDL-receptor class A domain-containing protein 1|MAM and LDL-receptor class A domain-containing protein C10orf112|novel MAM domain containing protein 10 0.001369 1 0 +340900 EBLN1 endogenous Bornavirus-like nucleoprotein 1 10 protein-coding EBLN-1 endogenous Bornavirus-like nucleoprotein 1|endogenous Borna-like N element-1|endogenous Borna-like N element-containing protein 1 18 0.002464 1 0 +340980 OR52B6 olfactory receptor family 52 subfamily B member 6 11 protein-coding OR11-47 olfactory receptor 52B6|olfactory receptor OR11-47 36 0.004927 0.1265 1 1 +340990 OTOG otogelin 11 protein-coding DFNB18B|MLEMP|OTGN otogelin 27 0.003696 1 0 +341019 DCDC1 doublecortin domain containing 1 11 protein-coding - doublecortin domain-containing protein 1 148 0.02026 1.308 1 1 +341032 C11orf53 chromosome 11 open reading frame 53 11 protein-coding - uncharacterized protein C11orf53 16 0.00219 1.85 1 1 +341056 LOC341056 SUMO1 activating enzyme subunit 1 pseudogene 11 pseudo - - 1 0.0001369 3.76 1 1 +341116 MS4A10 membrane spanning 4-domains A10 11 protein-coding CD20L7|MS4A9 membrane-spanning 4-domains subfamily A member 10|CD20 antigen-like 7|membrane-spanning 4-domains, subfamily A, member 10 20 0.002737 0.2732 1 1 +341152 OR2AT4 olfactory receptor family 2 subfamily AT member 4 11 protein-coding OR11-265 olfactory receptor 2AT4|olfactory receptor OR11-265 pseudogene 27 0.003696 0.05319 1 1 +341208 HEPHL1 hephaestin like 1 11 protein-coding - hephaestin-like protein 1 116 0.01588 2.452 1 1 +341276 OR10A2 olfactory receptor family 10 subfamily A member 2 11 protein-coding OR10A2P|OR11-82|OR11-86|OST363 olfactory receptor 10A2|hP4 olfactory receptor|olfactory receptor OR11-82 pseudogene|olfactory receptor OR11-86|olfactory receptor, family 10, subfamily A, member 2 pseudogene 36 0.004927 0.0727 1 1 +341277 OVCH2 ovochymase 2 (gene/pseudogene) 11 protein-coding OVTN ovochymase-2|oviductin protease 48 0.00657 0.5794 1 1 +341346 SMCO2 single-pass membrane protein with coiled-coil domains 2 12 protein-coding C12orf70 single-pass membrane and coiled-coil domain-containing protein 2 11 0.001506 1.634 1 1 +341350 OVCH1 ovochymase 1 12 protein-coding OVCH ovochymase-1 117 0.01601 0.4914 1 1 +341359 SYT10 synaptotagmin 10 12 protein-coding - synaptotagmin-10|synaptotagmin X|sytX 87 0.01191 0.9473 1 1 +341378 LOC341378 thyroid hormone receptor interactor 11 pseudogene 12 pseudo - - 0 0 1 0 +341392 ACSM4 acyl-CoA synthetase medium-chain family member 4 12 protein-coding - acyl-coenzyme A synthetase ACSM4, mitochondrial 55 0.007528 0.06552 1 1 +341405 ANKRD33 ankyrin repeat domain 33 12 protein-coding C12orf7|PANKY ankyrin repeat domain-containing protein 33 47 0.006433 0.8558 1 1 +341416 OR6C2 olfactory receptor family 6 subfamily C member 2 12 protein-coding OR6C67 olfactory receptor 6C2|HSA3 31 0.004243 0.1024 1 1 +341418 OR6C4 olfactory receptor family 6 subfamily C member 4 12 protein-coding OR12-10 olfactory receptor 6C4|olfactory receptor OR12-10 25 0.003422 0.00998 1 1 +341567 H1FNT H1 histone family member N, testis specific 12 protein-coding H1.7|H1T2 testis-specific H1 histone|HANP1|haploid germ cell-specific nuclear protein 1|histone H1t2|testis secretory sperm-binding protein Li 223n 25 0.003422 0.6623 1 1 +341568 OR8S1 olfactory receptor family 8 subfamily S member 1 12 protein-coding - olfactory receptor 8S1 33 0.004517 0.1065 1 1 +341640 FREM2 FRAS1 related extracellular matrix protein 2 13 protein-coding - FRAS1-related extracellular matrix protein 2|ECM3 homolog 280 0.03832 5.728 1 1 +341676 NEK5 NIMA related kinase 5 13 protein-coding - serine/threonine-protein kinase Nek5|NIMA (never in mitosis gene a)-related kinase 5|never in mitosis A-related kinase 5|nimA-related protein kinase 5 70 0.009581 2.152 1 1 +341757 MRPS31P2 mitochondrial ribosomal protein S31 pseudogene 2 13 pseudo - - 1 0.0001369 1 0 +341799 OR6S1 olfactory receptor family 6 subfamily S member 1 14 protein-coding OR14-37|OR6S1Q olfactory receptor 6S1|olfactory receptor OR14-37 35 0.004791 0.05988 1 1 +341880 SLC35F4 solute carrier family 35 member F4 14 protein-coding C14orf36|c14_5373 solute carrier family 35 member F4 45 0.006159 0.871 1 1 +341883 LRRC9 leucine rich repeat containing 9 14 pseudo - - 11 0.001506 1 0 +341947 COX8C cytochrome c oxidase subunit 8C 14 protein-coding COX8-3 cytochrome c oxidase subunit 8C, mitochondrial|COX VIII-3|cytochrome c oxidase polypeptide 8|cytochrome c oxidase polypeptide VIII|cytochrome c oxidase subunit 8-3|cytochrome c oxidase subunit VIII|cytochrome c oxidase subunit VIIIC 8 0.001095 0.4435 1 1 +342035 GLDN gliomedin 15 protein-coding CLOM|COLM|CRG-L2|CRGL2|UNC-112 gliomedin|collomin|colmedin 34 0.004654 5.605 1 1 +342096 GOLGA6A golgin A6 family member A 15 protein-coding GLP|GOLGA6 golgin subfamily A member 6A|Golgin linked to PML|golgi autoantigen, golgin subfamily a, 6|golgi autoantigen, golgin subfamily a, 6A|golgi autoantigen, golgin subfamily a, member 6|golgin-like protein 14 0.001916 0.4729 1 1 +342125 TMC3 transmembrane channel like 3 15 protein-coding - transmembrane channel-like protein 3 63 0.008623 1.212 1 1 +342132 ZNF774 zinc finger protein 774 15 protein-coding - zinc finger protein 774 26 0.003559 4.522 1 1 +342184 FMN1 formin 1 15 protein-coding FMN|LD formin-1|formin (limb deformity)|limb deformity protein homolog 93 0.01273 4.654 1 1 +342346 C16orf96 chromosome 16 open reading frame 96 16 protein-coding - uncharacterized protein C16orf96|putative uncharacterized protein C16orf96 30 0.004106 2.094 1 1 +342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 16 protein-coding ZNF694|ZSCAN31|ZSCAN34 zinc finger protein with KRAB and SCAN domains 2|zinc finger and SCAN domain containing 31|zinc finger protein 694 77 0.01054 7.566 1 1 +342371 ATXN1L ataxin 1 like 16 protein-coding BOAT|BOAT1 ataxin-1-like|brother of ATXN1|brother of ataxin-1 11 0.001506 9.949 1 1 +342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting 16 protein-coding - polycystic kidney disease protein 1-like 3|PC1-like 3 protein|polycystic kidney disease 1-like 3|polycystin-1L3 39 0.005338 0.9407 1 1 +342510 CD300E CD300e molecule 17 protein-coding CD300LE|CLM-2|CLM2|CMRF35-A5|IREM-2|IREM2|PIgR-2|PIgR2 CMRF35-like molecule 2|CD300 antigen-like family member E|CD300e antigen|immune receptor expressed on myeloid cells 2|poly-Ig receptor 2|polymeric immunoglobulin receptor 2 30 0.004106 1.309 1 1 +342527 SMTNL2 smoothelin like 2 17 protein-coding - smoothelin-like protein 2 25 0.003422 3.371 1 1 +342538 NACA2 nascent polypeptide associated complex alpha subunit 2 17 protein-coding ANAC|NACAL nascent polypeptide-associated complex subunit alpha-2|IgE autoantigen alpha-nascent polypeptide-associated complex|alpha-NAC protein|hom s 2.01 protein|nascent polypeptide-associated complex, alpha polypeptide, 2 26 0.003559 6.66 1 1 +342541 LOC342541 peptidylprolyl isomerase A (cyclophilin A) pseudogene 17 pseudo - - 0 0 1 0 +342574 KRT27 keratin 27 17 protein-coding K25IRS3|KRT25C keratin, type I cytoskeletal 27|CK-27|K25C|K27|cytokeratin-27|keratin 27, type I|keratin-25C|type I inner root sheath specific keratin 25 irs3|type I inner root sheath-specific keratin-K25irs3 37 0.005064 0.9242 1 1 +342615 2.876 0 1 +342618 SLFN14 schlafen family member 14 17 protein-coding BDPLT20 protein SLFN14 25 0.003422 0.7569 1 1 +342666 LRRC37A11P leucine rich repeat containing 37 member A11, pseudogene 17 pseudo LRRC37F leucine rich repeat containing 37, member A3 pseudogene 73 0.009992 1 0 +342667 STAC2 SH3 and cysteine rich domain 2 17 protein-coding 24b2|24b2/STAC2 SH3 and cysteine-rich domain-containing protein 2|SRC homology 3 and cysteine-rich domain-containing protein 2 29 0.003969 3.892 1 1 +342705 PGDP1 phosphogluconate dehydrogenase pseudogene 1 18 pseudo PGDL1 phosphogluconate dehydrogenase-like 1 1 0.0001369 1 0 +342850 ANKRD62 ankyrin repeat domain 62 18 protein-coding DKFZp779B1634 ankyrin repeat domain-containing protein 62 12 0.001642 1 0 +342865 VSTM2B V-set and transmembrane domain containing 2B 19 protein-coding - V-set and transmembrane domain-containing protein 2B 18 0.002464 0.9686 1 1 +342892 ZNF850 zinc finger protein 850 19 protein-coding ZNF850P zinc finger protein 850|putative zinc finger protein ENSP00000330994 19 0.002601 1 0 +342897 NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) 19 protein-coding FBXO50|NCCRP-1 F-box only protein 50|NCC receptor protein 1 homolog|nonspecific cytotoxic cell receptor protein 1 homolog 24 0.003285 4.512 1 1 +342898 SYCN syncollin 19 protein-coding INSSA1|SYL syncollin|insulin synthesis associated 1|insulin synthesis-associated protein 1 3 0.0004106 0.2015 1 1 +342900 LEUTX leucine twenty homeobox 19 protein-coding - leucine-twenty homeobox|arginine-fifty homeobox-like pseudogene|putative leucine-twenty homeobox 2 0.0002737 0.05041 1 1 +342908 ZNF404 zinc finger protein 404 19 protein-coding - zinc finger protein 404 47 0.006433 5.515 1 1 +342909 ZNF284 zinc finger protein 284 19 protein-coding ZNF284L zinc finger protein 284 44 0.006022 4.944 1 1 +342926 ZNF677 zinc finger protein 677 19 protein-coding - zinc finger protein 677|hypothetical protein MGC48625 70 0.009581 4.604 1 1 +342931 RFPL4A ret finger protein like 4A 19 protein-coding RFPL4|RNF210 ret finger protein-like 4A|RING finger protein 210|ret finger protein-like 4 7 0.0009581 0.6993 1 1 +342933 ZSCAN5B zinc finger and SCAN domain containing 5B 19 protein-coding ZNF371|ZNF495B zinc finger and SCAN domain-containing protein 5B 57 0.007802 1.327 1 1 +342945 ZSCAN22 zinc finger and SCAN domain containing 22 19 protein-coding HKR2|ZNF50 zinc finger and SCAN domain-containing protein 22|GLI-Kruppel family member HKR2|krueppel-related zinc finger protein 2|zinc finger protein 50 43 0.005886 6.795 1 1 +342977 NANOS3 nanos C2HC-type zinc finger 3 19 protein-coding NANOS1L|NOS3|ZC2HC12C nanos homolog 3 26 0.003559 2.834 1 1 +342979 PALM3 paralemmin 3 19 protein-coding - paralemmin-3 19 0.002601 5.599 1 1 +343035 RD3 retinal degeneration 3 1 protein-coding C1orf36|LCA12 protein RD3|retinal degeneration protein 3 23 0.003148 1.158 1 1 +343052 LOC343052 immunoglobulin superfamily DCC subclass member 3 pseudogene 1 pseudo - - 0 0 1 0 +343066 AADACL4 arylacetamide deacetylase like 4 1 protein-coding - arylacetamide deacetylase-like 4 45 0.006159 0.1676 1 1 +343068 PRAMEF5 PRAME family member 5 1 protein-coding PRAMEF23|PRAMEF5L PRAME family member 5|PRAME family member 23 4 0.0005475 0.08741 1 1 +343069 HNRNPCL1 heterogeneous nuclear ribonucleoprotein C-like 1 1 protein-coding HNRPCL1 heterogeneous nuclear ribonucleoprotein C-like 1|hnRNP C-like-1|hnRNP core protein C-like 1 43 0.005886 0.07524 1 1 +343070 PRAMEF9 PRAME family member 9 1 protein-coding - PRAME family member 9/15 1 0.0001369 0.1435 1 1 +343071 PRAMEF10 PRAME family member 10 1 protein-coding - PRAME family member 10 24 0.003285 0.2122 1 1 +343099 CCDC18 coiled-coil domain containing 18 1 protein-coding NY-SAR-41 coiled-coil domain-containing protein 18|sarcoma antigen NY-SAR-24|sarcoma antigen NY-SAR-41 93 0.01273 5.746 1 1 +343169 OR6F1 olfactory receptor family 6 subfamily F member 1 1 protein-coding OR1-34|OR1-38|OST731 olfactory receptor 6F1|olfactory receptor OR1-34 pseudogene|olfactory receptor OR1-38 82 0.01122 0.0909 1 1 +343170 OR14K1 olfactory receptor family 14 subfamily K member 1 1 pseudo OR1-39|OR1.5.9|OR5AY1 olfactory receptor OR1-39|olfactory receptor, family 5, subfamily AY, member 1 42 0.005749 1 0 +343171 OR2W3 olfactory receptor family 2 subfamily W member 3 1 protein-coding OR2W3P|OR2W8P|OST718 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 81 0.01109 2.031 1 1 +343172 OR2T8 olfactory receptor family 2 subfamily T member 8 1 protein-coding OR2T8P olfactory receptor 2T8|olfactory receptor, family 2, subfamily T, member 8 pseudogene 50 0.006844 0.5132 1 1 +343173 OR2T3 olfactory receptor family 2 subfamily T member 3 1 protein-coding - olfactory receptor 2T3|seven transmembrane helix receptor 63 0.008623 0.05661 1 1 +343263 MYBPHL myosin binding protein H like 1 protein-coding - myosin-binding protein H-like 22 0.003011 1.583 1 1 +343406 OR10R2 olfactory receptor family 10 subfamily R member 2 1 protein-coding OR1-8|OR10R2Q olfactory receptor 10R2|olfactory receptor OR1-8 65 0.008897 0.0627 1 1 +343413 FCRL6 Fc receptor like 6 1 protein-coding FcRH6 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 38 0.005201 3.256 1 1 +343450 KCNT2 potassium sodium-activated channel subfamily T member 2 1 protein-coding KCa4.2|SLICK|SLO2.1 potassium channel subfamily T member 2|potassium channel, sodium activated subfamily T, member 2|potassium channel, subfamily T, member 2|sequence like an intermediate conductance potassium channel subunit|sodium and chloride-activated ATP-sensitive potassium channel Slo2.1|sodium-and chloride-activated ATP-sensitive potassium channel (SLICK) 190 0.02601 4.201 1 1 +343472 BARHL2 BarH like homeobox 2 1 protein-coding - barH-like 2 homeobox protein 44 0.006022 0.26 1 1 +343477 HSP90B3P heat shock protein 90 beta family member 3, pseudogene 1 pseudo GRP94C|TRA1P2|TRAP2 heat shock protein 90kDa beta (Grp94), member 3, pseudogene|heat shock protein 90kDa beta family member 3, pseudogene|heat shock protein 94c|tumor rejection antigen (gp96) 1 pseudogene 2 3.224 0 1 +343505 NBPF7 neuroblastoma breakpoint family member 7 1 protein-coding - putative neuroblastoma breakpoint family member 7 15 0.002053 0.9359 1 1 +343521 TCTEX1D4 Tctex1 domain containing 4 1 protein-coding - tctex1 domain-containing protein 4|Tctex2 beta|novel Tctex-1 family domain-containing protein|protein N22.1|tctex-2-beta 10 0.001369 2.138 1 1 +343563 OR2T29 olfactory receptor family 2 subfamily T member 29 1 protein-coding - olfactory receptor 2T29 8 0.001095 0.001333 1 1 +343578 ARHGAP40 Rho GTPase activating protein 40 20 protein-coding C20orf95|dJ1100H13.4 rho GTPase-activating protein 40|rho-type GTPase-activating protein 40 15 0.002053 1 0 +343637 RSPO4 R-spondin 4 20 protein-coding C20orf182|CRISTIN4 R-spondin-4|R-spondin family, member 4|hRspo4|roof plate-specific spondin-4 19 0.002601 3.613 1 1 +343641 TGM6 transglutaminase 6 20 protein-coding SCA35|TG6|TGM3L|TGY|dJ734P14.3 protein-glutamine gamma-glutamyltransferase 6|TGase Y|TGase-6|transglutaminase y 83 0.01136 0.1882 1 1 +343702 XKR7 XK related 7 20 protein-coding C20orf159|dJ310O13.4 XK-related protein 7|X Kell blood group precursor-related family, member 7|X-linked Kx blood group related 7|XK, Kell blood group complex subunit-related family, member 7 62 0.008486 0.9056 1 1 +343819 MRPL51P2 mitochondrial ribosomal protein L51 pseudogene 2 21 pseudo - - 1 0.0001369 1 0 +343930 MSGN1 mesogenin 1 2 protein-coding MSOG|pMsgn1 mesogenin-1|pMesogenin1|paraxial mesoderm-specific mesogenin1|paraxial mesogenin 26 0.003559 0.1767 1 1 +343990 KIAA1211L KIAA1211 like 2 protein-coding C2orf55 uncharacterized protein KIAA1211-like|uncharacterized protein C2orf55 50 0.006844 7.69 1 1 +344018 FIGLA folliculogenesis specific bHLH transcription factor 2 protein-coding BHLHC8|FIGALPHA|POF6 factor in the germline alpha|class C basic helix-loop-helix protein 8|folliculogenesis-specific basic helix-loop-helix protein|transcription factor FIGa 14 0.001916 0.174 1 1 +344022 NOTO notochord homeobox 2 protein-coding - homeobox protein notochord|notochord homolog 7 0.0009581 0.3126 1 1 +344065 LOC344065 zinc finger protein 570 pseudogene 2 pseudo - - 1 0.0001369 1 0 +344148 NCKAP5 NCK associated protein 5 2 protein-coding ERIH1|ERIH2|NAP5 nck-associated protein 5|NAP-5|peripheral clock protein 2 214 0.02929 6.086 1 1 +344167 FOXI3 forkhead box I3 2 protein-coding - forkhead box protein I3 11 0.001506 0.8754 1 1 +344191 EVX2 even-skipped homeobox 2 2 protein-coding EVX-2 homeobox even-skipped homolog protein 2|eve, even-skipped homeo box homolog 2|even-skipped homeo box 2 (homolog of Drosophila eve) 46 0.006296 0.1375 1 1 +344328 ST13P2 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 2 2 pseudo - - 1 0.0001369 1 0 +344382 LOC344382 serine/threonine kinase receptor associated protein pseudogene 2 pseudo - - 0 0 1 0 +344387 CDKL4 cyclin dependent kinase like 4 2 protein-coding - cyclin-dependent kinase-like 4 32 0.00438 0.5821 1 1 +344405 PRORSD1P prolyl-tRNA synthetase associated domain containing 1, pseudogene 2 pseudo NCRNA00117|PRDXDD1P|Prdxdd1|Ybakd1 PrdX deacylase domain containing 1, pseudogene|YBak domain containing 1|prolyl-tRNA synthetase domain containing 1, pseudogene 4.791 0 1 +344454 AOX2P aldehyde oxidase 2 pseudogene 2 pseudo AOH2|AOX2|AOX3L1 - 12 0.001642 0.2038 1 1 +344558 SH3RF3 SH3 domain containing ring finger 3 2 protein-coding POSH2|SH3MD4 SH3 domain-containing RING finger protein 3|SH3 multiple domains 4|plenty of SH3s-2 45 0.006159 7.602 1 1 +344561 GPR148 G protein-coupled receptor 148 2 protein-coding BTR|PGR6 probable G-protein coupled receptor 148|G protein-coupled receptor PGR6|brain and testis restricted GPCR 43 0.005886 0.133 1 1 +344595 DUBR DPPA2 upstream binding RNA 3 ncRNA DUM|LINC00883|LINC0883 long intergenic non-protein coding RNA 883 6.451 0 1 +344657 LRRIQ4 leucine rich repeats and IQ motif containing 4 3 protein-coding LRRC64 leucine-rich repeat and IQ domain-containing protein 4|leucine rich repeat containing 64|leucine-rich repeat-containing protein 64 42 0.005749 1.377 1 1 +344658 SAMD7 sterile alpha motif domain containing 7 3 protein-coding - sterile alpha motif domain-containing protein 7|SAM domain-containing protein 7 54 0.007391 0.1825 1 1 +344752 AADACL2 arylacetamide deacetylase like 2 3 protein-coding - arylacetamide deacetylase-like 2 43 0.005886 0.507 1 1 +344758 GPR149 G protein-coupled receptor 149 3 protein-coding IEDA|PGR10 probable G-protein coupled receptor 149|G protein-coupled receptor PGR10 86 0.01177 0.3272 1 1 +344787 ZNF860 zinc finger protein 860 3 protein-coding - zinc finger protein 860 47 0.006433 4.862 1 1 +344805 TMPRSS7 transmembrane protease, serine 7 3 protein-coding - transmembrane protease serine 7|matriptase-3|transmembrane serine protease 7|type II transmembrane serine protease 7 55 0.007528 0.9023 1 1 +344807 CD200R1L CD200 receptor 1 like 3 protein-coding CD200R2|CD200RLa cell surface glycoprotein CD200 receptor 2|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 OX2 receptor 2|huCD200R2 29 0.003969 0.178 1 1 +344838 PAQR9 progestin and adipoQ receptor family member 9 3 protein-coding - progestin and adipoQ receptor family member 9|progestin and adipoQ receptor family member IX 44 0.006022 1.449 1 1 +344866 KRT18P17 keratin 18 pseudogene 17 3 pseudo - - 0 0 1 0 +344875 COL6A4P1 collagen type VI alpha 4 pseudogene 1 3 pseudo COL6A4|COL6A4P|DIVA|DVWA|VWA6 collagen VI alpha 4 pseudogene 1|collagen, type VI, alpha 4, pseudogene|dual intracellular von Willebrand factor domain A|dual von Willebrand factor A domains|von Willebrand factor A domain containing 6 9 0.001232 0.9965 1 1 +344892 RTP2 receptor transporter protein 2 3 protein-coding Z3CXXC2 receptor-transporting protein 2|3CxxC-type zinc finger protein 2|receptor (chemosensory) transporter protein 2|zinc finger, 3CxxC-type 2 37 0.005064 0.2362 1 1 +344901 OSTN osteocrin 3 protein-coding MUSCLIN osteocrin 16 0.00219 0.1613 1 1 +344905 ATP13A5 ATPase 13A5 3 protein-coding - probable cation-transporting ATPase 13A5|ATPase type 13A5|P5-ATPase 101 0.01382 1.725 1 1 +344967 LOC344967 acyl-CoA thioesterase 7 pseudogene 4 pseudo - - 5 0.0006844 2.565 1 1 +344978 ACTN4P1 actinin alpha 4 pseudogene 1 4 pseudo - - 1 0.0001369 1 0 +345062 PRSS48 protease, serine 48 4 protein-coding ESSPL serine protease 48|epidermis-specific serine protease-like protein|testicular tissue protein Li 65 26 0.003559 0.2049 1 1 +345079 SOWAHB sosondowah ankyrin repeat domain family member B 4 protein-coding ANKRD56 ankyrin repeat domain-containing protein SOWAHB|ankyrin repeat domain 56|ankyrin repeat domain-containing protein 56|protein sosondowah homolog B 52 0.007117 5.892 1 1 +345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 4 protein-coding CSNB1F|FIGLER4 leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 3|fibronectin type III, immunoglobulin and leucine rich repeat domains 4|leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 45 0.006159 2.505 1 1 +345222 MSANTD1 Myb/SANT DNA binding domain containing 1 4 protein-coding C4orf44 myb/SANT-like DNA-binding domain-containing protein 1|Myb/SANT-like DNA-binding domain containing 1 13 0.001779 2.319 1 1 +345274 SLC10A6 solute carrier family 10 member 6 4 protein-coding SOAT solute carrier family 10 member 6|sodium-dependent organic anion transporter|solute carrier family 10 (sodium/bile acid cotransporter family), member 6|solute carrier family 10 (sodium/bile acid cotransporter), member 6 34 0.004654 2.573 1 1 +345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 4 protein-coding HMFN0376|NIIL497|SCDR9|SDR16C3 17-beta-hydroxysteroid dehydrogenase 13|17-beta hydroxysteroid dehydrogenase|17-beta-HSD 13|short chain dehydrogenase/reductase family 16C member 3|short-chain dehydrogenase/reductase 9 24 0.003285 2.9 1 1 +345456 PFN3 profilin 3 5 protein-coding - profilin-3|profilin III 7 0.0009581 0.12 1 1 +345462 ZNF879 zinc finger protein 879 5 protein-coding DKFZp686E2433 zinc finger protein 879 27 0.003696 5.715 1 1 +345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 5 protein-coding - PI-PLC X domain-containing protein 3 68 0.009307 4.162 1 1 +345611 IRGM immunity related GTPase M 5 protein-coding IFI1|IRGM1|LRG-47|LRG47 immunity-related GTPase family M protein|LPS-stimulated RAW 264.7 macrophage protein 47 homolog|LRG-47-like protein|immunity-related GTPase family, M1|interferon-inducible protein 1 3 0.0004106 0.6786 1 1 +345630 FBLL1 fibrillarin-like 1 5 pseudo - - 8 0.001095 3.746 1 1 +345643 MCIDAS multiciliate differentiation and DNA synthesis associated cell cycle protein 5 protein-coding IDAS|MCI|MCIN multicilin|multiciliate cell differentiation 1|protein Idas 2 0.0002737 1 0 +345651 ACTBL2 actin, beta like 2 5 protein-coding ACT beta-actin-like protein 2|actin-like protein|kappa-actin 39 0.005338 1.557 1 1 +345757 FAM174A family with sequence similarity 174 member A 5 protein-coding HGS_RE408|TMEM157|UNQ1912 membrane protein FAM174A|HCV NS5A-transactivated protein 6|hepatitis C virus NS5A-transactivated protein 6|transmembrane protein 157 17 0.002327 8.335 1 1 +345778 MTX3 metaxin 3 5 protein-coding - metaxin-3 17 0.002327 8.918 1 1 +345895 RSPH4A radial spoke head 4 homolog A 6 protein-coding CILD11|RSHL3|RSPH6B|dJ412I7.1 radial spoke head protein 4 homolog A|radial spoke head-like protein 3|radial spokehead-like 3 53 0.007254 3.48 1 1 +345930 ECT2L epithelial cell transforming 2 like 6 protein-coding ARHGEF32|C6orf91|FBXO49|LFDH|dJ509I19.2|dJ509I19.3|dJ509I19.5 epithelial cell-transforming sequence 2 oncogene-like|ECT2-like|F-box protein 49|lung specific F-box and DH domain containing protein|putative guanine nucleotide exchange factor LFDH 57 0.007802 3.107 1 1 +346007 EYS eyes shut homolog (Drosophila) 6 protein-coding C6orf178|C6orf179|C6orf180|EGFL10|EGFL11|RP25|SPAM|bA166P24.2|bA307F22.3|bA74E24.1|dJ1018A4.2|dJ22I17.2|dJ303F19.1 protein eyes shut homolog|EGF-like-domain, multiple 10|EGF-like-domain, multiple 11|epidermal growth factor-like protein 10|epidermal growth factor-like protein 11|protein spacemaker homolog 243 0.03326 3.403 1 1 +346157 ZNF391 zinc finger protein 391 6 protein-coding dJ153G14.3 zinc finger protein 391 30 0.004106 4.579 1 1 +346171 ZFP57 ZFP57 zinc finger protein 6 protein-coding C6orf40|TNDM1|ZNF698|bA145L22|bA145L22.2 zinc finger protein 57 homolog|zfp-57|zinc finger protein 698 59 0.008076 2.479 1 1 +346288 SEPT14 septin 14 7 protein-coding - septin-14 55 0.007528 0.4021 1 1 +346329 LOC346329 G protein subunit alpha 11 pseudogene 7 pseudo - guanine nucleotide binding protein (G protein), alpha 11 (Gq class) pseudogene 1 0.0001369 1 0 +346389 MACC1 MACC1, MET transcriptional regulator 7 protein-coding 7A5|SH3BP4L metastasis-associated in colon cancer protein 1|SH3 domain-containing protein 7a5|metastasis associated in colon cancer 1|putative binding protein 7a5 81 0.01109 7.29 1 1 +346517 OR6V1 olfactory receptor family 6 subfamily V member 1 7 protein-coding GPR138 olfactory receptor 6V1|olfactory receptor OR7-3 32 0.00438 0.03896 1 1 +346525 OR2A12 olfactory receptor family 2 subfamily A member 12 7 protein-coding OR2A12P|OR2A16P 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 43 0.005886 0.0313 1 1 +346528 OR2A1 olfactory receptor family 2 subfamily A member 1 7 protein-coding - olfactory receptor 2A1/2A42|olfactory receptor OR7-16|olfactory receptor OR7-19 8 0.001095 1.916 1 1 +346562 GNAT3 G protein subunit alpha transducin 3 7 protein-coding GDCA guanine nucleotide-binding protein G(t) subunit alpha-3|guanine nucleotide binding protein, alpha transducing 3|gustatory G protein|gustducin alpha-3 chain|gustducin, alpha polypeptide 35 0.004791 0.17 1 1 +346606 MOGAT3 monoacylglycerol O-acyltransferase 3 7 protein-coding DC7|DGAT2L2|MGAT3 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 40 0.005475 1.354 1 1 +346653 FAM71F2 family with sequence similarity 71 member F2 7 protein-coding FAM137B protein FAM71F2|family with sequence similarity 137, member B 14 0.001916 2.72 1 1 +346673 STRA8 stimulated by retinoic acid 8 7 protein-coding - stimulated by retinoic acid gene 8 protein homolog|stimulated by retinoic acid 8 homolog|stimulated by retinoic acid gene 8 homolog 26 0.003559 0.3769 1 1 +346689 KLRG2 killer cell lectin like receptor G2 7 protein-coding CLEC15B killer cell lectin-like receptor subfamily G member 2|C-type lectin domain family 15 member B|killer cell lectin-like receptor subfamily G, member 2 29 0.003969 3.222 1 1 +346702 PRSS51 protease, serine 51 8 protein-coding - protease, serine 51 6 0.0008212 1 0 +346708 OR7E8P olfactory receptor family 7 subfamily E member 8 pseudogene 8 pseudo OR11-11a similar to seven transmembrane helix receptor|seven transmembrane helix receptor 0 0 1 0 +347051 SLC10A5 solute carrier family 10 member 5 8 protein-coding P5 sodium/bile acid cotransporter 5|Na(+)/bile acid cotransporter 5|solute carrier family 10 (sodium/bile acid cotransporter family), member 5 33 0.004517 2.987 1 1 +347088 ADGRD2 adhesion G protein-coupled receptor D2 9 protein-coding GPR144|PGR24 adhesion G-protein coupled receptor D2|G protein-coupled receptor PGR24|G-protein coupled receptor 144|G-protein coupled receptor GPR144 32 0.00438 0.5736 1 1 +347127 SPATA31D5P SPATA31 subfamily D member 5, pseudogene 9 pseudo FAM75D5|FAM75D5P FAM75-like protein FLJ46321 pseudogene|family with sequence similarity 75, member D5, pseudogene 138 0.01889 0.2129 1 1 +347148 QRFP pyroglutamylated RFamide peptide 9 protein-coding 26RFa|P518 orexigenic neuropeptide QRFP|P518 precursor protein|RF(Arg-Phe)amide family 26 amino acid peptide (P518)|prepro-QRFP 8 0.001095 1.108 1 1 +347168 OR1J1 olfactory receptor family 1 subfamily J member 1 9 protein-coding OR9-18|hg32 olfactory receptor 1J1|olfactory receptor OR9-18 31 0.004243 0.2893 1 1 +347169 OR1B1 olfactory receptor family 1 subfamily B member 1 (gene/pseudogene) 9 protein-coding OR9-26|OR9-B olfactory receptor 1B1|olfactory receptor 9-B|olfactory receptor OR9-26|olfactory receptor, family 1, subfamily B, member 1 33 0.004517 0.07219 1 1 +347193 PES1P2 pescadillo ribosomal biogenesis factor 1 pseudogene 2 9 pseudo - - 2 0.0002737 1 0 +347240 KIF24 kinesin family member 24 9 protein-coding C9orf48|bA571F15.4 kinesin-like protein KIF24 63 0.008623 6.875 1 1 +347252 IGFBPL1 insulin like growth factor binding protein like 1 9 protein-coding IGFBP-RP4|IGFBPRP4|bA113O24.1 insulin-like growth factor-binding protein-like 1|IGFBP-related protein 10|insulin-like growth factor binding protein related protein 4|insulin-like growth factor-binding-related protein 4 11 0.001506 2.593 1 1 +347265 KRT8P11 keratin 8 pseudogene 11 9 pseudo KRT8L1 KRT8 pseudogene|keratin 8-like 1 4 0.0005475 1 0 +347273 MURC muscle related coiled-coil protein 9 protein-coding CAVIN4|cavin-4 muscle-related coiled-coil protein|muscle-restricted coiled-coil protein 31 0.004243 3.491 1 1 +347344 ZNF81 zinc finger protein 81 X protein-coding HFZ20|MRX45|dJ54B20.6 zinc finger protein 81 57 0.007802 6.606 1 1 +347359 BMP2KL BMP2 inducible kinase-like, pseudogene X pseudo - - 0 0 1 0 +347363 KIF4CP kinesin family member 4C, pseudogene X pseudo KIF4P1 chromosome-associated kinesin KIF4A pseudogene 1 0.0001369 1 0 +347365 ITIH6 inter-alpha-trypsin inhibitor heavy chain family member 6 X protein-coding ITIH5L|UNQ6369|dJ14O9.1 inter-alpha-trypsin inhibitor heavy chain H6|ITI-like protein|inter-alpha inhibitor H5-like protein|inter-alpha-trypsin inhibitor heavy chain H5-like protein 114 0.0156 2.127 1 1 +347376 H3F3AP5 H3 histone, family 3A, pseudogene 5 X pseudo p55 H3 histone, family 3A pseudogene 0.3154 0 1 +347404 LANCL3 LanC like 3 X protein-coding - lanC-like protein 3|LanC lantibiotic synthetase component C-like 3 18 0.002464 3.009 1 1 +347442 DCAF8L2 DDB1 and CUL4 associated factor 8 like 2 X protein-coding WDR42C DDB1- and CUL4-associated factor 8-like protein 2|WD repeat domain 42C|WD repeat-containing protein 42C 59 0.008076 0.3624 1 1 +347454 SOWAHD sosondowah ankyrin repeat domain family member D X protein-coding ANKRD58 ankyrin repeat domain-containing protein SOWAHD|ankyrin repeat domain 58|ankyrin repeat domain-containing protein 58|protein sosondowah homolog D 22 0.003011 4.118 1 1 +347468 OR13H1 olfactory receptor family 13 subfamily H member 1 X protein-coding ORX1 olfactory receptor 13H1|olfactory receptor ORX-1|olfactory receptor ORX1 29 0.003969 0.05848 1 1 +347475 CCDC160 coiled-coil domain containing 160 X protein-coding - coiled-coil domain-containing protein 160|UPF0625 coiled-coil domain-containing protein ENSP00000359845 16 0.00219 3.046 1 1 +347487 CXorf66 chromosome X open reading frame 66 X protein-coding SGPX uncharacterized protein CXorf66|RP11-35F15.2|secreted glycoprotein, X-linked 41 0.005612 0.0647 1 1 +347516 DGAT2L6 diacylglycerol O-acyltransferase 2 like 6 X protein-coding DC3 diacylglycerol O-acyltransferase 2-like protein 6|diacylglycerol O-acyltransferase candidate 3 39 0.005338 0.2539 1 1 +347517 RAB41 RAB41, member RAS oncogene family X protein-coding - ras-related protein Rab-41|RAB41, member RAS homolog family 10 0.001369 1.812 1 1 +347527 ARSH arylsulfatase family member H X protein-coding sulfatase arylsulfatase H|ASH 35 0.004791 0.9318 1 1 +347541 MAGEB5 MAGE family member B5 X protein-coding CT3.3|MAGE-B5 melanoma-associated antigen B5|MAGE family testis and tumor-specific protein|MAGE-B5 antigen|cancer/testis antigen 3.3|cancer/testis antigen family 3, member 3|melanoma antigen family B, 5|melanoma antigen family B5 2 0.0002737 1 0 +347687 GNG5P2 G protein subunit gamma 5 pseudogene 2 X pseudo GNG5ps|dJ364I1.1 G protein gamma 5-like subunit|dJ364I1.1 (G Protein (Guanine Nucleotide-binding protein) Gamma 5 subunit (GNGT5, GNG5) LIKE protein)|guanine nucleotide binding protein (G protein), gamma 5 pseudogene 2 0 0 1 0 +347688 TUBB8 tubulin beta 8 class VIII 10 protein-coding OOMD|OOMD2|bA631M21.2 tubulin beta-8 chain|HSA10p15 beta-tubulin 4Q 47 0.006433 2.888 1 1 +347689 SOX2-OT SOX2 overlapping transcript 3 ncRNA NCRNA00043|SOX2OT SOX2 overlapping transcript (non-coding RNA)|SOX2 overlapping transcript (non-protein coding) 3.144 0 1 +347694 ECEL1P2 endothelin converting enzyme like 1 pseudogene 2 2 pseudo ECEL2 ECEL2 (XCE) pseudogene 2|ecel1 pseudogene 2 1 0.0001369 1 0 +347716 USP32P3 ubiquitin specific peptidase 32 pseudogene 3 17 pseudo - TL132 pseudogene 13 0.001779 1 0 +347730 LRRTM1 leucine rich repeat transmembrane neuronal 1 2 protein-coding - leucine-rich repeat transmembrane neuronal protein 1|leucine-rich repeat transmembrane neuronal 1 protein 102 0.01396 2.493 1 1 +347731 LRRTM3 leucine rich repeat transmembrane neuronal 3 10 protein-coding - leucine-rich repeat transmembrane neuronal protein 3 83 0.01136 1.546 1 1 +347732 CATSPER3 cation channel sperm associated 3 5 protein-coding CACRC cation channel sperm-associated protein 3|ca(v)-like protein|calcium channel repeat containing 1|one-repeat calcium channel-like protein|putative ion channel CatSper3 37 0.005064 3.133 1 1 +347733 TUBB2B tubulin beta 2B class IIb 6 protein-coding PMGYSA|bA506K6.1 tubulin beta-2B chain|class II beta-tubulin isotype|class IIb beta-tubulin|tubulin, beta 2B|tubulin, beta polypeptide paralog 23 0.003148 5.874 1 1 +347734 SLC35B2 solute carrier family 35 member B2 6 protein-coding PAPST1|SLL|UGTrel4 adenosine 3'-phospho 5'-phosphosulfate transporter 1|3'-phosphoadenosine 5'-phosphosulfate transporter|PAPS transporter 1|putative MAPK-activating protein PM15|putative NF-kappa-B-activating protein 48|solute carrier family 35 (adenosine 3'-phospho 5'-phosphosulfate transporter), member B2|solute carrier family 35 member B2 variant 2 35 0.004791 10.53 1 1 +347735 SERINC2 serine incorporator 2 1 protein-coding FKSG84|PRO0899|TDE2|TDE2L serine incorporator 2|tumor differentially expressed protein 2 35 0.004791 10.91 1 1 +347736 NME9 NME/NM23 family member 9 3 protein-coding NM23-H9|TXL-2|TXL2|TXNDC6 thioredoxin domain-containing protein 6|NME gene family member 9|thioredoxin-like protein 2 22 0.003011 2.882 1 1 +347741 OTOP3 otopetrin 3 17 protein-coding - otopetrin-3 45 0.006159 0.7452 1 1 +347744 C6orf52 chromosome 6 open reading frame 52 6 protein-coding - putative uncharacterized protein C6orf52 2 0.0002737 3.242 1 1 +347745 PWAR4 Prader Willi/Angelman region RNA 4 15 ncRNA PAR-4|PAR4 Prader-Willi/Angelman region gene 4 0.2686 0 1 +347746 PWARSN Prader Willi/Angelman region RNA, SNRPN neighbor 15 ncRNA PAR-SN|PARSN paternally expressed transcript PAR-SN|paternally expressed transcript adjacent to snRPN 5.973 0 1 +347853 TBX10 T-box 10 11 protein-coding TBX13|TBX7 T-box transcription factor TBX10|T-box 7|T-box protein 10|T-box-containing transcriptional activator 33 0.004517 1.099 1 1 +347862 PDDC1 Parkinson disease 7 domain containing 1 11 protein-coding - Parkinson disease 7 domain-containing protein 1 14 0.001916 10.18 1 1 +347902 AMIGO2 adhesion molecule with Ig like domain 2 12 protein-coding ALI1|AMIGO-2|DEGA amphoterin-induced protein 2|alivin 1|amphoterin induced gene 2|differentially expressed in gastric adenocarcinoma|differentially expressed in gastric adenocarcinomas|transmembrane protein AMIGO2 31 0.004243 8.334 1 1 +347918 EP400NL EP400 N-terminal like 12 pseudo - E1A binding protein p400 pseudogene 23 0.003148 6.756 1 1 +348013 TMEM255B transmembrane protein 255B 13 protein-coding FAM70B transmembrane protein 255B|family with sequence similarity 70, member B|protein FAM70B 40 0.005475 5.396 1 1 +348021 LINC00442 long intergenic non-protein coding RNA 442 13 ncRNA - - 3 0.0004106 0.0971 1 1 +348093 RBPMS2 RNA binding protein with multiple splicing 2 15 protein-coding - RNA-binding protein with multiple splicing 2 11 0.001506 6.478 1 1 +348094 ANKDD1A ankyrin repeat and death domain containing 1A 15 protein-coding - ankyrin repeat and death domain-containing protein 1A 37 0.005064 6.541 1 1 +348110 ARPIN actin-related protein 2/3 complex inhibitor 15 protein-coding C15orf38 arpin|UPF0552 protein C15orf38|arp2/3 inhibition protein 6 0.0008212 8.194 1 1 +348120 LINC01193 long intergenic non-protein coding RNA 1193 15 ncRNA CT60 cancer/testis antigen 60 (non-protein coding) 2 0.0002737 1 0 +348156 PKD1P5 polycystin 1, transient receptor potential channel interacting pseudogene 5 16 pseudo HG5 polycystic kidney disease 1 (autosomal dominant) pseudogene 5 2 0.0002737 1 0 +348158 ACSM2B acyl-CoA synthetase medium-chain family member 2B 16 protein-coding ACSM2|HXMA|HYST1046 acyl-coenzyme A synthetase ACSM2B, mitochondrial|acyl-CoA synthetase medium-chain family member 2|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 104 0.01423 1.319 1 1 +348174 CLEC18A C-type lectin domain family 18 member A 16 protein-coding MRCL|MRCL1|MRLP2 C-type lectin domain family 18 member A|mannose receptor-like 1|mannose receptor-like protein 2|mannose receptor-like protein 3 12 0.001642 4.033 1 1 +348180 CTU2 cytosolic thiouridylase subunit 2 16 protein-coding C16orf84|NCS2|UPF0432 cytoplasmic tRNA 2-thiolation protein 2|cytosolic thiouridylase subunit 2 homolog 27 0.003696 8.198 1 1 +348235 SKA2 spindle and kinetochore associated complex subunit 2 17 protein-coding FAM33A spindle and kinetochore-associated protein 2|family with sequence similarity 33, member A|spindle and KT (kinetochore) associated 2 10 0.001369 9.606 1 1 +348249 CCL15-CCL14 CCL15-CCL14 readthrough (NMD candidate) 17 ncRNA - CCL15-CCL14 readthrough (non-protein coding) 1.583 0 1 +348254 CCDC144CP coiled-coil domain containing 144C, pseudogene 17 pseudo CCDC144C coiled-coil domain containing 144 pseudogene 16 0.00219 1.388 1 1 +348262 MCRIP1 MAPK regulated corepressor interacting protein 1 17 protein-coding FAM195B|GRAN2|MCRIP mapk-regulated corepressor-interacting protein 1|MAPK-regulated co-repressor interacting protein 1|MCRIP1 protein|family with sequence similarity 195, member B|granulin-2|protein FAM195B 2 0.0002737 10.5 1 1 +348303 SELENOV selenoprotein V 19 protein-coding SELV selenoprotein V 11 0.001506 0.8624 1 1 +348327 ZNF530 zinc finger protein 530 19 protein-coding - zinc finger protein 530 45 0.006159 5.847 1 1 +348378 FAM159A family with sequence similarity 159 member A 1 protein-coding PRO7171|WWLS2783 membrane protein FAM159A 16 0.00219 3.099 1 1 +348487 FAM131C family with sequence similarity 131 member C 1 protein-coding C1orf117 protein FAM131C 16 0.00219 3.656 1 1 +348645 C22orf34 chromosome 22 open reading frame 34 22 protein-coding - uncharacterized protein C22orf34 5 0.0006844 1.767 1 1 +348654 GEN1 GEN1, Holliday junction 5' flap endonuclease 2 protein-coding Gen flap endonuclease GEN homolog 1|Gen endonuclease homolog 1|Holliday junction resolvase 50 0.006844 8.088 1 1 +348738 C2orf48 chromosome 2 open reading frame 48 2 protein-coding - uncharacterized protein C2orf48 9 0.001232 2.348 1 1 +348793 WDR53 WD repeat domain 53 3 protein-coding - WD repeat-containing protein 53|WD domain, G-beta repeat-containing protein 22 0.003011 7.304 1 1 +348801 LNP1 leukemia NUP98 fusion partner 1 3 protein-coding NP3 leukemia NUP98 fusion partner 1 13 0.001779 6.196 1 1 +348807 CFAP100 cilia and flagella associated protein 100 3 protein-coding CCDC37|MIA1 cilia- and flagella-associated protein 100|coiled-coil domain containing 37|coiled-coil domain-containing protein 37 61 0.008349 0.7021 1 1 +348808 NPHP3-AS1 NPHP3 antisense RNA 1 3 ncRNA NCRNA00119 NPHP3 antisense RNA 1 (non-protein coding) 2 0.0002737 0.8538 1 1 +348825 TPRXL tetrapeptide repeat homeobox like 3 pseudo TPRX3P tetra-peptide repeat homeobox-like 10 0.001369 3.043 1 1 +348840 ANKRD18DP ankyrin repeat domain 18D, pseudogene 3 pseudo - ankyrin repeat domain 18A pseudogene 12 0.001642 0.7183 1 1 +348926 FAM86EP family with sequence similarity 86, member A pseudogene 4 pseudo - - 16 0.00219 6.092 1 1 +348932 SLC6A18 solute carrier family 6 member 18 5 protein-coding Xtrp2 sodium-dependent neutral amino acid transporter B(0)AT3|sodium channel-like protein|sodium- and chloride-dependent transporter XTRP2|solute carrier family 6 (neurotransmitter transporter), member 18|solute carrier family 6 (neutral amino acid transporter), member 18|system B(0) neutral amino acid transporter AT3 69 0.009444 0.3756 1 1 +348938 NIPAL4 NIPA like domain containing 4 5 protein-coding ARCI6|ICHTHYIN|ICHYN magnesium transporter NIPA4|NIPA-like protein 4|non-imprinted in Prader-Willi/Angelman syndrome region protein 4 38 0.005201 4.315 1 1 +348980 HCN1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 5 protein-coding BCNG-1|BCNG1|EIEE24|HAC-2 potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 1|brain cyclic nucleotide-gated channel 1 219 0.02998 1.738 1 1 +348995 NUP43 nucleoporin 43 6 protein-coding bA350J20.1|p42 nucleoporin Nup43|nucleoporin 43kDa|nup107-160 subcomplex subunit Nup43 34 0.004654 9.375 1 1 +349075 ZNF713 zinc finger protein 713 7 protein-coding - zinc finger protein 713 42 0.005749 5.559 1 1 +349114 LINC00265 long intergenic non-protein coding RNA 265 7 ncRNA NCRNA00265 NCRNA00265-1 10 0.001369 7.113 1 1 +349136 WDR86 WD repeat domain 86 7 protein-coding - WD repeat-containing protein 86 28 0.003832 4.653 1 1 +349149 GJC3 gap junction protein gamma 3 7 protein-coding CX29|CX30.2|CX31.3|GJE1 gap junction gamma-3 protein|connexin 29|connexin-30.2|connexin-31.3|gap junction epsilon-1 protein|gap junction protein, gamma 3, 30.2kDa 12 0.001642 1.962 1 1 +349152 DPY19L2P2 DPY19L2 pseudogene 2 7 pseudo - Dpy-19-like protein 2 pseudogene 2|Protein dpy-19 homolog 2-like 2|Putative C-mannosyltransferase DPY19L2P2|dpy-19-like 2 pseudogene 2 83 0.01136 4.553 1 1 +349160 LOC349160 uncharacterized LOC349160 7 ncRNA - - 1 0.0001369 1 0 +349196 LINC00965 long intergenic non-protein coding RNA 965 8 ncRNA - - 2.537 0 1 +349408 TLR8-AS1 TLR8 antisense RNA 1 X ncRNA GS1-324M7.6 TLR8 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 3 protein-coding FKSG76|PNAT-3|PNAT3 nicotinamide/nicotinic acid mononucleotide adenylyltransferase 3|NMN adenylyltransferase 3|NMN/NaMN adenylyltransferase 3|NaMN adenylyltransferase 3|nicotinamide mononucleotide adenylyltransferase 3|nicotinate-nucleotide adenylyltransferase 3|pyridine nucleotide adenylyltransferase 3 11 0.001506 6.551 1 1 +349633 PLET1 placenta expressed transcript 1 11 protein-coding C11orf34 placenta-expressed transcript 1 protein 5 0.0006844 0.3618 1 1 +349667 RTN4RL2 reticulon 4 receptor-like 2 11 protein-coding NGRH1|NgR2 reticulon-4 receptor-like 2|Nogo-66 receptor homolog 1|nogo receptor-like 3|nogo-66 receptor-related protein 2 26 0.003559 5.451 1 1 +350383 GPR142 G protein-coupled receptor 142 17 protein-coding GPRg1b|PGR2 probable G-protein coupled receptor 142|G-protein coupled receptor 142 long form|G-protein coupled receptor PGR2 59 0.008076 0.5774 1 1 +352887 GYG2P1 glycogenin 2 pseudogene 1 Y pseudo GYG2P - 3 0.0004106 1 0 +352905 CTBP2P1 C-terminal binding protein 2 pseudogene 1 Y pseudo - - 2 0.0002737 1 0 +352909 DNAAF3 dynein axonemal assembly factor 3 19 protein-coding C19orf51|CILD2|DAB1|PCD|PF22 dynein assembly factor 3, axonemal|UPF0470 protein C19orf51 43 0.005886 4.857 1 1 +352954 GATS GATS, stromal antigen 3 opposite strand 7 protein-coding STAG3OS putative protein GATS|STAG3 opposite strand transcript protein|opposite strand transcription unit to STAG3|stromal antigen 3 opposite strand 9 0.001232 7.597 1 1 +352961 HCG26 HLA complex group 26 (non-protein coding) 6 ncRNA 3.8-1|NCRNA00191|bCX205D4.4|bPG181B23.4 MHC class I mRNA fragment 3.8-1 5.568 0 1 +352962 HLA-V major histocompatibility complex, class I, V (pseudogene) 6 pseudo HLA-75|dJ377H14.4 HLA-75 pseudogene 45 0.006159 1 0 +352963 HLA-P major histocompatibility complex, class I, P (pseudogene) 6 pseudo C6orf101|HLA-90|dJ377H14.3 HLA-90 pseudogene 5 0.0006844 1 0 +352966 HLA-W major histocompatibility complex, class I, W (pseudogene) 6 pseudo HLA-80 HLA-80 pseudogene 1 0.0001369 1 0 +352999 C6orf58 chromosome 6 open reading frame 58 6 protein-coding LEG1 protein LEG1 homolog|UPF0762 protein C6orf58|liver enriched gene 1 homolog 33 0.004517 0.705 1 1 +353020 HCG4P11 HLA complex group 4 pseudogene 11 6 pseudo HCGIV-11|HCGIV.10 HCGIV-11 pseudogene 0 0 1 0 +353088 ZNF429 zinc finger protein 429 19 protein-coding - zinc finger protein 429 66 0.009034 6.562 1 1 +353091 RAET1G retinoic acid early transcript 1G 6 protein-coding ULBP5 retinoic acid early transcript 1G protein|UL-16 binding protein 5 18 0.002464 3.586 1 1 +353116 RILPL1 Rab interacting lysosomal protein like 1 12 protein-coding GOSPEL|RLP1 RILP-like protein 1|GAPDH competitor of SIAH protein enhances life 23 0.003148 8.33 1 1 +353131 LCE1A late cornified envelope 1A 1 protein-coding LEP1 late cornified envelope protein 1A|late envelope protein 1 15 0.002053 0.1359 1 1 +353132 LCE1B late cornified envelope 1B 1 protein-coding LEP2|SPRL2A 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 23 0.003148 0.3769 1 1 +353133 LCE1C late cornified envelope 1C 1 protein-coding LEP3 late cornified envelope protein 1C|late envelope protein 3 28 0.003832 0.6813 1 1 +353134 LCE1D late cornified envelope 1D 1 protein-coding LEP4 late cornified envelope protein 1D|late envelope protein 4 22 0.003011 0.1336 1 1 +353135 LCE1E late cornified envelope 1E 1 protein-coding LEP5 late cornified envelope protein 1E|late envelope protein 5 24 0.003285 0.5416 1 1 +353137 LCE1F late cornified envelope 1F 1 protein-coding LEP6 late cornified envelope protein 1F|late envelope protein 6 36 0.004927 0.2204 1 1 +353139 LCE2A late cornified envelope 2A 1 protein-coding LEP9 late cornified envelope protein 2A|late envelope protein 9 19 0.002601 0.2789 1 1 +353140 LCE2C late cornified envelope 2C 1 protein-coding LEP11 late cornified envelope protein 2C|late envelope protein 11 22 0.003011 0.2735 1 1 +353141 LCE2D late cornified envelope 2D 1 protein-coding LEP12|SPRL1A 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 24 0.003285 0.2111 1 1 +353142 LCE3A late cornified envelope 3A 1 protein-coding LEP13 late cornified envelope protein 3A|late envelope protein 13 9 0.001232 0.2926 1 1 +353143 LCE3B late cornified envelope 3B 1 protein-coding LEP14 late cornified envelope protein 3B|late envelope protein 14 7 0.0009581 0.008034 1 1 +353144 LCE3C late cornified envelope 3C 1 protein-coding LEP15|SPRL3A 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 6 0.0008212 0.1157 1 1 +353145 LCE3E late cornified envelope 3E 1 protein-coding LEP17 late cornified envelope protein 3E|late envelope protein 17 16 0.00219 0.771 1 1 +353149 TBC1D26 TBC1 domain family member 26 17 protein-coding - TBC1 domain family member 26 35 0.004791 0.7396 1 1 +353164 TAS2R42 taste 2 receptor member 42 12 protein-coding T2R24|T2R42|T2R55|TAS2R55 taste receptor type 2 member 42|candidate taste receptor hT2R55|taste receptor type 2 member 55|taste receptor, type 2, member 42 17 0.002327 0.2074 1 1 +353174 ZACN zinc activated ion channel 17 protein-coding L2|LGICZ|LGICZ1|ZAC|ZAC1 zinc-activated ligand-gated ion channel|ligand-gated ion channel subunit|ligand-gated ion channel zinc-activated 1|ligand-gated ion-channel receptor L2|zinc activated ligand-gated ion channel 1 33 0.004517 0.8717 1 1 +353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 5 protein-coding OATP-H|OATP-M1|OATP4C1|OATPX|PRO2176|SLC21A20 solute carrier organic anion transporter family member 4C1|organic anion transporter M1|solute carrier family 21 member 20 77 0.01054 4.051 1 1 +353219 KAAG1 kidney associated antigen 1 6 protein-coding RU2AS kidney-associated antigen 1|RU2 antisense gene protein 7 0.0009581 1.659 1 1 +353238 PADI6 peptidyl arginine deiminase 6 1 protein-coding hPADVI protein-arginine deiminase type-6|peptidyl arginine deiminase, type VI|peptidyl arginine deiminase-like protein|peptidylarginine deiminase type 6 95 0.013 0.2092 1 1 +353274 ZNF445 zinc finger protein 445 3 protein-coding ZKSCAN15|ZNF168|ZSCAN47 zinc finger protein 445|zinc finger protein 168|zinc finger protein with KRAB and SCAN domains 15 67 0.009171 8.96 1 1 +353288 KRT26 keratin 26 17 protein-coding CK26|K25|K25IRS2|K26|KRT25B keratin, type I cytoskeletal 26|CK-26|K25B|cytokeratin-26|keratin 26, type I|keratin-25B|type I inner root sheath specific keratin 25 irs2|type I inner root sheath-specific keratin-K25irs2 41 0.005612 0.02605 1 1 +353299 RGSL1 regulator of G-protein signaling like 1 1 protein-coding RGSL|RGSL2 regulator of G-protein signaling protein-like|regulator of G-protein signaling like 2 35 0.004791 0.283 1 1 +353322 ANKRD37 ankyrin repeat domain 37 4 protein-coding Lrp2bp ankyrin repeat domain-containing protein 37|low density lipoprotein receptor-related protein binding protein|low-density lipoprotein receptor-related protein 2-binding protein 7 0.0009581 6.922 1 1 +353323 KRTAP12-2 keratin associated protein 12-2 21 protein-coding KAP12.2|KRTAP12.2 keratin-associated protein 12-2|high sulfur keratin-associated protein 12.2|keratin-associated protein 12.2 18 0.002464 0.0235 1 1 +353324 SPATA12 spermatogenesis associated 12 3 protein-coding SRG5 spermatogenesis-associated protein 12|spermatogenesis-related protein 5|testicular tissue protein Li 184 13 0.001779 2.485 1 1 +353332 KRTAP12-1 keratin associated protein 12-1 21 protein-coding KAP12.1|KRTAP12.1 keratin-associated protein 12-1|high sulfur keratin-associated protein 12.1|keratin-associated protein 12.1 4 0.0005475 0.05393 1 1 +353333 KRTAP10-10 keratin associated protein 10-10 21 protein-coding KAP10.10|KAP18.10|KRTAP18-10|KRTAP18.10 keratin-associated protein 10-10|high sulfur keratin-associated protein 10.10|keratin-associated protein 18-10 32 0.00438 0.03272 1 1 +353345 GPR141 G protein-coupled receptor 141 7 protein-coding PGR13 probable G-protein coupled receptor 141|G-protein coupled receptor PGR13 59 0.008076 2.368 1 1 +353355 ZNF233 zinc finger protein 233 19 protein-coding - zinc finger protein 233 62 0.008486 4.86 1 1 +353376 TICAM2 toll like receptor adaptor molecule 2 5 protein-coding MyD88-4|TICAM-2|TIRAP3|TIRP|TRAM TIR domain-containing adapter molecule 2|NF-kappa-B-activating protein 502|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 7 0.0009581 6.461 1 1 +353497 POLN DNA polymerase nu 4 protein-coding POL4P DNA polymerase nu|DNA polymerase N|DNA polymerase POL4P|polymerase (DNA directed) nu|polymerase (DNA) nu 63 0.008623 3.896 1 1 +353500 BMP8A bone morphogenetic protein 8a 1 protein-coding - bone morphogenetic protein 8A|BMP-8A 12 0.001642 7.274 1 1 +353511 PKD1P6 polycystin 1, transient receptor potential channel interacting pseudogene 6 16 pseudo HG6 GPS, PLAT and transmembrane domain-containing protein|polycystic kidney disease 1 (autosomal dominant) pseudogene 6 3 0.0004106 1 0 +353514 LILRA5 leukocyte immunoglobulin like receptor A5 19 protein-coding CD85|CD85F|ILT-11|ILT11|LILRB7|LIR-9|LIR9 leukocyte immunoglobulin-like receptor subfamily A member 5|CD85 antigen-like family member F|immunoglobulin-like transcript 11 protein|leucocyte Ig-like receptor A5|leukocyte Ig-like receptor 9|leukocyte immunoglobulin-like receptor 9|leukocyte immunoglobulin-like receptor subfamily A member 5 soluble|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 7 43 0.005886 4.209 1 1 +353515 XKRY2 XK related, Y-linked 2 Y protein-coding XKRYP7 testis-specific XK-related protein, Y-linked 2|X Kell blood group precursor-related, Y-linked 2|X Kell blood group precursor-related, Y-linked pseudogene 7|X-linked Kx blood group related, Y-linked 2|XK, Kell blood group complex subunit-related, Y-linked 2 0.06229 0 1 +359710 BPIFB3 BPI fold containing family B member 3 20 protein-coding C20orf185|LPLUNC3|RYA3 BPI fold-containing family B member 3|ligand-binding protein RYA3|long palate, lung and nasal epithelium carcinoma-associated protein 3 46 0.006296 0.09346 1 1 +359749 MRPL50P2 mitochondrial ribosomal protein L50 pseudogene 2 2 pseudo - - 1 0.0001369 1 0 +359763 MRPS18BP2 mitochondrial ribosomal protein S18B pseudogene 2 2 pseudo - - 1 0.0001369 1 0 +359787 DPPA3 developmental pluripotency associated 3 12 protein-coding STELLA developmental pluripotency-associated protein 3|stella-related protein 30 0.004106 0.3511 1 1 +359806 PCNAP1 proliferating cell nuclear antigen pseudogene 1 4 pseudo p1PCNA PCNA pseudogene p1PCNA 0.02823 0 1 +359821 MRPL42P5 mitochondrial ribosomal protein L42 pseudogene 5 15 pseudo - - 2.776 0 1 +359822 KCNIP4-IT1 KCNIP4 intronic transcript 1 4 ncRNA NCRNA00099|UM9(5)|UM9-5 KCNIP4 intronic transcript 1 (non-protein coding)|non-coding transcript UM9(5) 0.1433 0 1 +359845 RFLNB refilin B 17 protein-coding CFM1|FAM101B filamin-interacting protein FAM101B|family with sequence similarity 101, member B|protein FAM101B|refilinB|regulator of filamin protein B 9 0.001232 8.593 1 1 +359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 1 protein-coding - interferon regulatory factor 2-binding protein 2|IRF-2-binding protein 2 29 0.003969 12.06 1 1 +360023 ZBTB41 zinc finger and BTB domain containing 41 1 protein-coding FRBZ1|ZNF924 zinc finger and BTB domain-containing protein 41|FRBZ1 protein (FRBZ1) 77 0.01054 9.213 1 1 +360030 NANOGNB NANOG neighbor homeobox 12 protein-coding - NANOG neighbor homeobox|homeobox C14|homeobox protein C14 4 0.0005475 0.1014 1 1 +360132 FKBP9P1 FK506 binding protein 9 pseudogene 1 7 pseudo FKBP9L FK506 binding protein 9-like 21 0.002874 5.537 1 1 +360155 CYCSP52 cytochrome c, somatic pseudogene 52 1 pseudo HC6|HCP2 somatic cytochrome c (HC6) processed pseudogene 0.1934 0 1 +360200 TMPRSS9 transmembrane protease, serine 9 19 protein-coding - transmembrane protease serine 9|polyserase-1|polyserase-I|polyserine protease 1|transmembrane serine protease 9 65 0.008897 1.999 1 1 +360203 GLT6D1 glycosyltransferase 6 domain containing 1 9 protein-coding GLTDC1|GT6M7 glycosyltransferase 6 domain-containing protein 1|galactosyltransferase family 6 domain containing 1 23 0.003148 0.04993 1 1 +360205 PRAC2 prostate cancer susceptibility candidate 2 17 protein-coding C17orf93|HOXB-AS5|HOXB13-AS1|NCRNA00253 putative protein PRCA2|HOXB cluster antisense RNA 5|prostate, rectum and colon 2|prostate, rectum and colon expressed gene 2 protein|prostate, rectum and colon expressed gene protein 2|small nuclear protein PRAC2 5 0.0006844 1.512 1 1 +360226 PRSS41 protease, serine 41 16 protein-coding TESSP1 serine protease 41|putative serine protease 41|testis-specific serine protease 1 14 0.001916 0.403 1 1 +373156 GSTK1 glutathione S-transferase kappa 1 7 protein-coding GST|GST 13-13|GST13|GST13-13|GSTK1-1|hGSTK1 glutathione S-transferase kappa 1|GST class-kappa|glutathione S-transferase k1|glutathione S-transferase subunit 13 homolog 18 0.002464 11.14 1 1 +373509 USP50 ubiquitin specific peptidase 50 15 protein-coding - inactive ubiquitin carboxyl-terminal hydrolase 50|inactive ubiquitin-specific peptidase 50|ubiquitin specific protease 50 16 0.00219 0.1681 1 1 +373856 USP41 ubiquitin specific peptidase 41 22 protein-coding - putative ubiquitin carboxyl-terminal hydrolase 41|deubiquitinating enzyme 41|ubiquitin specific protease 41|ubiquitin specific proteinase 41|ubiquitin thioesterase 41|ubiquitin thiolesterase 41|ubiquitin-specific-processing protease 41 10 0.001369 1 0 +373861 HILS1 histone linker H1 domain, spermatid-specific 1 (pseudogene) 17 pseudo H1.9 spermatid-specific linker histone H1-like protein 3 0.0004106 0.9839 1 1 +373863 DND1 DND microRNA-mediated repression inhibitor 1 5 protein-coding RBMS4 dead end protein homolog 1|RNA-binding motif, single-stranded-interacting protein 4|dead end homolog 1 30 0.004106 6.317 1 1 +374286 CDRT1 CMT1A duplicated region transcript 1 17 protein-coding C170RF1|C17ORF1|C17ORF1A|FBXW10B|FBXW10P1|HREP|SM25H2 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 34 0.004654 2.032 1 1 +374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 19 protein-coding CI-20|CI-20KD|MY017|PSST NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|NADH dehydrogenase (ubiquinone) Fe-S protein 7, 20kDa (NADH-coenzyme Q reductase)|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 19 0.002601 10.06 1 1 +374308 PTCHD3 patched domain containing 3 10 protein-coding PTR patched domain-containing protein 3|patched-related protein 99 0.01355 0.7463 1 1 +374354 NHLRC2 NHL repeat containing 2 10 protein-coding - NHL repeat-containing protein 2|1200003G01Rik|novel NHL repeat domain containing protein 41 0.005612 6.775 1 1 +374355 CCDC172 coiled-coil domain containing 172 10 protein-coding C10orf96 coiled-coil domain-containing protein 172|UPF0628 protein C10orf96 36 0.004927 0.1168 1 1 +374378 GALNT18 polypeptide N-acetylgalactosaminyltransferase 18 11 protein-coding GALNACT18|GALNT15|GALNTL4|GalNAc-T15|GalNAc-T18 polypeptide N-acetylgalactosaminyltransferase 18|GalNAc-transferase 18|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 4|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 15|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 18|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 4|galNAc-T-like protein 4|polypeptide GalNAc transferase 18|polypeptide GalNAc transferase-like protein 4|polypeptide N-acetylgalactosaminyltransferase-like protein 4|pp-GaNTase-like protein 4|protein-UDP acetylgalactosaminyltransferase-like protein 4|putative polypeptide N-acetylgalactosaminyltransferase-like protein 4 42 0.005749 8.536 1 1 +374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 11 protein-coding B7-H6|B7H6|DKFZp686O24166 natural cytotoxicity triggering receptor 3 ligand 1|B7 homolog 6|putative Ig-like domain-containing protein DKFZp686O24166/DKFZp686I21167 3 0.0004106 5.392 1 1 +374387 DKFZp779M0652 uncharacterized DKFZp779M0652 11 ncRNA - - 2.192 0 1 +374393 FAM111B family with sequence similarity 111 member B 11 protein-coding CANP|POIKTMP protein FAM111B|cancer-associated nucleoprotein 53 0.007254 7.425 1 1 +374395 TMEM179B transmembrane protein 179B 11 protein-coding - transmembrane protein 179B 10 0.001369 10.04 1 1 +374403 TBC1D10C TBC1 domain family member 10C 11 protein-coding CARABIN|EPI64C carabin 36 0.004927 6.214 1 1 +374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 11 protein-coding CILD34|RSPH16A|TSARG5|TSARG6 dnaJ homolog subfamily B member 13|DnaJ (Hsp40) homolog, subfamily B, member 13|DnaJ (Hsp40) related, subfamily B, member 13|DnaJ-like protein|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 21 0.002874 2.175 1 1 +374443 LOC374443 C-type lectin domain family 2 member D pseudogene 12 pseudo - CLR pseudogene 6.629 0 1 +374454 KRT77 keratin 77 12 protein-coding K1B|KRT1B keratin, type II cytoskeletal 1b|CK-1B|K77|cytokeratin-1B|keratin 1B|keratin 77, type II|type-II keratin Kb39 33 0.004517 0.7639 1 1 +374462 PTPRQ protein tyrosine phosphatase, receptor type Q 12 protein-coding DFNB84|DFNB84A|PTPGMC1|R-PTP-Q phosphatidylinositol phosphatase PTPRQ|phosphotidylinositol phosphatase PTPRQ|protein-tyrosine phosphatase, receptor-type, expressed by glomerular mesangial cells 71 0.009718 1.713 1 1 +374467 1.74 0 1 +374470 C12orf42 chromosome 12 open reading frame 42 12 protein-coding - uncharacterized protein C12orf42 46 0.006296 1.083 1 1 +374491 TPTE2P6 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 6 13 pseudo - TPTE and PTEN homologous inositol lipid phosphatase pseudogene 144 0.01971 1.633 1 1 +374500 THSD1P1 thrombospondin type 1 domain containing 1 pseudogene 1 13 pseudo THSD1P THSD1 pseudogene|thrombospondin, type I, domain containing 1 pseudogene 1 4 0.0005475 6.917 1 1 +374569 ASPG asparaginase 14 protein-coding C14orf76|GPA/WT 60 kDa lysophospholipase|asparaginase homolog|wild-type L-asparaginase 38 0.005201 2.677 1 1 +374618 TEX9 testis expressed 9 15 protein-coding - testis-expressed sequence 9 protein 22 0.003011 5.56 1 1 +374650 GOLGA6L5P golgin A6 family-like 5, pseudogene 15 pseudo GOLGA6L5|GOLGA6L8 Golgin subfamily A member 6-like protein 8|golgi autoantigen, golgin subfamily a, 6-like 5 (pseudogene)|golgi autoantigen, golgin subfamily a, 6-like 8|golgi autoantigen, golgin subfamily a-like pseudogene 49 0.006707 4.495 1 1 +374654 KIF7 kinesin family member 7 15 protein-coding ACLS|AGBK|HLS2|JBTS12|UNQ340 kinesin-like protein KIF7|EQYK340 76 0.0104 7.158 1 1 +374655 ZNF710 zinc finger protein 710 15 protein-coding - zinc finger protein 710 39 0.005338 8.159 1 1 +374659 HDDC3 HD domain containing 3 15 protein-coding (ppGpp)ase|MESH1 guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1|HD domain-containing protein 3|metazoan SpoT homolog 1|penta-phosphate guanosine-3'-pyrophosphohydrolase 8 0.001095 8.2 1 1 +374666 WASH3P WAS protein family homolog 3 pseudogene 15 pseudo FAM39DP family with sequence similarity 39, member D pseudogene 115 0.01574 8.702 1 1 +374677 WASH4P WAS protein family homolog 4 pseudogene 16 pseudo CXYorf1P|FAM39CP Putative WAS protein family homolog 4|family with sequence similarity 39, member C pseudogene|pseudogene of CXYorf1 8 0.001095 1 0 +374739 TEPP testis, prostate and placenta expressed 16 protein-coding - testis, prostate and placenta-expressed protein|testicular tissue protein Li 196|testis/prostate/placenta-expressed protein 18 0.002464 1.586 1 1 +374768 SPEM1 spermatid maturation 1 17 protein-coding C17orf83 spermatid maturation protein 1 25 0.003422 0.235 1 1 +374786 EFCAB5 EF-hand calcium binding domain 5 17 protein-coding - EF-hand calcium-binding domain-containing protein 5 109 0.01492 2.021 1 1 +374819 LRRC37A3 leucine rich repeat containing 37 member A3 17 protein-coding LRRC37|LRRC37A leucine-rich repeat-containing protein 37A3 76 0.0104 6.611 1 1 +374860 ANKRD30B ankyrin repeat domain 30B 18 protein-coding NY-BR-1.1 ankyrin repeat domain-containing protein 30B|breast cancer antigen NY-BR-1.1|serologically defined breast cancer antigen NY-BR-1.1 138 0.01889 1.401 1 1 +374864 CCDC178 coiled-coil domain containing 178 18 protein-coding C18orf34 coiled-coil domain-containing protein 178 136 0.01861 2.209 1 1 +374868 ATP9B ATPase phospholipid transporting 9B (putative) 18 protein-coding ATPASEP|ATPIIB|HUSSY-20|NEO1L|hMMR1 probable phospholipid-transporting ATPase IIB|ATPase type IV, phospholipid transporting (P-type)|ATPase, class II, type 9B|macrophage MHC receptor 1 65 0.008897 8.634 1 1 +374872 C19orf35 chromosome 19 open reading frame 35 19 protein-coding - putative uncharacterized protein C19orf35 22 0.003011 3.188 1 1 +374875 HSD11B1L hydroxysteroid 11-beta dehydrogenase 1 like 19 protein-coding 11-DH3|11-beta-HSD3|HSD3|SCDR10|SCDR10B|SDR26C2 hydroxysteroid 11-beta-dehydrogenase 1-like protein|11-beta-hydroxysteroid dehydrogenase type 3|short chain dehydrogenase/reductase 10|short chain dehydrogenase/reductase family 26C member 2 7 0.0009581 6.975 1 1 +374877 C19orf45 chromosome 19 open reading frame 45 19 protein-coding - uncharacterized protein C19orf45 21 0.002874 2.192 1 1 +374879 ZNF699 zinc finger protein 699 19 protein-coding hang zinc finger protein 699|hangover homolog|hangover, Drosophila, homolog of 40 0.005475 4.275 1 1 +374882 TMEM205 transmembrane protein 205 19 protein-coding UNQ501 transmembrane protein 205|MBC3205 10 0.001369 10.53 1 1 +374887 YJEFN3 YjeF N-terminal domain containing 3 19 protein-coding - yjeF N-terminal domain-containing protein 3|apolipoprotein A1 binding protein|hYjeF_N3|hYjeF_N3-19p13.11|yjeF_N3 12 0.001642 5.769 1 1 +374897 SBSN suprabasin 19 protein-coding UNQ698 suprabasin|HLAR698 40 0.005475 3.175 1 1 +374899 ZNF829 zinc finger protein 829 19 protein-coding - zinc finger protein 829 55 0.007528 3.519 1 1 +374900 ZNF568 zinc finger protein 568 19 protein-coding - zinc finger protein 568 75 0.01027 6.217 1 1 +374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 19 protein-coding B3GALT7|BGALT15|beta3Gn-T8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8|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 25 0.003422 6.123 1 1 +374918 IGFL1 IGF like family member 1 19 protein-coding APRG644|UNQ644 insulin growth factor-like family member 1 13 0.001779 2.187 1 1 +374920 C19orf68 chromosome 19 open reading frame 68 19 protein-coding - uncharacterized protein C19orf68 8 0.001095 1 0 +374928 ZNF773 zinc finger protein 773 19 protein-coding ZNF419B zinc finger protein 773|zinc finger protein 419B 53 0.007254 6.658 1 1 +374946 DRAXIN dorsal inhibitory axon guidance protein 1 protein-coding AGPA3119|C1orf187|UNQ3119|neucrin draxin|dorsal repulsive axon guidance protein|neural tissue-specific cysteine-rich protein 31 0.004243 2.309 1 1 +374955 SPATA21 spermatogenesis associated 21 1 protein-coding spergen-2|spergen2 spermatogenesis-associated protein 21 34 0.004654 0.5635 1 1 +374969 SVBP small vasohibin binding protein 1 protein-coding CCDC23 small vasohibin-binding protein|coiled-coil domain containing 23|coiled-coil domain-containing protein 23 5 0.0006844 8.077 1 1 +374973 TEX38 testis expressed 38 1 protein-coding ATPAF1-AS1|C1orf223|THEG4 testis-expressed sequence 38 protein|ATPAF1 antisense RNA 1|ATPAF1 antisense gene protein 1|testis highly expressed protein 4 9 0.001232 0.9142 1 1 +374977 MROH7 maestro heat like repeat family member 7 1 protein-coding C1orf175|HEATR8 maestro heat-like repeat-containing protein family member 7|HEAT repeat-containing protein 8 84 0.0115 4.853 1 1 +374986 MIGA1 mitoguardin 1 1 protein-coding FAM73A mitoguardin-1|family with sequence similarity 73, member A|protein FAM73A 60 0.008212 8.411 1 1 +375033 PEAR1 platelet endothelial aggregation receptor 1 1 protein-coding JEDI|MEGF12 platelet endothelial aggregation receptor 1|multiple EGF-like domains protein 12|multiple EGF-like-domains 12|multiple epidermal growth factor-like domains protein 12 70 0.009581 6.852 1 1 +375035 SFT2D2 SFT2 domain containing 2 1 protein-coding UNQ512|dJ747L4.C1.2 vesicle transport protein SFT2B|SFT2 domain-containing protein 2 7 0.0009581 6.244 1 1 +375056 MIA3 MIA family member 3, ER export factor 1 protein-coding ARNT|D320|TANGO|TANGO1|UNQ6077 melanoma inhibitory activity protein 3|C219-reactive peptide|melanoma inhibitory activity family, member 3|transport and Golgi organization protein 1 124 0.01697 10.83 1 1 +375057 STUM stum, mechanosensory transduction mediator homolog 1 protein-coding C1orf95 protein stum homolog|stumble homolog 10 0.001369 3.864 1 1 +375061 FAM89A family with sequence similarity 89 member A 1 protein-coding C1orf153 protein FAM89A 8 0.001095 7.33 1 1 +375133 PI4KAP2 phosphatidylinositol 4-kinase alpha pseudogene 2 22 pseudo - Putative phosphatidylinositol 4-kinase alpha-like protein P2|phosphatidylinositol 4-kinase, catalytic, alpha polypeptide pseudogene 2|phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 2 24 0.003285 7.022 1 1 +375189 PFN4 profilin family member 4 2 protein-coding - profilin-4|profilin IV 11 0.001506 2.661 1 1 +375190 FAM228B family with sequence similarity 228 member B 2 protein-coding - protein FAM228B|UPF0638 protein B 4 0.0005475 5.934 1 1 +375248 ANKRD36 ankyrin repeat domain 36 2 protein-coding UNQ2430 ankyrin repeat domain-containing protein 36A|ankyrin repeat domain-containing protein 36|ankyrin-related 110 0.01506 6.912 1 1 +375260 WASH2P WAS protein family homolog 2 pseudogene 2 pseudo FAM39B family with sequence similarity 39, member B 31 0.004243 8.391 1 1 +375287 RBM43 RNA binding motif protein 43 2 protein-coding C2orf38 RNA-binding protein 43 39 0.005338 7.529 1 1 +375298 CERKL ceramide kinase like 2 protein-coding RP26 ceramide kinase-like protein 60 0.008212 5.729 1 1 +375307 CATIP ciliogenesis associated TTC17 interacting protein 2 protein-coding C2orf62 ciliogenesis-associated TTC17-interacting protein 22 0.003011 2.298 1 1 +375316 RBM44 RNA binding motif protein 44 2 protein-coding - RNA-binding protein 44 68 0.009307 2.479 1 1 +375318 AQP12A aquaporin 12A 2 protein-coding AQP-12|AQP12|AQPX2 aquaporin-12A|aquaporin 12|aquaporin X2 26 0.003559 0.1967 1 1 +375323 LHFPL4 lipoma HMGIC fusion partner-like 4 3 protein-coding - lipoma HMGIC fusion partner-like 4 protein|LHFP-like protein 4 18 0.002464 2.852 1 1 +375337 TOPAZ1 testis and ovary specific PAZ domain containing 1 3 protein-coding C3orf77 testis- and ovary-specific PAZ domain-containing protein 1|testis and ovary-specific PAZ domain gene 1|topaz 1 32 0.00438 0.116 1 1 +375341 C3orf62 chromosome 3 open reading frame 62 3 protein-coding - uncharacterized protein C3orf62 21 0.002874 7.139 1 1 +375346 TMEM110 transmembrane protein 110 3 protein-coding STIMATE store-operated calcium entry regulator STIMATE|STIM-activating enhancer encoded by TMEM110 10 0.001369 7.479 1 1 +375387 NRROS negative regulator of reactive oxygen species 3 protein-coding ELLP3030|GARPL1|LRRC33|UNQ3030 negative regulator of reactive oxygen species|leucine-rich repeat-containing protein 33 62 0.008486 6.858 1 1 +375444 C5orf34 chromosome 5 open reading frame 34 5 protein-coding - uncharacterized protein C5orf34 43 0.005886 5.64 1 1 +375449 MAST4 microtubule associated serine/threonine kinase family member 4 5 protein-coding - microtubule-associated serine/threonine-protein kinase 4 132 0.01807 8.448 1 1 +375484 SIMC1 SUMO interacting motifs containing 1 5 protein-coding C5orf25|OOMA1|PLEIAD SUMO-interacting motif-containing protein 1|oocyte maturation associated 1|platform element for inhibition of autolytic degradation 40 0.005475 7.722 1 1 +375513 GUSBP4 glucuronidase, beta pseudogene 4 6 pseudo C6orf216|GUSBL2|SMA3-L|SMAC3L XXbac-BPGBPG55C20.2|glucuronidase, beta-like 2|spinal muscular atrophy candidate gene 3-like 6.818 0 1 +375519 GJB7 gap junction protein beta 7 6 protein-coding CX25|bA136M9.1|connexin25 gap junction beta-7 protein|connexin-25|gap junction protein, beta 7, 25kDa 13 0.001779 1.663 1 1 +375567 VWC2 von Willebrand factor C domain containing 2 7 protein-coding PSST739|UNQ739 brorin|brain-specific chordin-like protein|von Willebrand factor C domain-containing protein 2 32 0.00438 1.435 1 1 +375593 TRIM73 tripartite motif containing 73 7 protein-coding TRIM50B tripartite motif-containing protein 73|tripartite motif-containing protein 50B 11 0.001506 1 0 +375607 NAT16 N-acetyltransferase 16 (putative) 7 protein-coding C7orf52 probable N-acetyltransferase 16|N-acetyltransferase 16 (GCN5-related, putative)|putative N-acetyltransferase 16|putative N-acetyltransferase C7orf52 22 0.003011 1.84 1 1 +375611 SLC26A5 solute carrier family 26 member 5 7 protein-coding DFNB61|PRES prestin|prestin (motor protein)|solute carrier family 26 (anion exchanger), member 5 67 0.009171 1.285 1 1 +375612 LHFPL3 lipoma HMGIC fusion partner-like 3 7 protein-coding LHFPL4 lipoma HMGIC fusion partner-like 3 protein|LHFP-like protein 3|lipoma HMGIC fusion partner-like 4 31 0.004243 2.565 1 1 +375616 KCP kielin/chordin-like protein 7 protein-coding CRIM2|KCP1|NET67 kielin/chordin-like protein|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 44 0.006022 4.742 1 1 +375686 SPATC1 spermatogenesis and centriole associated 1 8 protein-coding SPATA15 speriolin|spermatogenesis and centriole-associated protein 1|spermatogenesis-associated protein 15|spermatogenic cell-specific Cdc20-binding protein|testicular tissue protein Li 181 54 0.007391 1.846 1 1 +375690 WASH5P WAS protein family homolog 5 pseudogene 19 pseudo - - 7.681 0 1 +375704 ENHO energy homeostasis associated 9 protein-coding C9orf165|UNQ470 adropin|GAAI470|energy homeostasis-associated protein 8 0.001095 4.804 1 1 +375719 AQP7P1 aquaporin 7 pseudogene 1 9 pseudo bA251O17.3 - 2 0.0002737 2.19 1 1 +375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 9 protein-coding - protein prenyltransferase alpha subunit repeat-containing protein 1|4930428J16Rik 31 0.004243 9.646 1 1 +375748 ERCC6L2 ERCC excision repair 6 like 2 9 protein-coding BMFS2|C9orf102|RAD26L|SR278 DNA excision repair protein ERCC-6-like 2|DNA repair and recombination protein RAD26-like|excision repair cross-complementation group 6 like 2|excision repair cross-complementing rodent repair deficiency, complementation group 6-like 2|putative repair and recombination helicase RAD26L|stretch responsive protein 278 70 0.009581 6.412 1 1 +375757 SWI5 SWI5 homologous recombination repair protein 9 protein-coding C9orf119|SAE3 DNA repair protein SWI5 homolog|HBV DNAPTP1-transactivated protein A|SWI5 recombination repair homolog|protein SAE3 homolog 27 0.003696 8.567 1 1 +375759 C9orf50 chromosome 9 open reading frame 50 9 protein-coding - uncharacterized protein C9orf50 27 0.003696 1.705 1 1 +375775 PNPLA7 patatin like phospholipase domain containing 7 9 protein-coding C9orf111|NTE-R1|NTEL1 patatin-like phospholipase domain-containing protein 7 85 0.01163 7.054 1 1 +375790 AGRN agrin 1 protein-coding CMS8|CMSPPD agrin|agrin proteoglycan 105 0.01437 12.5 1 1 +375791 CYSRT1 cysteine rich tail 1 9 protein-coding C9orf169 cysteine-rich tail protein 1|UPF0574 protein C9orf169 5 0.0006844 4.312 1 1 +375940 DMBT1P1 deleted in malignant brain tumors 1 pseudogene 1 10 pseudo - - 0.05746 0 1 +376132 LRRC10 leucine rich repeat containing 10 12 protein-coding HRLRRP|LRRC10A leucine-rich repeat-containing protein 10 25 0.003422 0.2278 1 1 +376267 RAB15 RAB15, member RAS oncogene family 14 protein-coding - ras-related protein Rab-15|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 10 0.001369 9.217 1 1 +376412 RNF126P1 ring finger protein 126 pseudogene 1 17 pseudo - - 26 0.003559 1.653 1 1 +376497 SLC27A1 solute carrier family 27 member 1 19 protein-coding ACSVL5|FATP|FATP-1|FATP1 long-chain fatty acid transport protein 1|fatty acid transport protein 1|solute carrier family 27 (fatty acid transporter), member 1 36 0.004927 9.355 1 1 +376693 RPS10P7 ribosomal protein S10 pseudogene 7 1 pseudo RPS10_2_147 - 15 0.002053 5.564 1 1 +376844 SDC4P syndecan 4 pseudogene 22 pseudo - - 0.04182 0 1 +376940 ZC3H6 zinc finger CCCH-type containing 6 2 protein-coding ZC3HDC6 zinc finger CCCH domain-containing protein 6|zinc finger CCCH-type domain containing 6 76 0.0104 8.079 1 1 +377007 KLHL30 kelch like family member 30 2 protein-coding - kelch-like protein 30|kelch-like 30 56 0.007665 3.404 1 1 +377047 PRSS45 protease, serine 45 3 protein-coding TESSP5 serine protease 45|putative testis serine protease 5|testis serine protease 5 11 0.001506 1.329 1 1 +377630 USP17L2 ubiquitin specific peptidase 17-like family member 2 8 protein-coding DUB-3|DUB3|USP17 ubiquitin carboxyl-terminal hydrolase 17|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 43 0.005886 0.2029 1 1 +377677 CA13 carbonic anhydrase 13 8 protein-coding CAXIII carbonic anhydrase 13|CA-XIII|carbonate dehydratase XIII|carbonic anhydrase XIII 16 0.00219 6.448 1 1 +377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 9 protein-coding E-NTPDase|GLSR2492|NTPDase-8|UNQ2492 ectonucleoside triphosphate diphosphohydrolase 8|E-NTPDase 8|liver ecto-ATP-diphosphohydrolase 26 0.003559 3.987 1 1 +378108 TRIM74 tripartite motif containing 74 7 protein-coding TRIM50C tripartite motif-containing protein 74|tripartite motif-containing 50C|tripartite motif-containing protein 50C 10 0.001369 1.84 1 1 +378465 3.621 0 1 +378708 CENPS centromere protein S 1 protein-coding APITD1|CENP-S|FAAP16|MHF1 centromere protein S|FANCM associated histone fold protein 1|FANCM-interacting histone fold protein 1|Fanconi anemia-associated polypeptide of 16 kDa|apoptosis-inducing TAF9-like domain-containing protein 1|apoptosis-inducing, TAF9-like domain 1 6 0.0008212 7.908 1 1 +378805 LINC-PINT long intergenic non-protein coding RNA, p53 induced transcript 7 ncRNA LincRNA-Pint|MKLN1-AS1|PINT MKLN1 antisense RNA 1 (head to head)|p53 induced noncoding transcript 6.508 0 1 +378807 CATSPER4 cation channel sperm associated 4 1 protein-coding - cation channel sperm-associated protein 4|ion channel CatSper4 33 0.004517 0.1201 1 1 +378810 SNX19P1 sorting nexin 19 pseudogene 1 21 pseudo SNX19P - 1 0.0001369 1 0 +378825 PICSAR P38 inhibited cutaneous squamous cell carcinoma associated lincRNA 21 ncRNA C21orf113|LINC00162|NCRNA00162|NLC1-C|NLC1C|PRED74 Putative narcolepsy candidate region 1 gene C protein|Putative uncharacterized protein C21orf113|long intergenic non-protein coding RNA 162|narcolepsy candidate region 1 gene C|narcolepsy candidate region gene 1C 4 0.0005475 1.17 1 1 +378832 COL18A1-AS1 COL18A1 antisense RNA 1 21 ncRNA C21orf123|NCRNA00175|PRED80 COL18A1 antisense RNA 1 (non-protein coding) 0.6383 0 1 +378881 MIR381HG MIR381 host gene 14 ncRNA C14orf89|NCRNA00225 MIR381 host gene (non-protein coding) 24 0.003285 1 0 +378884 NHLRC1 NHL repeat containing E3 ubiquitin protein ligase 1 6 protein-coding EPM2A|EPM2B|MALIN|bA204B7.2 E3 ubiquitin-protein ligase NHLRC1|NHL repeat containing 1|NHL repeat-containing protein 1 40 0.005475 6.233 1 1 +378925 RNF148 ring finger protein 148 7 protein-coding - RING finger protein 148 39 0.005338 1.433 1 1 +378938 MALAT1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) 11 ncRNA HCN|LINC00047|NCRNA00047|NEAT2|PRO2853|mascRNA MALAT1-associated small cytoplasmic RNA|hepcarcin|long intergenic non-protein coding RNA 47|nuclear enriched abundant transcript 2|nuclear paraspeckle assembly transcript 2 (non-protein coding) 244 0.0334 11.52 1 1 +378948 RBMY1B RNA binding motif protein, Y-linked, family 1, member B Y protein-coding - RNA-binding motif protein, Y chromosome, family 1 member B 0.03518 0 1 +378949 RBMY1D RNA binding motif protein, Y-linked, family 1, member D Y protein-coding - RNA-binding motif protein, Y chromosome, family 1 member D 3 0.0004106 1 0 +378950 RBMY1E RNA binding motif protein, Y-linked, family 1, member E Y protein-coding - RNA-binding motif protein, Y chromosome, family 1 member E 0 0 0.02502 1 1 +378951 RBMY1J RNA binding motif protein, Y-linked, family 1, member J Y protein-coding - RNA-binding motif protein, Y chromosome, family 1 member F/J|Y chromosome RNA recognition motif 2 0.06716 0 1 +379013 RNF138P1 ring finger protein 138 pseudogene 1 5 pseudo - ring finger protein 138, E3 ubiquitin protein ligase pseudogene 1 0 0 3.727 1 1 +386593 CHKB-CPT1B CHKB-CPT1B readthrough (NMD candidate) 22 ncRNA CHKL-CPT1B CHKB-CPT1B readthrough (non-protein coding)|choline kinase-like, carnitine palmitoyltransferase 1B (muscle) transcription unit 1 0.0001369 8.255 1 1 +386607 ZFP91-CNTF ZFP91-CNTF readthrough (NMD candidate) 11 ncRNA - ZFP91-CNTF readthrough (non-protein coding)|zinc finger protein 91 homolog, ciliary neurotrophic factor transcription unit 2 0.0002737 0.6702 1 1 +386617 KCTD8 potassium channel tetramerization domain containing 8 4 protein-coding - BTB/POZ domain-containing protein KCTD8|potassium channel tetramerisation domain containing 8 82 0.01122 1.77 1 1 +386618 KCTD4 potassium channel tetramerization domain containing 4 13 protein-coding bA321C24.3 BTB/POZ domain-containing protein KCTD4|potassium channel tetramerisation domain containing 4 15 0.002053 1.309 1 1 +386653 IL31 interleukin 31 12 protein-coding IL-31 interleukin-31 15 0.002053 0.07901 1 1 +386672 KRTAP10-4 keratin associated protein 10-4 21 protein-coding KAP10.4|KAP18-4|KRTAP10.4|KRTAP18-4|KRTAP18.4 keratin-associated protein 10-4|high sulfur keratin-associated protein 10.4|keratin-associated protein 18.4 48 0.00657 0.0911 1 1 +386674 KRTAP10-6 keratin associated protein 10-6 21 protein-coding KAP10.6|KAP18.6|KRTAP18-6|KRTAP18.6 keratin-associated protein 10-6|high sulfur keratin-associated protein 10.6|keratin associated protein 18-6 42 0.005749 0.07048 1 1 +386675 KRTAP10-7 keratin associated protein 10-7 21 protein-coding KAP10.7|KAP18.7|KRTAP18-7 keratin-associated protein 10-7|high sulfur keratin-associated protein 10.7|keratin associated protein 18-7 56 0.007665 0.02781 1 1 +386676 KRTAP10-9 keratin associated protein 10-9 21 protein-coding KAP10.9|KAP18.9|KRTAP18-9 keratin-associated protein 10-9|high sulfur keratin-associated protein 10.9|keratin associated protein 18-9|keratin-associated protein 10.9|keratin-associated protein 18.9 39 0.005338 0.01654 1 1 +386677 KRTAP10-1 keratin associated protein 10-1 21 protein-coding KAP10.1|KAP18-1|KAP18.1|KRTAP10.1|KRTAP18-1|KRTAP18.1 keratin-associated protein 10-1|high sulfur keratin-associated protein 10.1|keratin-associated protein 10.1|keratin-associated protein 18-1|keratin-associated protein 18.1 28 0.003832 0.02676 1 1 +386678 KRTAP10-11 keratin associated protein 10-11 21 protein-coding KAP10.11|KAP18.11|KRTAP18-11|KRTAP18.11 keratin-associated protein 10-11|high sulfur keratin-associated protein 10.11|keratin associated protein 18-11|keratin-associated protein 10.11|keratin-associated protein 18.11 24 0.003285 0.03193 1 1 +386679 KRTAP10-2 keratin associated protein 10-2 21 protein-coding KAP10.2|KAP18-2|KAP18.2|KRTAP10.2|KRTAP18-2|KRTAP18.2 keratin-associated protein 10-2|high sulfur keratin-associated protein 10.2|keratin-associated protein 18-2|keratin-associated protein 18.2 31 0.004243 0.1041 1 1 +386680 KRTAP10-5 keratin associated protein 10-5 21 protein-coding KAP10.5|KAP18-5|KAP18.5|KRTAP10.5|KRTAP18-5|KRTAP18.1|KRTAP18.5 keratin-associated protein 10-5|high sulfur keratin-associated protein 10.5|keratin-associated protein 18.5 30 0.004106 0.02329 1 1 +386681 KRTAP10-8 keratin associated protein 10-8 21 protein-coding KAP10.8|KRTAP18-8|KRTAP18.8 keratin-associated protein 10-8|high sulfur keratin-associated protein 10.8|keratin associated protein 18-8|keratin-associated protein 10.8|keratin-associated protein 18.8 20 0.002737 0.01001 1 1 +386682 KRTAP10-3 keratin associated protein 10-3 21 protein-coding KAP10.3|KAP18-3|KAP18.3|KRTAP10.3|KRTAP18-3|KRTAP18.3 keratin-associated protein 10-3|high sulfur keratin-associated protein 10.3|keratin-associated protein 18-3|keratin-associated protein 18.3 19 0.002601 0.02712 1 1 +386683 KRTAP12-3 keratin associated protein 12-3 21 protein-coding KRTAP12.3 keratin-associated protein 12-3|high sulfur keratin-associated protein 12.3|keratin-associated protein 12.3 11 0.001506 0.01194 1 1 +386684 KRTAP12-4 keratin associated protein 12-4 21 protein-coding KRTAP12.4 keratin-associated protein 12-4|high sulfur keratin-associated protein 12.4 10 0.001369 0.009407 1 1 +386685 KRTAP10-12 keratin associated protein 10-12 21 protein-coding KAP10.12|KRTAP18-12|KRTAP18.12 keratin-associated protein 10-12|high sulfur keratin-associated protein 10.12|keratin-associated protein 18-12 20 0.002737 0.04226 1 1 +386724 AMIGO3 adhesion molecule with Ig like domain 3 3 protein-coding ALI3|AMIGO-3 amphoterin-induced protein 3|alivin-3|amphoterin-induced gene and ORF 3 42 0.005749 6.784 1 1 +386746 MRGPRG MAS related GPR family member G 11 protein-coding GPR169|MRGG mas-related G-protein coupled receptor member G|G protein-coupled receptor 169|G protein-coupled receptor MRGG|MAS-related GPR, member G 4 0.0005475 0.0009181 1 1 +386757 SLC6A10P solute carrier family 6 member 10, pseudogene 16 pseudo CT-2|CT2|SLC6A10|SLC6A10pA similar to sodium- and chloride-dependent creatine transporter|creatine transporter-2|solute carrier family 6 (neurotransmitter transporter), member 10, pseudogene|solute carrier family 6 (neurotransmitter transporter, creatine), member 10, pseudogene 119 0.01629 3.222 1 1 +386758 ZNF582-AS1 ZNF582 antisense RNA 1 (head to head) 19 ncRNA - ZNF582 antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 6 protein-coding P1P373C6|ZNF307|ZNF427|ZSCAN36 zinc finger protein with KRAB and SCAN domains 4|p373c6.1 (novel C2H2 type zinc finger protein)|zinc finger protein 307|zinc finger protein 427 34 0.004654 6.779 1 1 +387036 GUSBP2 glucuronidase, beta pseudogene 2 6 pseudo GUSBL1|GUSBP4|SMA3-L|SMAC3L|SMAC3L2|b55C20.1|bA239L20.1|bA239L20.5|bGLU-Lp glucuronidase, beta pseudogene 4|glucuronidase, beta-like 1|spinal muscular atrophy candidate gene 3-like 2 23 0.003148 4.457 1 1 +387065 HMGA1P7 high mobility group AT-hook 1 pseudogene 7 6 pseudo HMGA1L7 high mobility group AT-hook 1-like 7 1 0.0001369 1 0 +387066 SNHG5 small nucleolar RNA host gene 5 6 ncRNA C6orf160|LINC00044|NCRNA00044|U50HG|bA33E24.2 U50 host|long intergenic non-protein coding RNA 44|small nucleolar RNA host gene (non-protein coding) 5|small nucleolar RNA host gene 5 (non-protein coding) 5 0.0006844 10.45 1 1 +387071 FAM136BP family with sequence similarity 136 member B, pseudogene 6 pseudo C6orf87|FAM136B|dJ40E16.3 - 0.3305 0 1 +387082 SUMO4 small ubiquitin-like modifier 4 6 protein-coding IDDM5|SMT3H4|SUMO-4|dJ281H8.4 small ubiquitin-related modifier 4|SMT3 suppressor of mif two 3 homolog 2|SMT3 suppressor of mif two 3 homolog 4|insulin-dependent diabetes mellitus 5|small ubiquitin-like modifier 4 protein 4 0.0005475 1.026 1 1 +387097 3.116 0 1 +387103 CENPW centromere protein W 6 protein-coding C6orf173|CENP-W|CUG2 centromere protein W|cancer-up-regulated gene 2 protein|cancer-upregulated gene 2 9 0.001232 7.126 1 1 +387104 SOGA3 SOGA family member 3 6 protein-coding C6orf174|dJ403A15.3 protein SOGA3 84 0.0115 5.964 1 1 +387111 LINC00222 long intergenic non-protein coding RNA 222 6 ncRNA C6orf181|NCRNA00222|dJ354J5.2 - 1 0.0001369 1 0 +387119 CEP85L centrosomal protein 85 like 6 protein-coding C6orf204|NY-BR-15|bA57K17.2 centrosomal protein of 85 kDa-like|centrosomal protein 85kDa-like|serologically defined breast cancer antigen NY-BR-15 57 0.007802 4.672 1 1 +387129 NPSR1 neuropeptide S receptor 1 7 protein-coding ASRT2|GPR154|GPRA|NPSR|PGR14|VRR1 neuropeptide S receptor|G-protein coupled receptor 154|G-protein coupled receptor PGR14|G-protein coupled receptor for asthma susceptibility|vasopressin receptor-related receptor 1 52 0.007117 0.7885 1 1 +387254 SLC7A5P2 solute carrier family 7 member 5 pseudogene 2 16 pseudo IMAA|MMAA LAT1-3TM protein 2|SLC7A5 pseudogene|hLAT1-3TM|solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 2|solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 pseudogene 2 1 0.0001369 2.211 1 1 +387263 C6orf120 chromosome 6 open reading frame 120 6 protein-coding - UPF0669 protein C6orf120 11 0.001506 9.469 1 1 +387264 KRTAP5-1 keratin associated protein 5-1 11 protein-coding KRN1L|KRTAP5.1 keratin-associated protein 5-1|keratin-associated protein 5.1|ultrahigh sulfur keratin-associated protein 5.1 42 0.005749 2.233 1 1 +387266 KRTAP5-3 keratin associated protein 5-3 11 protein-coding KRTAP5-9|KRTAP5.3 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 27 0.003696 0.1075 1 1 +387267 KRTAP5-4 keratin associated protein 5-4 11 protein-coding KRTAP5.4 keratin-associated protein 5-4|keratin-associated protein 5.4|ultrahigh sulfur keratin-associated protein 5.4 38 0.005201 0.2482 1 1 +387273 KRTAP5-10 keratin associated protein 5-10 11 protein-coding KRTAP5.10 keratin-associated protein 5-10|keratin-associated protein 5.10|ultrahigh sulfur keratin-associated protein 5.10 49 0.006707 0.9731 1 1 +387316 VN1R10P vomeronasal 1 receptor 10 pseudogene 6 pseudo FKSG83|VNR6I1P|b24o18.2|hs6V1-1p vomeronasal 1 receptor 1 pseudogene|vomeronasal olfactory receptor, (chromosome 6) subtype I, member 1 pseudogene 2 0.0002737 1 0 +387328 ZNF322P1 zinc finger protein 322 pseudogene 1 9 pseudo ZNF322|ZNF322B putative zinc finger protein 322B|zinc finger protein 322B 1 0.0001369 4.556 1 1 +387332 TBPL2 TATA-box binding protein like 2 14 protein-coding TBP2|TRF3 TATA box-binding protein-like protein 2|TATA box-binding protein-related factor 3|TBP-like protein 2|TBP-related factor 3 26 0.003559 0.1672 1 1 +387338 NSUN4 NOP2/Sun RNA methyltransferase family member 4 1 protein-coding SHTAP 5-methylcytosine rRNA methyltransferase NSUN4|NOL1/NOP2/Sun domain family member 4|NOP2/Sun domain family, member 4|putative methyltransferase NSUN4|sperm head and tail associated protein 28 0.003832 9.03 1 1 +387357 THEMIS thymocyte selection associated 6 protein-coding C6orf190|C6orf207|GASP|SPOT|TSEPA protein THEMIS|GRB2-associated protein|signaling phosphoprotein specific for T cells|thymocyte selection pathway associated|thymocyte-expressed molecule involved in selection 83 0.01136 4.087 1 1 +387486 LINC00320 long intergenic non-protein coding RNA 320 21 ncRNA C21orf131|NCRNA00320|PRED14 - 0.677 0 1 +387496 RASL11A RAS like family 11 member A 13 protein-coding - ras-like protein family member 11A 14 0.001916 6.678 1 1 +387509 GPR153 G protein-coupled receptor 153 1 protein-coding PGR1 probable G-protein coupled receptor 153|G-protein coupled receptor PGR1 28 0.003832 8.391 1 1 +387521 TMEM189 transmembrane protein 189 20 protein-coding KUA transmembrane protein 189 12 0.001642 10.14 1 1 +387522 TMEM189-UBE2V1 TMEM189-UBE2V1 readthrough 20 protein-coding CROC-1B|CROC1B|KUA-UEV TMEM189-UBE2V1 fusion protein|TMEM189-UBE2V1 readthrough transcript|transmembrane protein 189-ubiquitin-conjugating enzyme E2 variant 1 read-through 5 0.0006844 1.994 1 1 +387590 TPTEP1 transmembrane phosphatase with tensin homology pseudogene 1 22 pseudo psiTPTE22 TPTE pseudogene|endogenous retroviral protease pseudogene 66 0.009034 5.344 1 1 +387597 ILDR2 immunoglobulin like domain containing receptor 2 1 protein-coding C1orf32|dJ782G3.1 immunoglobulin-like domain-containing receptor 2 57 0.007802 2.503 1 1 +387601 SLC22A25 solute carrier family 22 member 25 11 protein-coding HIMTP|UST6 solute carrier family 22 member 25|MGI:2442751, MGI:2385316, MGI:3042283, MGI:3645714, MGI:3605624, MGI:2442750|organic anion transporter UST6|putative UST1-like organic anion transporter 52 0.007117 0.6403 1 1 +387628 FGF7P6 fibroblast growth factor 7 pseudogene 6 9 pseudo KGFLP1 - 1.665 0 1 +387638 C10orf113 chromosome 10 open reading frame 113 10 protein-coding bA165O3.1 putative uncharacterized protein C10orf113 13 0.001779 0.1157 1 1 +387640 SKIDA1 SKI/DACH domain containing 1 10 protein-coding C10orf140|DLN-1 SKI/DACH domain-containing protein 1|protein DLN-1 81 0.01109 4.391 1 1 +387644 LINC00202-1 long intergenic non-protein coding RNA 202-1 10 ncRNA C10orf51|LINC00202|NCRNA00202|bB27G4.1 long intergenic non-protein coding RNA 202 3 0.0004106 2.565 1 1 +387646 LRRC37A6P leucine rich repeat containing 37 member A6, pseudogene 10 pseudo LRRC37E leucine rich repeat containing 37, member A family pseudogene 14 0.001916 4.539 1 1 +387647 PTCHD3P1 patched domain containing 3 pseudogene 1 10 pseudo - - 9 0.001232 8.46 1 1 +387680 FAM21A family with sequence similarity 21 member A 10 protein-coding FAM21B|bA56A21.1|bA98I6.1 WASH complex subunit FAM21A|WASH complex subunit FAM21B|alternative protein FAM21B|family with sequence similarity 21, member B 37 0.005064 8.324 1 1 +387694 SH2D4B SH2 domain containing 4B 10 protein-coding - SH2 domain-containing protein 4B|novel SH2 domain-containing protein 31 0.004243 1.52 1 1 +387695 C10orf99 chromosome 10 open reading frame 99 10 protein-coding AP-57|CSBF|UNQ1833 secreted protein C10orf99|RLLV1833|anti-microbial peptide with 57 amino acid residues|antimicrobial peptide-57|colon-derived SUSD2 binding factor 5 0.0006844 2.555 1 1 +387700 SLC16A12 solute carrier family 16 member 12 10 protein-coding CJMG|CRT2|CTRCT47|MCT12 monocarboxylate transporter 12|creatine transporter 2|monocarboxylic acid transporter 12|solute carrier family 16, member 12 (monocarboxylic acid transporter 12) 24 0.003285 3.643 1 1 +387707 CC2D2B coiled-coil and C2 domain containing 2B 10 protein-coding C10orf130|bA248J23.4 protein CC2D2B 35 0.004791 2.324 1 1 +387712 ENO4 enolase family member 4 10 protein-coding C10orf134 enolase 4|2-phospho-D-glycerate hydro-lyase|enolase-like protein ENO4 13 0.001779 1 0 +387715 ARMS2 age-related maculopathy susceptibility 2 10 protein-coding ARMD8 age-related maculopathy susceptibility protein 2 5 0.0006844 0.4557 1 1 +387718 TEX36 testis expressed 36 10 protein-coding C10orf122|bA383C5.1 testis-expressed sequence 36 protein 11 0.001506 0.1234 1 1 +387723 LINC00959 long intergenic non-protein coding RNA 959 10 ncRNA - - 13 0.001779 1 0 +387733 IFITM5 interferon induced transmembrane protein 5 11 protein-coding BRIL|DSPA1|Hrmp1|OI5|fragilis4 interferon-induced transmembrane protein 5|bone-restricted ifitm-like protein|bone-restricted interferon-induced transmembrane protein-like protein|dispanin subfamily A member 1 15 0.002053 0.5335 1 1 +387742 FAM99A family with sequence similarity 99 member A (non-protein coding) 11 ncRNA - family with sequence similarity 99, member A 0.33 0 1 +387748 OR56B1 olfactory receptor family 56 subfamily B member 1 11 protein-coding OR11-65|OR56B1P olfactory receptor 56B1|olfactory receptor OR11-65|olfactory receptor, family 56, subfamily B, member 1 pseudogene 36 0.004927 0.2557 1 1 +387751 GVINP1 GTPase, very large interferon inducible pseudogene 1 11 pseudo GVIN1|GVIN1P|VLIG-1|VLIG1 GTPase, very large interferon inducible 1, pseudogene|very large inducible GTPase 1 23 0.003148 5.554 1 1 +387755 INSC inscuteable homolog (Drosophila) 11 protein-coding - protein inscuteable homolog|inscuteable spindle orientation adaptor protein 64 0.00876 1.917 1 1 +387758 FIBIN fin bud initiation factor homolog (zebrafish) 11 protein-coding - fin bud initiation factor homolog 17 0.002327 7.2 1 1 +387763 C11orf96 chromosome 11 open reading frame 96 11 protein-coding AG2 uncharacterized protein C11orf96|protein Ag2 homolog 5 0.0006844 8.369 1 1 +387770 LOC387770 tripartite motif containing 49D1 pseudogene 11 pseudo - ring finger protein 18-like pseudogene 0 0 1 0 +387775 SLC22A10 solute carrier family 22 member 10 11 protein-coding OAT5|hOAT5 solute carrier family 22 member 10|organic anion transporter 5|solute carrier family 22 (organic anion/cation transporter), member 10 54 0.007391 0.8878 1 1 +387778 SPDYC speedy/RINGO cell cycle regulator family member C 11 protein-coding RINGOC|Ringo2 speedy protein C|RINGO C|hSpy/Ringo C|rapid inducer of G2/M progression in oocytes C|speedy C|speedy homolog C 30 0.004106 1.198 1 1 +387787 LIPT2 lipoyl(octanoyl) transferase 2 (putative) 11 protein-coding - putative lipoyltransferase 2, mitochondrial|lipoate-protein ligase B|octanoyl-[acyl-carrier-protein]-protein N-octanoyltransferase|putative octanoyltransferase, mitochondrial 4 0.0005475 4.738 1 1 +387804 VSTM5 V-set and transmembrane domain containing 5 11 protein-coding C11orf90 V-set and transmembrane domain-containing protein 5 3 0.0004106 1.074 1 1 +387820 LOC387820 DnaJ heat shock protein family (Hsp40) member B7 pseudogene 11 pseudo - DnaJ (Hsp40) homolog, subfamily B, member 7 pseudogene 0 0 1 0 +387836 CLEC2A C-type lectin domain family 2 member A 12 protein-coding INPE5792|KACL|PILAR|UNQ5792 C-type lectin domain family 2 member A|keratinocyte-associated C-type lectin|proliferation-induced lymphocyte-associated receptor 7 0.0009581 0.2677 1 1 +387837 CLEC12B C-type lectin domain family 12 member B 12 protein-coding UNQ5782 C-type lectin domain family 12 member B|macrophage antigen h|testis secretory sperm-binding protein Li 205a 22 0.003011 1.187 1 1 +387841 RPL13AP20 ribosomal protein L13a pseudogene 20 12 pseudo RPL13A_9_1211 hCG27695 2 0.0002737 5.152 1 1 +387849 REP15 RAB15 effector protein 12 protein-coding RAB15EP rab15 effector protein 11 0.001506 3.93 1 1 +387856 CCDC184 coiled-coil domain containing 184 12 protein-coding C12orf68 coiled-coil domain-containing protein 184 17 0.002327 4.856 1 1 +387882 C12orf75 chromosome 12 open reading frame 75 12 protein-coding AGD3|OCC-1|OCC1 overexpressed in colon carcinoma 1 protein|adipogenesis down-regulated 3|overexpressed in colon carcinoma-1|putative overexpressed in colon carcinoma-1 protein variant C 2 0.0002737 8.35 1 1 +387885 CFAP73 cilia and flagella associated protein 73 12 protein-coding CCDC42B|MIA2 coiled-coil domain-containing protein 42B|coiled-coil domain containing 42B 6 0.0008212 2.853 1 1 +387890 TMEM233 transmembrane protein 233 12 protein-coding DSPB2|IFITMD2 transmembrane protein 233|dispanin subfamily B member 2|interferon induced transmembrane protein domain containing 2|interferon-induced transmembrane domain-containing protein D2 6 0.0008212 3.089 1 1 +387893 KMT5A lysine methyltransferase 5A 12 protein-coding PR-Set7|SET07|SET8|SETD8 N-lysine methyltransferase KMT5A|H4-K20-HMTase KMT5A|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 (lysine methyltransferase) 8|SET domain-containing protein 8|histone-lysine N-methyltransferase KMT5A|histone-lysine N-methyltransferase SETD8|lysine (K)-specific methyltransferase 5A|lysine N-methyltransferase 5A|lysine-specific methylase 5A 23 0.003148 9.68 1 1 +387895 LINC00944 long intergenic non-protein coding RNA 944 12 ncRNA - - 0 0 1 0 +387911 C1QTNF9B C1q and tumor necrosis factor related protein 9B 13 protein-coding CTRP9B complement C1q and tumor necrosis factor-related protein 9B|C1q/TNF-related protein 9B|collagen triple helix repeat-containing 22 0.003011 1.848 1 1 +387914 SHISA2 shisa family member 2 13 protein-coding C13orf13|PRO28631|TMEM46|WGAR9166|bA398O19.2|hShisa protein shisa-2 homolog|shisa homolog 2|transmembrane protein 46 24 0.003285 6.159 1 1 +387921 NHLRC3 NHL repeat containing 3 13 protein-coding - NHL repeat-containing protein 3 30 0.004106 9.023 1 1 +387923 SERP2 stress associated endoplasmic reticulum protein family member 2 13 protein-coding C13orf21|bA269C23.1 stress-associated endoplasmic reticulum protein 2|ribosome-associated membrane protein RAMP4-2 4 0.0005475 5.119 1 1 +387934 FABP5P1 fatty acid binding protein 5 pseudogene 1 13 pseudo FABP5|FABP5L1 fatty acid binding protein 5-like 1 (pseudogene) 1 0.0001369 1 0 +387978 LINC01551 long intergenic non-protein coding RNA 1551 14 ncRNA C14orf23|c14_5148 - 18 0.002464 0.7889 1 1 +387990 TOMM20L translocase of outer mitochondrial membrane 20 like 14 protein-coding UNQ9438 TOMM20-like protein 1|translocase of outer mitochondrial membrane 20 homolog (yeast)-like|translocase of outer mitochondrial membrane 20 homolog type I 11 0.001506 1.219 1 1 +388007 SERPINA13P serpin family A member 13, pseudogene 14 pseudo SERPINA13|UNQ6121 protease inhibitor|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 13|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 13 (pseudogene) 33 0.004517 0.05604 1 1 +388011 LINC01550 long intergenic non-protein coding RNA 1550 14 ncRNA C14orf64 - 3.635 0 1 +388015 RTL1 retrotransposon-like 1 14 protein-coding MART1|Mar1|PEG11 retrotransposon-like protein 1|mammalian retrotransposon derived protein 1|paternally expressed gene 11 protein|retrotransposon-derived protein PEG11 108 0.01478 1.097 1 1 +388021 TMEM179 transmembrane protein 179 14 protein-coding C14orf90|TMEM179A transmembrane protein 179|transmembrane protein 179A 5 0.0006844 1.203 1 1 +388077 IGHV1OR15-1 immunoglobulin heavy variable 1/OR15-1 (non-functional) 15 pseudo IGHV1/OR15-1|IGHV1OR151 immunoglobulin heavy variable 1/OR15-1 pseudogene 1 0.0001369 1 0 +388115 C15orf52 chromosome 15 open reading frame 52 15 protein-coding - uncharacterized protein C15orf52 60 0.008212 8.227 1 1 +388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 15 protein-coding TIPE3 tumor necrosis factor alpha-induced protein 8-like protein 3|TNF alpha-induced protein 8-like protein 3|TNFAIP8-like protein 3|tumor necrosis factor, alpha induced protein 8 like 3 20 0.002737 6.127 1 1 +388125 C2CD4B C2 calcium dependent domain containing 4B 15 protein-coding FAM148B|NLF2 C2 calcium-dependent domain-containing protein 4B|family with sequence similarity 148, member B|nuclear localized factor 2 7 0.0009581 4.289 1 1 +388135 C15orf59 chromosome 15 open reading frame 59 15 protein-coding INSYN1 UPF0583 protein C15orf59 30 0.004106 5.056 1 1 +388152 GOLGA2P7 golgin A2 pseudogene 7 15 pseudo - - 8.377 0 1 +388165 UBE2Q2P1 ubiquitin conjugating enzyme E2 Q2 pseudogene 1 15 pseudo UBE2QP1 ubiquitin conjugating enzyme E2Q family member 2 pseudogene 1|ubiquitin-conjugating enzyme E2Q family pseudogene 1 31 0.004243 3.643 1 1 +388181 FAM149B1P1 family with sequence similarity 149, member B2 15 pseudo FAM149B2|KIAA0974P - 0 0 1 0 +388182 SPATA41 spermatogenesis associated 41 (non-protein coding) 15 ncRNA HSD47 - 1 0.0001369 3.782 1 1 +388199 PRR25 proline rich 25 16 protein-coding gs64 proline-rich protein 25 27 0.003696 0.2398 1 1 +388228 SBK1 SH3 domain binding kinase 1 16 protein-coding SBK serine/threonine-protein kinase SBK1|SH3-binding domain kinase 1 18 0.002464 7.774 1 1 +388242 LOC388242 SAGA complex associated factor 29 pseudogene 16 pseudo - coiled-coil domain containing 101 pseudogene 1 0.0001369 4.465 1 1 +388255 IGHV3OR16-8 immunoglobulin heavy variable 3/OR16-8 (non-functional) 16 other IGHV3/OR16-8|IGHV3OR168 - 24 0.003285 1 0 +388272 C16orf87 chromosome 16 open reading frame 87 16 protein-coding - UPF0547 protein C16orf87 9 0.001232 7.005 1 1 +388284 C16orf86 chromosome 16 open reading frame 86 16 protein-coding - uncharacterized protein C16orf86 17 0.002327 5.272 1 1 +388289 C16orf47 chromosome 16 open reading frame 47 16 protein-coding - putative uncharacterized protein C16orf47 1 0.0001369 1 0 +388323 GLTPD2 glycolipid transfer protein domain containing 2 17 protein-coding - glycolipid transfer protein domain-containing protein 2 28 0.003832 1.333 1 1 +388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 17 protein-coding HSD45 protein INCA1 7 0.0009581 4.362 1 1 +388325 SCIMP SLP adaptor and CSK interacting membrane protein 17 protein-coding C17orf87|UNQ5783 SLP adapter and CSK-interacting membrane protein|DTFT5783|SLP65/SLP76, Csk-interacting membrane protein|transmembrane protein C17orf87 8 0.001095 3.99 1 1 +388327 C17orf100 chromosome 17 open reading frame 100 17 protein-coding - uncharacterized protein C17orf100|hCG1985469 4 0.0005475 6.042 1 1 +388333 SPDYE4 speedy/RINGO cell cycle regulator family member E4 17 protein-coding - speedy protein E4|putative Speedy protein E4|speedy homolog E4 10 0.001369 0.06476 1 1 +388335 TMEM220 transmembrane protein 220 17 protein-coding - transmembrane protein 220 5 0.0006844 6.414 1 1 +388336 SHISA6 shisa family member 6 17 protein-coding - protein shisa-6 homolog|shisa homolog 6 9 0.001232 2.212 1 1 +388341 LRRC75A leucine rich repeat containing 75A 17 protein-coding C17orf76|FAM211A leucine-rich repeat-containing protein 75A|family with sequence similarity 211, member A|leucine-rich repeat-containing protein C17orf76|leucine-rich repeat-containing protein FAM211A 11 0.001506 6.085 1 1 +388364 TMIGD1 transmembrane and immunoglobulin domain containing 1 17 protein-coding TMIGD|UNQ9372 transmembrane and immunoglobulin domain-containing protein 1|AWKS9372 23 0.003148 0.2572 1 1 +388372 CCL4L1 C-C motif chemokine ligand 4 like 1 17 protein-coding AT744.2|CCL4L|LAG-1|LAG1|MIP-1-beta|SCYA4L|SCYA4L1|SCYA4L2 C-C motif chemokine 4-like|CC chemokine ligand 4L1|Lymphocyte activation gene 1 protein|Macrophage inflammatory protein 1-beta|Monocyte adherence-induced protein 5-alpha|Small-inducible cytokine A4-like|chemokine (C-C motif) ligand 4-like 1|chemokine (C-C motif) ligand 4-like 1, telomeric|lymphocyte activation gene 1|macrophage inflammatory protein-1b2|small inducible cytokine A4-like 2 0.0002737 5.795 1 1 +388381 C17orf98 chromosome 17 open reading frame 98 17 protein-coding - uncharacterized protein C17orf98 10 0.001369 0.2119 1 1 +388387 LINC00671 long intergenic non-protein coding RNA 671 17 ncRNA - - 6 0.0008212 1.109 1 1 +388389 CCDC103 coiled-coil domain containing 103 17 protein-coding CILD17|PR46b|SMH coiled-coil domain-containing protein 103 8 0.001095 6.64 1 1 +388394 RPRML reprimo like 17 protein-coding - reprimo-like protein 4 0.0005475 1.228 1 1 +388403 YPEL2 yippee like 2 17 protein-coding FKSG4 protein yippee-like 2|DiGeorge syndrome-related protein 12 0.001642 9.099 1 1 +388407 C17orf82 chromosome 17 open reading frame 82 17 protein-coding - putative uncharacterized protein C17orf82 20 0.002737 3.218 1 1 +388419 BTBD17 BTB domain containing 17 17 protein-coding BTBD17A|LGALS3BPL|TANGO10A BTB/POZ domain-containing protein 17|BTB (POZ) domain containing 17|BTB/POZ and BACK domain-containing protein LOC388419|transport and golgi organization 10 homolog A 19 0.002601 1.384 1 1 +388428 AATK-AS1 AATK antisense RNA 1 17 ncRNA - AATK antisense RNA 1 (non-protein coding) 3 0.0004106 0.2724 1 1 +388468 POTEC POTE ankyrin domain family member C 18 protein-coding A26B2|CT104.6|POTE-18|POTE18 POTE ankyrin domain family member C|ANKRD26-like family B member 2|cancer/testis antigen family 104, member 6|prostate, ovary, testis-expressed protein on chromosome 18 127 0.01738 0.1756 1 1 +388503 C3P1 complement component 3 precursor pseudogene 19 pseudo CPLP - 43 0.005886 0.6937 1 1 +388507 ZNF788 zinc finger family member 788 19 pseudo - - 16 0.00219 5.982 1 1 +388512 CLEC17A C-type lectin domain family 17 member A 19 protein-coding - C-type lectin domain family 17, member A|prolectin 35 0.004791 1.924 1 1 +388514 CYP4F24P cytochrome P450 family 4 subfamily F member 24, pseudogene 19 pseudo - cytochrome P450, family 4, subfamily F, polypeptide 24 pseudogene 30 0.004106 1 0 +388523 ZNF728 zinc finger protein 728 19 protein-coding - zinc finger protein 728 40 0.005475 1 0 +388524 RPSAP58 ribosomal protein SA pseudogene 58 19 pseudo RPSA_30_1642 - 12 0.001642 12.99 1 1 +388531 RGS9BP regulator of G-protein signaling 9 binding protein 19 protein-coding PERRS|R9AP|RGS9 regulator of G-protein signaling 9-binding protein|RGS9 anchor protein|RGS9-anchoring protein 11 0.001506 2.621 1 1 +388533 KRTDAP keratinocyte differentiation associated protein 19 protein-coding KDAP|UNQ467 keratinocyte differentiation-associated protein|KIPV467 8 0.001095 1.66 1 1 +388536 ZNF790 zinc finger protein 790 19 protein-coding - zinc finger protein 790 60 0.008212 6.426 1 1 +388550 CEACAM22P carcinoembryonic antigen related cell adhesion molecule 22, pseudogene 19 pseudo - carcinoembryonic antigen-related cell adhesion molecule 2, pseudogene 0 0 0.7406 1 1 +388551 CEACAM16 carcinoembryonic antigen related cell adhesion molecule 16 19 protein-coding CEAL2|DFNA4B carcinoembryonic antigen-related cell adhesion molecule 16|carcinoembryonic antigen like-2 protein 19 0.002601 0.456 1 1 +388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 19 protein-coding BLOS3|HPS8|RP biogenesis of lysosome-related organelles complex 1 subunit 3|BLOC-1 subunit 3|biogenesis of lysosome-related organelles complex-1, subunit 3|reduced pigmentation, mouse, homolog of 7 0.0009581 8.506 1 1 +388555 IGFL3 IGF like family member 3 19 protein-coding UNQ483 insulin growth factor-like family member 3|RPRC483 11 0.001506 0.8852 1 1 +388558 ZNF808 zinc finger protein 808 19 protein-coding - zinc finger protein 808 81 0.01109 7.315 1 1 +388559 ZNF888 zinc finger protein 888 19 protein-coding - zinc finger protein 888|CTD-2331H12.6 4 0.0005475 1 0 +388561 ZNF761 zinc finger protein 761 19 protein-coding ZNF468 zinc finger protein 761|zinc finger protein 468 148 0.02026 8.284 1 1 +388566 ZNF470 zinc finger protein 470 19 protein-coding CZF-1 zinc finger protein 470|chondrogenesis zinc finger protein 1 65 0.008897 6.924 1 1 +388567 ZNF749 zinc finger protein 749 19 protein-coding - zinc finger protein 749 36 0.004927 5.979 1 1 +388569 ZNF324B zinc finger protein 324B 19 protein-coding - zinc finger protein 324B 38 0.005201 6.903 1 1 +388581 FAM132A family with sequence similarity 132 member A 1 protein-coding C1QDC2|C1QTNF12|CTRP12 adipolin|C1q domain containing 2|C1q/TNF-related protein 12|adipose-derived insulin-sensitizing factor|complement C1q tumor necrosis factor-related protein 12|protein FAM132A 12 0.001642 3.178 1 1 +388585 HES5 hes family bHLH transcription factor 5 1 protein-coding bHLHb38 transcription factor HES-5|class B basic helix-loop-helix protein 38|hairy and enhancer of split 5 2 0.0002737 2.306 1 1 +388588 SMIM1 small integral membrane protein 1 (Vel blood group) 1 protein-coding Vel small integral membrane protein 1|vel blood group antigen 1 0.0001369 4.511 1 1 +388591 RNF207 ring finger protein 207 1 protein-coding C1orf188 RING finger protein 207 23 0.003148 7.02 1 1 +388595 TMEM82 transmembrane protein 82 1 protein-coding - transmembrane protein 82 22 0.003011 1.467 1 1 +388610 TRNP1 TMF1-regulated nuclear protein 1 1 protein-coding C1orf225|TNRP TMF-regulated nuclear protein 1 1 0.0001369 7.566 1 1 +388611 CD164L2 CD164 molecule like 2 1 protein-coding EAPG6122|UNQ6122 CD164 sialomucin-like 2 protein 10 0.001369 3.022 1 1 +388630 TRABD2B TraB domain containing 2B 1 protein-coding TIKI2 metalloprotease TIKI2|TRAB domain-containing protein 2B|UPF0632 protein A|heart, kidney and adipose-enriched transmembrane protein homolog 3 0.0004106 1 0 +388633 LDLRAD1 low density lipoprotein receptor class A domain containing 1 1 protein-coding - low-density lipoprotein receptor class A domain-containing protein 1 18 0.002464 1.16 1 1 +388646 GBP7 guanylate binding protein 7 1 protein-coding GBP4L guanylate-binding protein 7|GBP-7|GTP-binding protein 7|guanine nucleotide-binding protein 7 71 0.009718 1.286 1 1 +388649 C1orf146 chromosome 1 open reading frame 146 1 protein-coding - uncharacterized protein C1orf146 12 0.001642 0.08307 1 1 +388650 FAM69A family with sequence similarity 69 member A 1 protein-coding - protein FAM69A 9 0.001232 8.101 1 1 +388662 SLC6A17 solute carrier family 6 member 17 1 protein-coding MRT48|NTT4 sodium-dependent neutral amino acid transporter SLC6A17|orphan sodium- and chloride-dependent neurotransmitter transporter NTT4|sodium-dependent neurotransmitter transporter NTT4|solute carrier family 6 (neurotransmitter transporter), member 17|solute carrier family 6 (neutral amino acid transporter), member 17 57 0.007802 4.46 1 1 +388677 NOTCH2NL notch 2 N-terminal like 1 protein-coding N2N notch homolog 2 N-terminal-like protein|Notch homolog 2 N-terminal like protein 26 0.003559 8.905 1 1 +388685 LINC01138 long intergenic non-protein coding RNA 1138 1 ncRNA LINC00875 long intergenic non-protein coding RNA 875 2.009 0 1 +388692 LOC388692 uncharacterized LOC388692 1 ncRNA - - 4 0.0005475 7.822 1 1 +388695 LYSMD1 LysM domain containing 1 1 protein-coding SB145 lysM and putative peptidoglycan-binding domain-containing protein 1|LysM, putative peptidoglycan-binding, domain containing 1|RP11-68I18.5 18 0.002464 7.876 1 1 +388697 HRNR hornerin 1 protein-coding FLG3|S100A16|S100a18 hornerin|filaggrin family member 3|intermediate filament-associated protein 264 0.03613 3.223 1 1 +388698 FLG2 filaggrin family member 2 1 protein-coding IFPS filaggrin-2|ifapsoriasin|intermediate filament-associated and psoriasis susceptibility protein 268 0.03668 0.9142 1 1 +388701 C1orf189 chromosome 1 open reading frame 189 1 protein-coding - uncharacterized protein C1orf189 6 0.0008212 0.367 1 1 +388714 FMO6P flavin containing monooxygenase 6 pseudogene 1 pseudo FMO6 novel flavin containing monooxygenase 8 0.001095 0.7574 1 1 +388719 LINC00272 long intergenic non-protein coding RNA 272 1 ncRNA C1orf120|NCRNA00272 RP1-223H12.3 1 0.0001369 1 0 +388722 C1orf53 chromosome 1 open reading frame 53 1 protein-coding - uncharacterized protein C1orf53 5 0.0006844 5.275 1 1 +388730 TMEM81 transmembrane protein 81 1 protein-coding HC3107|KVLA2788|UNQ2788 transmembrane protein 81 28 0.003832 5.714 1 1 +388743 CAPN8 calpain 8 1 protein-coding nCL-2 calpain-8|new calpain 2|stomach-specific M-type calpain 13 0.001779 3.885 1 1 +388753 COA6 cytochrome c oxidase assembly factor 6 1 protein-coding C1orf31|CEMCOX4 cytochrome c oxidase assembly factor 6 homolog 15 0.002053 8.55 1 1 +388759 C1orf229 chromosome 1 open reading frame 229 1 protein-coding - putative uncharacterized protein C1orf229 1 0.0001369 3.176 1 1 +388761 OR14A2 olfactory receptor family 14 subfamily A member 2 1 pseudo OR5AX1|OR5AX1P olfactory receptor, family 5, subfamily AX, member 1 pseudogene 3 0.0004106 1 0 +388762 OR2M1P olfactory receptor family 2 subfamily M member 1 pseudogene 1 pseudo JCG10|OR2M1|OST037 - 2 0.0002737 0.01324 1 1 +388789 LINC00493 long intergenic non-protein coding RNA 493 20 ncRNA - - 3 0.0004106 9.214 1 1 +388795 EFCAB8 EF-hand calcium binding domain 8 20 protein-coding - EF-hand calcium-binding domain-containing protein 8|EF-hand domain-containing protein ENSP00000383366 6 0.0008212 1.04 1 1 +388796 SNHG17 small nucleolar RNA host gene 17 20 ncRNA - small nucleolar RNA host gene 17 (non-protein coding) 8.586 0 1 +388799 FAM209B family with sequence similarity 209 member B 20 protein-coding C20orf107|dJ1153D9.4 protein FAM209B|uncharacterized protein C20orf107 23 0.003148 1.49 1 1 +388815 MIR99AHG mir-99a-let-7c cluster host gene 21 ncRNA C21orf34|C21orf35|LINC00478|MONC long intergenic non-protein coding RNA 478|megakaryocytic oncogenic non-coding RNA|mir-99a-let-7c cluster host gene (non-protein coding) 24 0.003285 4.441 1 1 +388818 KRTAP26-1 keratin associated protein 26-1 21 protein-coding - keratin-associated protein 26-1 31 0.004243 0.0536 1 1 +388886 LRRC75B leucine rich repeat containing 75B 22 protein-coding C22orf36|FAM211B leucine-rich repeat-containing protein 75B|family with sequence similarity 211, member B|leucine-rich repeat-containing protein C22orf36|leucine-rich repeat-containing protein FAM211B 16 0.00219 7.691 1 1 +388910 LINC00207 long intergenic non-protein coding RNA 207 22 ncRNA NCRNA00207 - 15 0.002053 0.04366 1 1 +388931 MFSD2B major facilitator superfamily domain containing 2B 2 protein-coding - major facilitator superfamily domain-containing protein 2B 29 0.003969 4.692 1 1 +388939 C2orf71 chromosome 2 open reading frame 71 2 protein-coding RP54 uncharacterized protein C2orf71 108 0.01478 1.365 1 1 +388946 TMEM247 transmembrane protein 247 2 protein-coding - transmembrane protein 247|transmembrane protein ENSP00000343375 24 0.003285 0.07867 1 1 +388951 TSPYL6 TSPY like 6 2 protein-coding - testis-specific Y-encoded-like protein 6|TSPY-like protein 6|testicular tissue protein Li 211 36 0.004927 0.549 1 1 +388955 LOC388955 PRELI domain-containing protein 1, mitochondrial pseudogene 2 pseudo - PRELI domain containing 1 pseudogene|PX19 protein pseudogene 0 0 8.754 1 1 +388960 C2orf78 chromosome 2 open reading frame 78 2 protein-coding COG5373|hCG1989538 uncharacterized protein C2orf78 75 0.01027 0.2215 1 1 +388962 BOLA3 bolA family member 3 2 protein-coding MMDS2 bolA-like protein 3|bolA homolog 3 7 0.0009581 8.151 1 1 +388963 C2orf81 chromosome 2 open reading frame 81 2 protein-coding hCG40743 uncharacterized protein C2orf81 34 0.004654 6.585 1 1 +388965 FUNDC2P2 FUN14 domain containing 2 pseudogene 2 2 pseudo - - 32 0.00438 1.885 1 1 +388969 C2orf68 chromosome 2 open reading frame 68 2 protein-coding HCRCN81 UPF0561 protein C2orf68 16 0.00219 9.604 1 1 +389000 SLC9B1P2 solute carrier family 9 member B1 pseudogene 2 2 pseudo NHEDC1P2 Na+/H+ exchanger domain containing 1 pseudogene 2|solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 2|solute carrier family 9, subfamily B (cation proton antiporter 2), member 1 pseudogene 2 0 0 1 0 +389015 SLC9A4 solute carrier family 9 member A4 2 protein-coding NHE4 sodium/hydrogen exchanger 4|NHE-4|Na(+)/H(+) exchanger 4|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 4|solute carrier family 9 member 4|solute carrier family 9, subfamily A (NHE4, cation proton antiporter 4), member 4 122 0.0167 1.608 1 1 +389033 LOC389033 placenta specific 9 pseudogene 2 pseudo - - 1 0.0001369 0.7669 1 1 +389053 HNRNPKP2 heterogeneous nuclear ribonucleoprotein K pseudogene 2 2 pseudo - - 2 0.0002737 1 0 +389058 SP5 Sp5 transcription factor 2 protein-coding - transcription factor Sp5 26 0.003559 4.049 1 1 +389072 PLEKHM3 pleckstrin homology domain containing M3 2 protein-coding DAPR|PLEKHM1L pleckstrin homology domain-containing family M member 3|PH domain-containing family M member 3|differentiation associated protein 52 0.007117 8.341 1 1 +389073 C2orf80 chromosome 2 open reading frame 80 2 protein-coding GONDA1 uncharacterized protein C2orf80|gonad development associated 1 21 0.002874 0.8078 1 1 +389075 RESP18 regulated endocrine specific protein 18 2 protein-coding - regulated endocrine-specific protein 18|regulated endocrine-specific protein 18 homolog 6 0.0008212 0.1379 1 1 +389084 C2orf82 chromosome 2 open reading frame 82 2 protein-coding ASCL830|UNQ830 uncharacterized protein C2orf82 4 0.0005475 2.186 1 1 +389090 OR6B2 olfactory receptor family 6 subfamily B member 2 2 protein-coding OR2-1|OR6B2P olfactory receptor 6B2|olfactory receptor OR2-1|olfactory receptor, family 6, subfamily B, member 2 pseudogene 26 0.003559 0.1727 1 1 +389114 ZNF662 zinc finger protein 662 3 protein-coding - zinc finger protein 662 37 0.005064 6.245 1 1 +389118 CDHR4 cadherin related family member 4 3 protein-coding CDH29|PRO34300 cadherin-related family member 4|Cadherin-like protein UNQ9392/PRO34300|VLLR9392|cadherin-like 29|cadherin-like protein 29 23 0.003148 1.077 1 1 +389119 FAM212A family with sequence similarity 212 member A 3 protein-coding C3orf54|INKA1 protein FAM212A 15 0.002053 5.684 1 1 +389123 IQCF2 IQ motif containing F2 3 protein-coding - IQ domain-containing protein F2 17 0.002327 0.02981 1 1 +389124 IQCF5 IQ motif containing F5 3 protein-coding - IQ domain-containing protein F5 2 0.0002737 0.05517 1 1 +389125 MUSTN1 musculoskeletal, embryonic nuclear protein 1 3 protein-coding MUSTANG musculoskeletal embryonic nuclear protein 1|musculoskeletal temporally activated novel 2 0.0002737 5.123 1 1 +389136 VGLL3 vestigial like family member 3 3 protein-coding VGL-3|VGL3 transcription cofactor vestigial-like protein 3|colon carcinoma related protein 51 0.006981 6.744 1 1 +389151 PRR23B proline rich 23B 3 protein-coding - proline-rich protein 23B 48 0.00657 0.1113 1 1 +389152 PRR23C proline rich 23C 3 protein-coding - proline-rich protein 23C|proline-rich protein 23A 10 0.001369 0.09334 1 1 +389158 PLSCR5 phospholipid scramblase family member 5 3 protein-coding - phospholipid scramblase family member 5 27 0.003696 0.1038 1 1 +389160 CPHL1P ceruloplasmin and hephaestin-like 1 pseudogene 3 pseudo CPHL1 - 4 0.0005475 1 0 +389161 ANKUB1 ankyrin repeat and ubiquitin domain containing 1 3 protein-coding C3orf16 protein ANKUB1 15 0.002053 0.7657 1 1 +389170 LEKR1 leucine, glutamate and lysine rich 1 3 protein-coding - leucine-, glutamate- and lysine-rich protein 1 37 0.005064 3.886 1 1 +389177 TMEM212 transmembrane protein 212 3 protein-coding - transmembrane protein 212 1 0.0001369 0.4567 1 1 +389197 C4orf50 chromosome 4 open reading frame 50 4 protein-coding - uncharacterized protein C4orf50|golgin subfamily A member 6-like protein 22 38 0.005201 0.8727 1 1 +389203 SMIM20 small integral membrane protein 20 4 protein-coding C4orf52 small integral membrane protein 20 2 0.0002737 8.686 1 1 +389206 BEND4 BEN domain containing 4 4 protein-coding CCDC4 BEN domain-containing protein 4|coiled-coil domain containing 4|coiled-coil domain-containing protein 4 50 0.006844 2.574 1 1 +389207 GRXCR1 glutaredoxin and cysteine rich domain containing 1 4 protein-coding DFNB25|PPP1R88 glutaredoxin domain-containing cysteine-rich protein 1|glutaredoxin, cysteine rich 1|protein phosphatase 1, regulatory subunit 88 67 0.009171 0.03544 1 1 +389208 TMPRSS11F transmembrane protease, serine 11F 4 protein-coding - transmembrane protease serine 11F|airway trypsin-like protease 4 57 0.007802 0.9316 1 1 +389257 LRRC14B leucine rich repeat containing 14B 5 protein-coding - leucine-rich repeat-containing protein 14B 26 0.003559 1.194 1 1 +389289 ANXA2R annexin A2 receptor 5 protein-coding AX2R|AXIIR|C5orf39 annexin-2 receptor|annexin II receptor 11 0.001506 5.599 1 1 +389293 ISCA1P1 iron-sulfur cluster assembly 1 pseudogene 1 5 pseudo ISCA1L iron-sulfur cluster assembly 1 homolog pseudogene 1 1 0.0001369 5.917 1 1 +389320 TEX43 testis expressed 43 5 protein-coding C5orf48|Tseg7 testis-expressed sequence 43 protein|testis specific expressed gene 7 9 0.001232 0.08038 1 1 +389332 LOC389332 uncharacterized LOC389332 5 ncRNA - - 2.315 0 1 +389333 PROB1 proline rich basic protein 1 5 protein-coding C5orf65 proline-rich basic protein 1|weakly similar to basic proline-rich protein 19 0.002601 5.42 1 1 +389336 C5orf46 chromosome 5 open reading frame 46 5 protein-coding SSSP1 uncharacterized protein C5orf46|CTC-327F10.5|skin and saliva secreted protein 1 8 0.001095 2.611 1 1 +389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 5 protein-coding - rho guanine nucleotide exchange factor 37|Rho guanine nucleotide exchange factor (GEF) 37 35 0.004791 8.118 1 1 +389362 PSMG4 proteasome assembly chaperone 4 6 protein-coding C6orf86|PAC4|bA506K6.2 proteasome assembly chaperone 4|PAC-4|hPAC4|proteasome (prosome, macropain) assembly chaperone 4 2 0.0002737 7.657 1 1 +389376 SFTA2 surfactant associated 2 6 protein-coding GSGL541|SFTPG|SP-G|UNQ541 surfactant-associated protein 2|surfactant associated protein G 4 0.0005475 2.463 1 1 +389383 CLPSL2 colipase like 2 6 protein-coding AAAL3045|C6orf126|UNQ3045|dJ510O8.5 colipase-like protein 2|colipase-like protein C6orf126 4 0.0005475 0.9694 1 1 +389384 C6orf222 chromosome 6 open reading frame 222 6 protein-coding - uncharacterized protein C6orf222 53 0.007254 2.145 1 1 +389396 GLYATL3 glycine-N-acyltransferase like 3 6 protein-coding C6orf140|bA28H17.2 glycine N-acyltransferase-like protein 3 8 0.001095 0.3154 1 1 +389400 GFRAL GDNF family receptor alpha like 6 protein-coding C6orf144|GRAL|UNQ9356|bA360D14.1 GDNF family receptor alpha-like|IVFI9356 81 0.01109 0.05894 1 1 +389421 LIN28B lin-28 homolog B 6 protein-coding CSDD2 protein lin-28 homolog B|Lin-28.2|lin-28B 27 0.003696 1.244 1 1 +389422 C6orf183 chromosome 6 open reading frame 183 6 protein-coding bA487F23.3 putative uncharacterized protein C6orf183 15 0.002053 1 0 +389432 SAMD5 sterile alpha motif domain containing 5 6 protein-coding dJ875H10.1 sterile alpha motif domain-containing protein 5|SAM domain containing 1|SAM domain-containing protein 5 6 0.0008212 6.392 1 1 +389434 IYD iodotyrosine deiodinase 6 protein-coding C6orf71|DEHAL1|IYD-1|TDH4 iodotyrosine deiodinase 1|iodotyrosine dehalogenase 1 26 0.003559 4.242 1 1 +389458 RBAKDN RBAK downstream neighbor (non-protein coding) 7 ncRNA - - 2.28 0 1 +389465 LOC389465 Sjogren syndrome antigen B pseudogene 7 pseudo - Sjogren syndrome antigen B (autoantigen La) pseudogene 1 0.0001369 1 0 +389493 NUPR2 nuclear protein 2, transcriptional regulator 7 protein-coding NUPR1L nuclear protein 2|nuclear protein, transcriptional regulator, 1-like|nuclear transcriptional regulator 1-like protein|nuclear transcriptional regulator protein 2 2 0.0002737 2.614 1 1 +389517 4.285 0 1 +389523 4.02 0 1 +389524 GTF2IRD2B GTF2I repeat domain containing 2B 7 protein-coding - general transcription factor II-I repeat domain-containing protein 2B|GTF2I repeat domain-containing protein 2B|GTF2IRD2 beta|general transcription factor 2 I repeat domain-containing 2 beta|transcription factor GTF2IRD2-beta 14 0.001916 6.767 1 1 +389538 MGC72080 MGC72080 pseudogene 7 pseudo - - 0 0 6.572 1 1 +389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 7 protein-coding C7orf59 ragulator complex protein LAMTOR4|UPF0539 protein C7orf59|late endosomal/lysosomal adaptor and MAPK and MTOR activator 4 10 0.001369 10.37 1 1 +389549 FEZF1 FEZ family zinc finger 1 7 protein-coding FEZ|HH22|ZNF312B fez family zinc finger protein 1|zinc finger protein 312B 49 0.006707 1.408 1 1 +389558 FAM180A family with sequence similarity 180 member A 7 protein-coding UNQ1940 protein FAM180A|HWKM1940 22 0.003011 3.717 1 1 +389610 XKR5 XK related 5 8 protein-coding HARL2754|UNQ2754|XRG5A|XRG5BM XK-related protein 5|X Kell blood group precursor-related family, member 5|X-linked Kx blood group related 5|XK, Kell blood group complex subunit-related family, member 5|XK-related protein 5a 52 0.007117 2.188 1 1 +389634 LINC00937 long intergenic non-protein coding RNA 937 12 ncRNA - - 19 0.002601 2.455 1 1 +389643 NUGGC nuclear GTPase, germinal center associated 8 protein-coding C8orf80|HMFN0672|SLIP-GC nuclear GTPase SLIP-GC|GTPase SLIP-GC|speckled-like pattern in the germinal center 60 0.008212 3.143 1 1 +389649 C8orf86 chromosome 8 open reading frame 86 8 protein-coding - uncharacterized protein C8orf86 16 0.00219 0.5127 1 1 +389658 FAM150A family with sequence similarity 150 member A 8 protein-coding AUGA|AUGB|UNQ9433 protein FAM150A|AUG-beta|RPLK9433|augmentor beta|augmentor-alpha 12 0.001642 1.805 1 1 +389668 XKR9 XK related 9 8 protein-coding XRG9 XK-related protein 9|X Kell blood group precursor-related family, member 9|X-linked Kx blood group related 9|XK, Kell blood group complex subunit-related family, member 9 39 0.005338 4.16 1 1 +389676 C8orf87 chromosome 8 open reading frame 87 8 protein-coding - uncharacterized protein C8orf87 1 0.0001369 1 0 +389677 RBM12B RNA binding motif protein 12B 8 protein-coding MGC:33837 RNA-binding protein 12B 64 0.00876 8.523 1 1 +389690 MROH5 maestro heat like repeat family member 5 8 protein-coding - maestro heat-like repeat family member 5 87 0.01191 0.2681 1 1 +389692 MAFA MAF bZIP transcription factor A 8 protein-coding RIPE3b1|hMafA transcription factor MafA|pancreatic beta-cell-specific transcriptional activator|transcription factor RIPE3b1|v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog A 29 0.003969 0.8729 1 1 +389705 LOC389705 chromosome 4 open reading frame 27 pseudogene 9 pseudo - - 2.369 0 1 +389715 FAM205BP transmembrane protein C9orf144B pseudogene 9 pseudo C9orf144|FAM205B - 21 0.002874 0.1502 1 1 +389730 SPATA31A6 SPATA31 subfamily A member 6 9 protein-coding FAM75A6 spermatogenesis-associated protein 31A6|family with sequence similarity 75, member A6|protein FAM75A6 90 0.01232 0.09279 1 1 +389741 GLIDR glioblastoma down-regulated RNA 9 ncRNA LINC01172|TCONS_00015562 long intergenic non-protein coding RNA 1172 6.948 0 1 +389761 SPATA31D4 SPATA31 subfamily D member 4 9 protein-coding FAM75D4 putative spermatogenesis-associated protein 31D4|FAM75-like protein FLJ43859|family with sequence similarity 75, member D4|putative protein FAM75D4 6 0.0008212 0.07106 1 1 +389762 SPATA31D3 SPATA31 subfamily D member 3 9 protein-coding FAM75D3 putative spermatogenesis-associated protein 31D3|FAM75-like protein FLJ44082|Putative FAM75-like protein FLJ44082|family with sequence similarity 75, member D3|putative protein FAM75D3 9 0.001232 0.01931 1 1 +389763 SPATA31D1 SPATA31 subfamily D member 1 9 protein-coding FAM75D1 spermatogenesis-associated protein 31D1|FAM75-like protein FLJ46321|family with sequence similarity 75, member D1|protein FAM75D1 200 0.02737 0.1237 1 1 +389765 LOC389765 kinesin family member 27 pseudogene 9 pseudo - - 2 0.0002737 1 0 +389766 C9orf153 chromosome 9 open reading frame 153 9 protein-coding bA507D14.1 uncharacterized protein C9orf153 14 0.001916 1.008 1 1 +389791 PTGES2-AS1 PTGES2 antisense RNA 1 (head to head) 9 ncRNA - - 2.313 0 1 +389792 IER5L immediate early response 5 like 9 protein-coding bA247A12.2 immediate early response gene 5-like protein 7 0.0009581 8.481 1 1 +389799 CFAP77 cilia and flagella associated protein 77 9 protein-coding C9orf171 uncharacterized protein C9orf171 40 0.005475 1.443 1 1 +389812 LCN15 lipocalin 15 9 protein-coding PRO6093|UNQ2541 lipocalin-15|MSFL2541 13 0.001779 0.5278 1 1 +389813 C9orf172 chromosome 9 open reading frame 172 9 protein-coding - uncharacterized protein C9orf172 35 0.004791 4.256 1 1 +389816 LRRC26 leucine rich repeat containing 26 9 protein-coding CAPC|bA350O14.10 leucine-rich repeat-containing protein 26|BK channel auxiliary gamma subunit LRRC26|BK channel auxilliary gamma subunit LRRC26|cytokeratin associated protein|cytokeratin-associated protein in cancer 3 0.0004106 2.718 1 1 +389827 TMEM8C transmembrane protein 8C 9 protein-coding MYOMAKER|TMEM226 protein myomaker|transmembrane protein 226 14 0.001916 0.2564 1 1 +389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 X protein-coding ASK3|bA723P2.3 mitogen-activated protein kinase kinase kinase 15|MAPK/ERK kinase kinase 15|MEK kinase 15|MEKK 15|apoptosis signal-regulating kinase 3 77 0.01054 1.587 1 1 +389842 LOC389842 RAN binding protein 1 pseudogene X pseudo - - 0 0 1 0 +389852 SPACA5 sperm acrosome associated 5 X protein-coding LYC5|LYZL5|PNPK6288|SLLP-X|SLLP2|UNQ6288 sperm acrosome-associated protein 5|lysozyme-like protein 5|sperm lysozyme-like protein 2|sperm-specific lysozyme-like protein X|testicular tissue protein Li 113 0 0 0.4427 1 1 +389856 USP27X ubiquitin specific peptidase 27, X-linked X protein-coding MRX105|USP22L|USP27 ubiquitin carboxyl-terminal hydrolase 27|X-linked ubiquitin carboxyl-terminal hydrolase 27|deubiquitinating enzyme 27|ubiquitin specific protease 27, X chromosome|ubiquitin thioesterase 27|ubiquitin-specific-processing protease 27 9 0.001232 6.923 1 1 +389860 PAGE2B PAGE family member 2B X protein-coding CT16.5|GAGEE3|PAGE-2B putative G antigen family E member 3|G antigen, family E, 3|P antigen family, member 2B|prostate-associated gene 2B protein 8 0.001095 0.6836 1 1 +389874 ZCCHC13 zinc finger CCHC-type containing 13 X protein-coding CNBP2|ZNF9L zinc finger CCHC domain-containing protein 13|zinc finger, CCHC domain containing 13 22 0.003011 0.04182 1 1 +389895 LOC389895 chromosome 16 open reading frame 72-like X protein-coding - uncharacterized protein LOC389895 1 0.0001369 1 0 +389898 UBE2NL ubiquitin conjugating enzyme E2 N like (gene/pseudogene) X protein-coding Li174 putative ubiquitin-conjugating enzyme E2 N-like|epididymis tissue protein Li 174|ubiquitin conjugating enzyme E2N-like 31 0.004243 2.076 1 1 +389903 CSAG3 CSAG family member 3 X protein-coding CSAG3A|CT24.2 chondrosarcoma-associated gene 2/3 protein|CSAG family, member 3A|cancer/testis antigen 24.2|taxol resistance associated gene 3|taxol-resistant-associated gene 3 protein 2.042 0 1 +389932 AKR1C6P aldo-keto reductase family 1 member C6, pseudogene 10 pseudo TAKR aldo-keto reductase, truncated|truncated AKR|truncated aldo-keto reductase 0.3931 0 1 +389941 C1QL3 complement C1q like 3 10 protein-coding C1QTNF13|C1ql|CTRP13|K100 complement C1q-like protein 3|C1q and tumor necrosis factor-related protein 13|C1q/TNF-related protein 13|complement component 1, q subcomponent-like 3 17 0.002327 3.5 1 1 +390003 GUCY2GP guanylate cyclase 2G, pseudogene 10 pseudo GUCY2G guanylate cyclase 2G homolog, pseudogene 0.1939 0 1 +390010 NKX1-2 NK1 homeobox 2 10 protein-coding C10orf121|NKX-1.1|bB238F13.2 NK1 transcription factor-related protein 2|NK1 transcription factor related, locus 2|homeobox protein SAX-1 1 0.0001369 0.4927 1 1 +390035 OR52K3P olfactory receptor family 52 subfamily K member 3 pseudogene 11 pseudo - - 1 0.0001369 1 0 +390036 OR52K1 olfactory receptor family 52 subfamily K member 1 11 protein-coding OR11-8 olfactory receptor 52K1|olfactory receptor OR11-8 39 0.005338 0.03518 1 1 +390037 OR52I1 olfactory receptor family 52 subfamily I member 1 11 protein-coding OR11-13 olfactory receptor 52I1|olfactory receptor OR11-13 26 0.003559 0.1109 1 1 +390038 OR51D1 olfactory receptor family 51 subfamily D member 1 11 protein-coding OR11-14|OR51D1Q olfactory receptor 51D1|olfactory receptor OR11-14 48 0.00657 0.04218 1 1 +390053 OR52A4P olfactory receptor family 52 subfamily A member 4 pseudogene 11 pseudo OR52A4 putative olfactory receptor 52A4 30 0.004106 0.06766 1 1 +390054 OR52A5 olfactory receptor family 52 subfamily A member 5 11 protein-coding OR11-33 olfactory receptor 52A5|odorant receptor HOR3'beta5|olfactory receptor OR11-33 52 0.007117 0.01855 1 1 +390058 OR51B6 olfactory receptor family 51 subfamily B member 6 11 protein-coding HOR5'Beta6 olfactory receptor 51B6|odorant receptor HOR5'beta6|olfactory receptor 51B5 35 0.004791 0.02486 1 1 +390059 OR51M1 olfactory receptor family 51 subfamily M member 1 11 protein-coding HOR5'Beta7|OR11-40 olfactory receptor 51M1|odorant receptor HOR5'beta7|olfactory receptor OR11-40 49 0.006707 0.03457 1 1 +390061 OR51Q1 olfactory receptor family 51 subfamily Q member 1 (gene/pseudogene) 11 protein-coding - olfactory receptor 51Q1|olfactory receptor, family 51, subfamily Q, member 1 47 0.006433 0.1029 1 1 +390063 OR51I1 olfactory receptor family 51 subfamily I member 1 11 protein-coding - olfactory receptor 51I1|HOR5'Beta11|odorant receptor HOR5'beta11|olfactory receptor OR11-39 37 0.005064 0.09991 1 1 +390064 OR51I2 olfactory receptor family 51 subfamily I member 2 11 protein-coding OR11-38 olfactory receptor 51I2|HOR5'Beta12|odorant receptor HOR5'beta12|olfactory receptor OR11-38 49 0.006707 0.04134 1 1 +390066 OR52D1 olfactory receptor family 52 subfamily D member 1 11 protein-coding OR11-43 olfactory receptor 52D1|HOR 5'Beta14|odorant receptor HOR5'beta14|olfactory receptor OR11-43 38 0.005201 0.09548 1 1 +390067 OR52H1 olfactory receptor family 52 subfamily H member 1 11 protein-coding OR11-41|OR11-45 olfactory receptor 52H1|olfactory receptor OR11-41 pseudogene|olfactory receptor OR11-45 25 0.003422 0.07615 1 1 +390072 OR52N4 olfactory receptor family 52 subfamily N member 4 (gene/pseudogene) 11 protein-coding OR11-64 olfactory receptor 52N4|olfactory receptor OR11-64|olfactory receptor, family 52, subfamily N, member 4 46 0.006296 0.9939 1 1 +390075 OR52N5 olfactory receptor family 52 subfamily N member 5 11 protein-coding OR11-62|OR52N5Q olfactory receptor 52N5|olfactory receptor OR11-62 34 0.004654 0.06105 1 1 +390077 OR52N2 olfactory receptor family 52 subfamily N member 2 11 protein-coding OR11-57 olfactory receptor 52N2|olfactory receptor OR11-57 34 0.004654 0.328 1 1 +390078 OR52E6 olfactory receptor family 52 subfamily E member 6 11 protein-coding OR11-58 olfactory receptor 52E6|olfactory receptor OR11-58 37 0.005064 0.08967 1 1 +390079 OR52E8 olfactory receptor family 52 subfamily E member 8 11 protein-coding OR11-54 olfactory receptor 52E8|olfactory receptor OR11-54|olfactory receptor, family 52, subfamily E, member 8 pseudogene 55 0.007528 0.01079 1 1 +390081 OR52E4 olfactory receptor family 52 subfamily E member 4 11 protein-coding OR11-55 olfactory receptor 52E4|olfactory receptor OR11-55 49 0.006707 0.03183 1 1 +390083 OR56A3 olfactory receptor family 56 subfamily A member 3 11 protein-coding OR56A2P|OR56A3P|OR56A6 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 47 0.006433 0.2171 1 1 +390084 OR56A5 olfactory receptor family 56 subfamily A member 5 11 protein-coding OR56A5P olfactory receptor 56A5|olfactory receptor, family 56, subfamily A, member 5 pseudogene 9 0.001232 0.1182 1 1 +390091 OR10AB1P olfactory receptor family 10 subfamily AB member 1 pseudogene 11 pseudo - olfactory receptor OR11-91 pseudogene 2 0.0002737 1 0 +390093 OR10A6 olfactory receptor family 10 subfamily A member 6 (gene/pseudogene) 11 protein-coding OR11-96 olfactory receptor 10A6|olfactory receptor OR11-96|olfactory receptor, family 10, subfamily A, member 6 40 0.005475 0.0809 1 1 +390110 ACCSL 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) like 11 protein-coding - probable inactive 1-aminocyclopropane-1-carboxylate synthase-like protein 2|1-aminocyclopropane-1-carboxylate synthase (inactive)-like|1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional)-like|1-aminocyclopropane-1-carboxylate synthase-like protein 2|ACC synthase-like protein 2 63 0.008623 0.2104 1 1 +390113 OR4X1 olfactory receptor family 4 subfamily X member 1 (gene/pseudogene) 11 protein-coding OR11-104 olfactory receptor 4X1|olfactory receptor OR11-104|olfactory receptor, family 4, subfamily X, member 1 47 0.006433 0.0109 1 1 +390136 OR4A11P olfactory receptor family 4 subfamily A member 11 pseudogene 11 pseudo - - 1 0.0001369 1 0 +390142 OR5D13 olfactory receptor family 5 subfamily D member 13 (gene/pseudogene) 11 protein-coding - olfactory receptor 5D13|olfactory receptor OR11-142|olfactory receptor OR11-148|olfactory receptor, family 5, subfamily D, member 13 102 0.01396 0.005682 1 1 +390144 OR5D16 olfactory receptor family 5 subfamily D member 16 11 protein-coding OR11-154 olfactory receptor 5D16|olfactory receptor OR11-154 71 0.009718 0.004027 1 1 +390148 OR5W2 olfactory receptor family 5 subfamily W member 2 11 protein-coding OR5W2P|OR5W3P olfactory receptor 5W2|olfactory receptor 5W3|olfactory receptor OR11-155|olfactory receptor, family 5, subfamily W, member 3 pseudogene 88 0.01204 0.009334 1 1 +390151 OR8H2 olfactory receptor family 8 subfamily H member 2 11 protein-coding OR11-171 olfactory receptor 8H2|olfactory receptor OR11-171 98 0.01341 0.01132 1 1 +390152 OR8H3 olfactory receptor family 8 subfamily H member 3 11 protein-coding OR11-172 olfactory receptor 8H3|olfactory receptor OR11-172 79 0.01081 0.004232 1 1 +390154 OR5T3 olfactory receptor family 5 subfamily T member 3 11 protein-coding OR11-178|OR5T3Q olfactory receptor 5T3|olfactory receptor OR11-178 84 0.0115 0.01009 1 1 +390155 OR5T1 olfactory receptor family 5 subfamily T member 1 11 protein-coding OR11-179|OR5T1P olfactory receptor 5T1|olfactory receptor OR11-179|olfactory receptor, family 5, subfamily T, member 1 pseudogene 59 0.008076 0.007027 1 1 +390157 OR8K1 olfactory receptor family 8 subfamily K member 1 11 protein-coding OR11-182|OR8N1P olfactory receptor 8K1|olfactory receptor OR11-182|olfactory receptor, family 8, subfamily N, member 1 pseudogene 65 0.008897 0.01764 1 1 +390162 OR5M9 olfactory receptor family 5 subfamily M member 9 11 protein-coding OR11-190 olfactory receptor 5M9|olfactory receptor OR11-190 57 0.007802 0.008699 1 1 +390167 OR5M10 olfactory receptor family 5 subfamily M member 10 11 protein-coding OR11-207 olfactory receptor 5M10|olfactory receptor OR11-207 58 0.007939 0.009928 1 1 +390168 OR5M1 olfactory receptor family 5 subfamily M member 1 11 protein-coding OR11-208|OST050 olfactory receptor 5M1|olfactory receptor OR11-208|seven transmembrane helix receptor 51 0.006981 0.006692 1 1 +390174 OR9G1 olfactory receptor family 9 subfamily G member 1 11 protein-coding OR9G5 olfactory receptor 9G1|olfactory receptor 9G5|olfactory receptor OR11-114|olfactory receptor OR11-210|olfactory receptor, family 9, subfamily G, member 5 26 0.003559 1 0 +390181 OR5AK2 olfactory receptor family 5 subfamily AK member 2 11 protein-coding - olfactory receptor 5AK2 32 0.00438 0.03707 1 1 +390190 OR5B2 olfactory receptor family 5 subfamily B member 2 11 protein-coding OR11-240|OST073 olfactory receptor 5B2|olfactory receptor OR11-240 42 0.005749 0.06772 1 1 +390191 OR5B12 olfactory receptor family 5 subfamily B member 12 11 protein-coding OR11-241|OR5B12P|OR5B16|OST743 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 57 0.007802 0.103 1 1 +390195 OR5AN1 olfactory receptor family 5 subfamily AN member 1 11 protein-coding OR11-244 olfactory receptor 5AN1|muscone receptor|olfactory receptor OR11-244 26 0.003559 0.02731 1 1 +390197 OR4D10 olfactory receptor family 4 subfamily D member 10 11 protein-coding OR11-251|OR4D10P|OST711 olfactory receptor 4D10|olfactory receptor OR11-251|olfactory receptor, family 4, subfamily D, member 10 pseudogene|seven transmembrane helix receptor 54 0.007391 0.1847 1 1 +390199 OR4D9 olfactory receptor family 4 subfamily D member 9 11 protein-coding OR11-253 olfactory receptor 4D9|olfactory receptor OR11-253|olfactory receptor, family 4, subfamily D, member 9 pseudogene 44 0.006022 0.0286 1 1 +390201 OR10V1 olfactory receptor family 10 subfamily V member 1 11 protein-coding OR11-256 olfactory receptor 10V1|olfactory receptor OR11-256 31 0.004243 0.0687 1 1 +390205 LRRC10B leucine rich repeat containing 10B 11 protein-coding - leucine-rich repeat-containing protein 10B|LRRC10-like protein ENSP00000367315 1 0.0001369 4.493 1 1 +390212 GPR152 G protein-coupled receptor 152 11 protein-coding PGR5 probable G-protein coupled receptor 152|G protein-coupled receptor PGR5 30 0.004106 0.7245 1 1 +390213 DOC2GP double C2 domain gamma pseudogene 11 pseudo - double C2, gamma pseudogene|double C2-like domains, gamma, pseudogene 1 0.0001369 1 0 +390226 GUCY2EP guanylate cyclase 2E, pseudogene 11 pseudo GC-E|GCD|GUCY2E olfactory guanylate cyclase 3 0.0004106 0.2323 1 1 +390231 TRIM77 tripartite motif containing 77 11 protein-coding TRIM77P tripartite motif-containing protein 77|TRIM77-isoform|putative tripartite motif-containing protein 64D|putative tripartite motif-containing protein 77|tripartite motif containing 77, pseudogene 17 0.002327 0.01433 1 1 +390243 IZUMO1R IZUMO1 receptor, JUNO 11 protein-coding FOLR4|Folbp3|JUNO sperm-egg fusion protein Juno|FR-delta|IZUMO1 receptor protein JUNO|folate receptor 4 (delta) homolog|folate receptor 4, delta (putative)|folate receptor delta|probable folate receptor delta 24 0.003285 0.2694 1 1 +390245 KDM4E lysine demethylase 4E 11 protein-coding JMJD2E|KDM4DL lysine-specific demethylase 4E|KDM4D-like protein|lysine (K)-specific demethylase 4E 19 0.002601 0.4167 1 1 +390251 LOC390251 SH3 domain containing GRB2 like 1 pseudogene 11 pseudo - - 0 0 1 0 +390259 BSX brain specific homeobox 11 protein-coding BSX1 brain-specific homeobox protein homolog 30 0.004106 0.02928 1 1 +390260 OR6X1 olfactory receptor family 6 subfamily X member 1 11 protein-coding OR11-270 olfactory receptor 6X1|olfactory receptor OR11-270 44 0.006022 0.01445 1 1 +390261 OR6M1 olfactory receptor family 6 subfamily M member 1 11 protein-coding OR11-271 olfactory receptor 6M1|olfactory receptor OR11-271|olfactory receptor, family 6, subfamily M, member 2 pseudogene 42 0.005749 0.03437 1 1 +390264 OR10G4 olfactory receptor family 10 subfamily G member 4 11 protein-coding OR11-278 olfactory receptor 10G4|olfactory receptor OR11-278 43 0.005886 0.0427 1 1 +390265 OR10G7 olfactory receptor family 10 subfamily G member 7 11 protein-coding OR11-283 olfactory receptor 10G7|olfactory receptor OR11-283 50 0.006844 0.01792 1 1 +390271 OR8B3 olfactory receptor family 8 subfamily B member 3 11 protein-coding OR11-311 olfactory receptor 8B3|olfactory receptor OR11-311 33 0.004517 0.01873 1 1 +390275 OR8A1 olfactory receptor family 8 subfamily A member 1 11 protein-coding OR11-318|OST025 olfactory receptor 8A1|olfactory receptor OR11-318 35 0.004791 0.1372 1 1 +390282 LOC390282 eukaryotic translation initiation factor 3 subunit F pseudogene 12 pseudo - - 0 0 1 0 +390284 SRP14P1 signal recognition particle 14 pseudogene 1 12 pseudo - signal recognition particle 14kDa (homologous Alu RNA binding protein) pseudogene 1 2.475 0 1 +390321 OR6C1 olfactory receptor family 6 subfamily C member 1 12 protein-coding OST267 olfactory receptor 6C1 36 0.004927 0.006763 1 1 +390323 OR6C75 olfactory receptor family 6 subfamily C member 75 12 protein-coding - olfactory receptor 6C75 33 0.004517 0.02412 1 1 +390326 OR6C76 olfactory receptor family 6 subfamily C member 76 12 protein-coding - olfactory receptor 6C76 36 0.004927 0.013 1 1 +390327 OR6C70 olfactory receptor family 6 subfamily C member 70 12 protein-coding - olfactory receptor 6C70 33 0.004517 0.1383 1 1 +390429 OR4N2 olfactory receptor family 4 subfamily N member 2 14 protein-coding OR14-13|OR14-8 olfactory receptor 4N2|olfactory receptor OR14-13|olfactory receptor OR14-8 111 0.01519 0.3536 1 1 +390431 OR4K2 olfactory receptor family 4 subfamily K member 2 14 protein-coding OR14-15 olfactory receptor 4K2|olfactory receptor OR14-15 74 0.01013 0.06727 1 1 +390433 OR4K13 olfactory receptor family 4 subfamily K member 13 14 protein-coding OR14-27 olfactory receptor 4K13|olfactory receptor OR14-27 49 0.006707 0.01074 1 1 +390436 OR4K17 olfactory receptor family 4 subfamily K member 17 14 protein-coding OR14-29 olfactory receptor 4K17|olfactory receptor OR14-29 60 0.008212 0.005099 1 1 +390437 OR4N5 olfactory receptor family 4 subfamily N member 5 14 protein-coding - olfactory receptor 4N5|olfactory receptor OR14-33 48 0.00657 0.01483 1 1 +390439 OR11G2 olfactory receptor family 11 subfamily G member 2 14 protein-coding OR14-34 olfactory receptor 11G2|olfactory receptor OR14-34 41 0.005612 0.02405 1 1 +390441 OR11H7 olfactory receptor family 11 subfamily H member 7 (gene/pseudogene) 14 pseudo OR11H7P olfactory receptor 11H7|olfactory receptor, family 11, subfamily H, member 7 pseudogene 1 0.0001369 1 0 +390442 OR11H4 olfactory receptor family 11 subfamily H member 4 14 protein-coding OR14-36 olfactory receptor 11H4|olfactory receptor OR14-36 35 0.004791 0.118 1 1 +390443 RNASE9 ribonuclease A family member 9 (inactive) 14 protein-coding HEL128|RAK1|h461 inactive ribonuclease-like protein 9|ribonuclear enzyme|ribonuclease A K1|ribonuclease, RNase A family, 9 (non-active) 23 0.003148 0.0228 1 1 +390445 OR5AU1 olfactory receptor family 5 subfamily AU member 1 14 protein-coding OR14-38 olfactory receptor 5AU1|olfactory receptor OR14-38 35 0.004791 0.09412 1 1 +390502 SERPINA2 serpin family A member 2 (gene/pseudogene) 14 protein-coding ARGS|ATR|PIL|SERPINA2P|psiATR putative alpha-1-antitrypsin-related protein|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 2|serpin A2|serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 2, pseudogene 2 0.0002737 1 0 +390530 IGHV1OR21-1 immunoglobulin heavy variable 1/OR21-1 (non-functional) 21 pseudo - IGHV1/OR21-1|immunoglobulin heavy variable 1/OR21-1 pseudogene 62 0.008486 1 0 +390531 IGHV1OR15-9 immunoglobulin heavy variable 1/OR15-9 (non-functional) 15 pseudo IGHV1OR159|VSIG7 IGHV1/OR15-9|Putative V-set and immunoglobulin domain-containing protein 7|V-set and immunoglobulin domain containing 7 30 0.004106 1 0 +390535 GOLGA8EP golgin A8 family member E, pseudogene 15 pseudo GOLGA8E golgi autoantigen, golgin subfamily a, 8E 21 0.002874 0.107 1 1 +390538 OR4M2 olfactory receptor family 4 subfamily M member 2 15 protein-coding OR15-3 olfactory receptor 4M2|olfactory receptor OR15-3 92 0.01259 0.06484 1 1 +390539 OR4N3P olfactory receptor family 4 subfamily N member 3 pseudogene 15 pseudo OR15-2 seven transmembrane helix receptor 0.1614 0 1 +390561 HERC2P10 hect domain and RLD 2 pseudogene 10 15 pseudo - H_DJ1086D14.1|WUGSC:H_DJ1086D14.1 1 0.0001369 1 0 +390594 KBTBD13 kelch repeat and BTB domain containing 13 15 protein-coding HCG1645727|NEM6 kelch repeat and BTB domain-containing protein 13|kelch repeat and BTB (POZ) domain containing 13|nemaline myopathy type 6 18 0.002464 0.1932 1 1 +390595 UBAP1L ubiquitin associated protein 1 like 15 protein-coding UBAP-1L ubiquitin-associated protein 1-like 5 0.0006844 3.138 1 1 +390598 SKOR1 SKI family transcriptional corepressor 1 15 protein-coding CORL1|FUSSEL15|LBXCOR1 SKI family transcriptional corepressor 1|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 56 0.007665 2.45 1 1 +390601 KRT8P9 keratin 8 pseudogene 9 15 pseudo - - 1 0.0001369 1 0 +390616 ANKRD34C ankyrin repeat domain 34C 15 protein-coding - ankyrin repeat domain-containing protein 34C 15 0.002053 0.7466 1 1 +390637 GDPGP1 GDP-D-glucose phosphorylase 1 15 protein-coding C15orf58|VTC2 GDP-D-glucose phosphorylase 1|GDP-D-glucose phosphorylase C15orf58 25 0.003422 5.592 1 1 +390648 OR4F6 olfactory receptor family 4 subfamily F member 6 15 protein-coding OR15-15|OR4F12 olfactory receptor 4F6|olfactory receptor 4F12|olfactory receptor OR15-15|olfactory receptor, family 4, subfamily F, member 12 33 0.004517 0.01934 1 1 +390649 OR4F15 olfactory receptor family 4 subfamily F member 15 15 protein-coding - olfactory receptor 4F15|olfactory receptor OR15-14 35 0.004791 0.02155 1 1 +390651 OR4F13P olfactory receptor family 4 subfamily F member 13 pseudogene 15 pseudo GPCRLTM7 putative olfactory receptor GPCRLTM7 2 0.0002737 1 0 +390664 C1QTNF8 C1q and tumor necrosis factor related protein 8 16 protein-coding CTRP8|UNQ5829 complement C1q tumor necrosis factor-related protein 8|C1q/TNF-related protein 8 7 0.0009581 0.4799 1 1 +390667 PTX4 pentraxin 4 16 protein-coding C16orf38 pentraxin-4|long pentraxin 4|neuronal pentraxin-like protein C16orf38|pentraxin 4, long 52 0.007117 0.6574 1 1 +390732 CES1P2 carboxylesterase 1 pseudogene 2 16 pseudo - - 2 0.0002737 1 0 +390748 PABPN1L poly(A) binding protein nuclear 1 like, cytoplasmic 16 protein-coding PABPNL1|ePABP2 embryonic polyadenylate-binding protein 2|ePABP-2|embryonic poly(A)-binding protein 2|embryonic poly(A)-binding protein type II|poly(A)-binding protein nuclear-like 1 10 0.001369 0.2752 1 1 +390756 OR3A4P olfactory receptor family 3 subfamily A member 4 pseudogene 17 pseudo OLFRA05|OLFRA06|OR17-13|OR17-16|OR17-24|OR17-25|OR24|OR25|OR3A4|OR3A5P olfactory receptor OR17-13 pseudogene|olfactory receptor OR17-16 pseudogene|olfactory receptor, family 3, subfamily A, member 4|olfactory receptor, family 3, subfamily A, member 5 pseudogene 10 0.001369 0.02641 1 1 +390790 ARL5C ADP ribosylation factor like GTPase 5C 17 protein-coding ARL12 putative ADP-ribosylation factor-like protein 5C|ADP-ribosylation factor-like 12|ADP-ribosylation factor-like 5C|ADP-ribosylation factor-like protein 12 4 0.0005475 0.4329 1 1 +390792 KRT39 keratin 39 17 protein-coding CK-39|K39|KA35 keratin, type I cytoskeletal 39|cytokeratin-39|keratin 39, type I|type I hair keratin KA35 35 0.004791 0.6105 1 1 +390831 PMM2P1 phosphomannomutase 2 pseudogene 1 18 pseudo - - 1 0.0001369 1 0 +390858 OACYLP O-acyltransferase like, pseudogene 18 pseudo ACYL3P ACYL3 pseudogene|acyltransferase 3, pseudogene 0.09231 0 1 +390874 ONECUT3 one cut homeobox 3 19 protein-coding OC3 one cut domain family member 3|OC-3|transcription factor ONECUT-3 8 0.001095 0.4594 1 1 +390882 OR7G2 olfactory receptor family 7 subfamily G member 2 19 protein-coding OR19-6|OST260 olfactory receptor 7G2|OR19-13|olfactory receptor 19-13|olfactory receptor OR19-6 24 0.003285 0.05072 1 1 +390883 OR7G3 olfactory receptor family 7 subfamily G member 3 19 protein-coding OST085 olfactory receptor 7G3|olfactory receptor OR19-9 29 0.003969 0.0317 1 1 +390892 OR7A10 olfactory receptor family 7 subfamily A member 10 19 protein-coding BC85395_3|OR19-18 olfactory receptor 7A10|OST027|olfactory receptor OR19-18 28 0.003832 0.00807 1 1 +390894 OR7A2P olfactory receptor family 7 subfamily A member 2 pseudogene 19 pseudo OLF4p|OR19-18|OR7A2|OR7A7|hg1003 Olfactory receptor 7A2|olfactory receptor, family 7, subfamily A, member 7|seven transmembrane helix receptor 2 0.0002737 1 0 +390904 KRT18P40 keratin 18 pseudogene 40 19 pseudo - - 1 0.0001369 1 0 +390916 NUDT19 nudix hydrolase 19 19 protein-coding RP2 nucleoside diphosphate-linked moiety X motif 19|CTC-379B2.4|nucleoside diphosphate-linked moiety X motif 19, mitochondrial|nudix (nucleoside diphosphate linked moiety X)-type motif 19|nudix motif 19 20 0.002737 8.715 1 1 +390927 ZNF793 zinc finger protein 793 19 protein-coding - zinc finger protein 793 45 0.006159 6.321 1 1 +390928 ACP7 acid phosphatase 7, tartrate resistant (putative) 19 protein-coding PAPL|PAPL1 acid phosphatase type 7|iron/zinc purple acid phosphatase-like protein|purple acid phosphatase long form|purple acid phosphatase long form 1 28 0.003832 1.818 1 1 +390937 LOC390937 Ets2 repressor factor-like 19 protein-coding - - 0 0 1 0 +390940 PINLYP phospholipase A2 inhibitor and LY6/PLAUR domain containing 19 protein-coding - phospholipase A2 inhibitor and Ly6/PLAUR domain-containing protein 1 0.0001369 1 0 +390956 LOC390956 peptidyl-prolyl cis-trans isomerase A pseudogene 19 pseudo - - 0 0 1 0 +390963 ZNF818P zinc finger protein 818, pseudogene 19 pseudo ZNF818 - 0 0 1 0 +390980 ZNF805 zinc finger protein 805 19 protein-coding - zinc finger protein 805|CTC-444N24.8 28 0.003832 8.22 1 1 +390992 HES3 hes family bHLH transcription factor 3 1 protein-coding bHLHb43 transcription factor HES-3|class B basic helix-loop-helix protein 43|hairy and enhancer of split 3 8 0.001095 0.08982 1 1 +390999 PRAMEF12 PRAME family member 12 1 protein-coding - PRAME family member 12 64 0.00876 0.1642 1 1 +391002 PRAMEF8 PRAME family member 8 1 protein-coding PRAMEF24 PRAME family member 8|putative PRAME family member 24 1 0.0001369 0.3902 1 1 +391003 PRAMEF18 PRAME family member 18 1 protein-coding - PRAME family member 18|PRAME family member-like 10 0.001369 0.1174 1 1 +391004 PRAMEF17 PRAME family member 17 1 protein-coding - PRAME family member 17 4 0.0005475 0.0135 1 1 +391013 PLA2G2C phospholipase A2 group IIC 1 protein-coding - putative inactive group IIC secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase-like protein GIIC|phospholipase A2, group IIC (possible pseudogene) 10 0.001369 0.08257 1 1 +391037 SKINT1L Skint1 like (pseudogene) 1 pseudo BTN12|SKINT1|SKINTL|SKINTP Skint-like, pseudogene 0.685 0 1 +391039 CFL1P2 cofilin 1 pseudogene 2 1 pseudo CFLL2|CFLP2 cofilin 1 (non-muscle) pseudogene 2|cofilin pseudogene 2|cofilin-like 2 0 0 1 0 +391044 PHBP3 prohibitin pseudogene 3 1 pseudo - - 1 0.0001369 1 0 +391051 UOX urate oxidase (pseudogene) 1 pseudo UOXP|URICASE - 2 0.0002737 0.8233 1 1 +391059 FRRS1 ferric chelate reductase 1 1 protein-coding SDFR2|SDR2 ferric-chelate reductase 1|SDR-2|stromal cell derived factor receptor 2 homolog|stromal cell-derived receptor 2 39 0.005338 5.8 1 1 +391104 VHLL von Hippel-Lindau tumor suppressor like 1 protein-coding VHLP|VLP von Hippel-Lindau-like protein|VHL pseudogene|VHL-like protein 13 0.001779 0.2763 1 1 +391107 OR10K2 olfactory receptor family 10 subfamily K member 2 1 protein-coding OR1-4 olfactory receptor 10K2|olfactory receptor OR1-4 57 0.007802 0.03588 1 1 +391109 OR10K1 olfactory receptor family 10 subfamily K member 1 1 protein-coding OR1-6 olfactory receptor 10K1|olfactory receptor OR1-6 62 0.008486 0.0269 1 1 +391112 OR6Y1 olfactory receptor family 6 subfamily Y member 1 1 protein-coding OR1-11|OR6Y2 olfactory receptor 6Y1|olfactory receptor 6Y2|olfactory receptor OR1-11 65 0.008897 0.01368 1 1 +391114 OR6K3 olfactory receptor family 6 subfamily K member 3 1 protein-coding OR1-18 olfactory receptor 6K3|olfactory receptor OR1-18|seven transmembrane helix receptor 61 0.008349 0.06557 1 1 +391117 OR10J2P olfactory receptor family 10 subfamily J member 2 pseudogene 1 pseudo - - 1 0.0001369 1 0 +391123 VSIG8 V-set and immunoglobulin domain containing 8 1 protein-coding - V-set and immunoglobulin domain-containing protein 8 18 0.002464 1.675 1 1 +391189 OR11L1 olfactory receptor family 11 subfamily L member 1 1 protein-coding - olfactory receptor 11L1|olfactory receptor OR1-50 71 0.009718 0.04742 1 1 +391190 OR2L8 olfactory receptor family 2 subfamily L member 8 (gene/pseudogene) 1 protein-coding - olfactory receptor 2L8|olfactory receptor OR1-46|olfactory receptor, family 2, subfamily L, member 8 91 0.01246 0.03653 1 1 +391191 OR2AK2 olfactory receptor family 2 subfamily AK member 2 1 protein-coding OR1-47|OR2AK1P olfactory receptor 2AK2|olfactory receptor 2AK1|olfactory receptor OR1-47|olfactory receptor, family 2, subfamily AK, member 1 pseudogene 74 0.01013 0.04759 1 1 +391192 OR2L3 olfactory receptor family 2 subfamily L member 3 1 protein-coding - olfactory receptor 2L3 69 0.009444 0.1139 1 1 +391194 OR2M2 olfactory receptor family 2 subfamily M member 2 1 protein-coding OR2M2Q|OST423 olfactory receptor 2M2 78 0.01068 0.01358 1 1 +391195 OR2T33 olfactory receptor family 2 subfamily T member 33 1 protein-coding OR1-56 olfactory receptor 2T33|novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor OR1-56 98 0.01341 0.166 1 1 +391196 OR2M7 olfactory receptor family 2 subfamily M member 7 1 protein-coding OR1-58 olfactory receptor 2M7|OR2M7 D|OR2M7 N|OR2M7 O|olfactory receptor OR1-58 64 0.00876 0.02087 1 1 +391211 OR2G6 olfactory receptor family 2 subfamily G member 6 1 protein-coding - olfactory receptor 2G6 103 0.0141 0.06081 1 1 +391253 SPINT4 serine peptidase inhibitor, Kunitz type 4 20 protein-coding C20orf137|SPINT3|dJ601O1.1 kunitz-type protease inhibitor 4|serine protease inhibitor, Kunitz type 1|serine protease inhibitor, Kunitz type 4 8 0.001095 0.005462 1 1 +391256 KRT18P4 keratin 18 pseudogene 4 20 pseudo dJ963K23.1 - 1 0.0001369 1 0 +391257 SUMO1P1 SUMO1 pseudogene 1 20 pseudo PIC1L|UBL2|UBL6 ubiquitin-like 2|ubiquitin-like 6 0.8109 0 1 +391267 ANKRD20A11P ankyrin repeat domain 20 family member A11, pseudogene 21 pseudo C21orf81 ankyrin repeat domain 20 family, member A3 pseudogene|ankyrin repeat domain 20 family, member A4 pseudogene 60 0.008212 1.217 1 1 +391322 LOC391322 D-dopachrome tautomerase-like 22 protein-coding - D-dopachrome decarboxylase related protein 1 0.0001369 2.403 1 1 +391334 LOC391334 actin, gamma 2, smooth muscle, enteric pseudogene 22 pseudo - - 0 0 1 0 +391343 LOC391343 uncharacterized LOC391343 2 ncRNA - - 0.3206 0 1 +391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 2 protein-coding C2orf79 putative peptidyl-tRNA hydrolase PTRHD1|peptidyl-tRNA hydrolase domain-containing protein 1 9 0.001232 8.638 1 1 +391365 SULT6B1 sulfotransferase family 6B member 1 2 protein-coding - sulfotransferase 6B1|ST6B1|sulfotransferase SULT6B1|sulfotransferase family, cytosolic, 6B, member 1|thyroxine sulfotransferase 26 0.003559 0.04074 1 1 +391458 KRT18P46 keratin 18 pseudogene 46 2 pseudo - - 0 0 1 0 +391475 DYTN dystrotelin 2 protein-coding - dystrotelin 60 0.008212 0.09656 1 1 +391518 VENTXP7 VENT homeobox pseudogene 7 3 pseudo HPX42|VENTX1 VENT-like homeobox 1|VENT-like homeobox pseudogene 7 6 0.0008212 0.1165 1 1 +391530 SALL4P6 spalt like transcription factor 4 pseudogene 6 3 pseudo - sal-like 4 pseudogene 6 1 0.0001369 1 0 +391532 LOC391532 peptidylprolyl isomerase A (cyclophilin A) pseudogene 15 pseudo - - 1 0.0001369 1 0 +391556 LOC391556 retinoblastoma binding protein 4 pseudogene 3 pseudo - retinoblastoma binding protein 7 pseudogene 0 0 1 0 +391622 USP17L6P ubiquitin specific peptidase 17-like family member 6, pseudogene 4 pseudo DUB4|USP17L6|vDUB4 chorionic villi deubiquitinating enzyme|deubiquitinating enzyme DUB4|ubiquitin specific peptidase 17-like 6 (pseudogene) 0.02101 0 1 +391627 USP17L9P ubiquitin specific peptidase 17-like family member 9, pseudogene 4 pseudo RS447|USP17|USP17A|USP17H|USP17I|USP17J|USP17K|USP17L|USP17M deubiquitinating enzyme 17|ubiquitin carboxyl-terminal hydrolase 17|ubiquitin specific peptidase 17|ubiquitin specific protease 17|ubiquitin thioesterase 17|ubiquitin thiolesterase 17|ubiquitin-specific-processing protease 17 2 0.0002737 0.04126 1 1 +391634 HSP90AB2P heat shock protein 90 alpha family class B member 2, pseudogene 4 pseudo HSP90BB heat shock protein 90Bb|heat shock protein 90kDa alpha (cytosolic), class B member 2, pseudogene|heat shock protein 90kDa alpha family class B member 2, pseudogene|heat shock protein HSP 90-beta 49 0.006707 5.245 1 1 +391636 LOC391636 chromosome 9 open reading frame 78 pseudogene 4 pseudo - - 0 0 1 0 +391647 KRT18P25 keratin 18 pseudogene 25 4 pseudo - - 1 0.0001369 1 0 +391697 ZSWIM5P3 zinc finger SWIM-type containing 5 pseudogene 3 4 pseudo - - 1 0.0001369 1 0 +391712 TRIM61 tripartite motif containing 61 4 protein-coding RNF35 putative tripartite motif-containing protein 61|ring finger protein 35 10 0.001369 2.062 1 1 +391714 TRIM75P tripartite motif containing 75, pseudogene 4 pseudo TRIM75 tripartite motif-containing 75|tripartite motif-containing protein 75 0 0 0.2913 1 1 +391723 HELT helt bHLH transcription factor 4 protein-coding HCM1228|HESL|Mgn|bHLHb44 hairy and enhancer of split-related protein HELT|HES/HEY-like transcription factor|Hes-like transcription factor|Hey-like transcription factor|Hey-like transcriptional repressor|Megane bHLH factor 20 0.002737 0.1472 1 1 +391739 CCT6P2 chaperonin containing TCP1 subunit 6 pseudogene 2 5 pseudo CCT6-1P chaperonin containing TCP1, subunit 6 (zeta) pseudogene 2 1 0.0001369 1 0 +391811 POLD2P1 DNA polymerase delta 2, accessory subunit pseudogene 1 5 pseudo - polymerase (DNA directed), delta 2, accessory subunit pseudogene 1|polymerase (DNA directed), delta 2, regulatory subunit 50kDa pseudogene 1|polymerase (DNA) delta 2, accessory subunit pseudogene 1 1 0.0001369 1 0 +391819 KRT18P42 keratin 18 pseudogene 42 5 pseudo - - 1 0.0001369 1 0 +392138 OR2A25 olfactory receptor family 2 subfamily A member 25 7 protein-coding OR2A24P|OR2A25P|OR2A27 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 46 0.006296 0.3943 1 1 +392196 LOC392196 ubiquitin specific peptidase 17-like family member 2 pseudogene 8 pseudo - deubiquitinating enzyme 3 pseudogene|ubiquitin carboxyl-terminal hydrolase 17-like pseudogene|ubiquitin specific peptidase 17-like 2 pseudogene 0.1262 0 1 +392197 USP17L7 ubiquitin specific peptidase 17-like family member 7 8 protein-coding - inactive ubiquitin carboxyl-terminal hydrolase 17-like protein 7|ubiquitin specific peptidase 17-like 7 6 0.0008212 1 0 +392232 LOC392232 transient receptor potential cation channel subfamily A member 1 pseudogene 8 pseudo - - 1 0.0001369 1 0 +392255 GDF6 growth differentiation factor 6 8 protein-coding BMP-13|BMP13|CDMP2|KFM|KFS|KFS1|KFSL|SGM1 growth/differentiation factor 6|bone morphogenetic protein 13|growth/differentiation factor 16 49 0.006707 3.241 1 1 +392264 LOC392264 zinc finger protein 532 pseudogene 8 pseudo - - 0 0 1 0 +392307 FAM221B family with sequence similarity 221 member B 9 protein-coding C9orf128 protein FAM221B|uncharacterized protein C9orf128 19 0.002601 1.308 1 1 +392309 OR13J1 olfactory receptor family 13 subfamily J member 1 9 protein-coding OR9-2 olfactory receptor 13J1|olfactory receptor OR9-2 26 0.003559 0.5042 1 1 +392360 CTSL3P cathepsin L family member 3, pseudogene 9 pseudo CTSL3|HCTSL-s cathepsin L-like protein 22 0.003011 0.1247 1 1 +392371 KRT18P13 keratin 18 pseudogene 13 9 pseudo KRT18L3 keratin 18-like 3 1 0.0001369 1 0 +392376 OR13C2 olfactory receptor family 13 subfamily C member 2 9 protein-coding OR37K olfactory receptor 13C2|olfactory receptor OR9-12 42 0.005749 0.07103 1 1 +392390 OR1L6 olfactory receptor family 1 subfamily L member 6 9 protein-coding HG16|OR1K1|OR1L7|OR9-30 olfactory receptor 1L6|olfactory receptor 1L7|olfactory receptor OR9-30|olfactory receptor, family 1, subfamily L, member 7 22 0.003011 0.02269 1 1 +392391 OR5C1 olfactory receptor family 5 subfamily C member 1 9 protein-coding OR5C2P|OR9-31|OR9-F olfactory receptor 5C1|hRPK-465_F_21|olfactory receptor 5C2|olfactory receptor 9-F|olfactory receptor, family 5, subfamily C, member 2 pseudogene 29 0.003969 0.1082 1 1 +392392 OR1K1 olfactory receptor family 1 subfamily K member 1 9 protein-coding hg99 olfactory receptor 1K1 22 0.003011 0.1433 1 1 +392399 LCN9 lipocalin 9 9 protein-coding HEL129 epididymal-specific lipocalin-9|MUP-like lipocalin|epididymis luminal protein 129 15 0.002053 0.03464 1 1 +392433 MAGEB6P1 MAGE family member B6 pseudogene 1 X pseudo MAGEB6B melanoma antigen family B, 6 pseudogene 1|melanoma antigen family B, 6B pseudogene|melanoma antigen family B6 pseudogene 1 1 0.0001369 1 0 +392435 LOC392435 MAGE family member B3 pseudogene X pseudo - melanoma antigen family B, 3 pseudogene|melanoma antigen family B3 pseudogene 0 0 1 0 +392459 CXXC1P1 CXXC finger protein 1 pseudogene 1 X pseudo CXorf25|NCRNA00236 CXXC finger 1 (PHD domain) pseudogene|Putative uncharacterized protein CXorf25 10 0.001369 1 0 +392465 GLOD5 glyoxalase domain containing 5 X protein-coding - glyoxalase domain-containing protein 5 12 0.001642 2.573 1 1 +392490 FLJ44635 TPT1-like protein X protein-coding - TPT1-like protein 1 0.0001369 4.388 1 1 +392509 ARL13A ADP ribosylation factor like GTPase 13A X protein-coding ARL13|dJ341D10.2 ADP-ribosylation factor-like protein 13A|ADP-ribosylation factor-like 13|ADP-ribosylation factor-like 13A 22 0.003011 0.5776 1 1 +392517 NCBP2L nuclear cap binding protein subunit 2-like X pseudo dJ820B18.1 - 6 0.0008212 1 0 +392555 LOC392555 MAGE family member C2 pseudogene X pseudo - melanoma antigen family C, 2 pseudogene|melanoma antigen family C2 pseudogene 0 0 1 0 +392617 ELFN1 extracellular leucine rich repeat and fibronectin type III domain containing 1 7 protein-coding PPP1R28 protein ELFN1|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 20 0.002737 6.06 1 1 +392636 AGMO alkylglycerol monooxygenase 7 protein-coding TMEM195 alkylglycerol monooxygenase|glyceryl-ether monooxygenase|transmembrane protein 195 76 0.0104 3.071 1 1 +392843 IQCA1L IQ motif containing with AAA domain 1 like 7 protein-coding IQCA1P1 IQ and AAA domain-containing protein 1-like|IQ and AAA domain-containing protein 1 pseudogene 1|IQ motif containing with AAA domain 1-like protein|putative IQ and AAA domain-containing protein 1 pseudogene 1|putative IQ and AAA domain-containing protein 1-like|putative IQ motif containing with AAA domain 1 pseudogene 1 6 0.0008212 1 0 +392862 GRID2IP Grid2 interacting protein 7 protein-coding DELPHILIN delphilin|glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein 1|glutamate receptor, ionotropic, delta 2-interacting protein 1 26 0.003559 3.422 1 1 +393046 OR2A5 olfactory receptor family 2 subfamily A member 5 7 protein-coding OR2A11P|OR2A26|OR2A8|OR7-138|OR7-141 olfactory receptor 2A5|olfactory receptor 2A26|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 52 0.007117 0.03972 1 1 +394263 MUC21 mucin 21, cell surface associated 6 protein-coding C6orf205|KMQK697|MUC-21 mucin-21|epiglycanin 50 0.006844 2.331 1 1 +399473 SPRED3 sprouty related EVH1 domain containing 3 19 protein-coding Eve-3|spred-3 sprouty-related, EVH1 domain-containing protein 3 29 0.003969 1.557 1 1 +399474 TMEM200B transmembrane protein 200B 1 protein-coding TTMB transmembrane protein 200B|transmembrane protein TTMA|two transmembrane B|two transmembrane domain-containing family member B 12 0.001642 6.147 1 1 +399512 SLC25A35 solute carrier family 25 member 35 17 protein-coding - solute carrier family 25 member 35 16 0.00219 7.051 1 1 +399664 MEX3D mex-3 RNA binding family member D 19 protein-coding MEX-3D|MEX3|OK/SW-cl.4|RKHD1|RNF193|TINO RNA-binding protein MEX3D|RING finger and KH domain-containing protein 1|RING finger protein 193|bcl-2 ARE RNA binding protein|ring finger (C3HC4 type) and KH domain containing 1|ring finger and KH domain containing 1 23 0.003148 8.861 1 1 +399665 FAM102A family with sequence similarity 102 member A 9 protein-coding C9orf132|EEIG1|SYM-3A|bA203J24.7 protein FAM102A|C230093N12Rik|early estrogen-induced gene 1 protein|sym-3 homolog A 26 0.003559 11.07 1 1 +399668 SMIM10L2A small integral membrane protein 10 like 2A X ncRNA LED|LINC00086|NCRNA00086 Small integral membrane protein 10-like protein 2A|lncRNA activator of enhancer domains|long intergenic non-protein coding RNA 86 4 0.0005475 5.803 1 1 +399669 ZNF321P zinc finger protein 321, pseudogene 19 pseudo ZNF321 - 3 0.0004106 5.672 1 1 +399670 RPL13AP17 ribosomal protein L13a pseudogene 17 7 pseudo RPL13A_6_816 - 0.3774 0 1 +399671 HEATR4 HEAT repeat containing 4 14 protein-coding - HEAT repeat-containing protein 4 66 0.009034 2.254 1 1 +399687 MYO18A myosin XVIIIA 17 protein-coding MYSPDZ|SPR210 unconventional myosin-XVIIIa|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 114 0.0156 10.5 1 1 +399694 SHC4 SHC adaptor protein 4 15 protein-coding RaLP|SHCD SHC-transforming protein 4|SH2 domain protein C4|SHC (Src homology 2 domain containing) family, member 4|SHC-transforming protein D|hShcD|rai-like protein|src homology 2 domain-containing-transforming protein C4 50 0.006844 4.222 1 1 +399697 CTXN2 cortexin 2 15 protein-coding - cortexin-2 3 0.0004106 1.166 1 1 +399706 LINC00200 long intergenic non-protein coding RNA 200 10 ncRNA C10orf139|NCRNA00200 - 18 0.002464 0.2945 1 1 +399708 LINC00701 long intergenic non-protein coding RNA 701 10 ncRNA - - 0 0 1 0 +399717 GATA3-AS1 GATA3 antisense RNA 1 10 ncRNA - - 6 0.0008212 2.328 1 1 +399726 CASC10 cancer susceptibility candidate 10 10 protein-coding C10orf114|bA418C1.3 protein CASC10|cancer susceptibility candidate gene 10 protein 7 0.0009581 5.249 1 1 +399744 LINC00999 long intergenic non-protein coding RNA 999 10 ncRNA - - 6.897 0 1 +399746 ACTR3BP5 ACTR3B pseudogene 5 10 pseudo FKSG74 ARP3 actin-related protein 3 homolog B pseudogene 5 1 0.0001369 1 0 +399761 BMS1P5 BMS1, ribosome biogenesis factor pseudogene 5 10 pseudo BMS1LP1|BMS1LP5|BMS1P1|bA556L1.3 BMS1 pseudogene 1|BMS1 pseudogene 5|BMS1L pseudogene 1|BMS1L pseudogene 5 8 0.001095 5.745 1 1 +399806 LBX1-AS1 LBX1 antisense RNA 1 (head to head) 10 ncRNA MUSE hypothetical protein 0 0 1 0 +399814 C10orf120 chromosome 10 open reading frame 120 10 protein-coding bA318C4.1 uncharacterized protein C10orf120 44 0.006022 0.08862 1 1 +399815 LOC399815 chromosome 10 open reading frame 88 pseudogene 10 pseudo - - 2.809 0 1 +399818 METTL10 methyltransferase like 10 10 protein-coding C10orf138 protein-lysine N-methyltransferase METTL10|methyltransferase-like protein 10 12 0.001642 7.936 1 1 +399823 FOXI2 forkhead box I2 10 protein-coding - forkhead box protein I2|homolog of mouse Foxi2 17 0.002327 1.511 1 1 +399844 LINC01002 long intergenic non-protein coding RNA 1002 19 ncRNA - - 5.776 0 1 +399879 LINC00610 long intergenic non-protein coding RNA 610 11 ncRNA C11orf55 - 8 0.001095 1 0 +399881 HNRNPKP3 heterogeneous nuclear ribonucleoprotein K pseudogene 3 11 pseudo - - 52 0.007117 1 0 +399888 FAM180B family with sequence similarity 180 member B 11 protein-coding - protein FAM180B|hypothetical gene supported by BC065704 3 0.0004106 1.352 1 1 +399909 PCNX3 pecanex homolog 3 (Drosophila) 11 protein-coding PCNXL3 pecanex-like protein 3|pecanex homolog protein 3|pecanex-like 3 100 0.01369 10.61 1 1 +399923 FLJ42102 uncharacterized LOC399923 11 ncRNA - - 2 0.0002737 1 0 +399947 C11orf87 chromosome 11 open reading frame 87 11 protein-coding LOH11CR1A|NEURIM1 uncharacterized protein C11orf87|neuronal integral membrane protein 1 24 0.003285 1.76 1 1 +399948 COLCA1 colorectal cancer associated 1 11 protein-coding C11orf92|CASC12|LOH11CR1F colorectal cancer-associated protein 1|cancer susceptibility candidate 12 7 0.0009581 5.826 1 1 +399949 C11orf88 chromosome 11 open reading frame 88 11 protein-coding - UPF0722 protein C11orf88|hypothetical gene supported by BC039505 25 0.003422 1.484 1 1 +399959 MIR100HG mir-100-let-7a-2 cluster host gene 11 ncRNA AGD1|linc-NeD125|lncRNA-N2 adipogenesis down-regulated transcript 1|lncRNA neuronal 2|mir-100-let-7a-2 cluster host gene (non-protein coding) 7.649 0 1 +399965 KRT18P59 keratin 18 pseudogene 59 11 pseudo - - 1 0.0001369 1 0 +399967 PATE2 prostate and testis expressed 2 11 protein-coding C11orf38|PATE-M|UNQ3112 prostate and testis expressed protein 2|LVLF3112|PATE-like protein M|prostate and testis expression M 4 0.0005475 0.5115 1 1 +399968 PATE4 prostate and testis expressed 4 11 protein-coding PATE-B prostate and testis expressed protein 4|PATE-like protein B|prostate and testis expression B 7 0.0009581 0.2554 1 1 +399979 SNX19 sorting nexin 19 11 protein-coding CHET8 sorting nexin-19 51 0.006981 10.61 1 1 +400011 SUPT16HP1 SPT16 homolog, facilitates chromatin remodeling subunit pseudogene 1 12 pseudo SUPT16HP|bcm670 suppressor of Ty 16 homolog (S. cerevisiae) pseudogene 1 0 0 1 0 +400027 LINC00938 long intergenic non-protein coding RNA 938 12 ncRNA - - 7.79 0 1 +400036 LOC400036 DEAD-box helicase 23 pseudogene 12 pseudo - DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 pseudogene 3 0.0004106 1 0 +400043 LOC400043 uncharacterized LOC400043 12 ncRNA - - 6.482 0 1 +400058 MKRN9P makorin ring finger protein 9, pseudogene 12 pseudo MKRN5|MKRN9|MKRNP6|RNF65|ZNF127L3 makorin ring finger protein pseudogene 6|makorin, ring finger protein, 1 pseudogene|makorin, ring finger protein, 5|makorin, ring finger protein, 9|zinc finger protein 127-like 3 3 0.0004106 1 0 +400061 LOC400061 NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene 12 pseudo - - 2 0.0002737 1 0 +400073 C12orf76 chromosome 12 open reading frame 76 12 protein-coding - uncharacterized protein C12orf76 8 0.001095 7.452 1 1 +400084 LINC00939 long intergenic non-protein coding RNA 939 12 ncRNA - - 0 0 1 0 +400110 ANKRD20A19P ankyrin repeat domain 20 family member A19, pseudogene 13 pseudo - FLJ46358 protein 10 0.001369 1 0 +400120 SERTM1 serine rich and transmembrane domain containing 1 13 protein-coding C13orf36 serine-rich and transmembrane domain-containing protein 1 12 0.001642 1.912 1 1 +400165 ATP11AUN ATP11A upstream neighbor 13 protein-coding C13orf35|SMABLO1 putative protein ATP11AUN|putative ATP11A upstream neighbor protein|small blood protein 1 7 0.0009581 0.3475 1 1 +400206 DPPA3P2 developmental pluripotency associated 3 pseudogene 2 14 pseudo STELLAR germ and embryonic stem cell enriched protein STELLA 24 0.003285 1 0 +400208 LINC00517 long intergenic non-protein coding RNA 517 14 ncRNA C14orf26 - 0 0 1 0 +400223 5.217 0 1 +400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 14 protein-coding UPF0639 pleckstrin homology domain-containing family D member 1|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 (with coiled-coil domains) member 1 21 0.002874 1.697 1 1 +400242 DICER1-AS1 DICER1 antisense RNA 1 14 ncRNA DICER1-AS DICER1 antisense RNA (non-protein coding)|DICER1 antisense RNA 1 (non-protein coding) 0 0 5.504 1 1 +400258 C14orf180 chromosome 14 open reading frame 180 14 protein-coding C14orf77|NRAC nutritionally-regulated adipose and cardiac enriched protein homolog|transmembrane protein C14orf180 15 0.002053 1.171 1 1 +400322 HERC2P2 hect domain and RLD 2 pseudogene 2 15 pseudo D15F37S3|MN7 - 129 0.01766 9.315 1 1 +400347 LOC400347 REX4 homolog, 3'-5' exonuclease pseudogene 15 pseudo - REX4, RNA exonuclease 4 homolog (S. cerevisiae) pseudogene 1 0.0001369 1 0 +400359 C15orf53 chromosome 15 open reading frame 53 15 protein-coding - uncharacterized protein C15orf53 18 0.002464 0.5091 1 1 +400360 C15orf54 chromosome 15 open reading frame 54 15 protein-coding - putative uncharacterized protein C15orf54 9 0.001232 1.007 1 1 +400410 ST20 suppressor of tumorigenicity 20 15 protein-coding HCCS-1 suppressor of tumorigenicity 20 protein|cervical cancer suppressor-1|human cervical cancer suppressor gene 1 protein 5 0.0006844 6.022 1 1 +400451 FAM174B family with sequence similarity 174 member B 15 protein-coding - membrane protein FAM174B 28 0.003832 8.774 1 1 +400500 BCAR4 breast cancer anti-estrogen resistance 4 (non-protein coding) 16 ncRNA - breast cancer antiestrogen resistance 4 protein 1 0.0001369 0.4305 1 1 +400506 KNOP1 lysine rich nucleolar protein 1 16 protein-coding 101F10.1|C16orf88|FAM191A|TSG118 lysine-rich nucleolar protein 1|family with sequence similarity 191, member A|protein C16orf88|testis-specific gene 118 protein 34 0.004654 8.664 1 1 +400508 CRYM-AS1 CRYM antisense RNA 1 16 ncRNA NCRNA00169 CRYM antisense RNA 1 (non-protein coding) 12 0.001642 1.791 1 1 +400533 FLJ26245 uncharacterized LOC400533 16 ncRNA - - 2 0.0002737 1 0 +400550 FENDRR FOXF1 adjacent non-coding developmental regulatory RNA 16 ncRNA FOXF1-AS1|TCONS_00024240|lincFOXF1|onco-lncRNA-21 FOXF1 antisense RNA 1 (head to head)|FOXF1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +400553 LOC400553 uncharacterized LOC400553 16 ncRNA - - 2 0.0002737 1 0 +400555 ZC3H18-AS1 ZC3H18 antisense RNA 1 (head to head) 16 unknown C16orf85|LINC00859 long intergenic non-protein coding RNA 859 4 0.0005475 1 0 +400566 C17orf97 chromosome 17 open reading frame 97 17 protein-coding CK20|LIAT1 protein LIAT1|ligand of ATE1 protein 33 0.004517 6.711 1 1 +400569 MED11 mediator complex subunit 11 17 protein-coding HSPC296 mediator of RNA polymerase II transcription subunit 11|mediator of RNA polymerase II transcription, subunit 11 homolog 8 0.001095 8.021 1 1 +400578 KRT16P2 keratin 16 pseudogene 2 17 pseudo - - 22 0.003011 1 0 +400581 GRAPL GRB2 related adaptor protein like 17 protein-coding - GRB2-related adapter protein-like|GRB2-related adapter protein LOC400581 1 0.0001369 1.749 1 1 +400590 LOC400590 uncharacterized LOC400590 17 unknown - - 0 0 1 0 +400591 C17orf102 chromosome 17 open reading frame 102 17 protein-coding - uncharacterized protein C17orf102 19 0.002601 0.7035 1 1 +400604 TOB1-AS1 TOB1 antisense RNA 1 17 ncRNA - TOB1 antisense RNA 1 (non-protein coding) 0 0 1 0 +400619 LINC00511 long intergenic non-protein coding RNA 511 17 ncRNA LCAL5|onco-lncRNA-12 lung cancer associated lncRNA 5 1 0.0001369 1 0 +400624 FLJ45079 FLJ45079 protein 17 ncRNA - - 1 0.0001369 0.4376 1 1 +400629 TEX19 testis expressed 19 17 protein-coding - testis-expressed sequence 19 protein 11 0.001506 1.514 1 1 +400643 LINC00668 long intergenic non-protein coding RNA 668 18 ncRNA - - 3 0.0004106 1 0 +400657 LINC00909 long intergenic non-protein coding RNA 909 18 ncRNA - - 1 0.0001369 7.421 1 1 +400668 PRSS57 protease, serine 57 19 protein-coding NSP4|PRSSL1|UNQ782 serine protease 57|neutrophil serine protease 4|serine protease 1-like protein 1 18 0.002464 0.6319 1 1 +400673 VMAC vimentin-type intermediate filament associated coiled-coil protein 19 protein-coding - vimentin-type intermediate filament-associated coiled-coil protein|vimentin-type IF-associated coiled-coil protein 2 0.0002737 6.498 1 1 +400682 LOC400682 zinc finger protein 100-like 19 protein-coding - zinc finger protein 100-like 0 0 1 0 +400696 LGALS17A galectin 14 pseudogene 19 pseudo - Charcot-Leyden crystal protein pseudogene 9 0.001232 2.14 1 1 +400709 SIGLEC16 sialic acid binding Ig like lectin 16 (gene/pseudogene) 19 pseudo SIGLECP16|Siglec-P16 sialic acid binding Ig-like lectin 16|sialic acid binding Ig-like lectin, pseudogene 16|sialic acid-binding immunoglobulin-like lectin 16 65 0.008897 2.851 1 1 +400710 LOC400710 uncharacterized LOC400710 19 ncRNA - - 1.616 0 1 +400713 ZNF880 zinc finger protein 880 19 protein-coding - zinc finger protein 880|zinc finger protein LOC400713 66 0.009034 6.419 1 1 +400720 ZNF772 zinc finger protein 772 19 protein-coding - zinc finger protein 772 30 0.004106 7.211 1 1 +400728 FAM87B family with sequence similarity 87 member B 1 ncRNA - - 2 0.0002737 1 0 +400735 PRAMEF4 PRAME family member 4 1 protein-coding - PRAME family member 4|RP5-845O24.6 52 0.007117 0.2907 1 1 +400736 PRAMEF13 PRAME family member 13 1 protein-coding - PRAME family member-like 3 0.0004106 0.05639 1 1 +400743 LOC400743 uncharacterized LOC400743 1 unknown - - 1 0.0001369 1 0 +400745 SH2D5 SH2 domain containing 5 1 protein-coding - SH2 domain-containing protein 5 27 0.003696 3.787 1 1 +400746 NCMAP non-compact myelin associated protein 1 protein-coding C1orf130|MP11 noncompact myelin-associated protein|myelin protein of 11 kDa 7 0.0009581 4.686 1 1 +400750 LOC400750 heat shock protein family A (Hsp70) member 5 pseudogene 1 pseudo - heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) pseudogene 2 0.0002737 1 0 +400752 LINC01144 long intergenic non-protein coding RNA 1144 1 ncRNA - TCONS_00000513 4.667 0 1 +400756 LOC400756 uncharacterized LOC400756 1 unknown - - 1 0.0001369 1 0 +400757 C1orf141 chromosome 1 open reading frame 141 1 protein-coding - uncharacterized protein C1orf141 42 0.005749 0.3037 1 1 +400759 GBP1P1 guanylate binding protein 1 pseudogene 1 1 pseudo - guanylate binding protein 1, interferon-inducible pseudogene 1|interferon-induced guanylate-binding protein 1 pseudogene 27 0.003696 3.905 1 1 +400765 MIR137HG MIR137 host gene 1 ncRNA - MIR137 host gene (non-protein coding) 4 0.0005475 1 0 +400793 C1orf226 chromosome 1 open reading frame 226 1 protein-coding - uncharacterized protein C1orf226 17 0.002327 8.233 1 1 +400794 LOC400794 uncharacterized LOC400794 1 ncRNA - - 1 0.0001369 0.9071 1 1 +400797 LINC00083 long intergenic non-protein coding RNA 83 1 protein-coding NCRNA00083 - 1 0.0001369 1 0 +400798 C1orf220 chromosome 1 open reading frame 220 1 ncRNA - - 2 0.0002737 3.336 1 1 +400799 LINC01344 long intergenic non-protein coding RNA 1344 1 ncRNA GS1-122H1.2 - 1 0.0001369 1 0 +400804 C1orf140 uncharacterized LOC400804 1 ncRNA - - 2 0.0002737 0.6487 1 1 +400818 NBPF9 neuroblastoma breakpoint family member 9 1 protein-coding AE01 neuroblastoma breakpoint family, member 9 31 0.004243 7.583 1 1 +400823 FAM177B family with sequence similarity 177 member B 1 protein-coding - protein FAM177B 12 0.001642 1.996 1 1 +400830 DEFB132 defensin beta 132 20 protein-coding BD-32|DEFB-32|DEFB32|HEL-75|KFLL827|UNQ827 beta-defensin 132|RP5-1103G7.6|beta-defensin 32|defensin HEL-75|defensin, beta 32 3 0.0004106 0.848 1 1 +400831 C20orf202 chromosome 20 open reading frame 202 20 protein-coding - uncharacterized protein C20orf202 3 0.0004106 2.699 1 1 +400866 LINC00114 long intergenic non-protein coding RNA 114 21 ncRNA C21orf24|NCRNA00114 - 0 0 0.2948 1 1 +400891 LRRC74B leucine rich repeat containing 74B 22 protein-coding - leucine-rich repeat-containing protein 74B|leucine-rich repeat-containing protein LOC400891 0.7609 0 1 +400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 22 protein-coding C22orf16|FTDALS2|IMMD|N27C7-4|SMAJ coiled-coil-helix-coiled-coil-helix domain-containing protein 10, mitochondrial 3 0.0004106 9.236 1 1 +400927 LOC400927 TPTE and PTEN homologous inositol lipid phosphatase pseudogene 22 pseudo - hypothetical protein LOC400927|transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 4.199 0 1 +400931 MIRLET7BHG MIRLET7B host gene 22 ncRNA linc-Ppara MIRLET7B host gene (non-protein coding) 1 0.0001369 4.91 1 1 +400932 LINC00898 long intergenic non-protein coding RNA 898 22 ncRNA - - 5 0.0006844 1 0 +400935 IL17REL interleukin 17 receptor E like 22 protein-coding - putative interleukin-17 receptor E-like|IL-17 receptor E-like|IL-17RE-like 27 0.003696 1.59 1 1 +400940 LOC400940 uncharacterized LOC400940 2 ncRNA - - 1 0.0001369 1.123 1 1 +400941 LINC00487 long intergenic non-protein coding RNA 487 2 ncRNA - - 0 0 1 0 +400946 LINC00954 long intergenic non-protein coding RNA 954 2 ncRNA - - 0 0 1 0 +400954 EML6 echinoderm microtubule associated protein like 6 2 protein-coding - echinoderm microtubule-associated protein-like 6|EMAP-6 53 0.007254 5.505 1 1 +400960 PCBP1-AS1 PCBP1 antisense RNA 1 2 ncRNA - PCBP1 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +400961 PAIP2B poly(A) binding protein interacting protein 2B 2 protein-coding - polyadenylate-binding protein-interacting protein 2B|PABP-interacting protein 2B|PAIP-2B 8 0.001095 7.577 1 1 +400966 RGPD1 RANBP2-like and GRIP domain containing 1 2 protein-coding RGP1|RGPD2|RanBP2L2 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 6 0.0008212 7.85 1 1 +400986 ANKRD36C ankyrin repeat domain 36C 2 protein-coding - ankyrin repeat domain-containing protein 36C|protein immuno-reactive with anti-PTH polyclonal antibodies 126 0.01725 1 0 +401002 LOC401002 single stranded DNA binding protein 3 pseudogene 2 pseudo - - 1 0.0001369 1 0 +401010 NOC2LP2 NOC2 like nucleolar associated transcriptional repressor pseudogene 2 2 pseudo - NOC2-like nucleolar associated transcriptional repressor pseudogene|nucleolar complex associated 2 homolog (S. cerevisiae) pseudogene 5.333 0 1 +401014 TEX41 testis expressed 41 (non-protein coding) 2 ncRNA DKFZp686O1327|LINC00953 long intergenic non-protein coding RNA 953 0 0 1 0 +401018 CTAGE14P CTAGE family member 14, pseudogene 2 pseudo - CTAGE family, member 9 pseudogene 1 0.0001369 1 0 +401022 HAGLR HOXD antisense growth-associated long non-coding RNA 2 ncRNA HOXD-AS1|Mdgt HOXD cluster antisense RNA 1 (non-protein coding) 0 0 1 0 +401024 FSIP2 fibrous sheath interacting protein 2 2 protein-coding - fibrous sheath-interacting protein 2 161 0.02204 1 0 +401027 C2orf66 chromosome 2 open reading frame 66 2 protein-coding IIDS6411|UNQ6411 uncharacterized protein C2orf66 8 0.001095 1.185 1 1 +401036 ASB18 ankyrin repeat and SOCS box containing 18 2 protein-coding ASB-18 ankyrin repeat and SOCS box protein 18 20 0.002737 0.09045 1 1 +401052 LOC401052 uncharacterized LOC401052 3 protein-coding - uncharacterized protein LOC401052 0 0 5.31 1 1 +401067 IQCF3 IQ motif containing F3 3 protein-coding - IQ domain-containing protein F3 15 0.002053 0.05658 1 1 +401081 FLJ22763 uncharacterized LOC401081 3 ncRNA - - 2 0.0002737 1 0 +401082 LINC01205 long intergenic non-protein coding RNA 1205 3 ncRNA - - 0.1662 0 1 +401089 FOXL2NB FOXL2 neighbor 3 protein-coding C3orf72 FOXL2 neighbor protein|FLJ43329 protein 14 0.001916 1.946 1 1 +401093 MBNL1-AS1 MBNL1 antisense RNA 1 3 ncRNA - - 5.824 0 1 +401105 FLJ42393 uncharacterized LOC401105 3 ncRNA AVPC1948 - 0.9985 0 1 +401114 FLJ35816 FLJ35816 protein 4 unknown - - 1 0.0001369 1 0 +401115 C4orf48 chromosome 4 open reading frame 48 4 protein-coding CHR4_55 neuropeptide-like protein C4orf48 3 0.0004106 5.824 1 1 +401124 DTHD1 death domain containing 1 4 protein-coding - death domain-containing protein 1 14 0.001916 1.938 1 1 +401127 LOC401127 WD repeat domain 5 pseudogene 4 pseudo - - 1 0.0001369 2.65 1 1 +401131 LOC401131 uncharacterized LOC401131 1 unknown - - 1 0.0001369 1 0 +401135 SYT14P1 synaptotagmin 14 pseudogene 1 4 pseudo CHR415SYT|SYT14L|SYTDEP chr415 synaptotagmin|synaptotagmin XIV pseudogene 1|synaptotagmin XIV-derived|synaptotagmin XIV-like 0.3306 0 1 +401136 TMPRSS11BNL TMPRSS11B N-terminal like, pseudogene 4 pseudo - TMPRSS11B N terminal-like|TMPRSS11B N-terminus-like protein|transmembrane protease serine 11B-like protein|transmembrane protease, serine 11B pseudogene 3 0.0004106 0.3232 1 1 +401137 PRR27 proline rich 27 4 protein-coding C4orf40 proline-rich protein 27 39 0.005338 0.2363 1 1 +401138 AMTN amelotin 4 protein-coding UNQ689 amelotin|RSTI689 24 0.003285 1.315 1 1 +401145 CCSER1 coiled-coil serine rich protein 1 4 protein-coding FAM190A serine-rich coiled-coil domain-containing protein 1|family with sequence similarity 190, member A|protein FAM190A 79 0.01081 4.442 1 1 +401152 C4orf3 chromosome 4 open reading frame 3 4 protein-coding - uncharacterized protein C4orf3|HCV F-transactivated protein 1|hepatitis C virus F protein-transactivated protein 1 14 0.001916 11.32 1 1 +401172 FLJ33360 FLJ33360 protein 5 ncRNA - CTD-2324F15.2 4 0.0005475 1.65 1 1 +401177 LOC401177 uncharacterized LOC401177 5 ncRNA - CTD-2139B15.4 1 0.0001369 1 0 +401190 RGS7BP regulator of G-protein signaling 7 binding protein 5 protein-coding R7BP regulator of G-protein signaling 7-binding protein|R7 family-binding protein 21 0.002874 3.202 1 1 +401207 C5orf63 chromosome 5 open reading frame 63 5 protein-coding YDR286C glutaredoxin-like protein C5orf63|glutaredoxin-like protein YDR286C homolog 1 0.0001369 4.925 1 1 +401218 LOC401218 family with sequence similarity 58 member A pseudogene 5 pseudo - - 1 0.0001369 1 0 +401232 LINC01011 long intergenic non-protein coding RNA 1011 6 ncRNA - - 1 0.0001369 5.554 1 1 +401237 CASC15 cancer susceptibility candidate 15 (non-protein coding) 6 ncRNA LINC00340 long intergenic non-protein coding RNA 340 4.033 0 1 +401247 LINC00243 long intergenic non-protein coding RNA 243 6 ncRNA C6orf214|NCRNA00243 - 7 0.0009581 1 0 +401250 MCCD1 mitochondrial coiled-coil domain 1 6 protein-coding - mitochondrial coiled-coil domain protein 1 8 0.001095 0.5846 1 1 +401251 SAPCD1 suppressor APC domain containing 1 6 protein-coding C6orf26|NG23 suppressor APC domain-containing protein 1|protein G7d 10 0.001369 5.251 1 1 +401253 LINC00336 long intergenic non-protein coding RNA 336 6 ncRNA C6orf227|NCRNA00336 - 5 0.0006844 1.156 1 1 +401260 LINC00951 long intergenic non-protein coding RNA 951 6 ncRNA - lincRNA-uc003opf.1 2 0.0002737 1 0 +401262 CRIP3 cysteine rich protein 3 6 protein-coding TLP|TLP-A|bA480N24.2 cysteine-rich protein 3|CRP-3|chromosome 6 LIM domain only protein|h6LIMo|thymus LIM protein TLP-A 19 0.002601 2.575 1 1 +401265 KLHL31 kelch like family member 31 6 protein-coding BKLHD6|KBTBD1|KLHL|bA345L23.2 kelch-like protein 31|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 KLHL 42 0.005749 4.343 1 1 +401285 TCP10L2 t-complex 10-like 2 6 protein-coding bA517H2.3 T-complex protein 10A homolog 2|T-complex 10-like protein 2|putative t-complex protein 10A homolog 2 27 0.003696 0.2426 1 1 +401288 LINC00242 long intergenic non-protein coding RNA 242 6 ncRNA C6orf122|NCRNA00242|dJ266L20.5 - 2 0.0002737 3.51 1 1 +401303 ZNF815P zinc finger protein 815, pseudogene 7 pseudo ZNF815 Putative protein ZNF815|zinc finger protein pseudogene 17 0.002327 5.058 1 1 +401331 RASA4CP RAS p21 protein activator 4C, pseudogene 7 pseudo RASA4P RAS p21 protein activator 4 pseudogene 20 0.002737 6.947 1 1 +401335 C7orf65 chromosome 7 open reading frame 65 7 protein-coding - uncharacterized protein C7orf65|FLJ44108 protein 11 0.001506 0.4392 1 1 +401337 LINC01446 long intergenic non-protein coding RNA 1446 7 ncRNA GS1-179L18.1 - 2 0.0002737 1 0 +401375 GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 7 pseudo GTF2IRD2P GTF2IRD2 pseudogene|general transcription factor II i repeat domain 2 pseudogene 133 0.0182 7.496 1 1 +401387 LRRD1 leucine rich repeats and death domain containing 1 7 protein-coding - leucine-rich repeat and death domain-containing protein 1|leucine-rich repeat and death domain-containing protein LOC401387 29 0.003969 1.05 1 1 +401388 C7orf76 chromosome 7 open reading frame 76 7 protein-coding - putative uncharacterized protein C7orf76 1 0.0001369 1 0 +401393 AZGP1P2 alpha-2-glycoprotein 1, zinc-binding pseudogene 2 7 pseudo - Putative zinc-alpha-2-glycoprotein-like 2|alpha-2-glycoprotein 1, zinc pseudogene 2 1 0.0001369 1 0 +401397 LINC00998 long intergenic non-protein coding RNA 998 7 ncRNA - - 9.312 0 1 +401399 PRRT4 proline rich transmembrane protein 4 7 protein-coding - proline-rich transmembrane protein 4 17 0.002327 3.465 1 1 +401409 RAB19 RAB19, member RAS oncogene family 7 protein-coding RAB19B ras-related protein Rab-19|GTP-binding protein RAB19B 23 0.003148 2.767 1 1 +401427 OR2A7 olfactory receptor family 2 subfamily A member 7 7 protein-coding HSDJ0798C17|OR2A21 olfactory receptor 2A7|olfactory receptor OR7-18|olfactory receptor OR7-20|olfactory receptor, family 2, subfamily A, member 21 13 0.001779 6.564 1 1 +401431 ATP6V0E2-AS1 ATP6V0E2 antisense RNA 1 7 ncRNA - ATP6V0E2 antisense RNA 1 (non-protein coding) 1 0.0001369 5.197 1 1 +401447 USP17L1 ubiquitin specific peptidase 17-like family member 1 8 protein-coding USP17L1P ubiquitin carboxyl-terminal hydrolase 17-like protein 1|deubiquitinating enzyme 17-like protein 1|putative ubiquitin carboxyl-terminal hydrolase 17-like protein 1|ubiquitin thioesterase 17-like protein 1|ubiquitin-specific-processing protease 17-like protein 1 5 0.0006844 1 0 +401463 LOC401463 uncharacterized LOC401463 8 ncRNA - - 1 0.0001369 1.154 1 1 +401466 C8orf59 chromosome 8 open reading frame 59 8 protein-coding - uncharacterized protein C8orf59 6 0.0008212 9.197 1 1 +401474 SAMD12 sterile alpha motif domain containing 12 8 protein-coding - sterile alpha motif domain-containing protein 12|SAM domain-containing protein 12 14 0.001916 7.818 1 1 +401480 LOC401480 uncharacterized LOC401480 8 unknown - - 0 0 1 0 +401491 VLDLR-AS1 VLDLR antisense RNA 1 9 ncRNA linc-VLDLR|lincRNA-VLDLR - 2.832 0 1 +401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 9 protein-coding PTPLAD2 very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 4|protein tyrosine phosphatase-like A domain containing 2|protein tyrosine phosphatase-like protein PTPLAD2|protein-tyrosine phosphatase-like A domain-containing protein 2|very-long-chain (3R)-3-hydroxyacyl-[acyl-carrier protein] dehydratase 4 15 0.002053 7.402 1 1 +401498 TMEM215 transmembrane protein 215 9 protein-coding - transmembrane protein 215 19 0.002601 2.03 1 1 +401505 TOMM5 translocase of outer mitochondrial membrane 5 9 protein-coding C9orf105|Tom5|bA613M10.3 mitochondrial import receptor subunit TOM5 homolog|mitochondrial outer membrane protein TOM5|translocase of outer mitochondrial membrane 5 homolog 3 0.0004106 9.953 1 1 +401507 FAM74A1 family with sequence similarity 74 member A1 9 ncRNA FAM74A5 family with sequence similarity 74, member A5 0.09076 0 1 +401508 FAM74A4 family with sequence similarity 74 member A4 9 ncRNA FAM74A2 family with sequence similarity 74, member A2 2 0.0002737 0.02878 1 1 +401535 C9orf170 chromosome 9 open reading frame 170 9 protein-coding - uncharacterized protein C9orf170 12 0.001642 1.494 1 1 +401541 CENPP centromere protein P 9 protein-coding CENP-P centromere protein P 17 0.002327 6.452 1 1 +401546 C9orf152 chromosome 9 open reading frame 152 9 protein-coding bA470J20.2 uncharacterized protein C9orf152 13 0.001779 4.778 1 1 +401548 SNX30 sorting nexin family member 30 9 protein-coding ATG24A sorting nexin-30 24 0.003285 9.166 1 1 +401551 WDR38 WD repeat domain 38 9 protein-coding - WD repeat-containing protein 38 19 0.002601 1.449 1 1 +401562 LCNL1 lipocalin like 1 9 protein-coding - lipocalin-like 1 protein 8 0.001095 1.468 1 1 +401563 C9orf139 chromosome 9 open reading frame 139 9 protein-coding - uncharacterized protein C9orf139 19 0.002601 2.271 1 1 +401565 FAM166A family with sequence similarity 166 member A 9 protein-coding HSD46 protein FAM166A 34 0.004654 0.89 1 1 +401588 ZNF674-AS1 ZNF674 antisense RNA 1 (head to head) X ncRNA - ZNF674 antisense RNA 1 (non-protein coding) 6.017 0 1 +401602 LOC401602 adaptor related protein complex 2 beta 1 subunit pseudogene X pseudo - - 2 0.0002737 1 0 +401612 SLC25A53 solute carrier family 25 member 53 X protein-coding MCART6 solute carrier family 25 member 53|mitochondrial carrier triple repeat protein 6 23 0.003148 3.91 1 1 +401629 FAM224B family with sequence similarity 224 member B (non-protein coding) Y ncRNA LINC00230B|NCRNA00230B long intergenic non-protein coding RNA 230B|non-protein coding RNA 230B 0.8902 0 1 +401634 GOLGA2P3Y golgin A2 pseudogene 3, Y-linked Y pseudo GOLGA2LY2|GOLGA2P3 golgi autoantigen, golgin subfamily a, 2-like, Y-linked 2|golgi autoantigen, golgin subfamily a, 2-like, Y-linked, telomeric|golgin A2-like, Y-linked 2 (pseudogene) 0.01208 0 1 +401647 GOLGA7B golgin A7 family member B 10 protein-coding C10orf132|C10orf133|bA451M19.3|bA459F3.4 golgin subfamily A member 7B|golgi autoantigen, golgin subfamily a, 7B 12 0.001642 6.552 1 1 +401661 OR51C1P olfactory receptor family 51 subfamily C member 1 pseudogene 11 pseudo OR51C2P|OR51C3P|OST734 olfactory receptor, family 51, subfamily C, member 2 pseudogene|olfactory receptor, family 51, subfamily C, member 3 pseudogene 3 0.0004106 1 0 +401663 OR51H1 olfactory receptor family 51 subfamily H member 1 11 pseudo OR51H1P Olfactory receptor 51H1|olfactory receptor OR11-25|olfactory receptor, family 51, subfamily H, member 1 pseudogene|seven transmembrane helix receptor 2 0.0002737 1 0 +401665 OR51T1 olfactory receptor family 51 subfamily T member 1 11 protein-coding OR11-26 olfactory receptor 51T1|olfactory receptor OR11-26 49 0.006707 0.07436 1 1 +401666 OR51A4 olfactory receptor family 51 subfamily A member 4 11 protein-coding - olfactory receptor 51A4 47 0.006433 0.01412 1 1 +401667 OR51A2 olfactory receptor family 51 subfamily A member 2 11 protein-coding - olfactory receptor 51A2 27 0.003696 0.003723 1 1 +401687 OR5J1P olfactory receptor family 5 subfamily J member 1 pseudogene 11 pseudo HTPCRH02|OR11-169|OR5J1 olfactory receptor OR11-169 pseudogene 1 0.0001369 1 0 +401720 FIGNL2 fidgetin like 2 12 protein-coding - putative fidgetin-like protein 2 16 0.00219 4.568 1 1 +401725 RPL6P25 ribosomal protein L6 pseudogene 25 12 pseudo RPL6_15_1263 - 1 0.0001369 1 0 +401827 MSLNL mesothelin-like 16 pseudo C16orf37|MPFL MPF-like|megakarycyte potentiating factor|pre-pro-megakaryocyte-potentiating-factor-like 66 0.009034 0.7018 1 1 +401884 7.458 0 1 +401898 ZNF833P zinc finger protein 833, pseudogene 19 pseudo ZNF833 CTC-499B15.5|zinc finger protein pseudogene 21 0.002874 4.171 1 1 +401940 0.0009636 0 1 +401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 1 protein-coding - low-density lipoprotein receptor class A domain-containing protein 2|low density lipoprotein receptor A domain containing 2 22 0.003011 7.112 1 1 +401992 OR2T2 olfactory receptor family 2 subfamily T member 2 1 protein-coding OR1-43|OR2T2P olfactory receptor 2T2|olfactory receptor OR1-43|olfactory receptor, family 2, subfamily T, member 2 pseudogene 55 0.007528 0.05136 1 1 +401993 OR2T5 olfactory receptor family 2 subfamily T member 5 1 protein-coding OR1-62 olfactory receptor 2T5|olfactory receptor OR1-62 10 0.001369 0.1093 1 1 +401994 OR14I1 olfactory receptor family 14 subfamily I member 1 1 protein-coding OR5BU1|OR5BU1P olfactory receptor 14I1|olfactory receptor 5BU1|olfactory receptor, family 5, subfamily BU, member 1 pseudogene 51 0.006981 0.2171 1 1 +402055 SRRD SRR1 domain containing 22 protein-coding HC/HCC|SRR1L SRR1-like protein|SRR1 domain-containing protein|hepatocellular carcinoma complicating hemochromatosis 16 0.00219 8.038 1 1 +402117 VWC2L von Willebrand factor C domain containing protein 2-like 2 protein-coding - von Willebrand factor C domain-containing protein 2-like|brorin-like 34 0.004654 0.2667 1 1 +402135 OR5K2 olfactory receptor family 5 subfamily K member 2 3 protein-coding OR3-9 olfactory receptor 5K2|olfactory receptor OR3-9 38 0.005201 0.4727 1 1 +402176 RPL21P44 ribosomal protein L21 pseudogene 44 4 pseudo RPL21_17_477 - 1.507 0 1 +402317 OR2A42 olfactory receptor family 2 subfamily A member 42 7 protein-coding - olfactory receptor 2A1/2A42|olfactory receptor OR7-16|olfactory receptor OR7-19 2 0.0002737 1 0 +402377 2.979 0 1 +402381 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 9 protein-coding C9orf157|NOHLH|SPATA27|TEB2|bA100C15.3|bHLHe80 spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 1|newborn ovary helix loop helix|spermatogenesis associated 27 26 0.003559 1.1 1 1 +402415 XKRX XK related, X-linked X protein-coding XKR2|XPLAC|XRG2 XK-related protein 2|X Kell blood group precursor-related, X-linked|X-linked Kx blood group related, X-linked|XK, Kell blood group complex subunit-related, X-linked|membrane protein XPLAC 34 0.004654 3.999 1 1 +402483 LINC01000 long intergenic non-protein coding RNA 1000 7 ncRNA - - 9.466 0 1 +402569 KPNA7 karyopherin subunit alpha 7 7 protein-coding IPOA8 importin subunit alpha-8|karyopherin alpha 7 17 0.002327 2.088 1 1 +402573 C7orf61 chromosome 7 open reading frame 61 7 protein-coding - uncharacterized protein C7orf61 15 0.002053 3.09 1 1 +402635 GRIFIN galectin-related inter-fiber protein 7 protein-coding - grifin|putative grifin 6 0.0008212 1 0 +402644 LOC402644 peptidylprolyl isomerase A (cyclophilin A) pseudogene 7 pseudo - - 1 0.0001369 0.05696 1 1 +402665 IGLON5 IgLON family member 5 19 protein-coding - igLON family member 5|Ig-like domain-containing protein ENSP00000270642|hCG1651476 20 0.002737 3.656 1 1 +402682 UFSP1 UFM1 specific peptidase 1 (inactive) 7 protein-coding UFSP inactive Ufm1-specific protease 1|UFM1-specific peptidase 1 (non-functional) 11 0.001506 5.051 1 1 +402778 IFITM10 interferon induced transmembrane protein 10 11 protein-coding DSPA3 interferon-induced transmembrane protein 10|dispanin subfamily A member 3 6 0.0008212 1 0 +403232 OR1M4P olfactory receptor family 1 subfamily M member 4 pseudogene 19 pseudo - - 1 0.0001369 1 0 +403239 OR2T27 olfactory receptor family 2 subfamily T member 27 1 protein-coding - olfactory receptor 2T27|olfactory receptor OR1-67 62 0.008486 0.003919 1 1 +403244 OR2T35 olfactory receptor family 2 subfamily T member 35 1 protein-coding - olfactory receptor 2T35|olfactory receptor OR1-66 23 0.003148 0.008108 1 1 +403253 OR4A47 olfactory receptor family 4 subfamily A member 47 11 protein-coding OR11-113 olfactory receptor 4A47|olfactory receptor OR11-113 69 0.009444 0.04484 1 1 +403257 OR4C45 olfactory receptor family 4 subfamily C member 45 11 protein-coding - olfactory receptor 4C45 1 0.0001369 0.00947 1 1 +403273 OR5H14 olfactory receptor family 5 subfamily H member 14 3 protein-coding - olfactory receptor 5H14|seven transmembrane helix receptor 63 0.008623 0.007826 1 1 +403274 OR5H15 olfactory receptor family 5 subfamily H member 15 3 protein-coding - olfactory receptor 5H15 51 0.006981 0.003341 1 1 +403277 OR5K3 olfactory receptor family 5 subfamily K member 3 3 protein-coding - olfactory receptor 5K3 46 0.006296 0.007504 1 1 +403278 OR5K4 olfactory receptor family 5 subfamily K member 4 3 protein-coding - olfactory receptor 5K4 38 0.005201 0.006849 1 1 +403282 OR6C65 olfactory receptor family 6 subfamily C member 65 12 protein-coding - olfactory receptor 6C65 42 0.005749 0.019 1 1 +403284 OR6C68 olfactory receptor family 6 subfamily C member 68 12 protein-coding - olfactory receptor 6C68 26 0.003559 0.0145 1 1 +403313 PLPP6 phospholipid phosphatase 6 9 protein-coding PDP1|PPAPDC2|PSDP|bA6J24.6 phospholipid phosphatase 6|PPAP2 domain-containing protein 2|phosphatidic acid phosphatase type 2 domain containing 2|phosphatidic acid phosphatase type 2 domain-containing protein 2|polyisoprenoid diphosphate phosphatase type 1|presqualene diphosphate phosphatase 9 0.001232 8.277 1 1 +403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 1 protein-coding C1orf169 putative C->U-editing enzyme APOBEC-4|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 4 (putative) 34 0.004654 0.7451 1 1 +403315 FAM92A1P2 family with sequence similarity 92, member A3 4 pseudo FAM92A3 - 18 0.002464 0.09213 1 1 +403341 ZBTB34 zinc finger and BTB domain containing 34 9 protein-coding ZNF918 zinc finger and BTB domain-containing protein 34 24 0.003285 8.175 1 1 +404037 HAPLN4 hyaluronan and proteoglycan link protein 4 19 protein-coding BRAL2 hyaluronan and proteoglycan link protein 4|brain link protein 2 34 0.004654 3.43 1 1 +404093 CUEDC1 CUE domain containing 1 17 protein-coding - CUE domain-containing protein 1 27 0.003696 8.587 1 1 +404201 WDFY3-AS2 WDFY3 antisense RNA 2 4 ncRNA C4orf12|FBI4|NCRNA00247 WDFY3 antisense RNA 2 (non-protein coding) 3 0.0004106 4.147 1 1 +404203 SPINK6 serine peptidase inhibitor, Kazal type 6 5 protein-coding BUSI2|UNQ844 serine protease inhibitor Kazal-type 6|acrosin inhibitor|kallikrein inhibitor|protease inhibitor H 5 0.0006844 0.9137 1 1 +404216 LINC01561 long intergenic non-protein coding RNA 1561 10 ncRNA C10orf85 - 2 0.0002737 1 0 +404217 CTXN1 cortexin 1 19 protein-coding CTXN cortexin-1 7.241 0 1 +404220 C6orf201 chromosome 6 open reading frame 201 6 protein-coding dJ1013A10.5 uncharacterized protein C6orf201|protein MGC87625 7 0.0009581 2.659 1 1 +404266 HOXB-AS3 HOXB cluster antisense RNA 3 17 ncRNA - HOXB cluster antisense RNA 3 (non-protein coding) 1 0.0001369 1 0 +404281 YY2 YY2 transcription factor X protein-coding ZNF631 transcription factor YY2|transcription factor yin yang 2|yin and yang 2|zinc finger protein 631 34 0.004654 4.267 1 1 +404550 C16orf74 chromosome 16 open reading frame 74 16 protein-coding - uncharacterized protein C16orf74|hypothetical protein 1|hypothetical protein 2|hypothetical protein 3 9 0.001232 5.712 1 1 +404552 SCGB1D4 secretoglobin family 1D member 4 11 protein-coding IIS secretoglobin family 1D member 4|IFN-gamma inducible SCGB (IIS)|IFN-gamma-inducible secretoglobin 8 0.001095 0.07628 1 1 +404635 NANOGP1 Nanog homeobox pseudogene 1 12 pseudo NANOG2 Nanog homeobox 2|nanog-like protein 21 0.002874 1 0 +404636 FAM45A family with sequence similarity 45 member A 10 protein-coding - protein FAM45A 19 0.002601 8.551 1 1 +404672 GTF2H5 general transcription factor IIH subunit 5 6 protein-coding C6orf175|TFB5|TFIIH|TGF2H5|TTD|TTD-A|TTD3|TTDA|bA120J8.2 general transcription factor IIH subunit 5|TFB5 ortholog|TFIIH basal transcription factor complex TTD-A subunit|TFIIH basal transcription factor complex TTDA subunit|general transcription factor IIH, polypeptide 5 2 0.0002737 9.245 1 1 +404734 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 readthrough 5 protein-coding MASK-BP3|MASK-BP3ARF ANKHD1-EIF4EBP3 protein|MASK-4E-BP3 alternate reading frame 32 0.00438 9.394 1 1 +404744 NPSR1-AS1 NPSR1 antisense RNA 1 7 ncRNA AAA1 NPSR1 antisense RNA 1 (non-protein coding)|asthma-associated alternatively spliced gene 1 6 0.0008212 0.3571 1 1 +404770 SPATA31B1P SPATA31 subfamily B member 1, pseudogene 9 pseudo C9orf36B|FAM75B|SPATA31B1 family with sequence similarity 75, member B 1 0.0001369 0.01427 1 1 +404785 POTEG POTE ankyrin domain family member G 14 protein-coding A26C2|ACTBL1|CT104.4|POTE-14|POTE14|POTE14alpha|POTE22 POTE ankyrin domain family member G|ANKRD26-like family C member 2|cancer/testis antigen family 104, member 4|prostate, ovary, testis-expressed protein on chromosome 14|protein expressed in prostate, ovary, testis, and placenta 14 92 0.01259 0.4969 1 1 +405753 DUOXA2 dual oxidase maturation factor 2 15 protein-coding SIMNIPHOM|TDH5 dual oxidase maturation factor 2 22 0.003011 3.921 1 1 +405754 ERVFRD-1 endogenous retrovirus group FRD member 1 6 protein-coding ERVFRDE1|GLLL6191|HERV-FRD|HERV-W/FRD|UNQ6191|envFRD syncytin-2|HERV-FRD provirus ancestral Env polyprotein|HERV-FRD_6p24.1 provirus ancestral Env polyprotein|envelope polyprotein|syncytin 2 19 0.002601 1.574 1 1 +406882 MIRLET7A2 microRNA let-7a-2 11 ncRNA LET7A2|MIRNLET7A2|let-7a-2 hsa-let-7a-2 3 0.0004106 1 0 +406884 MIRLET7B microRNA let-7b 22 ncRNA LET7B|MIRNLET7B|hsa-let-7b|let-7b - 0 0 1 0 +406888 MIRLET7F1 microRNA let-7f-1 9 ncRNA LET7F1|MIRNLET7F1|let-7f-1 hsa-let-7f-1 0 0 1 0 +406890 MIRLET7G microRNA let-7g 3 ncRNA LET7G|MIRNLET7G|hsa-let-7g|let-7g - 1 0.0001369 1 0 +406892 MIR100 microRNA 100 11 ncRNA MIRN100|miR-100 hsa-mir-100 1 0.0001369 1 0 +406893 MIR101-1 microRNA 101-1 1 ncRNA MIRN101-1|mir-101-1 hsa-mir-101-1 3 0.0004106 1 0 +406894 MIR101-2 microRNA 101-2 9 ncRNA MIRN101-2|mir-101-2 hsa-mir-101-2 0 0 1 0 +406897 MIR105-1 microRNA 105-1 X ncRNA MIRN105-1|mir-105-1 hsa-mir-105-1 0 0 1 0 +406898 MIR105-2 microRNA 105-2 X ncRNA MIRN105-2|mir-105-2 hsa-mir-105-2 0 0 1 0 +406899 MIR106A microRNA 106a X ncRNA MIRN106A|mir-106|mir-106a hsa-mir-106a 1 0.0001369 1 0 +406902 MIR10A microRNA 10a 17 ncRNA MIRN10A|hsa-mir-10a|miRNA10A|mir-10a - 0 0 1 0 +406903 MIR10B microRNA 10b 2 ncRNA MIRN10B|hsa-mir-10b|miRNA10B|mir-10b - 3 0.0004106 1 0 +406904 MIR1-1 microRNA 1-1 20 ncRNA MIRN1-1|hsa-mir-1-1|miRNA1-1|mir-1-1 - 0 0 1 0 +406905 MIR1-2 microRNA 1-2 18 ncRNA MIRN1-2|hsa-mir-1-2|miRNA1-2|mir-1-2 - 0 0 1 0 +406906 MIR122 microRNA 122 18 ncRNA MIR122A|MIRN122|MIRN122A|hsa-mir-122|miRNA122|miRNA122A|mir-122 hsa-mir-122a|microRNA 122a 1 0.0001369 1 0 +406907 MIR124-1 microRNA 124-1 8 ncRNA MIR124A|MIR124A1|MIRN124-1|MIRN124A1|mir-124-1 hsa-mir-124-1|hsa-mir-124a-1|microRNA 124a-1 1 0.0001369 1 0 +406908 MIR124-2 microRNA 124-2 8 ncRNA MIRN124-2|MIRN124A2|mir-124-2 hsa-mir-124-2|hsa-mir-124a-2|microRNA 124a-2 1 0.0001369 1 0 +406909 MIR124-3 microRNA 124-3 20 ncRNA MIRN124-3|MIRN124A3|mir-124-3 hsa-mir-124-3|hsa-mir-124a-3|microRNA 124a-3 4 0.0005475 1 0 +406912 MIR125B2 microRNA 125b-2 21 ncRNA MIRN125B2|mir-125b-2 hsa-mir-125b-2 0 0 1 0 +406915 MIR128-1 microRNA 128-1 2 ncRNA MIR128A|MIRN128-1|MIRN128A|mir-128-1 hsa-mir-128-1|hsa-mir-128a|microRNA 128a 1 0.0001369 1 0 +406916 MIR128-2 microRNA 128-2 3 ncRNA MIR128B|MIRN128-2|MIRN128B|mir-128-2|mir-128b hsa-mir-128-2|hsa-mir-128b|microRNA 128b 2 0.0002737 1 0 +406917 MIR129-1 microRNA 129-1 7 ncRNA MIR-129b|MIRN129-1|mir-129-1 hsa-mir-129-1 4 0.0005475 1 0 +406918 MIR129-2 microRNA 129-2 11 ncRNA MIR-129b|MIRN129-2|mir-129-2 hsa-mir-129-2 2 0.0002737 1 0 +406919 MIR130A microRNA 130a 11 ncRNA MIRN130A|miRNA130A|mir-130a hsa-mir-130a 0 0 1 0 +406921 MIR132 microRNA 132 17 ncRNA MIRN132|miRNA132|mir-132 hsa-mir-132 0 0 1 0 +406922 MIR133A1 microRNA 133a-1 18 ncRNA MIRN133A1|mir-133a-1 hsa-mir-133a-1 2 0.0002737 1 0 +406923 MIR133A2 microRNA 133a-2 20 ncRNA MIRN133A2|mir-133a-2 hsa-mir-133a-2 0 0 1 0 +406924 MIR134 microRNA 134 14 ncRNA MIRN134|mir-134 hsa-mir-134 3 0.0004106 1 0 +406925 MIR135A1 microRNA 135a-1 3 ncRNA MIRN135-1|MIRN135A1|mir-135a-1 hsa-mir-135-1|hsa-mir-135a-1|microRNA 135-1 2 0.0002737 1 0 +406926 MIR135A2 microRNA 135a-2 12 ncRNA MIRN135-2|MIRN135A2|mir-135a-2 hsa-mir-135-2|hsa-mir-135a-2|microRNA 135-2 0 0 1 0 +406928 MIR137 microRNA 137 1 ncRNA MIRN137|miR-137 hsa-mir-137 0 0 1 0 +406930 MIR138-2 microRNA 138-2 16 ncRNA MIRN138-2|mir-138-2 hsa-mir-138-2 2 0.0002737 1 0 +406932 MIR140 microRNA 140 16 ncRNA MIRN140|miRNA140|mir-140 hsa-mir-140 1 0.0001369 1 0 +406933 MIR141 microRNA 141 12 ncRNA MIRN141|mir-141 hsa-mir-141 2 0.0002737 1 0 +406934 MIR142 microRNA 142 17 ncRNA MIRN142|mir-142 hsa-mir-142 2 0.0002737 1 0 +406935 MIR143 microRNA 143 5 ncRNA MIRN143|mir-143 hsa-mir-143 1 0.0001369 1 0 +406936 MIR144 microRNA 144 17 ncRNA MIRN144|mir-144 hsa-mir-144 1 0.0001369 1 0 +406937 MIR145 microRNA 145 5 ncRNA MIRN145|miR-145|miRNA145 hsa-mir-145 1 0.0001369 1 0 +406938 MIR146A microRNA 146a 5 ncRNA MIRN146|MIRN146A|miR-146a|miRNA146A hsa-mir-146|hsa-mir-146a 2 0.0002737 1 0 +406939 MIR147A microRNA 147a 9 ncRNA MIR147|MIRN147|hsa-mir-147a hsa-mir-147|microRNA 147 4 0.0005475 1 0 +406940 MIR148A microRNA 148a 7 ncRNA MIRN148|MIRN148A|hsa-mir-148|mir-148a hsa-mir-148a|microRNA 148 1 0.0001369 1 0 +406943 MIR152 microRNA 152 17 ncRNA MIRN152|mir-152 hsa-mir-152 1 0.0001369 1 0 +406945 MIR153-2 microRNA 153-2 7 ncRNA MIRN153-2|mir-153-2 hsa-mir-153-2 0 0 1 0 +406946 MIR154 microRNA 154 14 ncRNA MIRN154|mir-154 hsa-mir-154 5 0.0006844 1 0 +406948 MIR15A microRNA 15a 13 ncRNA MIRN15A|hsa-mir-15a|miRNA15A|mir-15a - 1 0.0001369 1 0 +406950 MIR16-1 microRNA 16-1 13 ncRNA MIRN16-1|miRNA16-1|mir-16-1 hsa-mir-16-1 1 0.0001369 1 0 +406951 MIR16-2 microRNA 16-2 3 ncRNA MIRN16-2|mir-16-2|mir-16-3 hsa-mir-16-2 1 0.0001369 1 0 +406953 MIR18A microRNA 18a 13 ncRNA MIR18|MIRN18|MIRN18A|hsa-mir-18|hsa-mir-18a|miR-18|miRNA18A|mir-18a - 0 0 1 0 +406955 MIR181B1 microRNA 181b-1 1 ncRNA MIRN181B1|mir-181b-1 hsa-mir-181b-1 4 0.0005475 1 0 +406957 MIR181C microRNA 181c 19 ncRNA MIRN181C|mir-181c hsa-mir-181c 1 0.0001369 1 0 +406958 MIR182 microRNA 182 7 ncRNA MIRN182|miRNA182|mir-182 hsa-mir-182 4 0.0005475 1 0 +406960 MIR184 microRNA 184 15 ncRNA EDICT|MIRN184|miR-184 hsa-mir-184 0 0 1 0 +406961 MIR185 microRNA 185 22 ncRNA MIRN185|miR-185 hsa-mir-185 0 0 1 0 +406962 MIR186 microRNA 186 1 ncRNA MIRN186|miR-186 hsa-mir-186 1 0.0001369 1 0 +406963 MIR187 microRNA 187 18 ncRNA MIRN187|miR-187|miRNA187 hsa-mir-187 1 0.0001369 1 0 +406964 MIR188 microRNA 188 X ncRNA MIRN188|miR-188 hsa-mir-188 1 0.0001369 1 0 +406967 MIR192 microRNA 192 11 ncRNA MIRN192|miR-192|miRNA192 hsa-mir-192 2 0.0002737 1 0 +406968 MIR193A microRNA 193a 17 ncRNA MIRN193|MIRN193A|mir-193a hsa-mir-193|hsa-mir-193a 1 0.0001369 1 0 +406970 MIR194-2 microRNA 194-2 11 ncRNA MIRN194-2|mir-194-2 hsa-mir-194-2 3 0.0004106 1 0 +406971 MIR195 microRNA 195 17 ncRNA MIRN195|miRNA195|mir-195 hsa-mir-195 3 0.0004106 1 0 +406972 MIR196A1 microRNA 196a-1 17 ncRNA MIRN196-1|MIRN196A1|mir-196a-1 hsa-mir-196-1|hsa-mir-196a-1|microRNA 196-1|microRNA 196a|microRNA miR-196 0 0 1 0 +406973 MIR196A2 microRNA 196a-2 12 ncRNA MIRN196-2|MIRN196A2|mir-196a-2 hsa-mir-196-2|hsa-mir-196a-2|microRNA 196-2 2 0.0002737 1 0 +406974 MIR197 microRNA 197 1 ncRNA MIRN197|miR-197|miRNA197 hsa-mir-197 1 0.0001369 1 0 +406977 MIR199A2 microRNA 199a-2 1 ncRNA MIR-199-s|MIRN199A2|mir-199a-2 hsa-mir-199a-2|miR-199a-3p 0 0 1 0 +406979 MIR19A microRNA 19a 13 ncRNA MIRN19A|hsa-mir-19a|miR-19a|miRNA19A - 0 0 1 0 +406981 MIR19B2 microRNA 19b-2 X ncRNA MIRN19B2|miR-19b-2 hsa-mir-19b-2 1 0.0001369 1 0 +406983 MIR200A microRNA 200a 1 ncRNA MIRN200A|mir-200a hsa-mir-200a 3 0.0004106 1 0 +406984 MIR200B microRNA 200b 1 ncRNA MIRN200B|mir-200b hsa-mir-200b 1 0.0001369 1 0 +406987 MIR204 microRNA 204 9 ncRNA MIRN204|RDICC|miRNA204|mir-204 hsa-mir-204 2 0.0002737 1 0 +406988 MIR205 microRNA 205 1 ncRNA MIRN205|mir-205 hsa-mir-205 1 0.0001369 1 0 +406989 MIR206 microRNA 206 6 ncRNA MIRN206|miRNA206|mir-206 hsa-mir-206 3 0.0004106 1 0 +406990 MIR208A microRNA 208a 14 ncRNA MIR208|MIRN208|MIRN208A|hsa-mir-208a|miRNA208 hsa-mir-208|microRNA 208 0 0 1 0 +406991 MIR21 microRNA 21 17 ncRNA MIRN21|hsa-mir-21|miR-21|miRNA21 - 5 0.0006844 1 0 +406993 MIR211 microRNA 211 15 ncRNA MIRN211|mir-211 hsa-mir-211 2 0.0002737 1 0 +406995 MIR181A1 microRNA 181a-1 1 ncRNA MIR213|MIRN181A1|MIRN213|hsa-mir-181a-1|mir-181a-1|mir-213 hsa-mir-213|microRNA 213 5 0.0006844 1 0 +406998 MIR216A microRNA 216a 2 ncRNA MIR216|MIRN216|MIRN216A|miRNA216|mir-216|mir-216a hsa-mir-216|hsa-mir-216a|microRNA 216 0 0 1 0 +406999 MIR217 microRNA 217 2 ncRNA MIRN217|mir-217 hsa-mir-217 0 0 1 0 +407001 MIR218-2 microRNA 218-2 5 ncRNA MIRN218-2|mir-218-2 hsa-mir-218-2 1 0.0001369 1 0 +407002 MIR219A1 microRNA 219a-1 6 ncRNA MIR219-1|MIRN219-1|MRI219-1|hsa-mir-219a-1|mir-219|mir-219a-1 hsa-mir-219-1|microRNA 219-1 2 0.0002737 1 0 +407003 MIR219A2 microRNA 219a-2 9 ncRNA MIR219-2|MIRN219-2|hsa-mir-219a-2|mir-219a-2 hsa-mir-219-2|microRNA 219-2 1 0.0001369 1 0 +407006 MIR221 microRNA 221 X ncRNA MIRN221|miRNA221|mir-221 hsa-mir-221 2 0.0002737 1 0 +407007 MIR222 microRNA 222 X ncRNA MIRN222|miRNA222|mir-222 hsa-mir-222 4 0.0005475 1 0 +407008 MIR223 microRNA 223 X ncRNA MIRN223|miRNA223|mir-223 hsa-mir-223 3 0.0004106 1 0 +407009 MIR224 microRNA 224 X ncRNA MIRN224|miRNA224 hsa-mir-224 0 0 1 0 +407010 MIR23A microRNA 23a 19 ncRNA MIRN23A|hsa-mir-23a|miRNA23A|mir-23a - 1 0.0001369 1 0 +407011 MIR23B microRNA 23b 9 ncRNA MIRN23B|hsa-mir-23b|miRNA23B|mir-23b - 0 0 1 0 +407012 MIR24-1 microRNA 24-1 9 ncRNA MIR189|MIRN24-1|miR-24-1|miRNA24-1 hsa-mir-24-1|microRNA-24 1 0.0001369 1 0 +407013 MIR24-2 microRNA 24-2 19 ncRNA MIRN24-2|miR-24-2|miRNA24-2 hsa-mir-24-2 0 0 1 0 +407014 MIR25 microRNA 25 7 ncRNA MIRN25|hsa-mir-25|miR-25 - 1 0.0001369 1 0 +407018 MIR27A microRNA 27a 19 ncRNA MIR27|MIRN27A|mir-27a hsa-mir-27a 0 0 1 0 +407019 MIR27B microRNA 27b 9 ncRNA MIR-27b|MIRN27B|miRNA27B hsa-mir-27b 1 0.0001369 1 0 +407022 MIR296 microRNA 296 20 ncRNA MIRN296|miRNA296|mir-296 hsa-mir-296 4 0.0005475 1 0 +407023 MIR299 microRNA 299 14 ncRNA MIRN299|mir-299 hsa-mir-299 1 0.0001369 1 0 +407025 MIR29B2 microRNA 29b-2 1 ncRNA MIRN29B2 hsa-mir-29b-2|miR-29b|mir-29b-2 1 0.0001369 1 0 +407026 MIR29C microRNA 29c 1 ncRNA MIRN29C|miRNA29C|mir-29c hsa-mir-29c 2 0.0002737 1 0 +407027 MIR301A microRNA 301a 17 ncRNA MIR301|MIRN301|MIRN301A|mir-301a hsa-mir-301|hsa-mir-301a|microRNA 301 2 0.0002737 1 0 +407028 MIR302A microRNA 302a 4 ncRNA MIRN302|MIRN302A|hsa-mir-302|mir-302a hsa-mir-302a|microRNA 302 1 0.0001369 1 0 +407030 MIR30B microRNA 30b 8 ncRNA MIRN30B|mir-30b hsa-mir-30b 1 0.0001369 1 0 +407033 MIR30D microRNA 30d 8 ncRNA MIRN30D|mir-30d hsa-mir-30d 4 0.0005475 1 0 +407034 MIR30E microRNA 30e 1 ncRNA MIRN30E|mir-30e hsa-mir-30e 1 0.0001369 1 0 +407037 MIR320A microRNA 320a 8 ncRNA MIRN320|MIRN320A|hsa-mir-320a|mir-320a hsa-mir-320|microRNA 320 5 0.0006844 1 0 +407040 MIR34A microRNA 34a 1 ncRNA MIRN34A|miRNA34A|mir-34|mir-34a hsa-mir-34a 2 0.0002737 1 0 +407042 MIR34C microRNA 34c 11 ncRNA MIRN34C|miRNA34C|mir-34c hsa-mir-34c 1 0.0001369 1 0 +407044 MIR7-2 microRNA 7-2 15 ncRNA MIRN7-2|hsa-mir-7-2|mir-7-2 miR-7-5p 2 0.0002737 1 0 +407045 MIR7-3 microRNA 7-3 19 ncRNA MIRN7-3|hsa-mir-7-3|mir-7-3 miR-7-5p 4 0.0005475 1 0 +407047 MIR9-2 microRNA 9-2 5 ncRNA MIRN9-2|hsa-mir-9-2|miRNA9-2|mir-9-2 - 1 0.0001369 1 0 +407048 MIR92A1 microRNA 92a-1 13 ncRNA MIR92-1|MIRN92-1|MIRN92A-1|MIRN92A1|miRNA92-1|mir-92a-1 hsa-mir-92-1|hsa-mir-92a-1|microRNA 92-1 1 0.0001369 1 0 +407049 MIR92A2 microRNA 92a-2 X ncRNA MIRN92-2|MIRN92A-2|MIRN92A2|mir-92a-2 hsa-mir-92-2|hsa-mir-92a-2|microRNA 92-2 1 0.0001369 1 0 +407050 MIR93 microRNA 93 7 ncRNA MIRN9|MIRN93|hsa-mir-93|miR-93 - 0 0 1 0 +407051 MIR9-3 microRNA 9-3 15 ncRNA MIRN9-3|hsa-mir-9-3|miRNA9-3|mir-9-3 - 3 0.0004106 1 0 +407052 MIR95 microRNA 95 4 ncRNA MIRN95|hsa-mir-95|miR-95 - 0 0 1 0 +407055 MIR99A microRNA 99a 21 ncRNA MIRN99A|mir-99a hsa-mir-99a 0 0 1 0 +407056 MIR99B microRNA 99b 19 ncRNA MIRN99B|mir-99b hsa-mir-99b 0 0 1 0 +407738 FAM19A1 family with sequence similarity 19 member A1, C-C motif chemokine like 3 protein-coding TAFA-1|TAFA1 protein FAM19A1|chemokine-like protein TAFA-1|family with sequence similarity 19 (chemokine (C-C motif)-like), member A1 20 0.002737 1.641 1 1 +407835 LOC407835 mitogen-activated protein kinase kinase 2 pseudogene 7 pseudo - mitogen-activated protein kinase kinase 2; protein kinase, mitogen-activated, kinase 2, p45 (MAP kinase kinase 2) 2 0.0002737 6.473 1 1 +407975 MIR17HG miR-17-92a-1 cluster host gene 13 ncRNA C13orf25|FGLDS2|LINC00048|MIHG1|MIRH1|MIRHG1|NCRNA00048|miR-17-92 MIR17 host gene (non-protein coding)|long intergenic non-protein coding RNA 48|miR-17-92 cluster host gene (non-protein coding)|microRNA host gene (non-protein coding) 1|microRNA host gene 1 (non-protein coding)|mir-17-92 microRNA cluster 11 0.001506 4.697 1 1 +407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough 17 protein-coding TWE-PRIL TNFSF12-TNFSF13 protein|tumor necrosis factor (ligand) superfamily, member 12-member 13 13 0.001779 6.183 1 1 +408029 C2orf27B chromosome 2 open reading frame 27B 2 protein-coding - uncharacterized protein LOC408029 3 0.0004106 0.03194 1 1 +408050 NOMO3 NODAL modulator 3 16 protein-coding Nomo nodal modulator 3|pM5 protein 3|pM5 protein, middle copy 5 0.0006844 10.42 1 1 +408187 SPINK14 serine peptidase inhibitor, Kazal type 14 (putative) 5 protein-coding SPINK5L2 serine protease inhibitor Kazal-type 14|Kazal type serine protease inhibitor 5-like 2 8 0.001095 0.009703 1 1 +408263 FNDC9 fibronectin type III domain containing 9 5 protein-coding C5orf40 fibronectin type III domain-containing protein 9|fibronectin type-III domain-containing protein C5orf40 23 0.003148 1.143 1 1 +414059 TBC1D3B TBC1 domain family member 3B 17 protein-coding PRC17|TBC1D3I|TBC1D3L TBC1 domain family member 3B|Rab GTPase-activating protein PRC17 duplicate|TBC1 domain family member 3B/I|TBC1 domain family, member 3-like|TBC1 domain family, member 3I|prostate cancer gene 17 duplicate 8 0.001095 7.061 1 1 +414060 TBC1D3C TBC1 domain family member 3C 17 protein-coding TBC1D3D TBC1 domain family member 3C|Rab GTPase-activating protein PRC17|TBC1 domain family member 3C-like protein ENSP00000341742|TBC1 domain family member 3C/3D 2 0.0002737 4.427 1 1 +414061 DNAJB3 DnaJ heat shock protein family (Hsp40) member B3 2 protein-coding HCG3 dnaJ homolog subfamily B member 3|DnaJ (Hsp40) homolog, subfamily B, member 3 16 0.00219 0.5694 1 1 +414062 CCL3L3 C-C motif chemokine ligand 3 like 3 17 protein-coding 464.2|D17S1718|G0S19-2|LD78|LD78BETA|SCYA3L|SCYA3L1 C-C motif chemokine 3-like 1|G0/G1 switch regulatory protein 19-2|LD78-beta(1-70)|chemokine (C-C motif) ligand 3-like 3|chemokine (C-C motif) ligand 3-like, centromeric|small inducible cytokine A3-like 1|tonsillar lymphocyte LD78 beta protein 1.664 0 1 +414149 ACBD7 acyl-CoA binding domain containing 7 10 protein-coding bA455B2.2 acyl-CoA-binding domain-containing protein 7|acyl-Coenzyme A binding domain containing 7 11 0.001506 5.769 1 1 +414152 C10orf105 chromosome 10 open reading frame 105 10 protein-coding - uncharacterized protein C10orf105 2 0.0002737 3.466 1 1 +414153 SNRPEP2 small nuclear ribonucleoprotein polypeptide E pseudogene 2 9 pseudo SNRPEL1|bA390F4.4 small nuclear ribonucleoprotein polypeptide E-like 1 0 0 1 0 +414157 C10orf62 chromosome 10 open reading frame 62 10 protein-coding bA548K23.1 uncharacterized protein C10orf62 12 0.001642 0.6787 1 1 +414189 AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 10 protein-coding AGAP-6|CTGLF3|bA324H6.1 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 6|centaurin-gamma-like family member 3 30 0.004106 6.714 1 1 +414194 CCNYL2 cyclin Y-like 2 (pseudogene) 10 pseudo C10orf21|CCNYL2P|bA178A10.2 cyclin-Y-like protein 2 31 0.004243 1 0 +414201 ZNF32-AS3 ZNF32 antisense RNA 3 10 ncRNA C10orf44|ZNF32-OT1|bA402L1.3 ZNF32 antisense RNA 3 (non-protein coding)|ZNF32 overlapping transcript 1 (non-protein coding) 2 0.0002737 1 0 +414212 GLUD1P7 glutamate dehydrogenase 1 pseudogene 7 10 pseudo GLUD1P2|GLUDP2|GLUDP7|bA342C24.3 glutamate dehydrogenase 1 pseudogene 2|glutamate dehydrogenase pseudogene 2|glutamate dehydrogenase pseudogene 7 40 0.005475 1 0 +414235 PRR26 proline rich 26 10 ncRNA C10orf108 - 3 0.0004106 3.062 1 1 +414236 C10orf55 chromosome 10 open reading frame 55 10 protein-coding bA417O11.3 uncharacterized protein C10orf55 3 0.0004106 3.471 1 1 +414241 FAM35BP family with sequence similarity 35, member A pseudogene 10 pseudo FAM35B|FAM35EP|bA38L15.1 family with sequence similarity 35, member E, pseudogene 4 0.0005475 7.444 1 1 +414243 LINC00595 long intergenic non-protein coding RNA 595 10 ncRNA C10orf101 - 0 0 1 0 +414245 DNAJC9-AS1 DNAJC9 antisense RNA 1 10 ncRNA C10orf103|bA537A6.3 DNAJC9 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +414246 CDH23-AS1 CDH23 antisense RNA 1 10 ncRNA C10orf106|NCRNA00223|bA327E2.3 CDH23 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +414260 LINC00619 long intergenic non-protein coding RNA 619 10 ncRNA C10orf136|bA168P8.1 - 2 0.0002737 1 0 +414301 DDI1 DNA damage inducible 1 homolog 1 11 protein-coding - protein DDI1 homolog 1|DDI1, DNA-damage inducible 1, homolog 1|DNA-damage inducible protein 1 82 0.01122 0.1585 1 1 +414316 COL5A1-AS1 COL5A1 antisense RNA 1 9 ncRNA C9orf104|bA54A22.4 COL5A1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +414318 C9orf106 chromosome 9 open reading frame 106 9 protein-coding bA65J3.5 putative uncharacterized protein C9orf106 12 0.001642 1.019 1 1 +414319 LINC00587 long intergenic non-protein coding RNA 587 9 ncRNA C9orf107|bA785H23.1 - 1 0.0001369 1 0 +414325 DEFB103A defensin beta 103A 8 protein-coding BD-3|DEFB-3|DEFB103|DEFB3|HBD3|HBP-3|HBP3|hBD-3 beta-defensin 103|beta-defensin 3|defensin, beta 103|defensin, beta 3|defensin-like protein 0.6905 0 1 +414328 IDNK IDNK, gluconokinase 9 protein-coding C9orf103|bA522I20.2|hGntK probable gluconokinase|glucokinase-like protein|gluconate kinase|gluconokinase-like protein|idnK, gluconokinase homolog 4 0.0005475 6.564 1 1 +414332 LCN10 lipocalin 10 9 protein-coding - epididymal-specific lipocalin-10 11 0.001506 3.304 1 1 +414351 LINC00229 long intergenic non-protein coding RNA 229 22 ncRNA C22orf10|NCRNA00229|dJ474I12.C22.2 - 2 0.0002737 1 0 +414764 HCG23 HLA complex group 23 (non-protein coding) 6 ncRNA dJ1077I5.3 - 1 0.0001369 1 0 +414765 HCG25 HLA complex group 25 (non-protein coding) 6 ncRNA dJ1033B10.16 - 1 0.0001369 1 0 +414767 LINC00596 long intergenic non-protein coding RNA 596 14 ncRNA C14orf165|CNSLT1I7G - 2 0.0002737 0.03485 1 1 +414777 HCG18 HLA complex group 18 (non-protein coding) 6 ncRNA - - 8.706 0 1 +414778 HCG17 HLA complex group 17 (non-protein coding) 6 ncRNA HCG18|LINC00046|NCRNA00046 long intergenic non-protein coding RNA 46 12 0.001642 1 0 +414899 BLID BH3-like motif containing, cell death inducer 11 protein-coding BRCC2 BH3-like motif-containing cell death inducer|breast cancer cell 2|breast cancer cell protein 2 14 0.001916 0.1365 1 1 +414918 DENND6B DENN domain containing 6B 22 protein-coding AFI1B|FAM116B protein DENND6B|DENN domain-containing protein 6B|DENN/MADD domain containing 6B|family with sequence similarity 116, member B|protein FAM116B 22 0.003011 7.524 1 1 +414919 C8orf82 chromosome 8 open reading frame 82 8 protein-coding - UPF0598 protein C8orf82 10 0.001369 8.947 1 1 +414926 LINC00593 long intergenic non-protein coding RNA 593 15 ncRNA C15orf50 - 0 0 0.5118 1 1 +415056 CNTFR-AS1 CNTFR antisense RNA 1 9 ncRNA - - 0.298 0 1 +415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase 22 protein-coding pim-3 serine/threonine-protein kinase pim-3|pim-3 oncogene|serine/threonine kinase Pim-3 17 0.002327 10.54 1 1 +415117 STX19 syntaxin 19 3 protein-coding - syntaxin-19 24 0.003285 3.258 1 1 +425054 VCX3B variable charge, X-linked 3B X protein-coding VCX-C|VCXC variable charge X-linked protein 3B|variably charged protein X-C 19 0.002601 0.4567 1 1 +425057 TTTY9B testis-specific transcript, Y-linked 9B (non-protein coding) Y ncRNA NCRNA00132|TTTY9|TTTY9A|TTY9 testis transcript Y 9|testis-specific transcript, Y-linked 9, centromeric 0.03125 0 1 +431704 RGS21 regulator of G-protein signaling 21 1 protein-coding - regulator of G-protein signaling 21|regulator of G-protein signalling 21 27 0.003696 0.07441 1 1 +431705 ASTL astacin like metalloendopeptidase 2 protein-coding SAS1B astacin-like metalloendopeptidase|astacin-like metallo-endopeptidase (M12 family)|astacin-like metalloendopeptidase (M12 family)|oocyte astacin|ovastacin|sperm acrosomal SLLP1 binding 54 0.007391 1.154 1 1 +431707 LHX8 LIM homeobox 8 1 protein-coding LHX7 LIM/homeobox protein Lhx8|LIM-homeodomain protein Lhx8 56 0.007665 0.8906 1 1 +432369 ATP5EP2 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 2 13 pseudo - novel protein similar to ATP synthase (H+ transporting, mitochondrial F1 complex, epsilon subunit) 4 0.0005475 5.638 1 1 +439915 KRTAP5-5 keratin associated protein 5-5 11 protein-coding KRTAP5-11|KRTAP5.5 keratin-associated protein 5-5|keratin associated protein 5-11|keratin-associated protein 5.11|keratin-associated protein 5.5|ultrahigh sulfur keratin-associated protein 5.5 93 0.01273 0.3621 1 1 +439921 MXRA7 matrix remodeling associated 7 17 protein-coding PS1TP1|TMAP1 matrix-remodeling-associated protein 7|HBV PreS1-transactivated protein 1|matrix-remodelling associated 7|transmembrane anchor protein 1 12 0.001642 11.1 1 1 +439927 LINC01555 long intergenic non-protein coding RNA 1555 1 ncRNA C1orf180 - 1 0.0001369 0.6005 1 1 +439931 THAP7-AS1 THAP7 antisense RNA 1 22 ncRNA - THAP7 antisense RNA 1 (non-protein coding) 40 0.005475 5.718 1 1 +439934 LINC00575 long intergenic non-protein coding RNA 575 4 ncRNA C4orf11 - 2 0.0002737 0.04556 1 1 +439965 FAM35DP family with sequence similarity 35, member A pseudogene 10 pseudo FAM35B2 family with sequence similarity 35, member B2 (pseudogene) 2 0.0002737 5.663 1 1 +439994 LINC00863 long intergenic non-protein coding RNA 863 10 ncRNA - - 2 0.0002737 1 0 +439996 IFIT1B interferon induced protein with tetratricopeptide repeats 1B 10 protein-coding IFIT1L|bA149I23.6 interferon-induced protein with tetratricopeptide repeats 1B|interferon-induced protein with tetratricopeptide repeats 1-like protein 26 0.003559 0.4904 1 1 +440021 KRTAP5-2 keratin associated protein 5-2 11 protein-coding KRTAP5-8|KRTAP5.2 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 22 0.003011 1.432 1 1 +440023 KRTAP5-6 keratin associated protein 5-6 11 protein-coding KRTAP5.6 keratin-associated protein 5-6|keratin-associated protein 5.6|ultrahigh sulfur keratin-associated protein 5.6 14 0.001916 0.2697 1 1 +440026 TMEM41B transmembrane protein 41B 11 protein-coding - transmembrane protein 41B 17 0.002327 9.644 1 1 +440040 LOC440040 glutamate metabotropic receptor 5 pseudogene 11 pseudo - - 0.5405 0 1 +440041 TRIM51HP tripartite motif-containing 51H, pseudogene 11 pseudo - SPRY domain containing 5 pseudogene|Tripartite motif-containing protein ENSP00000311270 77 0.01054 1 0 +440044 SLC22A20 solute carrier family 22 member 20 11 protein-coding Oat6 solute carrier family 22 member 20|organic anion transporter 6 51 0.006981 2.87 1 1 +440050 KRTAP5-7 keratin associated protein 5-7 11 protein-coding KRTAP5-3|KRTAP5.7 keratin-associated protein 5-7|keratin-associated protein 5-3|keratin-associated protein 5.3|keratin-associated protein 5.7|ultrahigh sulfur keratin-associated protein 5.7 18 0.002464 0.6204 1 1 +440051 KRTAP5-11 keratin associated protein 5-11 11 protein-coding KRTAP5-5|KRTAP5-6|KRTAP5.11 keratin-associated protein 5-11|keratin associated protein 5-5|keratin-associated protein 5.11|ultrahigh sulfur keratin-associated protein 5.11 14 0.001916 0.08968 1 1 +440063 LOC440063 peptidylprolyl isomerase A (cyclophilin A) pseudogene 11 pseudo - - 1 0.0001369 1 0 +440068 CARD17 caspase recruitment domain family member 17 11 protein-coding INCA caspase recruitment domain-containing protein 17|Inhibitory CARD|caspase-1 inhibitor INCA|inhibitory caspase recruitment domain (CARD) protein|inhibitory caspase recruitment domain protein 11 0.001506 0.566 1 1 +440072 LINC00167 long intergenic non-protein coding RNA 167 11 ncRNA C11orf37|NCRNA00167 - 1.445 0 1 +440073 IQSEC3 IQ motif and Sec7 domain 3 12 protein-coding - IQ motif and SEC7 domain-containing protein 3 91 0.01246 4.47 1 1 +440077 ZNF705A zinc finger protein 705A 12 protein-coding - zinc finger protein 705A 21 0.002874 0.4966 1 1 +440078 FAM66C family with sequence similarity 66 member C 12 ncRNA - - 13 0.001779 4.239 1 1 +440081 DDX12P DEAD/H-box helicase 12, pseudogene 12 pseudo CHLR2|DDX12 CHL1-like helicase homolog 2|CHL1-related protein 2|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 12 (CHL1-like helicase homolog, S. cerevisiae)|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 12, pseudogene|DEAD/H box protein 12|DEAD/H box-12|hCHLR2|probable ATP-dependent RNA helicase DDX12 26 0.003559 6.469 1 1 +440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 12 protein-coding C12orf69 single-pass membrane and coiled-coil domain-containing protein 3 17 0.002327 2.726 1 1 +440093 H3F3C H3 histone family member 3C 12 protein-coding H3.5 histone H3.3C|H3 histone, family 3C|histone H3.5|histone variant H3.5 12 0.001642 8.298 1 1 +440097 DBX2 developing brain homeobox 2 12 protein-coding - homeobox protein DBX2|developing brain homeobox protein 2 34 0.004654 1.339 1 1 +440101 FLJ12825 uncharacterized LOC440101 12 ncRNA - - 3 0.0004106 2.807 1 1 +440104 TMEM198B transmembrane protein 198B (pseudogene) 12 pseudo - 1110012D08Rik pseudogene|transmembrane protein 198, pseudogene 6 0.0008212 1 0 +440107 PLEKHG7 pleckstrin homology and RhoGEF domain containing G7 12 protein-coding - pleckstrin homology domain-containing family G member 7|PH domain-containing family G member 7|pleckstrin homology domain containing, family G (with RhoGef domain) member 7 29 0.003969 2.24 1 1 +440131 LINC00544 long intergenic non-protein coding RNA 544 13 ncRNA - - 1 0.0001369 1 0 +440138 ALG11 ALG11, alpha-1,2-mannosyltransferase 13 protein-coding CDG1P|GT8 GDP-Man:Man(3)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase|GDP-Man:Man(3)GlcNAc(2)-PP-dolichol alpha-1,2-mannosyltransferase|asparagine-linked glycosylation 11, alpha-1,2-mannosyltransferase homolog|asparagine-linked glycosylation protein 11 homolog|glycolipid 2-alpha-mannosyltransferase 27 0.003696 4.052 1 1 +440145 MZT1 mitotic spindle organizing protein 1 13 protein-coding C13orf37|MOZART1 mitotic-spindle organizing protein 1|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 1 7 0.0009581 8.749 1 1 +440153 OR11H12 olfactory receptor family 11 subfamily H member 12 14 protein-coding - olfactory receptor 11H12 43 0.005886 0.08135 1 1 +440163 RNASE13 ribonuclease A family member 13 (inactive) 14 protein-coding HEL-S-86p|RAL1 probable inactive ribonuclease-like protein 13|epididymis secretory sperm binding protein Li 86p|ribonuclease 13|ribonuclease A L1|ribonuclease, RNase A family, 13 (non-active)|ribonuclease-like protein 13 12 0.001642 0.6311 1 1 +440173 LOC440173 uncharacterized LOC440173 9 ncRNA - - 2.578 0 1 +440180 LOC440180 zinc finger CCHC-type containing 7 pseudogene 14 pseudo - - 1 0.0001369 1 0 +440184 LINC00238 long intergenic non-protein coding RNA 238 14 ncRNA C14orf53|NCRNA00238 - 6 0.0008212 0.3818 1 1 +440193 CCDC88C coiled-coil domain containing 88C 14 protein-coding DAPLE|HKRP2|KIAA1509|SCA40 protein Daple|Dvl-associating protein with a high frequency of leucine residues|hook-related protein 2|spinocerebellar ataxia 40 93 0.01273 9.141 1 1 +440224 CXADRP3 coxsackie virus and adenovirus receptor pseudogene 3 18 pseudo - CTD-2594A10.3 57 0.007802 1.252 1 1 +440225 NF1P2 neurofibromin 1 pseudogene 2 15 pseudo NF1HHS - 0.07232 0 1 +440248 HERC2P9 hect domain and RLD 2 pseudogene 9 15 pseudo - - 49 0.006707 1 0 +440253 WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 15 pseudo WHAMML2|WHDC1L2 WAS protein homolog associated with actin, golgi membranes and microtubules-like 2 (pseudogene)|WAS protein homology region 2 domain containing 1-like 2 (pseudogene) 16 0.00219 4.43 1 1 +440270 GOLGA8B golgin A8 family member B 15 protein-coding GOLGA5 golgin subfamily A member 8B|golgi autoantigen, golgin subfamily a, 8B|golgin-67 7 0.0009581 8.419 1 1 +440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 15 protein-coding GCN2|PVOD2 eIF-2-alpha kinase GCN2|GCN2 eIF2alpha kinase|GCN2-like protein|general control nonderepressible 2 85 0.01163 10.14 1 1 +440278 CATSPER2P1 cation channel sperm associated 2 pseudogene 1 15 pseudo - - 24 0.003285 4.552 1 1 +440279 UNC13C unc-13 homolog C 15 protein-coding - protein unc-13 homolog C|Munc13-3|unc-13-like 3 296 0.04051 1.692 1 1 +440292 LOC440292 COMM domain-containing protein 4-like 15 protein-coding - - 0 0 1 0 +440295 GOLGA6L9 golgin A6 family-like 9 15 protein-coding GOLGA6L20 golgin subfamily A member 6-like protein 9|golgi autoantigen, golgin subfamily a, 6-like 9|golgin A6 family-like 20|putative golgin subfamily A member 6-like protein 20 6.893 0 1 +440307 TTLL13P tubulin tyrosine ligase like 13, pseudogene 15 pseudo TTLL13 tubulin polyglutamylase TTLL13|tubulin tyrosine ligase-like family member 13, pseudogene|tubulin tyrosine ligase-like family, member 13|tubulin--tyrosine ligase-like protein 13 33 0.004517 3.143 1 1 +440311 LOC440311 glioma tumor suppressor candidate region gene 2 pseudogene 15 pseudo - - 3 0.0004106 1 0 +440313 LOC440313 protein enabled homolog 15 ncRNA - - 0 0 1 0 +440335 SMIM22 small integral membrane protein 22 16 protein-coding - small integral membrane protein 22 1 0.0001369 1 0 +440345 NPIPB4 nuclear pore complex interacting protein family member B4 16 protein-coding 61E3.4 nuclear pore complex-interacting protein family member B4|nuclear pore complex interacting protein-like 8 0.001095 1 0 +440348 NPIPB15 nuclear pore complex interacting protein family member B15 16 protein-coding A-761H5.4|NPIPL2 nuclear pore complex-interacting protein family member B15|nuclear pore complex interacting protein-like 2 37 0.005064 1 0 +440350 NPIPB7 nuclear pore complex interacting protein family member B7 16 pseudo A-575C2.4|A-761H5.5|NPIPL1 nuclear pore complex-interacting protein-like 1 7 0.0009581 1 0 +440352 SNX29P2 sorting nexin 29 pseudogene 2 16 pseudo RUNDC2C RUN domain containing 2C 39 0.005338 4.147 1 1 +440354 SMG1P2 SMG1P2, nonsense mediated mRNA decay associated PI3K related kinase pseudogene 2 16 pseudo - SMG1 pseudogene 2|smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 6.698 0 1 +440356 CDIPT-AS1 CDIPT antisense RNA 1 (head to head) 16 ncRNA - CTD-2574D22.5|Putative uncharacterized protein LOC440356 1 0.0001369 1.667 1 1 +440359 YBX3P1 Y-box binding protein 3 pseudogene 1 16 pseudo CSDAP1 cold shock domain protein A pseudogene 1 5.312 0 1 +440362 1.865 0 1 +440366 HERC2P8 hect domain and RLD 2 pseudogene 8 16 pseudo - putative HERC2-like protein 3 1 0.0001369 1 0 +440375 RAB43P1 RAB43 pseudogene 1 16 pseudo RAB41P|RAB43P RAB41, member RAS homolog family, pseudogene 0 0 1 0 +440387 CTRB2 chymotrypsinogen B2 16 protein-coding - chymotrypsinogen B2|chymotrypsin B2 9 0.001232 0.654 1 1 +440400 RNASEK ribonuclease K 17 protein-coding - ribonuclease kappa|RNase kappa|RNase kappa-02 isoform|ribonuclease, RNase K 5 0.0006844 11.13 1 1 +440419 TBC1D3P5 TBC1 domain family member 3 pseudogene 5 17 pseudo - TBC1 domain family, member 29 pseudogene|TBC1 domain family, member 3H pseudogene 61 0.008349 1 0 +440423 SUZ12P1 SUZ12 polycomb repressive complex 2 subunit pseudogene 1 17 pseudo SUZ12P suppressor of zeste 12 homolog pseudogene 1 41 0.005612 7.25 1 1 +440435 GPR179 G protein-coupled receptor 179 17 protein-coding CSNB1E|GPR158L|GPR158L1 probable G-protein coupled receptor 179|GPR158-like 1|probable G-protein coupled receptor 158-like 1 148 0.02026 2.207 1 1 +440452 TBC1D3P2 TBC1 domain family member 3 pseudogene 2 17 pseudo - - 86 0.01177 0.157 1 1 +440456 PLEKHM1P1 pleckstrin homology and RUN domain containing M1 pseudogene 1 17 pseudo PLEKHM1P pleckstrin homology domain containing, family M (with RUN domain) member 1 pseudogene 58 0.007939 7.525 1 1 +440459 SLC16A6P1 SLC16A6 pseudogene 1 17 pseudo - solute carrier family 16, member 6 (monocarboxylic acid transporter 7) pseudogene|solute carrier family 16, member 6 pseudogene 4 0.0005475 1 0 +440461 LOC440461 Rho GTPase activating protein 27 pseudogene 17 pseudo - - 2.071 0 1 +440465 BAIAP2-AS1 BAIAP2 antisense RNA 1 (head to head) 17 ncRNA - BAIAP2 antisense RNA 1 (non-protein coding) 7 0.0009581 9.184 1 1 +440482 ANKRD20A5P ankyrin repeat domain 20 family member A5, pseudogene 18 pseudo ANKRD20A5 Putative ankyrin repeat domain-containing protein 20A-like protein MGC26718|ankyrin repeat domain 20 family, member A4 pseudogene|ankyrin repeat domain-containing protein 20A-like protein MGC26718|putative ankyrin repeat domain-containing protein 20A5 41 0.005612 1 0 +440498 HSBP1L1 heat shock factor binding protein 1 like 1 18 protein-coding - heat shock factor-binding protein 1-like protein 1 3 0.0004106 6.99 1 1 +440503 PLIN5 perilipin 5 19 protein-coding LSDA5|LSDP5|MLDP|OXPAT perilipin-5|lipid storage droplet protein 5 36 0.004927 5.294 1 1 +440508 CLEC4GP1 C-type lectin domain family 4 member G pseudogene 1 19 pseudo - C-type lectin superfamily 4, member G pseudogene 1 0.0001369 1.279 1 1 +440515 ZNF506 zinc finger protein 506 19 protein-coding - zinc finger protein 506 31 0.004243 8.279 1 1 +440519 ZNF724 zinc finger protein 724 19 pseudo ZNF724P zinc finger protein 724, pseudogene 32 0.00438 1 0 +440533 PSG8 pregnancy specific beta-1-glycoprotein 8 19 protein-coding PSG1 pregnancy-specific beta-1-glycoprotein 8|C1 alternate|C2 alternate|C3 alternate|PS-beta-G-8|PSBG-8|pregnancy-specific beta-1 glycoprotein|pregnancy-specific glycoprotein 8 93 0.01273 0.4806 1 1 +440556 LINC00982 long intergenic non-protein coding RNA 982 1 ncRNA - - 6 0.0008212 2.86 1 1 +440560 PRAMEF11 PRAME family member 11 1 protein-coding - PRAME family member 11 45 0.006159 0.2518 1 1 +440561 PRAMEF6 PRAME family member 6 1 protein-coding - PRAME family member 6 21 0.002874 0.1929 1 1 +440563 HNRNPCL2 heterogeneous nuclear ribonucleoprotein C-like 2 1 protein-coding HNRNPCP5 heterogeneous nuclear ribonucleoprotein C-like 2|heterogeneous nuclear ribonucleoprotein C pseudogene 5|hnRNP C-like-2 0.7588 0 1 +440567 UQCRHL ubiquinol-cytochrome c reductase hinge protein like 1 protein-coding - cytochrome b-c1 complex subunit 6-like, mitochondrial|hCG25371 1 0.0001369 8.922 1 1 +440570 LOC440570 uncharacterized LOC440570 1 ncRNA - - 3 0.0004106 1 0 +440574 MINOS1 mitochondrial inner membrane organizing system 1 1 protein-coding C1orf151|MIO10|Mic10 MICOS complex subunit MIC10|RP5-1056L3.2|UPF0327 protein C1orf151|mitochondrial inner membrane organizing system protein 1 6 0.0008212 10.1 1 1 +440584 SLC2A1-AS1 SLC2A1 antisense RNA 1 1 ncRNA - SLC2A1 antisense RNA 1 (non-protein coding) 0 0 1 0 +440585 FAM183A family with sequence similarity 183 member A 1 protein-coding - protein FAM183A|hCG23177 8 0.001095 2.058 1 1 +440590 ZYG11A zyg-11 family member A, cell cycle regulator 1 protein-coding ZYG11 protein zyg-11 homolog A|ZYG-11A early embryogenesis protein|zyg-11 homolog A 23 0.003148 3.783 1 1 +440603 BCL2L15 BCL2 like 15 1 protein-coding Bfk|C1orf178 bcl-2-like protein 15|bcl2-L-15|pro-apoptotic Bcl-2 protein 8 0.001095 4.121 1 1 +440686 HIST2H3PS2 histone cluster 2 H3 pseudogene 2 1 pseudo p06 histone 2, H3, pseudogene 2 0 0 1 0 +440689 HIST2H2BF histone cluster 2 H2B family member f 1 protein-coding - histone H2B type 2-F|histone cluster 2, H2bf 18 0.002464 5.64 1 1 +440695 ETV3L ETS variant 3 like 1 protein-coding - ETS translocation variant 3-like protein|ets variant 3-like|ets variant gene 3-like 41 0.005612 1.986 1 1 +440699 LRRC52 leucine rich repeat containing 52 1 protein-coding - leucine-rich repeat-containing protein 52|BK channel auxiliary gamma subunit LRRC52|BK channel auxilliary gamma subunit LRRC52 26 0.003559 0.7757 1 1 +440712 C1orf186 chromosome 1 open reading frame 186 1 protein-coding RHEX uncharacterized protein C1orf186|regulator of human erythroid cell expansion 12 0.001642 3.666 1 1 +440730 TRIM67 tripartite motif containing 67 1 protein-coding TNL tripartite motif-containing protein 67|TRIM9-like protein TNL 64 0.00876 2.752 1 1 +440738 MAP1LC3C microtubule associated protein 1 light chain 3 gamma 1 protein-coding ATG8J|LC3C microtubule-associated proteins 1A/1B light chain 3C|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 22 0.003011 2.171 1 1 +440742 LOC440742 uncharacterized LOC440742 1 unknown - - 0 0 1 0 +440757 LINC00851 long intergenic non-protein coding RNA 851 20 ncRNA DZANK1-AS1 DZANK1 antisense RNA 1 (non-protein coding)|DZANK1 antisense RNA 1 (tail to tail) 1 0.0001369 1 0 +440799 P2RX6P purinergic receptor P2X 6 pseudogene 22 pseudo - purinergic receptor P2X, ligand gated ion channel, 6 pseudogene|purinergic receptor P2X-like 1, orphan receptor pseudogene 13 0.001779 0.005036 1 1 +440804 RIMBP3B RIMS binding protein 3B 22 protein-coding RIM-BP3.2|RIM-BP3.B|RIMBP3.2 RIMS-binding protein 3B|RIMS binding protein 3.2 2 0.0002737 1 0 +440822 PIWIL3 piwi like RNA-mediated gene silencing 3 22 protein-coding HIWI3 piwi-like protein 3|piwi-like 3 70 0.009581 0.3356 1 1 +440823 MIAT myocardial infarction associated transcript (non-protein coding) 22 ncRNA C22orf35|GOMAFU|LINC00066|NCRNA00066|RNCR2|lncRNA-MIAT MI related novel mRNA|long intergenic non-protein coding RNA 66 3 0.0004106 7.196 1 1 +440836 ODF3B outer dense fiber of sperm tails 3B 22 protein-coding ODF3L3 outer dense fiber protein 3B|orf2 5' to PD-ECGF/TP|outer dense fiber protein 3-like protein 3 12 0.001642 6.913 1 1 +440854 CAPN14 calpain 14 2 protein-coding - calpain-14|CANP 14|calcium-activated neutral proteinase 14 20 0.002737 2.671 1 1 +440888 ACTR3BP2 ACTR3B pseudogene 2 2 pseudo FKSG73 ARP3 actin-related protein 3 homolog B pseudogene 2 1 0.0001369 0.01821 1 1 +440896 LOC440896 uncharacterized LOC440896 9 ncRNA - - 0.9618 0 1 +440905 FAR2P1 fatty acyl-CoA reductase 2 pseudogene 1 2 pseudo HEL-182 epididymis luminal protein 182|fatty acyl-CoA reductase 2-like 4.07 0 1 +440910 LOC440910 uncharacterized LOC440910 2 ncRNA - - 1 0.0001369 1 0 +440915 POTEKP POTE ankyrin domain family member K, pseudogene 2 pseudo ACT|ACTBL3|POTE2delta|POTEK POTE ankyrin domain family member K|actin, beta-like 3|actin-like protein|beta-actin-like protein 3|kappa-actin 3 0.0004106 1 0 +440925 LINC01124 long intergenic non-protein coding RNA 1124 2 ncRNA - - 3.084 0 1 +440944 THUMPD3-AS1 THUMPD3 antisense RNA 1 3 ncRNA SETD5-AS1 SETD5 antisense RNA 1 7 0.0009581 7.76 1 1 +440955 TMEM89 transmembrane protein 89 3 protein-coding - transmembrane protein 89 11 0.001506 0.2481 1 1 +440956 IQCF6 IQ motif containing F6 3 protein-coding - IQ domain-containing protein F6 3 0.0004106 0.08176 1 1 +440957 SMIM4 small integral membrane protein 4 3 protein-coding C3orf78 small integral membrane protein 4|UPF0640 protein C3orf78 2 0.0002737 7.294 1 1 +440970 LINC00971 long intergenic non-protein coding RNA 971 3 ncRNA - - 16 0.00219 1 0 +440981 LOC440981 phospholipid scramblase-like 3 protein-coding - uncharacterized protein LOC440981|phospholipid scramblase 1-like 1 0.0001369 1 0 +440993 LINC00969 long intergenic non-protein coding RNA 969 3 ncRNA - - 254 0.03477 1 0 +441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like 4 protein-coding - probable bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase 2|MTHFD2-like|NADP-dependent methylenetetrahydrofolate dehydrogenase 2-like protein|tetrahydrofolate dehydrogenase/cyclohydrolase 34 0.004654 7.655 1 1 +441027 TMEM150C transmembrane protein 150C 4 protein-coding - transmembrane protein 150C 14 0.001916 6.722 1 1 +441032 EEF1A1P9 eukaryotic translation elongation factor 1 alpha 1 pseudogene 9 4 pseudo EEF1AL7 eukaryotic translation elongation factor 1 alpha-like 7 1 0.0001369 12.14 1 1 +441046 GUSBP5 glucuronidase, beta pseudogene 5 4 pseudo GYPELOC441046 - 7 0.0009581 3.257 1 1 +441051 HSP90AA6P heat shock protein 90 alpha family class A member 6, pseudogene 4 pseudo HSP90Af heat shock protein 90Af|heat shock protein 90kDa alpha (cytosolic), class A member 1 pseudogene|heat shock protein 90kDa alpha (cytosolic), class A member 6, pseudogene|heat shock protein 90kDa alpha family class A member 6, pseudogene 3 0.0004106 1 0 +441054 C4orf47 chromosome 4 open reading frame 47 4 protein-coding - UPF0602 protein C4orf47 12 0.001642 2.987 1 1 +441061 MARCH11 membrane associated ring-CH-type finger 11 5 protein-coding MARCH-XI E3 ubiquitin-protein ligase MARCH11|membrane associated ring finger 11|membrane-associated RING finger protein 11|membrane-associated RING-CH protein XI|membrane-associated ring finger (C3HC4) 11 45 0.006159 1.098 1 1 +441089 CRSP8P mediator complex subunit 27 pseudogene 5 pseudo - CRSP8 pseudogene|cofactor required for Sp1 transcriptional activation subunit 8 34kDa pseudogene 6.994 0 1 +441094 NR2F1-AS1 NR2F1 antisense RNA 1 5 ncRNA - - 3 0.0004106 6.149 1 1 +441108 C5orf56 chromosome 5 open reading frame 56 5 ncRNA - - 13 0.001779 6.213 1 1 +441116 FLJ16171 FLJ16171 protein 5 ncRNA - CTC-281M20.1 1 0.0001369 1 0 +441150 C6orf226 chromosome 6 open reading frame 226 6 protein-coding - uncharacterized protein C6orf226 4 0.0005475 6.534 1 1 +441151 TMEM151B transmembrane protein 151B 6 protein-coding C6orf137|TMEM193|bA444E17.5 transmembrane protein 151B|transmembrane protein 193 10 0.001369 4.367 1 1 +441160 KRT19P1 keratin 19 pseudogene 1 6 pseudo - - 1 0.0001369 1 0 +441161 OOEP oocyte expressed protein 6 protein-coding C6orf156|FLOPED|HOEP19|KHDC2 oocyte-expressed protein homolog|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 15 0.002053 1.18 1 1 +441167 LOC441167 hCG1820801 6 unknown - - 1 0.0001369 1 0 +441168 FAM26F family with sequence similarity 26 member F 6 protein-coding C6orf187|INAM|dJ93H18.5 protein FAM26F|IFN regulatory factor 3-dependent NK-activating molecule 14 0.001916 6.185 1 1 +441172 FLJ46906 uncharacterized LOC441172 6 ncRNA - - 1 0.0001369 1 0 +441177 LINC00602 long intergenic non-protein coding RNA 602 6 ncRNA - - 0.6975 0 1 +441191 RNF216P1 ring finger protein 216 pseudogene 1 7 pseudo RNF216L|hCG2040556 - 7 0.0009581 8.196 1 1 +441194 PMS2CL PMS2 C-terminal like pseudogene 7 pseudo PMS2P13 PMS1 homolog 2, mismatch repair system component pseudogene 13|postmeiotic segregation increased 2 pseudogene 13 68 0.009307 6.744 1 1 +441204 LOC441204 uncharacterized LOC441204 7 ncRNA - - 4.408 0 1 +441208 ZNRF2P1 zinc and ring finger 2 pseudogene 1 7 pseudo - - 5.572 0 1 +441212 RP9P retinitis pigmentosa 9 pseudogene 7 pseudo - PNAS-13 3 0.0004106 7.509 1 1 +441228 LOC441228 exportin for tRNA pseudogene 7 pseudo - - 1 0.0001369 1 0 +441234 ZNF716 zinc finger protein 716 7 protein-coding - zinc finger protein 716 90 0.01232 0.5863 1 1 +441250 TYW1B tRNA-yW synthesizing protein 1 homolog B 7 protein-coding LINC00069|NCRNA00069|RSAFD2 S-adenosyl-L-methionine-dependent tRNA 4-demethylwyosine synthase|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) 81 0.01109 6.298 1 1 +441251 SPDYE7P speedy/RINGO cell cycle regulator family member E7, pseudogene 7 pseudo - Williams Beuren syndrome chromosome region 19 pseudogene|speedy homolog E7, pseudogene 3 0.0004106 2.641 1 1 +441263 DTX2P1-UPK3BP1-PMS2P11 DTX2P1-UPK3BP1-PMS2P11 readthrough, transcribed pseudogene 7 pseudo PMS2L11 DTX2P1-UPK3BP1-PMS2P11 readthrough (non-protein coding)|PMS2-DTX2-UPK3B pseudogene 14 0.001916 5.061 1 1 +441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 7 protein-coding - speedy protein E3|Putative WBSCR19-like protein 7|putative Speedy protein E3|speedy homolog E3 30 0.004106 5.933 1 1 +441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 7 protein-coding SPDYB2-L1 speedy protein E2|Speedy B2-like 1|putative Speedy protein E2|speedy homolog E2 1 0.0001369 0.8054 1 1 +441282 AKR1B15 aldo-keto reductase family 1 member B15 7 protein-coding AKR1B10L|AKR1B10L, AK1R1B7|AKR1R1B7 aldo-keto reductase family 1 member B15|estradiol 17-beta-dehydrogenase AKR1B15|putative aldo-keto reductase family 1 member B15 46 0.006296 2.138 1 1 +441294 CTAGE15 CTAGE family member 15 7 protein-coding CTAGE15P|cTAGE-15 cTAGE family member 15|CTAGE family, member 15, pseudogene|protein cTAGE-15 3 0.0004106 5.244 1 1 +441295 OR2A9P olfactory receptor family 2 subfamily A member 9 pseudogene 7 pseudo FKSG35|HSDJ0798C17|OR2A19|OR2A22P|OR2A9 olfactory receptor, family 2, subfamily A, member 19|olfactory receptor, family 2, subfamily A, member 22 pseudogene 6.744 0 1 +441308 OR4F21 olfactory receptor family 4 subfamily F member 21 8 protein-coding OR4F21P olfactory receptor 4F21|olfactory receptor, family 4, subfamily F, member 21 pseudogene 0 0 0.02499 1 1 +441317 FAM90A7P putative protein FAM90A7 8 pseudo FAM90A7 - 0.3713 0 1 +441328 FAM90A10P putative protein FAM90A10 8 pseudo FAM90A10 - 0 0 1 0 +441332 FAM90A24P family with sequence similarity 90, member A24 8 pseudo FAM90A24 - 3 0.0004106 1 0 +441361 REXO1L5P REX1, RNA exonuclease 1 homolog-like 5, pseudogene 8 pseudo - REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 5, pseudogene 0 0 1 0 +441362 REXO1L6P REX1, RNA exonuclease 1 homolog-like 6, pseudogene 8 pseudo REXO1L7P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 6, pseudogene|REX1, RNA exonuclease 1 homolog-like 7, pseudogene 0 0 0.003981 1 1 +441376 AARD alanine and arginine rich domain containing protein 8 protein-coding C8orf85 alanine and arginine-rich domain-containing protein 18 0.002464 3.324 1 1 +441381 LRRC24 leucine rich repeat containing 24 8 protein-coding LRRC14OS leucine-rich repeat-containing protein 24 28 0.003832 4.338 1 1 +441394 SUGT1P1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone pseudogene 1 9 pseudo SGT1P|SUGT1P|bA255A11.1 SUGT1 pseudogene 1|bA255A11.10 (putative novel T cell receptor beta chain V region protein)|suppressor of G2 allele of SKP1 pseudogene 1 2.254 0 1 +441425 ANKRD20A3 ankyrin repeat domain 20 family member A3 9 protein-coding - ankyrin repeat domain-containing protein 20A3|ankyrin repeat domain 20A-related 5 0.0006844 3.037 1 1 +441430 ANKRD20A2 ankyrin repeat domain 20 family member A2 9 protein-coding - ankyrin repeat domain-containing protein 20A2 4 0.0005475 1 0 +441432 AQP7P3 aquaporin 7 pseudogene 3 9 pseudo AQPap-3 aquaporin pseudogene AQPap-3 0.8401 0 1 +441442 MYO5BP3 myosin VB pseudogene 3 9 pseudo - - 1 0.0001369 1 0 +441452 SPATA31C1 SPATA31 subfamily C member 1 9 protein-coding FAM75C1|SPATA31C2 spermatogenesis-associated protein 31C1|family with sequence similarity 75, member C1|spermatogenesis-associated protein 31C2 56 0.007665 0.6112 1 1 +441454 LOC441454 prothymosin, alpha pseudogene 9 pseudo - - 1.734 0 1 +441455 LOC441455 makorin ring finger protein 1 pseudogene 9 pseudo - - 2.486 0 1 +441457 NUTM2G NUT family member 2G 9 protein-coding FAM22G|NUTMG NUT family member 2G|family with sequence similarity 22, member G|family with sequence similarity 22, pseudogene|protein FAM22G 34 0.004654 1.871 1 1 +441459 ANKRD18B ankyrin repeat domain 18B 9 protein-coding bA255A11.3|bA255A11.5 ankyrin repeat domain-containing protein 18B 31 0.004243 1 0 +441476 STPG3 sperm-tail PG-rich repeat containing 3 9 protein-coding C9orf173 uncharacterized protein C9orf173 9 0.001232 1.543 1 1 +441478 NRARP NOTCH-regulated ankyrin repeat protein 9 protein-coding - notch-regulated ankyrin repeat-containing protein 7 0.0009581 8.486 1 1 +441502 RPS26P11 ribosomal protein S26 pseudogene 11 X pseudo RPS26L1|RPS26_22_1784|bA366E13.1 ribosomal protein S26-like 1 1.095 0 1 +441509 GLRA4 glycine receptor alpha 4 X protein-coding - glycine receptor subunit alpha-4 45 0.006159 0.4997 1 1 +441518 FAM127C family with sequence similarity 127 member C X protein-coding CXX1c|MAR8B protein FAM127C|mammalian retrotransposon derived protein 8B 11 0.001506 8.372 1 1 +441519 CT45A3 cancer/testis antigen family 45 member A3 X protein-coding CT45-3|CT45-4|CT45.3|CT45.4|CT45A4 cancer/testis antigen family 45 member A3|cancer/testis antigen 45-3|cancer/testis antigen 45-4|cancer/testis antigen 45A3|cancer/testis antigen 45A4|cancer/testis antigen CT45-3|cancer/testis antigen family 45 member A4 0.4497 0 1 +441520 0.3076 0 1 +441521 CT45A5 cancer/testis antigen family 45 member A5 X protein-coding CT45.5|CT455 cancer/testis antigen family 45 member A5|cancer/testis antigen 45-5|cancer/testis antigen 45A5|cancer/testis antigen CT45-5 13 0.001779 0.7096 1 1 +441525 SPANXN4 SPANX family member N4 X protein-coding CT11.9 sperm protein associated with the nucleus on the X chromosome N4|cancer/testis antigen family 11, member 9|nuclear-associated protein SPAN-Xn4 9 0.001232 0.00835 1 1 +441531 PGAM4 phosphoglycerate mutase family member 4 X protein-coding PGAM-B|PGAM1|PGAM3|dJ1000K24.1 phosphoglycerate mutase 4|phosphoglycerate mutase family 3|phosphoglycerate mutase processed protein|probable phosphoglycerate mutase 4 17 0.002327 5.97 1 1 +441543 TTTY6B testis-specific transcript, Y-linked 6B (non-protein coding) Y ncRNA LINC00128|NCRNA00128|TTTY6|TTY6 long intergenic non-protein coding RNA 128|testis-specific Y-linked 6, centromeric 0.01281 0 1 +441549 CDNF cerebral dopamine neurotrophic factor 10 protein-coding ARMETL1 cerebral dopamine neurotrophic factor|ARMET-like protein 1|arginine-rich, mutated in early stage tumors-like 1|conserved dopamine neurotrophic factor 11 0.001506 4.328 1 1 +441581 FRG2B FSHD region gene 2 family member B 10 protein-coding - protein FRG2-like-1|FSHD region gene 2 protein family member B|HSA10-FRG2 34 0.004654 0.2928 1 1 +441601 LOC441601 septin 7 pseudogene 11 pseudo - - 0.6037 0 1 +441608 OR5B3 olfactory receptor family 5 subfamily B member 3 11 protein-coding OR11-239|OR5B13|OST129 olfactory receptor 5B3|olfactory receptor 5B13|olfactory receptor OR11-239|olfactory receptor, family 5, subfamily B, member 13 46 0.006296 0.008458 1 1 +441631 TSPAN11 tetraspanin 11 12 protein-coding VSSW1971 tetraspanin-11|tspan-11 24 0.003285 6.863 1 1 +441639 OR9K2 olfactory receptor family 9 subfamily K member 2 12 protein-coding OR12-2 olfactory receptor 9K2|olfactory receptor OR12-2 38 0.005201 0.03312 1 1 +441662 TET1P1 tet methylcytosine dioxygenase 1 pseudogene 1 13 pseudo CXXC6P1 CXXC finger 6 pseudogene 1|CXXC zinc finger 6 pseudogene 1|tet oncogene 1 pseudogene 1 1 0.0001369 1 0 +441666 LOC441666 zinc finger protein 91 pseudogene 10 pseudo - - 4.46 0 1 +441669 OR4Q3 olfactory receptor family 4 subfamily Q member 3 14 protein-coding C14orf13|HSA6|OR14-3|OR4Q4|c14_5008 olfactory receptor 4Q3|olfactory receptor 4Q4|olfactory receptor OR14-3|olfactory receptor, family 4, subfamily Q, member 4 91 0.01246 0.02715 1 1 +441670 OR4M1 olfactory receptor family 4 subfamily M member 1 14 protein-coding OR14-7 olfactory receptor 4M1|olfactory receptor OR14-7 90 0.01232 0.02952 1 1 +441722 LOC441722 U2 small nuclear RNA auxiliary factor 1-like 4 pseudogene 15 pseudo - - 1 0.0001369 1 0 +441728 LOC441728 golgin-like pseudogene 15 pseudo - - 2 0.0002737 1 0 +441806 LOC441806 proteasome 26S subunit, non-ATPase 8 pseudogene 18 pseudo - proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 pseudogene 0 0 1 0 +441818 WBP11P1 WW domain binding protein 11 pseudogene 1 18 pseudo HsT3017 - 70 0.009581 3.215 1 1 +441864 TARM1 T cell-interacting, activating receptor on myeloid cells 1 19 protein-coding OLT-2 T-cell-interacting, activating receptor on myeloid cells protein 1|OSCAR-like transcript-2 protein 7 0.0009581 0.02999 1 1 +441869 ANKRD65 ankyrin repeat domain 65 1 protein-coding - ankyrin repeat domain-containing protein 65 12 0.001642 6.958 1 1 +441871 PRAMEF7 PRAME family member 7 1 protein-coding - PRAME family member 7 10 0.001369 1 0 +441897 PGCP1 progastricsin pseudogene 1 1 pseudo - progastricsin (pepsinogen C) pseudogene 1|progastricsin pseudogene 3 0.0004106 1 0 +441908 NBPF18P neuroblastoma breakpoint family member 18, pseudogene 1 pseudo - - 15 0.002053 1 0 +441911 OR10J3 olfactory receptor family 10 subfamily J member 3 1 protein-coding OR1-25|OR10J3P olfactory receptor 10J3|olfactory receptor OR1-25 pseudogene|olfactory receptor, family 10, subfamily J, member 3 pseudogene 71 0.009718 0.05444 1 1 +441932 OR2W5 olfactory receptor family 2 subfamily W member 5 (gene/pseudogene) 1 protein-coding OR2W5P|OST722 putative olfactory receptor 2W5|olfactory receptor 2W5|olfactory receptor, family 2, subfamily W, member 5 pseudogene 82 0.01122 0.04289 1 1 +441933 OR13G1 olfactory receptor family 13 subfamily G member 1 1 protein-coding OR1-37 olfactory receptor 13G1|olfactory receptor OR1-37 57 0.007802 0.06456 1 1 +441951 ZFAS1 ZNFX1 antisense RNA 1 20 ncRNA C20orf199|HSUP1|HSUP2|NCRNA00275|ZNFX1-AS1 Putative uncharacterized protein ZNFX1-AS1|ZNFX1 antisense RNA 1 (non-protein coding)|ZNFX1 antisense gene protein 1 13 0.001779 10.67 1 1 +442028 LOC442028 uncharacterized LOC442028 2 ncRNA - - 1 0.0001369 1 0 +442038 SULT1C3 sulfotransferase family 1C member 3 2 protein-coding ST1C3 sulfotransferase 1C3|sulfotransferase family, cytosolic, 1C, member 3 37 0.005064 0.2157 1 1 +442041 LOC442041 zinc finger protein 532 pseudogene 2 pseudo - - 0 0 1 0 +442078 KRT8P18 keratin 8 pseudogene 18 3 pseudo - - 1 0.0001369 1 0 +442113 LOC442113 protein tyrosine phosphatase, non-receptor type 11 pseudogene 4 pseudo - - 0 0 1 0 +442117 GALNTL6 polypeptide N-acetylgalactosaminyltransferase-like 6 4 protein-coding GALNACT20|GALNT17|GalNAc-T6L polypeptide N-acetylgalactosaminyltransferase-like 6|GaNTase 17|GalNAc transferase 17|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 17|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 20|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 6|galNAc-T17|polypeptide GalNAc transferase 17|polypeptide GalNAc transferase-like 6|pp-GaNTase 17|protein-UDP acetylgalactosaminyltransferase 17|putative polypeptide N-acetylgalactosaminyltransferase 17 86 0.01177 1.465 1 1 +442132 LOC442132 golgin A6 family-like 1 pseudogene 5 pseudo - - 1 0.0001369 1 0 +442184 OR2B3 olfactory receptor family 2 subfamily B member 3 6 protein-coding 6M1-1|OR2B3P|OR6-14|OR6-4 putative olfactory receptor 2B3|hs6M1-1|olfactory receptor 6-4|olfactory receptor OR6-14 38 0.005201 0.02817 1 1 +442185 OR2J1 olfactory receptor family 2 subfamily J member 1 (gene/pseudogene) 6 pseudo 6M1-4P|OR2J1P|OR6-15|OR6-5|dJ80I19.2|hs6M1-4 olfactory receptor OR6-15|olfactory receptor, family 2, subfamily J, member 1 pseudogene 12 0.001642 1 0 +442186 OR2J3 olfactory receptor family 2 subfamily J member 3 6 protein-coding 6M1-3|C3HEXS|HS6M1-3|OR6-16|OR6-6|OR6.3.6|ORL671 olfactory receptor 2J3|olfactory receptor 6-6|olfactory receptor OR6-16 60 0.008212 0.06659 1 1 +442191 OR14J1 olfactory receptor family 14 subfamily J member 1 6 protein-coding OR5U1|OR6-25|bA150A6.4|hs6M1-28 olfactory receptor 14J1|olfactory receptor 5U1|olfactory receptor OR6-25|olfactory receptor, family 5, subfamily U member 1 48 0.00657 0.01679 1 1 +442194 OR10C1 olfactory receptor family 10 subfamily C member 1 (gene/pseudogene) 6 protein-coding OR10C1P|OR10C2|OR6-31|hs6M1-17 olfactory receptor 10C1|olfactory receptor 10C2|olfactory receptor OR6-31|olfactory receptor, family 10, subfamily C, member 1|olfactory receptor, family 10, subfamily C, member 2|seven transmembrane helix receptor 49 0.006707 0.01302 1 1 +442213 PTCHD4 patched domain containing 4 6 protein-coding C6orf138|PTCH53|dJ402H5.2 patched domain-containing protein 4|p53-regulated patched protein|patched domain-containing protein C6orf138 108 0.01478 3.994 1 1 +442229 SLC25A51P1 solute carrier family 25 member 51 pseudogene 1 6 pseudo MCART3P|bA707M13.1 mitochondrial carrier triple repeat 3 pseudogene 0.4656 0 1 +442240 ZNF259P1 zinc finger protein 259 pseudogene 1 6 pseudo 354J5|ZNF259P zinc finger protein 259, pseudogene 3 0.0004106 1 0 +442245 GSTM2P1 glutathione S-transferase mu 2 pseudogene 1 6 pseudo - glutathione S-transferase mu 2 (muscle) pseudogene 1|glutathione S-transferase mu 2 pseudogene 1.227 0 1 +442247 RFPL4B ret finger protein like 4B 6 protein-coding RNF211 ret finger protein-like 4B|RING finger protein 211 34 0.004654 0.8832 1 1 +442308 TUBBP6 tubulin beta class I pseudogene 6 7 pseudo - tubulin, beta pseudogene 0.7872 0 1 +442319 ZNF727 zinc finger protein 727 7 protein-coding ZNF727P putative zinc finger protein 727|zinc finger protein 727 pseudogene 36 0.004927 2.417 1 1 +442361 OR2A2 olfactory receptor family 2 subfamily A member 2 7 protein-coding OR2A17P|OR2A2P|OR7-11|OST008 olfactory receptor 2A2|olfactory receptor 2A17|olfactory receptor OR7-11|olfactory receptor, family 2, subfamily A, member 17 pseudogene|olfactory receptor, family 2, subfamily A, member 2 pseudogene 56 0.007665 0.06337 1 1 +442388 SDR16C6P short chain dehydrogenase/reductase family 16C, member 6, pseudogene 8 pseudo SDR16C6 - 14 0.001916 0.01679 1 1 +442421 PTGER4P2-CDK2AP2P2 PTGER4P2-CDK2AP2P2 readthrough, transcribed pseudogene 9 pseudo - - 2.965 0 1 +442425 FOXB2 forkhead box B2 9 protein-coding bA159H20.4 forkhead box protein B2 33 0.004517 0.2403 1 1 +442444 FAM47C family with sequence similarity 47 member C X protein-coding - putative protein FAM47C 218 0.02984 0.2674 1 1 +442454 UQCRBP1 ubiquinol-cytochrome c reductase binding protein pseudogene 1 X pseudo - - 6.784 0 1 +442459 XRCC6P5 X-ray repair cross complementing 6 pseudogene 5 X pseudo - DNA repair protein|X-ray repair complementing defective repair in Chinese hamster cells 6 pseudogene 5|X-ray repair complementing defective repair pseudogene 1.122 0 1 +442523 DPY19L2P4 DPY19L2 pseudogene 4 7 pseudo - dpy-19-like 2 pseudogene 4 2 0.0002737 2.287 1 1 +442578 STAG3L3 stromal antigen 3-like 3 (pseudogene) 7 pseudo STAG3L1|STAG3L2|STAG3L3P STAG3-like protein 3|stromal antigen 3 pseudogene 3 0.0004106 7.355 1 1 +442582 STAG3L2 stromal antigen 3-like 2 (pseudogene) 7 pseudo STAG3L1|STAG3L2P|STAG3L3 STAG3-like protein 2 51 0.006981 5.97 1 1 +442590 SPDYE5 speedy/RINGO cell cycle regulator family member E5 7 protein-coding - putative speedy protein E5|speedy homolog E5 4 0.0005475 2.829 1 1 +442720 EIF3IP1 eukaryotic translation initiation factor 3 subunit I pseudogene 1 7 pseudo RG208K23 eukaryotic translation initiation factor 3 subunit 2 pseudogene 1 0.0001369 0.818 1 1 +442721 LMOD2 leiomodin 2 7 protein-coding C-LMOD|CLMOD leiomodin-2|cardiac leiomodin|leiomodin|leiomodin 2 (cardiac) 37 0.005064 0.7077 1 1 +442727 LOC442727 prothymosin, alpha pseudogene 7 pseudo - - 2 0.0002737 1 0 +442862 PRY2 PTPN13-like, Y-linked 2 Y protein-coding PTPN13LY2 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 0.1991 0 1 +442890 MIR133B microRNA 133b 6 ncRNA MIRN133B|miRNA133B|mir-133b hsa-mir-133b 2 0.0002737 1 0 +442892 MIR148B microRNA 148b 12 ncRNA MIRN148B|mir-148b hsa-mir-148b 0 0 1 0 +442893 MIR151A microRNA 151a 8 ncRNA MIR151|MIRN151|hsa-mir-151|hsa-mir-151a microRNA 151 1 0.0001369 1 0 +442895 MIR302C microRNA 302c 4 ncRNA MIRN302C|mir-302c hsa-mir-302c 1 0.0001369 1 0 +442897 MIR323A microRNA 323a 14 ncRNA MIR323|MIRN323|hsa-mir-323|hsa-mir-323a|mir-323a microRNA 323 4 0.0005475 1 0 +442899 MIR325 microRNA 325 X ncRNA MIRN325|hsa-mir-325 - 2 0.0002737 1 0 +442901 MIR328 microRNA 328 16 ncRNA MIRN328|hsa-mir-328|mir-328 - 3 0.0004106 1 0 +442902 MIR330 microRNA 330 19 ncRNA MIRN330|hsa-mir-330|mir-330 - 0 0 1 0 +442903 MIR331 microRNA 331 12 ncRNA MIRN331|hsa-mir-331|mir-331 - 2 0.0002737 1 0 +442904 MIR335 microRNA 335 7 ncRNA MIRN335|hsa-mir-335|miRNA335|mir-335 - 1 0.0001369 1 0 +442905 MIR337 microRNA 337 14 ncRNA MIRN337|hsa-mir-337|mir-337 - 1 0.0001369 1 0 +442908 MIR340 microRNA 340 5 ncRNA MIRN340|hsa-mir-340|mir-340 - 0 0 1 0 +442909 MIR342 microRNA 342 14 ncRNA MIRN342|hsa-mir-342 - 1 0.0001369 1 0 +442913 MIR376C microRNA 376c 14 ncRNA MIR368|MIRN368|MIRN376C|hsa-mir-368|miRNA368|mir-376c hsa-mir-376c|microRNA 368 2 0.0002737 1 0 +442914 MIR369 microRNA 369 14 ncRNA MIR369-3|MIRN369|MIRN369-3|hsa-mir-369|mir-369 - 4 0.0005475 1 0 +442915 MIR370 microRNA 370 14 ncRNA MIRN370|hsa-mir-370|mir-370 - 1 0.0001369 1 0 +442918 MIR373 microRNA 373 19 ncRNA MIRN373|hsa-mir-373|miRNA373|mir-373 - 0 0 1 0 +442919 MIR374A microRNA 374a X ncRNA MIRN374|MIRN374A|hsa-mir-374|mir-374a hsa-mir-374a|microRNA 374 0 0 1 0 +444882 IGFL4 IGF like family member 4 19 protein-coding - insulin growth factor-like family member 4 13 0.001779 0.6271 1 1 +445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 7 protein-coding ARHGEF5L rho guanine nucleotide exchange factor 35|Rho guanine nucleotide exchange factor (GEF) 35|rho guanine nucleotide exchange factor 5-like protein 13 0.001779 8.135 1 1 +445347 TARP TCR gamma alternate reading frame protein 7 protein-coding CD3G|TCRG|TCRGC1|TCRGC2|TCRGV TCR gamma alternate reading frame protein|T cell receptor gamma chain variable|T-cell receptor gamma-chain constant region|TCR V gamma 3J2C2|TCR V3-JP2-Cgamma2|TCR- gamma V-IV|Vgamma9ChainTCRMOP|antigen, T-cell receptor 3 0.0004106 3.526 1 1 +445372 TRIM6-TRIM34 TRIM6-TRIM34 readthrough 11 protein-coding IFP1|RNF21|TRIM34 tripartite motif-containing 6 and tripartite motif-containing 34|interferon-responsive finger protein 1 long form 31 0.004243 0.2499 1 1 +445571 CBWD3 COBW domain containing 3 9 protein-coding bA561O23.1 COBW domain-containing protein 3|cobalamin synthase W domain-containing protein 3|cobalamin synthetase W domain-containing protein 3 10 0.001369 8.005 1 1 +445577 C9orf129 chromosome 9 open reading frame 129 9 protein-coding bA165J3.3 putative uncharacterized protein C9orf129 6 0.0008212 5.985 1 1 +445582 POTEE POTE ankyrin domain family member E 2 protein-coding A26C1|A26C1A|CT104.2|POTE-2|POTE2|POTE2gamma POTE ankyrin domain family member E|ANKRD26-like family C member 1A|cancer/testis antigen family 104, member 2|prostate, ovary, testis-expressed protein on chromosome 2|protein expressed in prostate, ovary, testis, and placenta 2 104 0.01423 2.538 1 1 +445815 PALM2-AKAP2 PALM2-AKAP2 readthrough 9 protein-coding AKAP2 PALM2-AKAP2 protein|PALM2-AKAP2 readthrough transcript 84 0.0115 9.615 1 1 +448831 FRG2 FSHD region gene 2 4 protein-coding FRG2A protein FRG2|FSHD region gene 2 protein 6 0.0008212 0.155 1 1 +448834 KPRP keratinocyte proline rich protein 1 protein-coding C1orf45 keratinocyte proline-rich protein|keratinocyte expressed, proline-rich protein 101 0.01382 0.8864 1 1 +448835 LCE6A late cornified envelope 6A 1 protein-coding C1orf44 late cornified envelope protein 6A 3 0.0004106 0.1616 1 1 +449520 GGNBP1 gametogenetin binding protein 1 (pseudogene) 6 pseudo - - 2 0.0002737 0.1809 1 1 +474148 TTTY3B testis-specific transcript, Y-linked 3B (non-protein coding) Y ncRNA LNCRNA00122|NCRNA00122 long intergenic non-protein coding RNA 122|testis-specific transcript, Y-linked 3, centromeric 0.002033 0 1 +474150 TTTY4C testis-specific transcript, Y-linked 4C (non-protein coding) Y ncRNA LINC00125|NCRNA00125 long intergenic non-protein coding RNA 125|testis-specific transcript, Y-linked 4, telomeric 0.09624 0 1 +474151 TTTY17B testis-specific transcript, Y-linked 17B (non-protein coding) Y ncRNA NCRNA00141 testis-specific transcript, Y-linked 17, middle 0.0002037 0 1 +474170 LRRC37A2 leucine rich repeat containing 37 member A2 17 protein-coding LRRC37 leucine-rich repeat-containing protein 37A2|c114 SLIT-like testicular protein 25 0.003422 6.714 1 1 +474338 SUMO1P3 SUMO1 pseudogene 3 1 pseudo - SUMO1 pseudogene 3 (functional) 7.668 0 1 +474343 SPIN2B spindlin family member 2B X protein-coding SPIN-2|SPIN-2B|SPIN2_duplicate|TDRD26|dJ323P24.2 spindlin-2B|spindlin family, member 2 duplicate|spindlin-like protein 2B|telomeric SPIN2 copy 6 0.0008212 6.593 1 1 +474344 GIMAP6 GTPase, IMAP family member 6 7 protein-coding IAN-2|IAN-6|IAN2|IAN6 GTPase IMAP family member 6|immune associated nucleotide 2|immune associated nucleotide 6|immune-associated nucleotide-binding protein 6 52 0.007117 8.186 1 1 +474354 LRRC18 leucine rich repeat containing 18 10 protein-coding UNQ933|UNQ9338|VKGE9338 leucine-rich repeat-containing protein 18 33 0.004517 0.9172 1 1 +474382 H2AFB1 H2A histone family member B1 X protein-coding H2A.Bbd histone H2A-Bbd type 1|H2A Barr body-deficient 1 0.0001369 1.47 1 1 +474383 F8A2 coagulation factor VIII-associated 2 X protein-coding - factor VIII intron 22 protein|coagulation factor VIII-associated (intronic transcript) 2|cpG island protein 1 0.0001369 1 0 +492303 GEMIN8P4 gem nuclear organelle associated protein 8 pseudogene 4 1 pseudo - FAM51A1 pseudogene 4.741 0 1 +492307 C8orf22 chromosome 8 open reading frame 22 8 protein-coding - pancreatic progenitor cell differentiation and proliferation factor-like protein|exocrine differentiation and proliferation factor-like protein 16 0.00219 0.4768 1 1 +492311 IGIP IgA inducing protein 5 protein-coding C5orf53 IgA-inducing protein homolog|IgA-inducing protein homolog (Bos taurus) 9 0.001232 8.157 1 1 +493753 COA5 cytochrome c oxidase assembly factor 5 2 protein-coding 6330578E17Rik|C2orf64|CEMCOX3|Pet191 cytochrome c oxidase assembly factor 5|protein C2orf64 6 0.0008212 9.086 1 1 +493754 GS1-124K5.11 RAB guanine nucleotide exchange factor 1 pseudogene 7 pseudo - - 8 0.001095 8.905 1 1 +493812 HCG11 HLA complex group 11 (non-protein coding) 6 ncRNA CTA-14H9.3|bK14H9.3 - 1 0.0001369 7.651 1 1 +493829 TRIM72 tripartite motif containing 72 16 protein-coding MG53 tripartite motif-containing protein 72|mitsugumin-53|tripartite motif containing 72, E3 ubiquitin protein ligase 34 0.004654 0.9942 1 1 +493856 CISD2 CDGSH iron sulfur domain 2 4 protein-coding ERIS|Miner1|NAF-1|WFS2|ZCD2 CDGSH iron-sulfur domain-containing protein 2|endoplasmic reticulum intermembrane small protein|mitoNEET-related 1 protein|nutrient-deprivation autophagy factor-1|zinc finger, CDGSH-type domain 2 4 0.0005475 9.316 1 1 +493860 CCDC73 coiled-coil domain containing 73 11 protein-coding NY-SAR-79 coiled-coil domain-containing protein 73|sarcoma antigen NY-SAR-79 84 0.0115 5.312 1 1 +493861 EID3 EP300 interacting inhibitor of differentiation 3 12 protein-coding NS4EB|NSE4B|NSMCE4B EP300-interacting inhibitor of differentiation 3|E1A-like inhibitor of differentiation 3|EID-1-like inhibitor of differentiation 3|EID-3|non-SMC element 4 homolog B|non-structural maintenance of chromosomes element 4 homolog B|testis tissue sperm-binding protein Li 96mP 18 0.002464 4.666 1 1 +493869 GPX8 glutathione peroxidase 8 (putative) 5 protein-coding EPLA847|GPx-8|GSHPx-8|UNQ847 probable glutathione peroxidase 8 17 0.002327 8.65 1 1 +493901 RNASE12 ribonuclease A family member 12 (inactive) 14 protein-coding HEL-S-85p|RAI1 probable inactive ribonuclease-like protein 12|epididymis secretory sperm binding protein Li 85p|ribonuclease A I1|ribonuclease, RNase A family, 12 (non-active)|ribonuclease-like protein 12 11 0.001506 0.05206 1 1 +493911 PHOSPHO2 phosphatase, orphan 2 2 protein-coding - pyridoxal phosphate phosphatase PHOSPHO2 23 0.003148 5.601 1 1 +493913 PAPPA-AS1 PAPPA antisense RNA 1 9 ncRNA DIPAS|NCRNA00156|PAPPA-AS|PAPPAAS|PAPPAS|TAF2C2|TAF4B|TAFII105 DIPLA1-antisense expressed|PAPPA antisense RNA (non-protein coding)|PAPPA antisense RNA 1 (non-protein coding)|PAPPA antisense RNA 1 (tail to tail) 1 0.0001369 1 0 +494115 RBMXL1 RNA binding motif protein, X-linked like 1 1 protein-coding RBM1 RNA binding motif protein, X-linked-like-1|heterogeneous nuclear ribonucleoprotein G-like 1 49 0.006707 9.179 1 1 +494118 SPANXN1 SPANX family member N1 X protein-coding CT11.6 sperm protein associated with the nucleus on the X chromosome N1|cancer/testis antigen family 11, member 6|nuclear-associated protein SPAN-Xn1 21 0.002874 0.03045 1 1 +494119 SPANXN2 SPANX family member N2 X protein-coding CT11.7|SPANX-N2 sperm protein associated with the nucleus on the X chromosome N2|cancer/testis antigen family 11, member 7|nuclear-associated protein SPAN-Xn2 46 0.006296 0.01583 1 1 +494141 LOC494141 solute carrier family 25 member 51 pseudogene 11 pseudo - mitochondrial carrier triple repeat 1 pseudogene 1 0.0001369 0.2573 1 1 +494143 CHAC2 ChaC cation transport regulator homolog 2 2 protein-coding - putative glutathione-specific gamma-glutamylcyclotransferase 2|ChaC, cation transport regulator-like 2|cation transport regulator-like protein 2|gamma-GCG 2|gamma-GCT acting on glutathione homolog 2 11 0.001506 5.698 1 1 +494188 FBXO47 F-box protein 47 17 protein-coding - F-box only protein 47 33 0.004517 0.2398 1 1 +494197 SPANXN5 SPANX family member N5 X protein-coding CT11.10|SPANX-N5 sperm protein associated with the nucleus on the X chromosome N5|cancer/testis antigen family 11, member 10|nuclear-associated protein SPAN-Xn5 9 0.001232 0.04384 1 1 +494323 MIR361 microRNA 361 X ncRNA MIRN361|hsa-mir-361|mir-361 - 0 0 1 0 +494326 MIR377 microRNA 377 14 ncRNA MIRN377|hsa-mir-377|mir-377 - 4 0.0005475 1 0 +494328 MIR379 microRNA 379 14 ncRNA MIRN379|hsa-mir-379|mir-379 - 9 0.001232 1 0 +494329 MIR380 microRNA 380 14 ncRNA MIR380-3p|MIRN380|hsa-mir-380|mir-380 - 1 0.0001369 1 0 +494331 MIR382 microRNA 382 14 ncRNA MIRN382|hsa-mir-382|mir-382 - 2 0.0002737 1 0 +494332 MIR383 microRNA 383 8 ncRNA MIRN383|hsa-mir-383|mir-383 - 1 0.0001369 1 0 +494334 MIR422A microRNA 422a 15 ncRNA MIRN422A hsa-mir-422a|miR-422a 2 0.0002737 1 0 +494336 MIR424 microRNA 424 X ncRNA MIR322|MIRN424|hsa-mir-424|miRNA424|mir-424 - 0 0 1 0 +494337 MIR425 microRNA 425 3 ncRNA MIRN425|hsa-mir-425|mir-425 - 1 0.0001369 1 0 +494470 RNF165 ring finger protein 165 18 protein-coding ARKL2|RNF111L2 RING finger protein 165 36 0.004927 4.803 1 1 +494513 DFNB59 deafness, autosomal recessive 59 2 protein-coding PJVK pejvakin|autosomal recessive deafness type 59 protein 28 0.003832 4.14 1 1 +494514 TYMSOS TYMS opposite strand 18 protein-coding C18orf56 TYMS opposite strand protein 8 0.001095 4.301 1 1 +494551 WEE2 WEE1 homolog 2 7 protein-coding WEE1B wee1-like protein kinase 2|wee1-like protein kinase 1B|wee1B kinase 48 0.00657 0.9756 1 1 +497048 KU-MEL-3 uncharacterized LOC497048 6 ncRNA - - 2 0.0002737 1 0 +497049 FLJ25758 microtubule affinity regulating kinase 1 pseudogene 19 pseudo - - 0.1968 0 1 +497189 TIFAB TIFA inhibitor 5 protein-coding - TRAF-interacting protein with FHA domain-containing protein B|TIFA-like protein|TIFA-related protein TIFAB|TRAF-interacting protein with forkhead-associated domain, family member B 22 0.003011 2.54 1 1 +497190 CLEC18B C-type lectin domain family 18 member B 16 protein-coding MRCL2 C-type lectin domain family 18 member B|mannose receptor-like 2|mannose receptor-like protein 1|secretory protein LOC497190 28 0.003832 3.13 1 1 +497258 BDNF-AS BDNF antisense RNA 11 ncRNA ANTI-BDNF|BDNF|BDNF-AS1|BDNFOS|NCRNA00049 BDNF antisense RNA (non-protein coding)|BDNF antisense RNA 1 (non-protein coding)|BDNF opposite strand (non-protein coding)|brain-derived neurotrophic factor opposite strand 6 0.0008212 5.538 1 1 +497259 C18orf61 uncharacterized LOC497259 18 ncRNA - - 1 0.0001369 1 0 +497634 LINC00293 long intergenic non-protein coding RNA 293 8 ncRNA BEYLA|NCRNA00293 - 1 0.0001369 0.01406 1 1 +497661 C18orf32 chromosome 18 open reading frame 32 18 protein-coding - UPF0729 protein C18orf32|putative NF-kappa-B-activating protein 200|putative NFkB activating protein 4 0.0005475 10.17 1 1 +503497 MS4A13 membrane spanning 4-domains A13 11 protein-coding - membrane-spanning 4-domains subfamily A member 13|testis-expressed transmembrane protein 4|testis-expressed transmembrane-4 protein 17 0.002327 0.01593 1 1 +503519 LINC00929 long intergenic non-protein coding RNA 929 15 ncRNA - - 0 0 1 0 +503538 A1BG-AS1 A1BG antisense RNA 1 19 ncRNA A1BG-AS|A1BGAS|NCRNA00181 A1BG antisense RNA (non-protein coding)|A1BG antisense RNA 1 (non-protein coding) 1 0.0001369 6.069 1 1 +503542 SPRN shadow of prion protein homolog (zebrafish) 10 protein-coding SHADOO|SHO|bA108K14.1 shadow of prion protein|hypothetical protein BC004409|protein shadoo 3 0.0004106 6.812 1 1 +503582 ARGFX arginine-fifty homeobox 3 protein-coding - arginine-fifty homeobox 24 0.003285 0.2226 1 1 +503583 ARGFXP1 arginine-fifty homeobox pseudogene 1 5 pseudo - - 1 0.0001369 1 0 +503627 TPRX2P tetrapeptide repeat homeobox 2, pseudogene 19 pseudo TPRX2P1|TPRXP1 tetra-peptide repeat homeobox 1 pseudogene|tetra-peptide repeat homeobox 2 pseudogene|tetra-peptide repeat homeobox pseudogene 1 1 0.0001369 1 0 +503640 ARGFXP2 arginine-fifty homeobox pseudogene 2 17 pseudo - arginine-fifty homeobox pseudogene 1 0 0 0.9087 1 1 +503645 DPRXP4 divergent-paired related homeobox pseudogene 4 17 pseudo - - 1.454 0 1 +503693 LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) 12 ncRNA LOH2CR12 - 4.655 0 1 +503834 DPRX divergent-paired related homeobox 19 protein-coding - divergent paired-related homeobox 36 0.004927 0.1329 1 1 +503835 DUXA double homeobox A 19 protein-coding - double homeobox protein A 24 0.003285 0.1566 1 1 +503841 DEFB106B defensin beta 106B 8 protein-coding BD-6|DEFB-6 beta-defensin 106|beta-defensin 6|defensin, beta 106 1 0.0001369 1 0 +504189 OR8U8 olfactory receptor family 8 subfamily U member 8 11 protein-coding - olfactory receptor 8U8 1 0.0001369 1 0 +504191 OR9G9 olfactory receptor family 9 subfamily G member 9 11 protein-coding OR9G1 olfactory receptor 9G9 25 0.003422 0.03045 1 1 +541465 CT45A6 cancer/testis antigen family 45 member A6 X protein-coding CT45-6|CT45.6 cancer/testis antigen family 45 member A6|cancer/testis antigen 45-4/6|cancer/testis antigen 45-6|cancer/testis antigen 45A4/45A6|cancer/testis antigen 45A6|cancer/testis antigen CT45-6|cancer/testis antigen family 45 member A4/A6 3 0.0004106 0.1871 1 1 +541466 CT45A1 cancer/testis antigen family 45 member A1 X protein-coding CT45|CT45-1|CT45.1 cancer/testis antigen family 45 member A1|cancer/testis antigen 45-1|cancer/testis antigen 45A1|cancer/testis antigen CT45-1 4 0.0005475 0.9527 1 1 +541468 LURAP1 leucine rich adaptor protein 1 1 protein-coding C1orf190|LRAP35a|LRP35A leucine rich adaptor protein 1|NF-kappa-B activator C1orf190|leucine repeat adapter protein 35A|leucine repeat adaptor protein 35a 12 0.001642 4.679 1 1 +541471 MIR4435-2HG MIR4435-2 host gene 2 ncRNA AGD2|AK001796|LINC00978|MIR4435-1HG MIR4435-1 host gene (non-protein coding)|adipogenesis down-regulated transcript 2|long intergenic non-protein coding RNA 978 7.554 0 1 +541473 LOC541473 FK506 binding protein 6, 36kDa pseudogene 7 pseudo - - 2.45 0 1 +541565 C8orf58 chromosome 8 open reading frame 58 8 protein-coding - uncharacterized protein C8orf58 21 0.002874 7.484 1 1 +541578 CXorf40B chromosome X open reading frame 40B X protein-coding - protein CXorf40B 15 0.002053 8.814 1 1 +542767 C1QTNF9B-AS1 C1QTNF9B antisense RNA 1 13 protein-coding PCOTH prostate collagen triple helix protein|C1QTNF9B antisense RNA 1 (non-protein coding)|C1QTNF9B antisense gene protein 1|protein PCOTH 4 0.0005475 4.25 1 1 +548313 SSX4B SSX family member 4B X protein-coding CT5.4 protein SSX4|OTTHUMT00000056510|cancer/testis antigen 5.4|synovial sarcoma, X breakpoint 4B 5 0.0006844 1 0 +548321 3.524 0 1 +548594 KIR3DP1 killer cell immunoglobulin like receptor, three Ig domains pseudogene 1 19 pseudo CD158c|KIR2DS6|KIR3DS2P|KIR48|KIRX killer cell immunoglobulin-like receptor, three domains, pseudogene 1|killer-cell Ig-like receptor pseudogene 1 0.0001369 1 0 +548596 CKMT1A creatine kinase, mitochondrial 1A 15 protein-coding CKMT1|U-MtCK|mia-CK creatine kinase U-type, mitochondrial|acidic-type mitochondrial creatine kinase|creatine kinase, mitochondrial 1 (ubiquitous)|ubiquitous mitochondrial creatine kinase 6 0.0008212 6.357 1 1 +548644 POLR2J3 RNA polymerase II subunit J3 7 protein-coding POLR2J2|RPB11b1|RPB11b2 DNA-directed RNA polymerase II subunit RPB11-b2|DNA-directed RNA polymerase II subunit 11|DNA-directed RNA polymerase II subunit J3|RNA polymerase II subunit B11-b2|polymerase (RNA) II (DNA directed) polypeptide J3|polymerase (RNA) II subunit J3 5 0.0006844 9.87 1 1 +548645 DNAJC25 DnaJ heat shock protein family (Hsp40) member C25 9 protein-coding bA16L21.2.1 dnaJ homolog subfamily C member 25|DnaJ (Hsp40) homolog, subfamily C , member 25|DnaJ-like protein 14 0.001916 7.787 1 1 +550112 UBA6-AS1 UBA6 antisense RNA 1 (head to head) 4 ncRNA - - 7.834 0 1 +550631 CCDC157 coiled-coil domain containing 157 22 protein-coding - coiled-coil domain-containing protein 157 28 0.003832 5.288 1 1 +550643 LINC01420 long intergenic non-protein coding RNA 1420 X ncRNA - - 8.709 0 1 +552889 ATXN7L3B ataxin 7 like 3B 12 protein-coding lnc-SCA7 putative ataxin-7-like protein 3B 1 0.0001369 11.37 1 1 +552891 DNAJC25-GNG10 DNAJC25-GNG10 readthrough 9 protein-coding - DNAJC25-GNG10 protein|DNAJC25-GNG10 readthrough transcript 2 0.0002737 0.316 1 1 +552900 BOLA2 bolA family member 2 16 protein-coding BOLA2A|BOLA2B|My016 bolA-like protein 2|BolA-like protein 2 member A|bolA homolog 2 10.17 0 1 +553103 LOC553103 uncharacterized LOC553103 5 ncRNA - - 1 0.0001369 1 0 +553115 PEF1 penta-EF-hand domain containing 1 1 protein-coding ABP32|PEF1A peflin|PEF protein with a long N-terminal hydrophobic domain 13 0.001779 10.76 1 1 +553117 RPL39P5 ribosomal protein L39 pseudogene 5 3 pseudo RPL39_7_406 60 ribosomal protein L39 pseudogene 5 1 0.0001369 1 0 +553137 LOC553137 uncharacterized LOC553137 6 unknown - - 1.509 0 1 +553158 PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough 22 protein-coding - PRR5-ARHGAP8 fusion protein|PRR5-ARHGAP8 fusion 28 0.003832 3.952 1 1 +554201 CCDC148-AS1 CCDC148 antisense RNA 1 2 ncRNA - CCDC148 antisense RNA 1 (non-protein coding)|tmp_locus_26 1 0.0001369 1 0 +554202 MIR31HG MIR31 host gene 9 ncRNA - MIR31 host gene (non-protein coding) 9 0.001232 3.6 1 1 +554203 JPX JPX transcript, XIST activator (non-protein coding) X ncRNA DCBALD06|ENOX|LINC00183|NCRNA00183 expressed neighbor of XIST|just proximal to XIST 0 0 7.843 1 1 +554210 MIR429 microRNA 429 1 ncRNA MIRN429|hsa-mir-429|mir-429 - 2 0.0002737 1 0 +554214 MIR450A1 microRNA 450a-1 X ncRNA MIRN450|MIRN450-1|MIRN450A-1|MIRN450A1|hsa-mir-450|mir-450a-1 hsa-mir-450-1|hsa-mir-450a-1|microRNA 450-1 4 0.0005475 1 0 +554223 LOC554223 histocompatibility antigen-related 6 pseudo - - 5 0.0006844 1 0 +554226 ANKRD30BL ankyrin repeat domain 30B like 2 pseudo ANKRD30BP3|NCRNA00164 ankyrin repeat domain 30B pseudogene 3 64 0.00876 0.6268 1 1 +554235 ASPDH aspartate dehydrogenase domain containing 19 protein-coding - putative L-aspartate dehydrogenase|aspartate dehydrogenase domain-containing protein 28 0.003832 1.813 1 1 +554236 DPY19L2P1 DPY19L2 pseudogene 1 7 pseudo - dpy-19-like 2 pseudogene 1 54 0.007391 2.494 1 1 +554250 GDF5OS growth differentiation factor 5 opposite strand 20 ncRNA - - 9 0.001232 1 0 +554251 FBXO48 F-box protein 48 2 protein-coding - F-box only protein 48 14 0.001916 4.673 1 1 +554279 LINC00862 long intergenic non-protein coding RNA 862 1 ncRNA C1orf98|SMIM16 small integral membrane protein 16 10 0.001369 1 0 +554282 FAM72C family with sequence similarity 72 member C 1 protein-coding - protein FAM72C|RP5-998N21.9 1 0.0001369 1 0 +572558 PGM5-AS1 PGM5 antisense RNA 1 9 ncRNA FAM233A PGM5 antisense RNA 1 (non-protein coding)|family with sequence similarity 233, member A 1.129 0 1 +574016 CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand 12 protein-coding - putative chronic lymphocytic leukemia up-regulated protein 1 opposite strand transcript protein|chronic lymphocytic leukemia up-regulated 1 overlapping strand 14 0.001916 0.7798 1 1 +574028 CLLU1 chronic lymphocytic leukemia up-regulated 1 12 protein-coding - chronic lymphocytic leukemia up-regulated protein 1 6 0.0008212 0.9789 1 1 +574029 DUSP5P1 dual specificity phosphatase 5 pseudogene 1 1 pseudo DUSP5P - 0 0 2.622 1 1 +574030 MIR362 microRNA 362 X ncRNA MIRN362|hsa-mir-362|mir-362 - 0 0 1 0 +574031 MIR363 microRNA 363 X ncRNA MIR-363|MIRN363|hsa-mir-363 - 3 0.0004106 1 0 +574032 MIR20B microRNA 20b X ncRNA MIRN20B|hsa-mir-20b|mir-20b - 1 0.0001369 1 0 +574036 SERTAD4-AS1 SERTAD4 antisense RNA 1 1 ncRNA C1orf133 SERTAD4 antisense RNA 1 (non-protein coding) 4.544 0 1 +574040 SNORA6 small nucleolar RNA, H/ACA box 6 3 snoRNA ACA6 ACA6 small nucleolar RNA|ACA6 snoRNA|small nucleolar RNA M2 1 0.0001369 0.2322 1 1 +574042 SNORA10 small nucleolar RNA, H/ACA box 10 16 snoRNA ACA10|SNORA10A ACA10 small nucleolar RNA within ribosomal protein 2 host|ACA10 snoRNA 1 0.0001369 0.2483 1 1 +574408 MIR329-1 microRNA 329-1 14 ncRNA MIRN329-1|mir-329-1 hsa-mir-329-1 1 0.0001369 1 0 +574409 MIR329-2 microRNA 329-2 14 ncRNA MIRN329-2|mir-329-2 hsa-mir-329-2 7 0.0009581 1 0 +574410 MIR323B microRNA 323b 14 ncRNA MIR453|MIRN453|hsa-mir-453|mir-323b hsa-mir-323b|microRNA 453 2 0.0002737 1 0 +574412 MIR452 microRNA 452 X ncRNA MIRN452|hsa-mir-452|mir-452 - 0 0 1 0 +574413 MIR409 microRNA 409 14 ncRNA MIRN409|hsa-mir-409|mir-409 - 7 0.0009581 1 0 +574414 PRR9 proline rich 9 1 protein-coding - proline-rich protein 9 2 0.0002737 1 0 +574431 C1orf147 chromosome 1 open reading frame 147 1 protein-coding - - 1 0.0001369 1 0 +574433 MIR412 microRNA 412 14 ncRNA MIRN412|hsa-mir-412|mir-412 - 4 0.0005475 1 0 +574434 MIR410 microRNA 410 14 ncRNA MIRN410|hsa-mir-410|mir-410 - 4 0.0005475 1 0 +574435 MIR376B microRNA 376b 14 ncRNA MIRN376B|mir-376b hsa-mir-376b 0 0 1 0 +574436 MIR485 microRNA 485 14 ncRNA MIRN485|hsa-mir-485|mir-485 - 4 0.0005475 1 0 +574441 MIR488 microRNA 488 1 ncRNA MIRN488|hsa-mir-488|mir-488 - 0 0 1 0 +574442 MIR489 microRNA 489 7 ncRNA MIRN489|hsa-mir-489|mir-489 - 1 0.0001369 1 0 +574443 MIR490 microRNA 490 7 ncRNA MIRN490|hsa-mir-490|miR-490 - 3 0.0004106 1 0 +574444 MIR491 microRNA 491 9 ncRNA MIRN491|hsa-mir-491|mir-491 - 1 0.0001369 1 0 +574447 MIR146B microRNA 146b 10 ncRNA MIRN146B|miRNA146B|mir-146b hsa-mir-146b 1 0.0001369 1 0 +574448 MIR202 microRNA 202 10 ncRNA MIRN202|hsa-mir-202|mir-202 - 3 0.0004106 1 0 +574449 MIR492 microRNA 492 12 ncRNA MIRN492|hsa-mir-492 - 1 0.0001369 1 0 +574450 MIR493 microRNA 493 14 ncRNA MIRN493|hsa-mir-493|mir-493 - 3 0.0004106 1 0 +574452 MIR494 microRNA 494 14 ncRNA MIRN494|hsa-mir-494|mir-494 - 5 0.0006844 1 0 +574453 MIR495 microRNA 495 14 ncRNA MIRN495|hsa-mir-495|mir-495 - 1 0.0001369 1 0 +574454 MIR496 microRNA 496 14 ncRNA MIRN496|hsa-mir-496|mir-496 - 4 0.0005475 1 0 +574455 MIR193B microRNA 193b 16 ncRNA MIRN193B|mir-193b hsa-mir-193b 1 0.0001369 1 0 +574457 MIR181D microRNA 181d 19 ncRNA MIRN181D|mir-181d hsa-mir-181d 1 0.0001369 1 0 +574458 MIR512-1 microRNA 512-1 19 ncRNA MIRN512-1|mir-512-1 hsa-mir-512-1 3 0.0004106 1 0 +574459 MIR512-2 microRNA 512-2 19 ncRNA MIRN512-2|mir-512-2 hsa-mir-512-2 2 0.0002737 1 0 +574460 MIR498 microRNA 498 19 ncRNA MIRN498|hsa-mir-498|mir-498 - 6 0.0008212 1 0 +574461 MIR520E microRNA 520e 19 ncRNA MIRN520E hsa-mir-520e 2 0.0002737 1 0 +574462 MIR515-1 microRNA 515-1 19 ncRNA MIRN515-1 hsa-mir-515-1 1 0.0001369 1 0 +574463 MIR519E microRNA 519e 19 ncRNA MIRN519E hsa-mir-519e 4 0.0005475 1 0 +574464 MIR520F microRNA 520f 19 ncRNA MIRN520F|mir-520f hsa-mir-520f 4 0.0005475 1 0 +574465 MIR515-2 microRNA 515-2 19 ncRNA MIRN515-2 hsa-mir-515-2 4 0.0005475 1 0 +574466 MIR519C microRNA 519c 19 ncRNA MIRN519C|mir-519c hsa-mir-519c 4 0.0005475 1 0 +574467 MIR520A microRNA 520a 19 ncRNA MIRN520A hsa-mir-520a 9 0.001232 1 0 +574468 MIR526B microRNA 526b 19 ncRNA MIRN526B hsa-mir-526b 3 0.0004106 1 0 +574469 MIR519B microRNA 519b 19 ncRNA MIRN519B|mir-519b hsa-mir-519b 5 0.0006844 1 0 +574470 MIR525 microRNA 525 19 ncRNA MIRN525|hsa-mir-525 - 5 0.0006844 1 0 +574471 MIR523 microRNA 523 19 ncRNA MIRN523|hsa-mir-523|mir-523 - 8 0.001095 1 0 +574472 MIR518F microRNA 518f 19 ncRNA MIRN518F hsa-mir-518f 7 0.0009581 1 0 +574473 MIR520B microRNA 520b 19 ncRNA MIRN520B hsa-mir-520b 5 0.0006844 1 0 +574474 MIR518B microRNA 518b 19 ncRNA MIRN518B|mir-518b hsa-mir-518b 4 0.0005475 1 0 +574475 MIR526A1 microRNA 526a-1 19 ncRNA MIRN526A-1|MIRN526A1 hsa-mir-526a-1 3 0.0004106 1 0 +574476 MIR520C microRNA 520c 19 ncRNA MIRN520C hsa-mir-520c 2 0.0002737 1 0 +574477 MIR518C microRNA 518c 19 ncRNA MIRN518C hsa-mir-518c|miR-518 2 0.0002737 1 0 +574478 MIR524 microRNA 524 19 ncRNA MIRN524|hsa-mir-524|mir-524 - 5 0.0006844 1 0 +574479 MIR517A microRNA 517a 19 ncRNA MIRN517A|mir-517a hsa-mir-517a 7 0.0009581 1 0 +574480 MIR519D microRNA 519d 19 ncRNA MIRN519D|mir-519d hsa-mir-519d 2 0.0002737 1 0 +574481 MIR521-2 microRNA 521-2 19 ncRNA MIRN521-2|mir-521-2 hsa-mir-521-2 5 0.0006844 1 0 +574482 MIR520D microRNA 520d 19 ncRNA MIRN520D hsa-mir-520d 4 0.0005475 1 0 +574483 MIR517B microRNA 517b 19 ncRNA MIRN517B|mir-517b hsa-mir-517b 4 0.0005475 1 0 +574484 MIR520G microRNA 520g 19 ncRNA MIRN520G|mir-520g hsa-mir-520g 5 0.0006844 1 0 +574485 MIR516B2 microRNA 516b-2 19 ncRNA MIRN516-3|MIRN516B-2|MIRN516B2|mir-516b-2 hsa-mir-516-3|hsa-mir-516b-2|microRNA 516-3 2 0.0002737 1 0 +574486 MIR526A2 microRNA 526a-2 19 ncRNA MIRN526A-2|MIRN526A2 hsa-mir-526a-2 1 0.0001369 1 0 +574487 MIR518E microRNA 518e 19 ncRNA MIRN518E|mir-518e hsa-mir-518e 2 0.0002737 1 0 +574488 MIR518A1 microRNA 518a-1 19 ncRNA MIRN518A-1|MIRN518A1|mir-518a-1 hsa-mir-518a-1 11 0.001506 1 0 +574489 MIR518D microRNA 518d 19 ncRNA MIRN518D hsa-mir-518d 8 0.001095 1 0 +574490 MIR516B1 microRNA 516b-1 19 ncRNA MIRN516-4|MIRN516B-1|MIRN516B1|mir-516b-1 hsa-mir-516-4|hsa-mir-516b-1|microRNA 516-4 4 0.0005475 1 0 +574491 MIR518A2 microRNA 518a-2 19 ncRNA MIRN518A-2|MIRN518A2|mir-518a-2 hsa-mir-518a-2 5 0.0006844 1 0 +574492 MIR517C microRNA 517c 19 ncRNA MIRN517C hsa-mir-517c 8 0.001095 1 0 +574493 MIR520H microRNA 520h 19 ncRNA MIRN520H hsa-mir-520h 8 0.001095 1 0 +574494 MIR521-1 microRNA 521-1 19 ncRNA MIRN521-1|mir-521-1 hsa-mir-521-1 5 0.0006844 1 0 +574495 MIR522 microRNA 522 19 ncRNA MIRN522|hsa-mir-522|mir-522 - 7 0.0009581 1 0 +574496 MIR519A1 microRNA 519a-1 19 ncRNA MIRN519A-1|MIRN519A1|mir-519a-1 hsa-mir-519a-1 8 0.001095 1 0 +574497 MIR527 microRNA 527 19 ncRNA MIRN527|hsa-mir-527 - 10 0.001369 1 0 +574498 MIR516A1 microRNA 516a-1 19 ncRNA MIRN516-1|MIRN516A-1|MIRN516A1|mir-516a-1 hsa-mir-516-1|hsa-mir-516a-1|microRNA 516-1 2 0.0002737 1 0 +574499 MIR516A2 microRNA 516a-2 19 ncRNA MIRN516-2|MIRN516A-2|MIRN516A2|mir-516a-2 hsa-mir-516-2|hsa-mir-516a-2|microRNA 516-2 5 0.0006844 1 0 +574500 MIR519A2 microRNA 519a-2 19 ncRNA MIRN519A-2|MIRN519A2|mir-519a-2 hsa-mir-519a-2 5 0.0006844 1 0 +574501 MIR499A microRNA 499a 20 ncRNA MIR499|MIRN499|hsa-mir-499a|mir-499a hsa-mir-499|microRNA 499 0 0 1 0 +574502 MIR500A microRNA 500a X ncRNA MIR500|MIRN500|hsa-mir-500|hsa-mir-500a|mir-500a microRNA 500 0 0 1 0 +574505 MIR450A2 microRNA 450a-2 X ncRNA MIRN450-2|MIRN450A-2|MIRN450A2|mir-450a-2 hsa-mir-450-2|hsa-mir-450a-2|microRNA 450-2 2 0.0002737 1 0 +574507 MIR504 microRNA 504 X ncRNA MIRN504|hsa-mir-504|mir-504 - 1 0.0001369 1 0 +574508 MIR505 microRNA 505 X ncRNA MIRN505|hsa-mir-505|mir-505 - 1 0.0001369 1 0 +574509 MIR513A1 microRNA 513a-1 X ncRNA MIRN513-1|MIRN513A1 hsa-mir-513-1|hsa-mir-513a-1|microRNA 513-1 6 0.0008212 1 0 +574510 MIR513A2 microRNA 513a-2 X ncRNA MIRN513-2|MIRN513A-2|MIRN513A2|hsa-mir-513a-2 hsa-mir-513-2|microRNA 513-2 3 0.0004106 1 0 +574511 MIR506 microRNA 506 X ncRNA MIRN506|hsa-mir-506|mir-506 - 5 0.0006844 1 0 +574512 MIR507 microRNA 507 X ncRNA MIRN507|hsa-mir-507|mir-507 - 1 0.0001369 1 0 +574513 MIR508 microRNA 508 X ncRNA MIRN508|hsa-mir-508 - 6 0.0008212 1 0 +574514 MIR509-1 microRNA 509-1 X ncRNA MIRN509|MIRN509-1|hsa-mir-509|mir-509-1 hsa-mir-509-1|miR-509-5p|microRNA 509 2 0.0002737 1 0 +574515 MIR510 microRNA 510 X ncRNA MIRN510|hsa-mir-510|mir-510 - 5 0.0006844 1 0 +574516 MIR514A1 microRNA 514a-1 X ncRNA MIR514-1|MIRN514-1|hsa-mir-514a-1|mir-514a-1 hsa-mir-514-1|microRNA 514-1 4 0.0005475 1 0 +574518 MIR514A3 microRNA 514a-3 X ncRNA MIR514-3|MIRN514-3|hsa-mir-514a-3 hsa-mir-514-3|microRNA 514-3 0 0 1 0 +574537 UGT2A2 UDP glucuronosyltransferase family 2 member A2 4 protein-coding - UDP-glucuronosyltransferase 2A2|UDP glucuronosyltransferase 2 family, polypeptide A2 10 0.001369 1 0 +574538 LOC574538 uncharacterized LOC574538 12 ncRNA - - 1 0.0001369 1 0 +594838 SNORD100 small nucleolar RNA, C/D box 100 6 snoRNA HBII-429 C/D box snoRNA HBII-429 1 0.0001369 1 0 +594839 SNORA33 small nucleolar RNA, H/ACA box 33 6 snoRNA ACA33 ACA33 small nucleolar RNA|ACA33 snoRNA 0 0 1 0 +594840 ZFAT-AS1 ZFAT antisense RNA 1 8 ncRNA NCRNA00070|SAS-ZFAT|ZFAT-AS|ZFATAS ZFAT antisense RNA 1 (non-protein coding)|zinc finger protein 406 antisense transcript 1 0.0001369 0.1832 1 1 +594842 HAS2-AS1 HAS2 antisense RNA 1 8 ncRNA HAS2-AS|HAS2AS|HASNT|NCRNA00077 HAS2 antisense RNA 1 (non-protein coding)|hyaluronan synthase 2 antisense 2.33 0 1 +594855 CPLX3 complexin 3 15 protein-coding CPX-III|CPXIII|Nbla11589 complexin-3|CPX III|complexin III 15 0.002053 1.792 1 1 +594857 NPS neuropeptide S 10 protein-coding - neuropeptide S|prepro-neuropeptide S 13 0.001779 0.01843 1 1 +595097 SNORD16 small nucleolar RNA, C/D box 16 15 snoRNA U16 U16 small nucleolar RNA|U16 snoRNA 2 0.0002737 9.075e-05 1 1 +595098 SNORD18A small nucleolar RNA, C/D box 18A 15 snoRNA U18A U18A small nucleolar RNA|U18A snoRNA 1 0.0001369 0 1 1 +595099 SNORD18B small nucleolar RNA, C/D box 18B 15 snoRNA U18B U18B small nucleolar RNA|U18B snoRNA 1 0.0001369 0 1 1 +595100 SNORD18C small nucleolar RNA, C/D box 18C 15 snoRNA U18C U18C small nucleolar RNA|U18C snoRNA 0 0 1 +595101 SMG1P5 SMG1P5, nonsense mediated mRNA decay associated PI3K related kinase pseudogene 5 16 pseudo - SMG1 pseudogene 5|smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 6.241 0 1 +595135 PGM5P2 phosphoglucomutase 5 pseudogene 2 9 pseudo - - 40 0.005475 1.73 1 1 +606293 KLKP1 kallikrein pseudogene 1 19 pseudo KARMA|KLK31P|KRSP1|PsiKLK1|YKLK1 kallikrein 31 pseudogene|kallikrein-related protein|kallikrein-related sequence from prostate 4 0.0005475 0.8965 1 1 +606495 CYB5RL cytochrome b5 reductase like 1 protein-coding - NADH-cytochrome b5 reductase-like 22 0.003011 5.955 1 1 +606500 SNORD68 small nucleolar RNA, C/D box 68 16 snoRNA HBII-202 HBII-202 small nucleolar RNA|HBII-202 snoRNA 0 0 1 +606551 UBE2MP1 ubiquitin conjugating enzyme E2 M pseudogene 1 16 pseudo - ubiquitin conjugating enzyme E2M pseudogene 1 1 0.0001369 6.919 1 1 +606553 C8orf49 chromosome 8 open reading frame 49 8 ncRNA G4DM GATA4 downstream membrane protein 2 0.0002737 1 0 +606724 LOC606724 coronin 1A pseudogene 16 pseudo - coronin, actin binding protein, 1A pseudogene 4.984 0 1 +613037 NPIPB13 nuclear pore complex interacting protein family, member B13 16 protein-coding - nuclear pore complex interacting protein member 3.678 0 1 +613209 DEFB135 defensin beta 135 8 protein-coding DEFB136 beta-defensin 135|beta-defensin 136 6 0.0008212 0.002805 1 1 +613210 DEFB136 defensin beta 136 8 protein-coding DEFB137 beta-defensin 136|beta-defensin 137 11 0.001506 0.005544 1 1 +613211 DEFB134 defensin beta 134 8 protein-coding - beta-defensin 134|beta-defensin 135 2 0.0002737 0.002665 1 1 +613212 CTXN3 cortexin 3 5 protein-coding KABE cortexin-3|kidney and brain-expressed protein 7 0.0009581 0.7017 1 1 +613227 HIGD1C HIG1 hypoxia inducible domain family member 1C 12 protein-coding GM921 HIG1 domain family member 1C|HIG1 domain family, member 1C 5 0.0006844 0.05115 1 1 +619189 SERINC4 serine incorporator 4 15 protein-coding - serine incorporator 4 15 0.002053 2.667 1 1 +619190 FDPSP2 farnesyl diphosphate synthase pseudogene 2 7 pseudo FDPSL2|FDPSL2A|FPSL2 TCAG_1641456|farnesyl diphosphate synthase-like 2 (farnesyl pyrophosphate synthetase-like 2)|farnesyl diphosphate synthase-like 2A (farnesyl pyrophosphate synthetase-like 2A) 2.484 0 1 +619207 SCART1 scavenger receptor protein family member 10 pseudo - - 3.914 0 1 +619208 FAM229B family with sequence similarity 229 member B 6 protein-coding C6orf225 protein FAM229B|UPF0731 protein C6orf225 6 0.0008212 7.231 1 1 +619279 ZNF704 zinc finger protein 704 8 protein-coding Gig1 zinc finger protein 704 32 0.00438 7.186 1 1 +619343 ERICH1-AS1 ERICH1 antisense RNA 1 8 ncRNA C8orf68 ERICH1 antisense RNA 1 (non-protein coding) 11 0.001506 1 0 +619351 LINC00589 long intergenic non-protein coding RNA 589 8 ncRNA C8orf75 - 0 0 0.893 1 1 +619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 8 protein-coding FKSG89|GOAT|OACT4 ghrelin O-acyltransferase|O-acyltransferase (membrane bound) domain containing 4|O-acyltransferase domain-containing protein 4|membrane-bound O-acyltransferase domain-containing protein 4 12 0.001642 1.778 1 1 +619383 SCARNA9 small Cajal body-specific RNA 9 11 ncRNA Z32|mgU2-19/30 mgU2-19/30 scaRNA 2 0.0002737 2.489 1 1 +619431 FAM85B family with sequence similarity 85 member B 8 protein-coding - - 5 0.0006844 1 0 +619434 LINC00051 long intergenic non-protein coding RNA 51 8 ncRNA C8orf43|NCRNA00051 - 3 0.0004106 0.08744 1 1 +619455 SPANXA2-OT1 SPANXA2 overlapping transcript 1 X ncRNA CXorf18 SPANXA2 overlapping transcript 1 (non-protein coding) 5 0.0006844 1 0 +619498 SNORD74 small nucleolar RNA, C/D box 74 1 snoRNA SNORD74A|U74|Z18 C/D box snoRNA U74|RNA, U74 small nucleolar 0 0 1 +619499 SNORA27 small nucleolar RNA, H/ACA box 27 13 snoRNA ACA27 ACA27 small nucleolar RNA|ACA27 snoRNA 0.109 0 1 +619505 SNORA21 small nucleolar RNA, H/ACA box 21 17 snoRNA ACA21 ACA21 small nucleolar RNA|ACA21 snoRNA 0 0 0.2012 1 1 +619553 MIR484 microRNA 484 16 ncRNA MIRN484|hsa-mir-484|mir-484 - 2 0.0002737 1 0 +619554 MIR486-1 microRNA 486-1 8 ncRNA MIR486|MIRN486|hsa-mir-486|hsa-mir-486-1|mir-486-1 microRNA 486 2 0.0002737 1 0 +619555 MIR487A microRNA 487a 14 ncRNA MIRN487|MIRN487A|hsa-mir-487|mir-487a hsa-mir-487a 3 0.0004106 1 0 +619562 SNORA3A small nucleolar RNA, H/ACA box 3A 11 snoRNA ACA3|SNORA3|SNORA45A ACA3 small nucleolar RNA|ACA3 snoRNA|small nucleolar RNA, H/ACA box 3|small nucleolar RNA, H/ACA box 45A 1 0.0001369 0.08006 1 1 +619563 SNORA7A small nucleolar RNA, H/ACA box 7A 3 snoRNA ACA7 ACA7 small nucleolar RNA|ACA7 snoRNA 0 0 1 0 +619564 SNORD72 small nucleolar RNA, C/D box 72 5 snoRNA HBII-240 C/D box snoRNA HBII-240|HBII-240 small nucleolar RNA 1 0.0001369 0 1 1 +619565 SNORA52 small nucleolar RNA, H/ACA box 52 11 snoRNA ACA52 ACA52 small nucleolar RNA|ACA52 snoRNA 0 0 0.1296 1 1 +619567 SNORD2 small nucleolar RNA, C/D box 2 3 snoRNA R39B|SNR39B snR39B small nucleolar RNA|snR39B snoRNA 0 0 1 +619568 SNORA4 small nucleolar RNA, H/ACA box 4 3 snoRNA ACA4 ACA4 small nucleolar RNA|ACA4 snoRNA 0.03947 0 1 +619569 SNORA41 small nucleolar RNA, H/ACA box 41 2 snoRNA ACA41|SNORA41A ACA41 small nucleolar RNA|ACA41 snoRNA 0 0 0.0469 1 1 +619570 SNORD95 small nucleolar RNA, C/D box 95 5 snoRNA U95 C/D box snoRNA U95 0 0 1 +619571 SNORD96A small nucleolar RNA, C/D box 96A 5 snoRNA U96A C/D box snoRNA U96a 1 0.0001369 0 1 1 +641298 SMG1P1 SMG1P1, nonsense mediated mRNA decay associated PI3K related kinase pseudogene 1 16 pseudo - PI-3-kinase-related kinase SMG-1|SMG1 pseudogene 1|smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 1 1 0.0001369 5.5 1 1 +641311 RPL31P11 ribosomal protein L31 pseudogene 11 1 pseudo RPL31_1_108 - 18 0.002464 2.017 1 1 +641339 ZNF674 zinc finger protein 674 X protein-coding MRX92|ZNF673B zinc finger protein 674|zinc finger family member 674 21 0.002874 5.984 1 1 +641364 SLC7A11-AS1 SLC7A11 antisense RNA 1 4 ncRNA - SLC7A11 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +641365 LINC00616 long intergenic non-protein coding RNA 616 4 ncRNA - - 0 0 1 0 +641367 LOC641367 cyclin Y like 1 pseudogene 19 pseudo - - 2 0.0002737 2.35 1 1 +641371 ACOT1 acyl-CoA thioesterase 1 14 protein-coding ACH2|CTE-1|LACH2 acyl-coenzyme A thioesterase 1|CTE-I|CTE-Ib|inducible cytosolic acyl-coenzyme A thioester hydrolase|long chain acyl-CoA hydrolase|long chain acyl-CoA thioester hydrolase 14 0.001916 8.388 1 1 +641372 ACOT6 acyl-CoA thioesterase 6 14 protein-coding C14orf42|c14_5530 putative acyl-coenzyme A thioesterase 6|putative acyl-CoA thioesterase 6 9 0.001232 1.5 1 1 +641451 SNORA19 small nucleolar RNA, H/ACA box 19 10 snoRNA ACA19 ACA19 small nucleolar RNA 1 0.0001369 0.006603 1 1 +641455 POTEM POTE ankyrin domain family member M 14 protein-coding ACT|P704P|POTE14beta putative POTE ankyrin domain family member M|ANKRD26-like family C member ENSP00000349402|prostate-specific P704P 41 0.005612 4.482 1 1 +641516 KC6 keratoconus gene 6 18 ncRNA - - 1.008 0 1 +641517 DEFB109P1B defensin beta 109 pseudogene 1B 8 pseudo DEF109P1B|DEFB109 defensin, beta 9 pseudogene 0.0352 0 1 +641518 LEF1-AS1 LEF1 antisense RNA 1 4 ncRNA LEF1NAT LEF1 antisense RNA 1 (non-protein coding)|LEF1 natural antisense transcript 0 0 1 0 +641522 1.581 0 1 +641638 SNHG6 small nucleolar RNA host gene 6 8 ncRNA HBII-276HG|NCRNA00058|U87HG HBII-276 host|U87 host|small nucleolar RNA host gene (non-protein coding) 6|small nucleolar RNA host gene 6 (non-protein coding) 1 0.0001369 9.95 1 1 +641648 SNORD87 small nucleolar RNA, C/D box 87 8 snoRNA HBII-276|U87 C/D box snoRNA HBII-276|U87 snoRNA 0 0 1 +641649 TMEM91 transmembrane protein 91 19 protein-coding DSPC3|IFITMD6 transmembrane protein 91|dispanin subfamily C member 3|interferon induced transmembrane protein domain containing 6 9 0.001232 6.765 1 1 +641654 HEPN1 hepatocellular carcinoma, down-regulated 1 11 protein-coding - putative cancer susceptibility gene HEPN1 protein|HEPACAM opposite strand 1|cancer susceptibility gene HEPN1 10 0.001369 1.887 1 1 +641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator 5 protein-coding ARIA|ECSM2 endothelial cell-specific chemotaxis regulator|apoptosis regulator through modulating IAP expression|endothelial cell-specific molecule 2 1 0.0001369 5.743 1 1 +641702 FAM138F family with sequence similarity 138 member F 19 ncRNA F379 F379 retina-specific protein 0.7303 0 1 +641977 SEPT7P2 septin 7 pseudogene 2 7 pseudo SEPT13|SEPT7B septin 13|septin 7B 24 0.003285 6.996 1 1 +642131 LOC642131 immunoglobulin heavy variable 1/OR15-3 (pseudogene) 15 pseudo - putative V-set and immunoglobulin domain-containing-like protein IGHV4OR15-8 1 0.0001369 1 0 +642265 0.5175 0 1 +642273 FAM110C family with sequence similarity 110 member C 2 protein-coding - protein FAM110C 20 0.002737 4.094 1 1 +642280 ZNF876P zinc finger protein 876, pseudogene 4 pseudo - - 48 0.00657 3.85 1 1 +642345 MIR4500HG MIR4500 host gene 13 ncRNA - MIR4500 host gene (non-protein coding)|hCG1818123 0 0 1 0 +642394 ADARB2-AS1 ADARB2 antisense RNA 1 10 ncRNA C10orf109|NCRNA00168|bA466B20.1 ADARB2 antisense RNA 1 (non-protein coding)|hCG1773937 3 0.0004106 1 0 +642423 LOC642423 golgin A2 pseudogene 15 pseudo - - 2 0.0002737 1 0 +642446 TRIM64B tripartite motif containing 64B 11 protein-coding - putative tripartite motif-containing protein 64B 5 0.0006844 1 0 +642475 MROH6 maestro heat like repeat family member 6 8 protein-coding C8orf73 maestro heat-like repeat-containing protein family member 6 29 0.003969 7.448 1 1 +642489 FKBP1C FK506 binding protein 1C 6 pseudo bA184C23.2 - 1 0.0001369 1 0 +642517 AGAP9 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 10 protein-coding AGAP-9|CTGLF6|bA301J7.2 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 9|centaurin-gamma-like family member 6 2 0.0002737 1 0 +642546 HK2P1 hexokinase 2 pseudogene 1 X pseudo HK2P - 1 0.0001369 1 0 +642569 TRIM53AP tripartite motif containing 53A, pseudogene 11 pseudo TRIM53|TRIM53P|TRIM80P tripartite motif containing 53, pseudogene|tripartite motif-containing 49 pseudogene|tripartite motif-containing 53 1 0.0001369 0.2085 1 1 +642587 MIR205HG MIR205 host gene 1 protein-coding LINC00510 uncharacterized protein LOC642587|MIR205 host gene (non-protein coding)|NPC-A-5|long intergenic non-protein coding RNA 510 18 0.002464 4.037 1 1 +642590 LOC642590 spermine synthase pseudogene 6 pseudo - - 0 0 1 0 +642597 AKAIN1 A-kinase anchor inhibitor 1 18 protein-coding C18orf42 A-kinase anchor protein inhibitor 1|A kinase (PRKA) anchor inhibitor 1|A-kinase anchor protein C18orf42 3 0.0004106 0.8138 1 1 +642612 TRIM49C tripartite motif containing 49C 11 protein-coding TRIM49L2 tripartite motif-containing protein 49C|Tripartite motif-containing protein LOC642612|tripartite motif containing 49-like 2|tripartite motif-containing protein 49-like protein 2 41 0.005612 1 0 +642623 UBTFL1 upstream binding transcription factor, RNA polymerase I-like 1 11 protein-coding C11orf27|HMGPI upstream-binding factor 1-like protein 1|putative upstream-binding factor 1-like protein 1 2 0.0002737 0.03912 1 1 +642633 FAM230B family with sequence similarity 230 member B (non-protein coding) 22 ncRNA - KB-1183D5.13|family with sequence similarity 230, member B 35 0.004791 1 0 +642635 LOC642635 tubulin alpha 4a pseudogene 2 pseudo - - 1 0.0001369 1 0 +642636 RAD21L1 RAD21 cohesin complex component like 1 20 protein-coding RAD21L|dJ545L17.2 double-strand-break repair protein rad21-like protein 1|RAD21-like 1 11 0.001506 0.2916 1 1 +642658 SCX scleraxis bHLH transcription factor 8 protein-coding SCXA|SCXB|bHLHa48 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|scleraxis basic helix-loop-helix transcription factor|scleraxis homolog A|scleraxis homolog B 2.861 0 1 +642659 HNRNPA1P48 heterogeneous nuclear ribonucleoprotein A1 pseudogene 48 16 pseudo - - 3 0.0004106 1 0 +642677 LOC642677 stabilizer of axonemal microtubules 2 pseudogene 15 pseudo - family with sequence similarity 154, member B pseudogene 0 0 1 0 +642797 DNAH10OS dynein axonemal heavy chain 10 opposite strand 12 ncRNA - dynein, axonemal, heavy chain 10 opposite strand (non-protein coding) 0 0 1 0 +642799 NPIPA2 nuclear pore complex interacting protein family member A2 16 protein-coding NPIP nuclear pore complex-interacting protein family member A2 6 0.0008212 1 0 +642819 ZNF487 zinc finger protein 487 10 pseudo KRBO1|ZNF487P KRAB domain only 1|zinc finger protein 487, pseudogene 9 0.001232 4.803 1 1 +642826 BMS1P6 BMS1, ribosome biogenesis factor pseudogene 6 10 pseudo BMS1LP2|BMS1LP6|BMS1P2|bA302K17.2 BMS1 homolog, ribosome assembly protein pseudogene|BMS1 pseudogene 2|BMS1 pseudogene 6|BMS1-like, ribosome assembly protein pseudogene|BMS1L pseudogene 2|BMS1L pseudogene 6|ribosome biogenesis protein BMS1 homolog 5.987 0 1 +642843 CPSF4L cleavage and polyadenylation specific factor 4 like 17 protein-coding - putative cleavage and polyadenylation specificity factor subunit 4-like protein 3 0.0004106 0.3879 1 1 +642846 LOC642846 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11-like 12 ncRNA - - 6 0.0008212 7.169 1 1 +642852 LOC642852 uncharacterized LOC642852 21 ncRNA - - 8.049 0 1 +642864 SPATA42 spermatogenesis associated 42 (non-protein coding) 1 ncRNA AKNAD1-AS1|SRG7 AKNAD1 antisense RNA 1|spermatogenesis-related gene 7|spermatogenesis-related protein 7 2 0.0002737 1 0 +642924 LINC00535 long intergenic non-protein coding RNA 535 8 ncRNA - - 7 0.0009581 1 0 +642929 LOC642929 general transcription factor II, i pseudogene 9 pseudo - general transcription factor IIi pseudogene 1 0.0001369 0.02543 1 1 +642938 FAM196A family with sequence similarity 196 member A 10 protein-coding C10orf141|INSYN2 protein FAM196A 38 0.005201 3.175 1 1 +642943 LOC642943 SPATA31 subfamily A pseudogene 9 pseudo - SPATA31 subfamily A, member 4 pseudogene|family with sequence similarity 75, member A1 pseudogene 1 0.0001369 1 0 +642946 FLVCR1-AS1 FLVCR1 antisense RNA 1 (head to head) 1 ncRNA LQK1|NCRNA00292 FLVCR1 antisense RNA 1 (non-protein coding) 3 0.0004106 4.733 1 1 +642968 FAM163B family with sequence similarity 163 member B 9 protein-coding C9orf166 protein FAM163B 4 0.0005475 1.093 1 1 +642975 LOC642975 transmembrane protein 230 pseudogene 11 pseudo - - 1 0.0001369 1 0 +642976 GRIK1-AS1 GRIK1 antisense RNA 1 21 ncRNA C21orf9|GRIK1-AS|GRIK1AS|NCRNA00110 GRIK1 antisense RNA (non-protein coding)|GRIK1 antisense RNA 1 (non-protein coding) 0.9413 0 1 +642987 TMEM232 transmembrane protein 232 5 protein-coding - transmembrane protein 232 17 0.002327 3.241 1 1 +643008 SMIM5 small integral membrane protein 5 17 protein-coding C17orf109|PP12104 small integral membrane protein 5 1 0.0001369 4.938 1 1 +643015 LOC643015 nucleolar protein 11 pseudogene X pseudo - - 1 0.0001369 1 0 +643036 SLED1 proteoglycan 3 pseudogene 4 pseudo - RTFV9368 1.055 0 1 +643136 ZC3H11B zinc finger CCCH-type containing 11B pseudogene 1 pseudo ZC3HDC11B zinc finger CCCH-type domain containing 11B 1 0.0001369 1 0 +643155 SMIM15 small integral membrane protein 15 5 protein-coding C5orf43 small integral membrane protein 15|UPF0542 protein C5orf43 5 0.0006844 10.24 1 1 +643160 CYMP chymosin pseudogene 1 pseudo - - 2 0.0002737 0.2729 1 1 +643161 FAM25A family with sequence similarity 25 member A 10 protein-coding bA96C23.5 protein FAM25A|protein FAM25 0 0 1.247 1 1 +643180 CCT6P3 chaperonin containing TCP1 subunit 6 pseudogene 3 7 pseudo CCT6-3P chaperonin containing TCP1, subunit 6 (zeta) pseudogene 3 104 0.01423 1 0 +643210 EHMT1-IT1 EHMT1 intronic transcript 1 9 ncRNA - - 1.108 0 1 +643224 TUBBP5 tubulin beta pseudogene 5 9 pseudo - HSA9q34 beta-tubulin 4Q (TUBB4Q) pseudogene|tubulin, beta 8 pseudogene|tubulin, beta polypeptide pseudogene 5 126 0.01725 4.499 1 1 +643226 GRXCR2 glutaredoxin and cysteine rich domain containing 2 5 protein-coding DFNB101 glutaredoxin domain-containing cysteine-rich protein 2|GRXCR1-like protein|glutaredoxin domain-containing cysteine-rich protein 1-like protein|glutaredoxin, cysteine rich 2 14 0.001916 0.08083 1 1 +643236 TMEM72 transmembrane protein 72 10 protein-coding C10orf127|KSP37 transmembrane protein 72|kidney-specific secretory protein of 37 kDa 24 0.003285 0.8472 1 1 +643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 12 protein-coding ATG8G microtubule-associated proteins 1A/1B light chain 3 beta 2|Microtubule-associated proteins 1A/1B light chain 3B-like protein 10 0.001369 8.074 1 1 +643253 CCT6P1 chaperonin containing TCP1 subunit 6 pseudogene 1 7 pseudo CCT6-5P|CCT6AP1 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 1|chaperonin containing TCP1, subunit 6A (zeta 1) pseudogene 1|chaperonin containing TCP1, subunit 6A pseudogene 93 0.01273 6.228 1 1 +643311 CT47B1 cancer/testis antigen family 47, member B1 X protein-coding CT47.13|CT47A13 cancer/testis antigen 47B|cancer/testis CT47 family, member 13|cancer/testis antigen 47.13|cancer/testis antigen family 147, member B1 56 0.007665 0.138 1 1 +643314 KIAA0754 KIAA0754 1 protein-coding - uncharacterized protein KIAA0754 101 0.01382 6.406 1 1 +643332 ECRP ribonuclease A family member 2 pseudogene 14 pseudo - eosinophil cationic-related protein|ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) pseudogene 4 0.0005475 1 0 +643338 C15orf62 chromosome 15 open reading frame 62 15 protein-coding - uncharacterized protein C15orf62, mitochondrial|uncharacterized protein FLJ75552, mitochondrial 2 0.0002737 5.326 1 1 +643342 LOC643342 ATM interactor pseudogene 9 pseudo - - 1 0.0001369 1 0 +643365 LINC00452 long intergenic non-protein coding RNA 452 13 protein-coding LINC00453 uncharacterized protein LOC643365|long intergenic non-protein coding RNA 453 3 0.0004106 0.6483 1 1 +643371 LOC643371 tubulin beta 8 class VIII pseudogene X pseudo - tubulin, beta 8 pseudogene 0 0 1 0 +643376 BTBD18 BTB domain containing 18 11 protein-coding - BTB/POZ domain-containing protein 18|BTB (POZ) domain containing 18|hCG1730474 15 0.002053 1.377 1 1 +643382 TMEM253 transmembrane protein 253 14 protein-coding C14orf176|C14orf95|NCRNA00220 transmembrane protein 253|transmembrane protein C14orf176 1 0.0001369 4.136 1 1 +643387 LOC643387 TAR DNA binding protein pseudogene 2 pseudo - - 1 0.0001369 4.987 1 1 +643394 SPINK9 serine peptidase inhibitor, Kazal type 9 5 protein-coding LEKTI2 serine protease inhibitor Kazal-type 9|lymphoepithelial Kazal-type-related inhibitor 2 6 0.0008212 0.113 1 1 +643406 LOC643406 uncharacterized LOC643406 20 ncRNA - - 1 0.0001369 1 0 +643414 LIPK lipase family member K 10 protein-coding LIPL2|bA186O14.2 lipase member K|lipase K|lipase-like abhydrolase domain-containing protein 2|lipase-like, ab-hydrolase domain containing 2 20 0.002737 0.5949 1 1 +643418 LIPN lipase family member N 10 protein-coding ARCI8|LI4|LIPL4|bA186O14.3 lipase member N|lipase-like abhydrolase domain-containing protein 4 27 0.003696 0.4381 1 1 +643427 RBMS2P1 RNA binding motif single stranded interacting protein 2 pseudogene 1 12 pseudo RBMS2P RNA binding motif, single stranded interacting protein 2 pseudogene 1 0.0001369 1 0 +643432 TSG1 tumor suppressor TSG1 6 ncRNA - - 0.5639 0 1 +643438 LOC643438 huntingtin interacting protein K pseudogene 7 pseudo - - 0 0 1 0 +643454 LOC643454 adaptor related protein complex 3 sigma 1 subunit pseudogene 1 pseudo - - 1 0.0001369 1 0 +643486 BRDTP1 bromodomain testis associated pseudogene 1 X pseudo - bromodomain, testis-specific pseudogene 1|hCG1811337 0.08496 0 1 +643562 LOC643562 Rho GTPase activating protein 21 pseudogene 6 pseudo - - 3 0.0004106 1 0 +643596 RNF224 ring finger protein 224 9 protein-coding - RING finger protein 224 1 0.0001369 1 0 +643615 UBTFL6 upstream binding transcription factor, RNA polymerase I-like 6 (pseudogene) 2 pseudo - putative upstream-binding factor 1-like protein 6|upstream binding transcription factor, RNA polymerase I-like 1, pseudogene 0 0 1 0 +643634 LOC643634 tropomyosin 1 (alpha) pseudogene 3 pseudo - - 0 0 1 0 +643641 ZNF862 zinc finger protein 862 7 protein-coding - zinc finger protein 862 74 0.01013 8.733 1 1 +643646 HSD17B1P1 hydroxysteroid 17-beta dehydrogenase 1 pseudogene 1 17 pseudo EDH17B1|EDHB17|HSD17|HSD17BP1|SDR28C1P1 hydroxysteroid (17-beta) dehydrogenase pseudogene 1 0 0 1 0 +643650 LINC00842 long intergenic non-protein coding RNA 842 10 ncRNA - - 21 0.002874 1 0 +643664 SLC35G6 solute carrier family 35 member G6 17 protein-coding AMAC1L3|TMEM21B solute carrier family 35 member G6|acyl-malonyl condensing enzyme 1-like 3|acyl-malonyl-condensing enzyme 1-like protein 3|protein AMAC1L3|transmembrane protein 21B 22 0.003011 0.5009 1 1 +643677 CCDC168 coiled-coil domain containing 168 13 protein-coding C13orf40 coiled-coil domain-containing protein 168 94 0.01287 1.629 1 1 +643680 MS4A4E membrane spanning 4-domains A4E 11 protein-coding - membrane-spanning 4-domains, subfamily A, member 4E 6 0.0008212 1 0 +643707 GOLGA6L4 golgin A6 family-like 4 15 protein-coding - golgin subfamily A member 6-like protein 4|golgi autoantigen, golgin subfamily a, 6-like 4|putative golgin subfamily A member 6-like protein 4 3 0.0004106 1 0 +643714 CASC16 cancer susceptibility candidate 16 (non-protein coding) 16 ncRNA LINC00918 long intergenic non-protein coding RNA 918 0 0 1 0 +643719 SCGB1B2P secretoglobin family 1B member 2, pseudogene 19 pseudo SCGB4A1P CTD-2378H7.2 2.777 0 1 +643733 LOC643733 caspase 4, apoptosis-related cysteine peptidase pseudogene 11 pseudo - - 0 0 1 0 +643749 TRAF3IP2-AS1 TRAF3IP2 antisense RNA 1 6 ncRNA C6UAS|C6orf3|NCRNA00248|TRAF3IP2-AS2 TRAF3IP2 antisense RNA 1 (non-protein coding)|TRAF3IP2 antisense RNA 2 (non-protein coding) 3 0.0004106 1 0 +643763 UG0898H09 uncharacterized LOC643763 8 ncRNA - - 2.674 0 1 +643802 LOC643802 u3 small nucleolar ribonucleoprotein protein MPP10-like 16 protein-coding - uncharacterized protein LOC643802 0 0 1 0 +643803 KRTAP24-1 keratin associated protein 24-1 21 protein-coding KAP24.1 keratin-associated protein 24-1 54 0.007391 0.02588 1 1 +643812 KRTAP27-1 keratin associated protein 27-1 21 protein-coding - keratin-associated protein 27-1 41 0.005612 0.01757 1 1 +643832 0.1327 0 1 +643834 PGA3 pepsinogen 3, group I (pepsinogen A) 11 protein-coding - pepsin A-3|pepsinogen A3|pepsinogen-3 8 0.001095 1.842 1 1 +643836 ZFP62 ZFP62 zinc finger protein 5 protein-coding ZET|ZNF755 zinc finger protein 62 homolog|zfp-62 19 0.002601 8.915 1 1 +643837 LINC01128 long intergenic non-protein coding RNA 1128 1 ncRNA - - 7.058 0 1 +643847 PGA4 pepsinogen 4, group I (pepsinogen A) 11 protein-coding - pepsin A-4|pepsinogen A4|pepsinogen-4 1 0.0001369 0.7218 1 1 +643853 TMPPE transmembrane protein with metallophosphoesterase domain 3 protein-coding - transmembrane protein with metallophosphoesterase domain 18 0.002464 5.254 1 1 +643854 CTAGE9 CTAGE family member 9 6 protein-coding - cTAGE family member 9|cutaneous T-cell lymphoma-associated antigen 9|protein cTAGE-9 17 0.002327 6.59 1 1 +643858 KRT18P30 keratin 18 pseudogene 30 6 pseudo - - 1 0.0001369 1 0 +643866 CBLN3 cerebellin 3 precursor 14 protein-coding PRO1486 cerebellin-3 16 0.00219 5.937 1 1 +643904 RNF222 ring finger protein 222 17 protein-coding - RING finger protein 222|RING finger protein LOC643904 12 0.001642 1.456 1 1 +643905 PRR21 proline rich 21 2 protein-coding - putative proline-rich protein 21 34 0.004654 0.0374 1 1 +643911 CRNDE colorectal neoplasia differentially expressed (non-protein coding) 16 protein-coding CRNDEP|LINC00180|NCRNA00180|PNAS-108|lincIRX5 colorectal neoplasia differentially expressed|long intergenic non-protein coding RNA 180 0 0 1 0 +643923 LOC643923 uncharacterized LOC643923 11 ncRNA - - 0.2514 0 1 +643955 ZNF733P zinc finger protein 733, pseudogene 7 pseudo ZNF733 Putative zinc finger protein ENSP00000353728|zinc finger protein 479 pseudogene 135 0.01848 0.1757 1 1 +643965 TMEM88B transmembrane protein 88B 1 protein-coding - transmembrane protein 88B 7 0.0009581 0.7136 1 1 +643997 LOC643997 peptidylprolyl isomerase A (cyclophilin A) pseudogene 2 pseudo - - 0 0 1 0 +644006 LOC644006 ring finger protein 4 pseudogene 1 pseudo - - 0 0 1 0 +644019 CBWD6 COBW domain containing 6 9 protein-coding - COBW domain-containing protein 6|cobalamin synthase W domain-containing protein 6|cobalamin synthetase W domain-containing protein 6 18 0.002464 6.992 1 1 +644022 RPL22P19 ribosomal protein L22 pseudogene 19 12 pseudo RPL22_8_1294 - 5 0.0006844 1 0 +644041 C18orf63 chromosome 18 open reading frame 63 18 protein-coding DKFZP781G0119 uncharacterized protein C18orf63 4 0.0005475 1 0 +644054 FAM25C family with sequence similarity 25 member C 10 protein-coding bA164N7.4 protein FAM25C|protein FAM25 1 0.0001369 1 0 +644059 PYY3 peptide YY 3 (pseudogene) X pseudo PYY-III Putative peptide YY-3|Putative peptide YY3|peptide YY pseudogene|peptide YY, 3 1 0.0001369 1 0 +644076 GLYCAM1 glycosylation dependent cell adhesion molecule 1 (pseudogene) 12 pseudo - - 0.01142 0 1 +644090 LOC644090 uncharacterized LOC644090 7 unknown - - 1 0.0001369 1 0 +644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 19 protein-coding LYRM8 succinate dehydrogenase assembly factor 1, mitochondrial|LYR motif containing 8|LYR motif-containing protein 8|SDH assembly factor 1 1 0.0001369 8.068 1 1 +644100 ARL14EPL ADP ribosylation factor like GTPase 14 effector protein like 5 protein-coding - ARL14 effector protein-like|ADP-ribosylation factor-like 14 effector protein-like 1 0.0001369 1 0 +644128 RPL23AP53 ribosomal protein L23a pseudogene 53 8 pseudo RPL23A_20_869 - 43 0.005886 7.063 1 1 +644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels 17 protein-coding - phosphoinositide-interacting protein|phosphoinositide-interacting regulator of TRPV1 12 0.001642 1.416 1 1 +644145 LOC644145 exocyst complex component 1 pseudogene 4 pseudo - exocyst -like pseudogene|hCG2040572 1 0.0001369 0.05672 1 1 +644150 WIPF3 WAS/WASL interacting protein family member 3 7 protein-coding CR16 WAS/WASL-interacting protein family member 3|corticosteroids and regional expression protein 16 homolog 27 0.003696 4.093 1 1 +644165 BCRP3 breakpoint cluster region pseudogene 3 22 pseudo BCR3|BCRL3|BCRL6 breakpoint cluster region-like 3|breakpoint cluster region-like 6 2 0.0002737 3.549 1 1 +644168 DRGX dorsal root ganglia homeobox 10 protein-coding DRG11|PRRXL1 dorsal root ganglia homeobox protein|paired related homeobox-like 1|paired-like homeodomain trancription factor DRG11 30 0.004106 0.474 1 1 +644172 LOC644172 mitogen-activated protein kinase 8 interacting protein 1 pseudogene 17 pseudo - - 4.254 0 1 +644186 SYCE3 synaptonemal complex central element protein 3 22 protein-coding C22orf41|THEG2 synaptonemal complex central element protein 3|testis highly expressed gene 2 protein|testis highly expressed protein 2 3 0.0004106 2.38 1 1 +644189 LOC644189 acyl-CoA thioesterase 4 pseudogene 19 pseudo - - 1 0.0001369 1 0 +644192 NR2F2-AS1 NR2F2 antisense RNA 1 15 ncRNA - NR2F2 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +644246 KANSL1-AS1 KANSL1 antisense RNA 1 17 ncRNA - KANSL1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +644265 LOC644265 capping actin protein of muscle Z-line beta subunit pseudogene 2 pseudo - - 0 0 1 0 +644310 LOC644310 ubiquinol-cytochrome c reductase, complex III subunit X pseudogene X pseudo - - 0 0 1 0 +644314 MT1IP metallothionein 1I, pseudogene 16 pseudo MT1|MT1I|MTE metallothionein E 1 0.0001369 0.1665 1 1 +644353 ZCCHC18 zinc finger CCHC-type containing 18 X protein-coding PNMA7B|SIZN2 zinc finger CCHC domain-containing protein 18|paraneoplastic Ma antigen family member 7B|putative zinc finger CCHC domain-containing protein 18|zinc finger, CCHC domain containing 12 pseudogene 1 13 0.001779 3.707 1 1 +644378 GCNT6 glucosaminyl (N-acetyl) transferase 6 6 protein-coding bA421M1.3 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 6 2 0.0002737 1 0 +644387 LOC644387 myelin protein zero like 1 pseudogene 7 pseudo - - 0 0 1 0 +644414 DEFB131 defensin beta 131 4 protein-coding DEFB-31 beta-defensin 131|beta-defensin 31|defensin, beta 31 6 0.0008212 0.08187 1 1 +644422 LOC644422 splicing factor, arginine/serine-rich 6 pseudogene 17 pseudo - serine/arginine-rich splicing factor 6 pseudogene 2 0.0002737 1 0 +644442 HMGB3P11 high mobility group box 3 pseudogene 11 2 pseudo - high mobility group protein B3-like protein-like pseudogene 1 0.0001369 1 0 +644444 TMEM30CP transmembrane protein 30C, pseudogene 3 pseudo CDC50C|TMEM30C transmembrane protein 30C 3 0.0004106 0.01456 1 1 +644456 LOC644456 IK cytokine, down-regulator of HLA II pseudogene 2 pseudo - - 2 0.0002737 1 0 +644504 LOC644504 novel protein similar to chondroitin sulfate GalNAcT-2 (GALNACT-2) X protein-coding - - 0 0 1 0 +644511 RPL13AP6 ribosomal protein L13a pseudogene 6 10 pseudo RPL13A_7_1096|bA348N5.5 - 1 0.0001369 3.644 1 1 +644524 NKX2-4 NK2 homeobox 4 20 protein-coding NKX2.4|NKX2D homeobox protein Nkx-2.4|NK2 transcription factor homolog D|NK2 transcription factor related, locus 4 14 0.001916 0.3792 1 1 +644538 SMIM10 small integral membrane protein 10 X protein-coding CXorf69 small integral membrane protein 10 5 0.0006844 6.04 1 1 +644540 TCEB1P3 transcription elongation factor B subunit 1 pseudogene 3 10 pseudo dJ254P11.1 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) pseudogene 3|transcription elongation factor B (SIII), polypeptide 1 pseudogene 3 0 0 1 0 +644554 LOC644554 uncharacterized LOC644554 19 ncRNA - CTD-2554C21.2 1 0.0001369 1 0 +644591 PPIAL4G peptidylprolyl isomerase A like 4G 1 protein-coding COAS-2 peptidyl-prolyl cis-trans isomerase A-like 4G|PPIase A-like 4A|PPIase A-like 4G|chromosome 1-amplified sequence 2|peptidylprolyl cis-trans isomerase A-like 4|peptidylprolyl cis-trans isomerase A-like 4A|peptidylprolyl cis-trans isomerase A-like 4G|peptidylprolyl isomerase A (cyclophilin A)-like 4G 18 0.002464 4.171 1 1 +644596 SMIM10L2B small integral membrane protein 10 like 2B X ncRNA LINC00087|NCRNA00087 Small integral membrane protein 10-like protein 2B|long intergenic non-protein coding RNA 87 3 0.0004106 5.128 1 1 +644619 INTS4P2 integrator complex subunit 4 pseudogene 2 7 pseudo INTS4L2 integrator complex subunit 4-like 2 71 0.009718 3.385 1 1 +644669 LOC644669 ankyrin repeat domain 30B pseudogene 18 pseudo - - 5 0.0006844 0.2556 1 1 +644672 CLDN25 claudin 25 11 protein-coding - putative claudin-25 21 0.002874 0.1681 1 1 +644694 CDRT15P2 CMT1A duplicated region transcript 15 pseudogene 2 17 pseudo CDRT15L1 CMT1A duplicated region transcript 15-like 1 0 0 1 0 +644714 LIMD1-AS1 LIMD1 antisense RNA 1 3 ncRNA - LIMD1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +644762 LOC644762 mitochondrial fission factor pseudogene 5 pseudo - - 1 0.0001369 1 0 +644809 C15orf56 chromosome 15 open reading frame 56 15 protein-coding - putative uncharacterized protein C15orf56 13 0.001779 3.088 1 1 +644815 FAM83G family with sequence similarity 83 member G 17 protein-coding PAWS1 protein FAM83G|protein associated with SMAD1 77 0.01054 6.827 1 1 +644844 PHGR1 proline, histidine and glycine rich 1 15 protein-coding - proline, histidine and glycine-rich protein 1|proline/histidine/glycine-rich 1 4 0.0005475 1.65 1 1 +644873 LINC01184 long intergenic non-protein coding RNA 1184 5 ncRNA - CTC-228N24.3 8.479 0 1 +644890 MEIG1 meiosis/spermiogenesis associated 1 10 protein-coding SPATA39|bA2K17.3 meiosis expressed gene 1 protein homolog|meiosis expressed gene 1 homolog|spermatogenesis associated 39 8 0.001095 1.418 1 1 +644936 LOC644936 actin, beta pseudogene 5 pseudo - cytoplasmic beta-actin pseudogene 1 0.0001369 4.611 1 1 +644943 RASSF10 Ras association domain family member 10 11 protein-coding - ras association domain-containing protein 10|Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 10 0.001369 3.829 1 1 +644945 KRT16P3 keratin 16 pseudogene 3 17 pseudo KERSMCR - 30 0.004106 1 0 +644974 ALG1L2 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like 2 3 protein-coding - putative glycosyltransferase ALG1L2|asparagine-linked glycosylation 1-like 2 26 0.003559 0.5486 1 1 +644997 PIK3CD-AS1 PIK3CD antisense RNA 1 1 ncRNA C1orf200 - 7 0.0009581 1.057 1 1 +645027 EVPLL envoplakin like 17 protein-coding - envoplakin-like protein 12 0.001642 2.83 1 1 +645037 GAGE2B G antigen 2B X protein-coding CT4.2|GAGE-2|GAGE-2B G antigen 2B/2C|cancer/testis antigen 4.2|g antigen 2A/2B 4 0.0005475 0.2908 1 1 +645051 GAGE13 G antigen 13 X protein-coding GAGE-12A|GAGE-13|GAGE12A G antigen 13|G antigen 12A 2 0.0002737 0.1545 1 1 +645090 1.31 0 1 +645104 CLRN2 clarin 2 4 protein-coding - clarin-2 23 0.003148 0.05084 1 1 +645121 CCNI2 cyclin I family member 2 5 protein-coding - cyclin-I2 11 0.001506 4.225 1 1 +645139 LOC645139 poly(A) binding protein interacting protein 1 pseudogene 17 pseudo - - 0 0 1 0 +645142 PPIAL4D peptidylprolyl isomerase A like 4D 1 protein-coding - peptidyl-prolyl cis-trans isomerase A-like 4D|PPIase A-like 4D|peptidylprolyl isomerase A (cyclophilin A)-like 4D 1.16 0 1 +645158 CBX3P2 chromobox 3 pseudogene 2 18 pseudo - chromobox homolog 3 (HP1 gamma homolog, Drosophila) pseudogene|chromobox homolog 3 pseudogene 2 6 0.0008212 1 0 +645166 LOC645166 lymphocyte-specific protein 1 pseudogene 1 pseudo - - 6.444 0 1 +645180 LOC645180 family with sequence similarity 214 member B pseudogene 3 pseudo - - 0 0 1 0 +645181 LOC645181 PDGFA associated protein 1 pseudogene 5 pseudo - - 2 0.0002737 1 0 +645191 LINGO3 leucine rich repeat and Ig domain containing 3 19 protein-coding LERN2|LRRN6B leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 3|leucine rich repeat neuronal 6B|leucine-rich repeat neuronal protein 2|leucine-rich repeat neuronal protein 6B 23 0.003148 1.787 1 1 +645203 TMEM14DP transmembrane protein 14D, pseudogene 10 pseudo TMEM14D|bA524O24.3 transmembrane protein 14B pseudogene 0 0 1 0 +645206 LINC00693 long intergenic non-protein coding RNA 693 3 ncRNA - - 7 0.0009581 1 0 +645212 EIF3J-AS1 EIF3J antisense RNA 1 (head to head) 15 ncRNA - - 2 0.0002737 1 0 +645280 SMPD4P1 sphingomyelin phosphodiesterase 4 pseudogene 1 22 pseudo - sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 1 10 0.001369 1 0 +645323 LINC00461 long intergenic non-protein coding RNA 461 5 ncRNA EyeLinc1|VISC|Visc-1a|Visc-1b|Visc-2 visual cortex expressed 5 0.0006844 2.281 1 1 +645332 FAM86C2P family with sequence similarity 86, member A pseudogene 11 pseudo - Putative protein FAM86A-like 1 35 0.004791 6.595 1 1 +645367 GGT8P gamma-glutamyltransferase 8 pseudogene 2 pseudo GGT1P1 gamma-glutamyltransferase 1 pseudogene 1 3 0.0004106 1.65 1 1 +645369 TMEM200C transmembrane protein 200C 18 protein-coding TTMA transmembrane protein 200C|transmembrane protein TTMA|two transmembrane domain family member A|two transmembrane domain-containing family member A 41 0.005612 3.395 1 1 +645387 RPL6P27 ribosomal protein L6 pseudogene 27 18 pseudo RPL6_10_1582 - 4 0.0005475 1 0 +645414 PRAMEF19 PRAME family member 19 1 protein-coding PRAMEF18 PRAME family member 19|PRAME family member 18|PRAME family member-like 3 0.0004106 1 0 +645425 PRAMEF20 PRAME family member 20 1 protein-coding PRAMEF21 PRAME family member 20|OTTHUMT00000008157|PRAME family member 20/21|PRAME family member 21 8 0.001095 0.09633 1 1 +645426 TMEM191C transmembrane protein 191C 22 protein-coding - transmembrane protein 191C|KB-1323B2.6 6 0.0008212 1 0 +645431 FUT8-AS1 FUT8 antisense RNA 1 14 ncRNA - FUT8 antisense RNA 1 (non-protein coding) 4.177 0 1 +645432 ARRDC5 arrestin domain containing 5 19 protein-coding - arrestin domain-containing protein 5 22 0.003011 1.765 1 1 +645455 CEP170P1 centrosomal protein 170 pseudogene 1 4 pseudo CEP170L|FAM68B|KIAA0470L centrosomal protein 170kDa pseudogene 1 20 0.002737 1.592 1 1 +645468 LOC645468 insulin like growth factor 2 mRNA binding protein 3 pseudogene 6 pseudo - - 0 0 1 0 +645513 LOC645513 septin 7 pseudogene 4 pseudo - - 3 0.0004106 1 0 +645528 LINC00264 long intergenic non-protein coding RNA 264 10 ncRNA C10orf50|NCRNA00264|bA128B16.2 - 75 0.01027 0.5307 1 1 +645529 LOC645529 acrosin pseudogene 2 pseudo - - 0 0 1 0 +645548 HSPD1P6 heat shock protein family D (Hsp60) member 1 pseudogene 6 3 pseudo HSPD1-6P|HSPDP6 heat shock 60kD protein 1 (chaperonin) pseudogene 6|heat shock 60kDa protein 1 (chaperonin) pseudogene 6 22 0.003011 1 0 +645644 FLJ42627 uncharacterized LOC645644 16 ncRNA - - 3 0.0004106 5.259 1 1 +645676 ASH1L-AS1 ASH1L antisense RNA 1 1 ncRNA - ASH1L antisense RNA 1 (non-protein coding) 8 0.001095 5.289 1 1 +645683 RPL13AP3 ribosomal protein L13a pseudogene 3 14 pseudo RPL13A_11_1370 - 6 0.0008212 3.702 1 1 +645687 LINC00520 long intergenic non-protein coding RNA 520 14 ncRNA C14orf34 - 1 0.0001369 1.481 1 1 +645688 RPL12P38 ribosomal protein L12 pseudogene 38 17 pseudo RPL12_14_1564 - 24 0.003285 1 0 +645694 HTR5BP 5-hydroxytryptamine receptor 5B, pseudogene 2 pseudo 5-HT5B|GPR134|HTR5B 5-hydroxytryptamine (serotonin) receptor 5 pseudogene|5-hydroxytryptamine (serotonin) receptor 5A pseudogene|5-hydroxytryptamine (serotonin) receptor 5B, pseudogene|G protein-coupled receptor 134 0 0 1 0 +645700 ZNF890P zinc finger protein 890, pseudogene 7 pseudo - zinc finger protein 33A pseudogene 9 0.001232 1 0 +645745 MT1HL1 metallothionein 1H-like 1 1 protein-coding MT1P2 metallothionein 1H-like protein 1|MT-1H-like protein 5 0.0006844 1 0 +645752 LOC645752 golgin A6 family member A pseudogene 15 pseudo - golgi autoantigen, golgin subfamily a, 6 pseudogene 8 0.001095 0.6913 1 1 +645784 ANKRD36BP2 ankyrin repeat domain 36B pseudogene 2 2 pseudo - - 173 0.02368 3.899 1 1 +645811 CCDC154 coiled-coil domain containing 154 16 protein-coding C16orf29 coiled-coil domain-containing protein 154 15 0.002053 3.142 1 1 +645832 SEBOX SEBOX homeobox 17 protein-coding OG-9|OG9|OG9X homeobox protein SEBOX|homeobox OG-9|skin-, embryo-, brain- and oocyte-specific homeobox 12 0.001642 0.1672 1 1 +645834 KRT8P15 keratin 8 pseudogene 15 2 pseudo - - 1 0.0001369 1 0 +645840 TXNRD3NB thioredoxin reductase 3 neighbor 3 protein-coding TR2IT1|TXNRD3IT1|TXNRD3NT1 protein TXNRD3NB|TXNRD3 neighbor gene protein|thioredoxin reductase 2 intronic transcript 1|thioredoxin reductase 3 intronic transcript 1|thioredoxin reductase 3 neighbor gene protein|thioredoxin reductase 3 new transcript 1 10 0.001369 7.381 1 1 +645843 TMEM14EP transmembrane protein 14E, pseudogene 3 pseudo TMEM14E transmembrane protein 14E 2 0.0002737 0.4768 1 1 +645851 3.261 0 1 +645864 MAGEB17 MAGE family member B17 X protein-coding - melanoma-associated antigen B17|melanoma antigen family B, 17 (pseudogene)|melanoma antigen family B17 4 0.0005475 1 0 +645922 S100A7L2 S100 calcium binding protein A7 like 2 1 protein-coding S100a7b protein S100-A7-like 2 12 0.001642 0.001732 1 1 +645937 LOC645937 zinc finger protein 598 pseudogene 9 pseudo - - 0 0 1 0 +645954 SVILP1 supervillin pseudogene 1 10 pseudo - - 28 0.003832 1 0 +645961 SPATA31C2 SPATA31 subfamily C member 2 9 protein-coding FAM75C2 spermatogenesis-associated protein 31C2|family with sequence similarity 75, member C2 8 0.001095 1 0 +645969 LOC645969 selenoprotein T pseudogene 9 pseudo - - 0 0 1 0 +645974 PABPC1L2B poly(A) binding protein cytoplasmic 1 like 2B X protein-coding RBM32B polyadenylate-binding protein 1-like 2|RNA binding motif protein 32B|RNA-binding motif protein 32|RNA-binding protein 32 1 0.0001369 1.239 1 1 +645978 LOC645978 alkaline ceramidase 2 pseudogene 2 pseudo - - 1 0.0001369 1 0 +645996 NAP1L6 nucleosome assembly protein 1 like 6 X pseudo - - 1 0.0001369 1.731 1 1 +646000 SLC35G4 solute carrier family 35 member G4 18 protein-coding AMAC1L1|SLC35G4P putative solute carrier family 35 member G4|acyl-malonyl-condensing enzyme 1-like protein 1|protein AMAC1L1|putative solute carrier family 35 member G4 pseudogene|solute carrier family 35, member G4, pseudogene 0 0 1 0 +646023 ADORA2A-AS1 ADORA2A antisense RNA 1 22 ncRNA C22orf45 - 2.524 0 1 +646024 RAET1K retinoic acid early transcript 1K pseudogene 6 pseudo - - 25 0.003422 2.139 1 1 +646030 LOC646030 leucine-rich repeat-containing protein 37A2-like 17 pseudo - - 0 0 1 0 +646074 POM121L10P POM121 transmembrane nucleoporin like 10, pseudogene 22 pseudo - POM121 membrane glycoprotein-like 1 pseudogene|POM121 membrane glycoprotein-like 10, pseudogene|POM121-like 1 1 0.0001369 2.673 1 1 +646090 RHPN2P1 rhophilin Rho GTPase binding protein 2 pseudogene 1 15 pseudo - Putative rhophilin-2-like protein 2 0.0002737 1 0 +646096 CHEK2P2 checkpoint kinase 2 pseudogene 2 15 pseudo - CHK2 checkpoint homolog pseudogene 87 0.01191 1 0 +646113 LINC00643 long intergenic non-protein coding RNA 643 14 ncRNA - - 1 0.0001369 1.282 1 1 +646127 LOC646127 telomeric repeat-binding factor 1 pseudogene X pseudo - - 2 0.0002737 1 0 +646174 C16orf90 chromosome 16 open reading frame 90 16 protein-coding - uncharacterized protein C16orf90 13 0.001779 0.2146 1 1 +646214 LOC646214 p21 protein (Cdc42/Rac)-activated kinase 2 pseudogene 15 pseudo - p21-activated kinase 2 pseudogene 9 0.001232 6.734 1 1 +646243 CXADRP2 coxsackie virus and adenovirus receptor pseudogene 2 15 pseudo - - 0.8248 0 1 +646282 AZGP1P1 alpha-2-glycoprotein 1, zinc-binding pseudogene 1 7 pseudo - alpha-2-glycoprotein 1, zinc pseudogene 1 33 0.004517 1 0 +646300 COL6A4P2 collagen type VI alpha 4 pseudogene 2 3 pseudo COL6A4 alpha collagen containing double von Willebrand factor A domains|collagen VI alpha 4 pseudogene 2|collagen, type VI, alpha 4 0 0 2.033 1 1 +646309 NAMPTP1 nicotinamide phosphoribosyltransferase pseudogene 1 10 pseudo NAMPTL|PBEF2|bA92J19.4 nicotinamide phosphoribosyltransferase-like|novel protein similar to Pre-B cell enhancing factor (PBEF)|pre-B-cell colony enhancing factor 2 6 0.0008212 1 0 +646324 LINC00607 long intergenic non-protein coding RNA 607 2 ncRNA - - 1 0.0001369 1 0 +646347 LOC646347 spermine synthase pseudogene 1 pseudo - - 0 0 1 0 +646405 TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 13 pseudo - - 74 0.01013 3.097 1 1 +646424 SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) 3 protein-coding - serine protease inhibitor Kazal-type 8 4 0.0005475 0.7301 1 1 +646450 ARIH2OS ariadne homolog 2 opposite strand 3 protein-coding C3orf71 uncharacterized protein ARIH2OS|ariadne-2 homolog opposite strand protein 15 0.002053 5.005 1 1 +646457 C19orf67 chromosome 19 open reading frame 67 19 protein-coding - UPF0575 protein C19orf67|UPF0575 protein C19orf67-like 1 0.0001369 1 0 +646471 LOC646471 uncharacterized LOC646471 1 ncRNA - - 5.778 0 1 +646480 FABP9 fatty acid binding protein 9 8 protein-coding PERF|PERF15|T-FABP|TLBP fatty acid-binding protein 9|fatty acid binding protein 9, testis|lipid-binding protein|testis fatty acid binding protein|testis lipid binding protein|testis-type fatty acid-binding protein 19 0.002601 0.03315 1 1 +646486 FABP12 fatty acid binding protein 12 8 protein-coding - fatty acid-binding protein 12|Probable fatty acid-binding protein ENSP00000353650|fatty acid binding protein ORF|intracellular fatty acid-binding protein FABP12 18 0.002464 0.1195 1 1 +646498 C3orf84 chromosome 3 open reading frame 84 3 protein-coding - uncharacterized protein C3orf84 2 0.0002737 0.04982 1 1 +646508 FAM90A27P family with sequence similarity 90 member A27, pseudogene 19 pseudo - - 3 0.0004106 1 0 +646517 LOC646517 Wilms tumor 1 associated protein pseudogene 6 pseudo - - 1 0.0001369 1 0 +646576 HHIP-AS1 HHIP antisense RNA 1 4 ncRNA - HHIP antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +646600 IGF2BP2-AS1 IGF2BP2 antisense RNA 1 3 ncRNA C3orf65 - 9 0.001232 0.6035 1 1 +646603 C4orf51 chromosome 4 open reading frame 51 4 protein-coding - uncharacterized protein C4orf51 18 0.002464 0.1897 1 1 +646625 URAD ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5-) decarboxylase 13 protein-coding PRHOXNB putative 2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase|OHCU decarboxylase|parahox cluster neighbor|parahox neighbor 8 0.001095 0.07304 1 1 +646627 LYPD8 LY6/PLAUR domain containing 8 1 protein-coding - ly6/PLAUR domain-containing protein 8|phospholipase inhibitor 1 0.0001369 0.6015 1 1 +646643 SBK2 SH3 domain binding kinase family member 2 19 protein-coding SGK069 serine/threonine-protein kinase SBK2|SH3-binding domain kinase family, member 2|Sugen kinase 69 43 0.005886 0.4687 1 1 +646658 SYNDIG1L synapse differentiation inducing 1 like 14 protein-coding CAPUCIN|DSPC1|IFITMD4|TMEM90A synapse differentiation-inducing gene protein 1-like|caudate- and putamen-enriched sequence|dispanin subfamily C member 1|interferon induced transmembrane protein domain containing 4|transmembrane protein 90A 38 0.005201 2.381 1 1 +646698 ZSCAN5DP zinc finger and SCAN domain containing 5D pseudogene 19 pseudo ZNF495D|ZSCAN5D Putative zinc finger and SCAN domain-containing protein 5D 1 0.0001369 1 0 +646754 TRIM64C tripartite motif containing 64C 11 protein-coding - putative tripartite motif-containing protein 64C 7 0.0009581 1 0 +646762 LOC646762 uncharacterized LOC646762 7 ncRNA - - 8.035 0 1 +646791 ANP32BP1 acidic nuclear phosphoprotein 32 family member B pseudogene 1 15 pseudo - acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 1 4 0.0005475 1 0 +646799 ZAR1L zygote arrest 1-like 13 protein-coding Z3CXXC7|ZAR2 ZAR1-like protein|zinc finger, 3CxxC-type 7 21 0.002874 0.3144 1 1 +646801 LOC646801 pantothenate kinase 3 pseudogene 11 pseudo - - 1 0.0001369 1 0 +646802 CYP4F62P cytochrome P450 family 4 subfamily F member 62, pseudogene 2 pseudo CYP4F43P CYP4F-se11[6:7:8]|Uncharacterized protein C2orf14-like 1|cytochrome P450, family 4, subfamily F, polypeptide 43, pseudogene|cytochrome P450, family 4, subfamily F, polypeptide 62, pseudogene 8 0.001095 1 0 +646804 LOC646804 alkylated DNA repair protein alkB homolog 8-like 1 pseudo - - 0 0 1 0 +646813 LOC646813 DEAH-box helicase 9 pseudogene 11 pseudo - DEAH (Asp-Glu-Ala-His) box helicase 9 pseudogene|DEAH (Asp-Glu-Ala-His) box polypeptide 9 pseudogene 1 0.0001369 0.01165 1 1 +646851 FAM227A family with sequence similarity 227 member A 22 protein-coding - protein FAM227A|Protein FAM227A 10 0.001369 5.438 1 1 +646870 LOC646870 centrosomal protein 57kDa pseudogene 1 pseudo - - 0 0 1 0 +646892 SH2D7 SH2 domain containing 7 15 protein-coding - SH2 domain-containing protein 7|Putative SH2 domain-containing protein LOC646892|hCG38941 20 0.002737 1.076 1 1 +646915 ZNF806 zinc finger protein 806 2 protein-coding - zinc finger protein 806 0 0 1 0 +646938 LOC646938 TBC1 domain family member 2B pseudogene 15 pseudo - - 1 0.0001369 1 0 +646962 HRCT1 histidine rich carboxyl terminus 1 9 protein-coding LGLL338|PRO537|UNQ338 histidine-rich carboxyl terminus protein 1 43 0.005886 4.588 1 1 +646970 LOC646970 chromosome 5 open reading frame 15 pseudogene 1 pseudo - - 0 0 1 0 +646982 LINC00598 long intergenic non-protein coding RNA 598 13 ncRNA TTL twelve-thirteen translocation leukemia transcript (non-protein coding) 7 0.0009581 0.979 1 1 +646996 RAB42P1 RAB42, member RAS oncogene family, pseudogene 1 14 pseudo RAB42|RAB42P RAB42, member RAS homolog family, pseudogene 0 0 1 0 +646999 LOC646999 akirin 1 pseudogene 7 pseudo - - 3.482 0 1 +647020 LOC647020 uncharacterized LOC647020 15 protein-coding - - 0 0 1 0 +647024 C6orf132 chromosome 6 open reading frame 132 6 protein-coding bA7K24.2 uncharacterized protein C6orf132 8 0.001095 6.337 1 1 +647033 PA2G4P4 proliferation-associated 2G4 pseudogene 4 3 pseudo PA2G4L1 - 0 0 6.477 1 1 +647042 GOLGA6L10 golgin A6 family-like 10 15 protein-coding GOLGA6L18 golgin subfamily A member 6-like protein 10|golgi autoantigen, golgin subfamily a, 6-like 10|golgin A6 family-like 18|putative golgin subfamily A member 6-like protein 10 6 0.0008212 6.332 1 1 +647044 FAM220BP Putative SIPAR-like protein C9orf51 9 pseudo C9orf51 - 0 0 1 0 +647060 SPATA31A1 SPATA31 subfamily A member 1 9 protein-coding C9orf36|C9orf36A|FAM75A1|FAM75A2|SPATA31A2 spermatogenesis-associated protein 31A1|SPATA31 subfamily A, member 2|family with sequence similarity 75, member A1|family with sequence similarity 75, member A2|protein FAM75A1|protein FAM75A2|spermatogenesis-associated protein 31A2 20 0.002737 1 0 +647076 BRD7P2 bromodomain containing 7 pseudogene 2 3 pseudo - - 0 0 1 0 +647087 C7orf73 chromosome 7 open reading frame 73 7 protein-coding PL-5283 uncharacterized protein C7orf73 2 0.0002737 10.46 1 1 +647107 LINC01192 long intergenic non-protein coding RNA 1192 3 ncRNA CT64 cancer/testis antigen 64 (non-protein coding) 0 0 1 0 +647121 EMBP1 embigin pseudogene 1 1 pseudo - embigin homolog pseudogene 5.352 0 1 +647135 SRGAP2B SLIT-ROBO Rho GTPase activating protein 2B 1 protein-coding SRGAP2L|SRGAP2P2 SLIT-ROBO Rho GTPase-activating protein 2B|SLIT-ROBO Rho GTPase activating protein 2 pseudogene 2|SLIT-ROBO Rho GTPase activating protein 2B (pseudogene) 16 0.00219 1 0 +647166 LINC00371 long intergenic non-protein coding RNA 371 13 ncRNA LINC00372 long intergenic non-protein coding RNA 372 0 0 1 0 +647174 SERPINE3 serpin family E member 3 13 protein-coding - serpin E3|nexin-related serine protease inhibitor|serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 3 28 0.003832 0.4629 1 1 +647187 IGHV3OR16-6 immunoglobulin heavy variable 3/OR16-6 (pseudogene) 16 pseudo IGHV3OR166 IGHV3/OR16-6 1 0.0001369 1 0 +647211 LOC647211 rhophilin-2-like 16 pseudo - - 4 0.0005475 1 0 +647264 LOC647264 keratin-associated protein 6-2 13 unknown - - 0 0 1 0 +647288 CTAGE11P CTAGE family member 11, pseudogene 13 pseudo - CTAGE family, member 5 pseudogene 1 0.0001369 2.967 1 1 +647309 GMNC geminin coiled-coil domain containing 3 protein-coding GEMC1 geminin coiled-coil domain-containing protein 1 5 0.0006844 1.363 1 1 +647319 VEZF1P1 vascular endothelial zinc finger 1 pseudogene 1 3 pseudo VEZF1L1|ZNF161L1 vascular endothelial zinc finger 1-like 1|zinc finger protein 161-like 1 1 0.0001369 1 0 +647589 ANHX anomalous homeobox 12 protein-coding - anomalous homeobox protein|hCG2007354 5 0.0006844 1 0 +647696 CDC27P1 cell division cycle 27 pseudogene 1 2 pseudo - cell division cycle 27 homolog pseudogene 1 1 0.0001369 1 0 +647859 LOC647859 occludin pseudogene 5 pseudo - - 1.5 0 1 +647946 MIR924HG MIR924 host gene 18 ncRNA LINC00669 long intergenic non-protein coding RNA 669 10 0.001369 3.096 1 1 +647979 NORAD non-coding RNA activated by DNA damage 20 ncRNA LINC00657 long intergenic non-protein coding RNA 657 4 0.0005475 13.01 1 1 +648691 LL22NC03-63E9.3 uncharacterized LOC648691 22 ncRNA - - 0.5071 0 1 +648740 ACTG1P4 actin gamma 1 pseudogene 4 1 pseudo ACTGP4 ACTB pseudogene|actin, beta pseudogene|actin, gamma 2, smooth muscle, enteric pseudogene|actin, gamma pseudogene 4 2.974 0 1 +648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G 6 protein-coding - protein phosphatase 1 regulatory subunit 3G|protein phosphatase 1, regulatory (inhibitor) subunit 3G|putative protein phosphatase 1 regulatory inhibitor subunit 3G 12 0.001642 5.061 1 1 +648809 EFTUD1P1 elongation factor Tu GTP binding domain containing 1 pseudogene 1 15 pseudo FAM42B|HsT19321 elongation factor Tu GTP-binding domain-containing protein 1 pseudogene|family with sequence similarity 42, member B 5 0.0006844 1 0 +648927 LOC648927 lysine acetyltransferase 7 pseudogene X pseudo - - 1 0.0001369 1 0 +648947 AKR1C7P aldo-keto reductase family 1 member C7, pseudogene 10 pseudo - aldo-keto reductase family 1, member C pseudogene|aldo-keto reductase family 1, member C1 (dihydrodiol dehydrogenase 1; 20-alpha (3-alpha)-hydroxysteroid dehydrogenase) pseudogene 1 0.0001369 1 0 +649137 ZSCAN5C zinc finger and SCAN domain containing 5C 19 pseudo ZNF495C|ZSCAN5CP Zinc finger and SCAN domain-containing protein 5-like protein 2|zinc finger and SCAN domain containing 5C, pseudogene 9 0.001232 1 0 +649159 LINC00273 long intergenic non-protein coding RNA 273 16 ncRNA NCRNA00273|TOP NCRNA00273-1 2 0.0002737 1 0 +649179 PRAMENP PRAME N-terminal-like, pseudogene 22 pseudo PRAMEF24P|PRAMEL PRAME family member 24, pseudogene|preferentially expressed antigen in melanoma-like 7 0.0009581 1 0 +649264 CES5AP1 carboxylesterase 5A pseudogene 1 22 pseudo - - 5 0.0006844 1 0 +649330 HNRNPCL3 heterogeneous nuclear ribonucleoprotein C-like 3 1 protein-coding HNRNPCL2 heterogeneous nuclear ribonucleoprotein C-like 3|heterogeneous nuclear ribonucleoprotein C-like 2|hnRNP C-like-2 3.632 0 1 +649352 LOC649352 ubiquitin carboxyl-terminal hydrolase 17-like protein 2-like 8 pseudo - ubiquitin carboxyl-terminal hydrolase 17-like pseudogene 2 0.0002737 1 0 +649446 DLGAP1-AS1 DLGAP1 antisense RNA 1 18 ncRNA HsT914 DLGAP1 antisense RNA 1 (non-protein coding) 1 0.0001369 6.792 1 1 +649489 PPP1R2P5 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 5 2 pseudo - - 1 0.0001369 1 0 +649946 RPL23AP64 ribosomal protein L23a pseudogene 64 11 pseudo RPL23A_25_1182 - 1.981 0 1 +650024 LOC650024 cancer/testis antigen 55 pseudogene X pseudo - - 1 0.0001369 1 0 +650293 LOC650293 seven transmembrane helix receptor 4 protein-coding - seven transmembrane helix receptor 1 0.0001369 0.04336 1 1 +650368 TSSC2 tumor suppressing subtransferable candidate 2 pseudogene 11 pseudo - asparagine-linked glycosylation 1 homolog (yeast, beta-1,4-mannosyltransferase) (ALG1) pseudogene|asparagine-linked glycosylation 1-like pseudogene|beta-1,4-mannosyltransferase pseudogene|tumor-supressing STF cDNA 2 218 0.02984 4.507 1 1 +650623 BEND3P3 BEN domain containing 3 pseudogene 3 10 pseudo - - 5.192 0 1 +650655 ABCA17P ATP binding cassette subfamily A member 17, pseudogene 16 pseudo ABCA17 ATP-binding cassette, sub-family A (ABC1), member 17, pseudogene 28 0.003832 3.329 1 1 +650662 1.187 0 1 +650747 IMPA1P1 inositol monophosphatase 1 pseudogene 1 8 pseudo IMPA1P inositol(myo)-1(or 4)-monophosphatase 1 pseudogene 4 0.0005475 1 0 +650794 MIPEPP3 mitochondrial intermediate peptidase pseudogene 3 13 pseudo - long intergenic non-protein coding RNA 539 1 0.0001369 1 0 +651250 LRRC37A16P leucine rich repeat containing 37 member A16, pseudogene 17 pseudo LRRC37C leucine rich repeat containing 37, member A3 pseudogene 38 0.005201 10.42 1 1 +651302 ZNF192P1 zinc finger protein 192 pseudogene 1 6 pseudo ZNF389|ZNF389P|dJ265C24.4 zinc finger protein 389, pseudogene 10 0.001369 3.207 1 1 +651746 ANKRD33B ankyrin repeat domain 33B 5 protein-coding - ankyrin repeat domain-containing protein 33B|Ankyrin repeat domain-containing protein LOC651746 1 0.0001369 1 0 +652276 LOC652276 potassium channel tetramerization domain containing 5 pseudogene 16 pseudo - Uncharacterized protein PRO0461|potassium channel tetramerisation domain containing 5 pseudogene 2 0.0002737 5.526 1 1 +652919 2.35 0 1 +652965 SNORA48 small nucleolar RNA, H/ACA box 48 17 snoRNA ACA48|SNORA48A ACA48 snoRNA 1 0.0001369 0.4153 1 1 +652966 SNORD10 small nucleolar RNA, C/D box 10 17 snoRNA mgU6-77 mgU6-77 snoRNA 1 0.0001369 0.7704 1 1 +652968 GATSL3 GATS protein like 3 22 protein-coding CASTOR1 GATS-like protein 3|cellular arginine sensor for mTORC1 protein 1 11 0.001506 7.649 1 1 +652972 LRRC37A5P leucine rich repeat containing 37 member A5, pseudogene 9 ncRNA C9orf29 - 15 0.002053 1 0 +652991 SKOR2 SKI family transcriptional corepressor 2 18 protein-coding CH18515|CORL2|FUSSEL18 SKI family transcriptional corepressor 2|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 8 0.001095 1 0 +652995 UCA1 urothelial cancer associated 1 (non-protein coding) 19 ncRNA CUDR|LINC00178|NCRNA00178|UCAT1|onco-lncRNA-36 cancer up-regulated drug resistant|long intergenic non-protein coding RNA 178 4 0.0005475 3.203 1 1 +653045 PTPN20CP protein tyrosine phosphatase, non-receptor type 20C, pseudogene 10 pseudo PTPN20C|bA164N7.3 - 1 0.0001369 1 0 +653061 GOLGA8S golgin A8 family member S 15 pseudo - golgin A8 family, member B pseudogene 1 0.0001369 1 0 +653073 GOLGA8J golgin A8 family member J 15 protein-coding - golgin subfamily A member 8J|Golgin subfamily A member 8-like protein 3 6 0.0008212 1 0 +653075 GOLGA8T golgin A8 family member T 15 pseudo - golgin A8 family, member A pseudogene 1 0.0001369 1 0 +653082 ZDHHC11B zinc finger DHHC-type containing 11B 5 protein-coding DHHC-11B probable palmitoyltransferase ZDHHC11B|Probable palmitoyltransferase ZDHHC11B|Zinc finger DHHC domain-containing protein 11B 19 0.002601 1 0 +653113 FAM86FP family with sequence similarity 86, member A pseudogene 12 pseudo - - 19 0.002601 5.044 1 1 +653121 ZBTB8A zinc finger and BTB domain containing 8A 1 protein-coding BOZF1|ZBTB8|ZNF916A zinc finger and BTB domain-containing protein 8A|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 29 0.003969 7.88 1 1 +653125 GOLGA8K golgin A8 family member K 15 protein-coding - golgin subfamily A member 8K|Golgin subfamily A member 8K|putative golgin subfamily A member 8I-like 1 0.0001369 1 0 +653129 0.1552 0 1 +653140 FAM228A family with sequence similarity 228 member A 2 protein-coding C2orf84 protein FAM228A|UPF0638 protein C2orf84 10 0.001369 2.084 1 1 +653145 ANXA8 annexin A8 10 protein-coding ANX8|CH17-360D5.2 annexin A8|VAC-beta|annexin VIII|annexin-8|vascular anticoagulant-beta 0 0 5.266 1 1 +653149 NBPF6 neuroblastoma breakpoint family member 6 1 protein-coding - neuroblastoma breakpoint family member 6 2 0.0002737 0.7127 1 1 +653155 LOC653155 pre-mRNA processing factor 4B pseudogene X pseudo - - 2 0.0002737 1 0 +653160 LOC653160 uncharacterized LOC653160 1 ncRNA - - 2 0.0002737 1 0 +653162 RPSAP9 ribosomal protein SA pseudogene 9 9 pseudo LAMR1P9|RPSA_20_986 laminin receptor 1 pseudogene 9 4.894 0 1 +653166 OR1D4 olfactory receptor family 1 subfamily D member 4 (gene/pseudogene) 17 pseudo OR17-30 olfactory receptor 17-30|olfactory receptor 1D4|olfactory receptor OR17-1|olfactory receptor pseudogene|olfactory receptor, family 1, subfamily D, member 4 pseudogene 12 0.001642 1 0 +653188 GUSBP3 glucuronidase, beta pseudogene 3 5 pseudo - - 2 0.0002737 5.621 1 1 +653190 ABCC6P1 ATP binding cassette subfamily C member 6 pseudogene 1 16 pseudo - ATP binding cassette subfamily C member 6 pseudogene 1 (functional)|ATP-binding cassette, sub-family C, member 6 pseudogene 1 (functional) 25 0.003422 2.853 1 1 +653226 SRP9P1 signal recognition particle 9 pseudogene 1 10 pseudo SRP9L1 hCG1781062|signal recognition particle 9-like 1 0 0 1 0 +653234 AGAP10P ArfGAP with GTPase domain, ankyrin repeat and PH domain 10 pseudogene 10 pseudo AGAP10|CTGLF10P|CTGLF7|bA144G6.2|bA358L16.1 centaurin, gamma-like family, member 10 pseudogene|centaurin, gamma-like family, member 7 34 0.004654 1 0 +653238 GTF2H2B general transcription factor IIH subunit 2B (pseudogene) 5 pseudo - general transcription factor IIH, polypeptide 2B (pseudogene) 12 0.001642 5.855 1 1 +653240 KRTAP4-11 keratin associated protein 4-11 17 protein-coding KAP4.11|KAP4.14|KRTAP4-14|KRTAP4.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 164 0.02245 0.04619 1 1 +653247 PRB2 proline rich protein BstNI subfamily 2 12 protein-coding IB-9|PRPPRB1|Ps|cP7 basic salivary proline-rich protein 2|Basic proline-rich peptide P-E|con1 glycoprotein|proline-rich protein BstNI, subfamily-2 (parotid size variant)|salivary proline-rich protein 2 69 0.009444 0.4227 1 1 +653268 AGAP7P ArfGAP with GTPase domain, ankyrin repeat and PH domain 7, pseudogene 10 pseudo AGAP-7|AGAP7|CTGLF4|bA109G10.1 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 7 pseudogene|centaurin, gamma-like family, member 4|putative Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 7 39 0.005338 3.55 1 1 +653269 POTEI POTE ankyrin domain family member I 2 protein-coding POTE2beta POTE ankyrin domain family member I 6 0.0008212 1 0 +653275 CFC1B cripto, FRL-1, cryptic family 1B 2 protein-coding - cryptic family protein 1B 4 0.0005475 0.9131 1 1 +653282 CT47A7 cancer/testis antigen family 47, member A7 X protein-coding CT47.7 cancer/testis antigen 47A|cancer/testis CT47 family, member 7 0.01953 0 1 +653303 LOC653303 proprotein convertase subtilisin/kexin type 7 pseudogene 11 pseudo - - 0 0 1 0 +653308 ASAH2B N-acylsphingosine amidohydrolase 2B 10 protein-coding ASAH2C|ASAH2L|bA449O16.3|bA98I6.3 putative inactive neutral ceramidase B|ASAH2-like protein|N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2B|putative inactive N-acylsphingosine amidohydrolase 2B|putative inactive non-lysosomal ceramidase B 9 0.001232 2.65 1 1 +653316 FAM153C family with sequence similarity 153, member C, pseudogene 5 pseudo NY-REN-7-like - 8 0.001095 0.626 1 1 +653319 KIAA0895L KIAA0895 like 16 protein-coding - uncharacterized protein KIAA0895-like 31 0.004243 8.32 1 1 +653333 FAM86B2 family with sequence similarity 86 member B2 8 protein-coding - putative protein N-methyltransferase FAM86B2|protein FAM86B2 22 0.003011 2.781 1 1 +653361 NCF1 neutrophil cytosolic factor 1 7 protein-coding NCF1A|NOXO2|SH3PXD1A|p47phox neutrophil cytosol factor 1|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 cytosolic factor 1, (chronic granulomatous disease, autosomal 1)|nox organizer 2|nox-organizing protein 2|p47-phox 19 0.002601 6.259 1 1 +653390 RRN3P2 RRN3 homolog, RNA polymerase I transcription factor pseudogene 2 16 pseudo - RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 2|RRN3 RNA polymerase I transcription factor homolog pseudogene|RRN3-like protein 1 216 0.02956 3.566 1 1 +653399 GSTTP2 glutathione S-transferase theta pseudogene 2 22 pseudo - - 2 0.0002737 0.07986 1 1 +653404 FOXD4L6 forkhead box D4-like 6 9 protein-coding - forkhead box protein D4-like 6|FOXD4-like 6 2 0.0002737 1.552 1 1 +653423 SPAG11A sperm associated antigen 11A 8 protein-coding EDDM2A|HE2 sperm-associated antigen 11A|epididymal protein 2A|human epididymis-specific protein 2|sperm antigen HE2 10 0.001369 0.08147 1 1 +653427 FOXD4L5 forkhead box D4-like 5 9 protein-coding bA15J10.2 forkhead box protein D4-like 5|FOXD4-like 5 10 0.001369 0.1857 1 1 +653437 AQP12B aquaporin 12B 2 protein-coding INSSA3 aquaporin-12B|AQP-12B|insulin synthesis associated 3 28 0.003832 0.876 1 1 +653441 PHC1P1 polyhomeotic homolog 1 pseudogene 1 12 pseudo PHC1B polyhomeotic homolog 1 (Drosophila) pseudogene 1|polyhomeotic homolog 1B 0 0 1 0 +653479 MRPL45P2 mitochondrial ribosomal protein L45 pseudogene 2 17 pseudo - - 14 0.001916 1 0 +653483 AFDN-AS1 AFDN antisense RNA 1 (head to head) 6 ncRNA C6orf124|HGC6.4|MLLT4-AS1|dJ431P23.3 MLLT4 antisense RNA 1 (head to head)|MLLT4 antisense RNA 1 (non-protein coding) 23 0.003148 3.891 1 1 +653489 RGPD3 RANBP2-like and GRIP domain containing 3 2 protein-coding RGP3 ranBP2-like and GRIP domain-containing protein 3 82 0.01122 7.636 1 1 +653492 PSG10P pregnancy specific beta-1-glycoprotein 10, pseudogene 19 pseudo PSG10|PSG12 pregnancy specific beta-1-glycoprotein 1 pseudogene|pregnancy specific beta-1-glycoprotein 12|pregnancy specific beta-1-glycoprotein 120|pregnancy-specific beta-1 glycoprotein 10 0.001369 0.1192 1 1 +653499 LGALS7B galectin 7B 19 protein-coding GAL7|Gal-7|HKL-14|LGALS7|PI7 galectin-7|keratinocyte lectin 14|lectin galactoside-binding soluble 7|lectin, galactoside-binding, soluble, 7B|p53-induced gene 1 protein|p53-induced protein 1 4 0.0005475 2.664 1 1 +653501 6.743 0 1 +653505 PPIAL4A peptidylprolyl isomerase A like 4A 1 protein-coding COAS-2|COAS2|PPIAL4|PPIAL4B peptidyl-prolyl cis-trans isomerase A-like 4A|PPIase A-like 4B|PPIase A-like 4G|chromosome 1-amplified sequence 2|chromosome one-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 4A|peptidylprolyl cis-trans isomerase A-like 4B|peptidylprolyl isomerase A (cyclophilin A)-like 4|peptidylprolyl isomerase A (cyclophilin A)-like 4A|peptidylprolyl isomerase A (cyclophilin A)-like 4B 2 0.0002737 0.003765 1 1 +653509 SFTPA1 surfactant protein A1 10 protein-coding COLEC4|PSAP|PSP-A|PSPA|SFTP1|SFTPA1B|SP-A|SP-A1|SPA|SPA1 pulmonary surfactant-associated protein A1|35 kDa pulmonary surfactant-associated protein|SP-A1 beta|SP-A1 delta|SP-A1 epsilon|SP-A1 gamma|alveolar proteinosis protein|collectin-4|surfactant protein A1 variant AB'D' 6A|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' 6A|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 23 0.003148 1.918 1 1 +653513 LOC653513 phosphodiesterase 4D interacting protein-like 1 protein-coding - - 0 0 1 0 +653519 GPR89A G protein-coupled receptor 89A 1 protein-coding GPHR|GPR89|GPR89B|SH120|UNQ192 Golgi pH regulator A|protein GPR89|putative MAPK-activating protein PM01|putative NF-kappa-B-activating protein 90 7 0.0009581 9.456 1 1 +653544 DUX4L6 double homeobox 4 like 6 4 pseudo - double homeobox protein 4-like protein 6 0.08369 0 1 +653545 DUX4L5 double homeobox 4 like 5 4 pseudo - double homeobox protein 4-like protein 5 0.001204 0 1 +653553 HSPB1P1 heat shock protein family B (small) member 1 pseudogene 1 9 pseudo HSPBL2 heat shock 27kD protein-like 2|heat shock 27kDa protein 1 pseudogene 1|heat shock 27kDa protein-like 2 pseudogene 8.006 0 1 +653566 SPCS2P4 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene 4 1 pseudo - signal peptidase complex subunit 2 homolog pseudogene 10.72 0 1 +653567 TMEM236 transmembrane protein 236 10 protein-coding FAM23A|FAM23B|bA162I21.2|bA16O1.2 transmembrane protein 236|family with sequence similarity 23, member A|family with sequence similarity 23, member B 3.139 0 1 +653583 PHLDB3 pleckstrin homology like domain family B member 3 19 protein-coding - pleckstrin homology-like domain family B member 3 45 0.006159 7.734 1 1 +653598 PPIAL4C peptidylprolyl isomerase A like 4C 1 protein-coding COAS-2 peptidyl-prolyl cis-trans isomerase A-like 4A/B/C|PPIase A-like 4A|PPIase A-like 4C|chromosome 1-amplified sequence 2|chromosome one-amplified sequence 2|cyclophilin homolog overexpressed in liver cancer|peptidylprolyl isomerase A (cyclophilin A)-like 4C 4.663 0 1 +653604 HIST2H3D histone cluster 2 H3 family member d 1 protein-coding - histone H3.2|histone 2, H3d|histone cluster 2, H3d 24 0.003285 1.129 1 1 +653606 PRAMEF22 PRAME family member 22 1 protein-coding PRAMEF3L PRAME family member 22 5 0.0006844 0.05843 1 1 +653631 LOC653631 axin interactor, dorsalization associated pseudogene 1 pseudo - - 1 0.0001369 1 0 +653635 WASH7P WAS protein family homolog 7 pseudogene 1 pseudo FAM39F|WASH5P WAS protein family homolog 5 pseudogene|family with sequence similarity 39, member F 10.23 0 1 +653639 LYPLA2P1 lysophospholipase II pseudogene 1 6 pseudo APT|LYPLA2L|dJ570F3.6 dJ570F3.6 (novel protein similar to lysophospholipase II (LYPLA2))|lysophospholipase 2 like 2 0.0002737 6.43 1 1 +653641 GOLGA6C golgin A6 family member C 15 protein-coding - golgin subfamily A member 6C|Golgin subfamily A member 6C|golgi autoantigen, golgin subfamily a, 6C|putative golgin subfamily A member 6C 15 0.002053 0.1367 1 1 +653643 GOLGA6D golgin A6 family member D 15 protein-coding - golgin subfamily A member 6D|golgi autoantigen, golgin subfamily a, 6D|putative golgin subfamily A member 6D 12 0.001642 0.0756 1 1 +653645 TBC1D3P1-DHX40P1 TBC1D3P1-DHX40P1 readthrough, transcribed pseudogene 17 pseudo DHX40P|DHX40P1|TBC1D3P1 TBC1 domain family, member 3 pseudogene 1|TBC1D3-DHX40 pseudogene|TBC1D3P1-DHX40P1 readthrough (non-protein coding) 17 0.002327 0.5893 1 1 +653653 LOC653653 adaptor related protein complex 1 sigma 2 subunit pseudogene 17 pseudo - - 5.902 0 1 +653657 MBD3L3 methyl-CpG binding domain protein 3 like 3 19 protein-coding - putative methyl-CpG-binding domain protein 3-like 3|MBD3-like 3|MBD3-like protein 3 3 0.0004106 1 0 +653659 TMEM183B transmembrane protein 183B 3 protein-coding C1orf37-DUP transmembrane protein 183B 0 0 1 0 +653677 SEC1P secretory blood group 1, pseudogene 19 pseudo SEC1 alpha(1,2) fucosyltransferase pseudogene 16 0.00219 2.713 1 1 +653687 FAM226B family with sequence similarity 226 member B (non-protein coding) X ncRNA CXorf50B|LINC00246B|NCRNA00246B hCG1731871|long intergenic non-protein coding RNA 246B|non-protein coding RNA 246B 2.065 0 1 +653712 LOC653712 intraflagellar transport 122 homolog (Chlamydomonas) pseudogene 3 pseudo - - 1 0.0001369 1 0 +653720 GOLGA8M golgin A8 family member M 15 protein-coding - golgin subfamily A member 8M|Putative golgin subfamily A member 6-like protein 7 3 0.0004106 1 0 +653781 POTEJ POTE ankyrin domain family member J 2 protein-coding POTE2beta POTE ankyrin domain family member J 11 0.001506 1 0 +653784 MZT2A mitotic spindle organizing protein 2A 2 protein-coding FAM128A|MOZART2A mitotic-spindle organizing protein 2A|family with sequence similarity 128, member A|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 2A 12 0.001642 9.263 1 1 +653786 LOC653786 otoancorin pseudogene 16 pseudo - - 1 0.0001369 2.228 1 1 +653808 ZG16 zymogen granule protein 16 16 protein-coding JCLN|JCLN1|ZG16A zymogen granule membrane protein 16|jacalin-like lectin domain containing|secretory lectin ZG16|zymogen granule protein 16 homolog 1 0.0001369 0.9755 1 1 +653820 FAM72B family with sequence similarity 72 member B 1 protein-coding p17 protein FAM72B|RP11-439A17.6|amyloid-beta peptide-induced protein p17 5 0.0006844 6.527 1 1 +653857 ACTR3C ARP3 actin-related protein 3 homolog C 7 protein-coding ARP11 actin-related protein 3C|actin-related Arp11|actin-related protein 11 7 0.0009581 5.096 1 1 +654231 OCM oncomodulin 7 protein-coding OCM1|OM|ONCM oncomodulin-1|beta parvalbumin|hCG18255|parvalbumin beta 6 0.0008212 0.8706 1 1 +654254 ZNF732 zinc finger protein 732 4 protein-coding - zinc finger protein 732|zinc finger protein LOC654254 39 0.005338 2.396 1 1 +654319 SNORA5A small nucleolar RNA, H/ACA box 5A 7 snoRNA ACA5|ACA5A/B/C - 0.1782 0 1 +654320 SNORA8 small nucleolar RNA, H/ACA box 8 11 snoRNA ACA8 ACA8 small nucleolar RNA|ACA8 snoRNA 8.058 0 1 +654321 SNORA75 small nucleolar RNA, H/ACA box 75 2 snoRNA SNORA75A|U23 U23 small nucleolar RNA|U23 snoRNA 1 0.0001369 0.04614 1 1 +654322 SNORA13 small nucleolar RNA, H/ACA box 13 5 snoRNA ACA13 ACA13 small nucleolar RNA within TIGA1 host 0 0 0.03464 1 1 +654341 2.258 0 1 +654342 LOC654342 lymphocyte-specific protein 1 pseudogene 2 pseudo - - 7.919 0 1 +654346 LGALS9C galectin 9C 17 protein-coding - galectin-9C|gal-9C|galectin 9 like|galectin-9-like protein B|lectin, galactoside-binding, soluble, 9 (galectin 9) pseudogene|lectin, galactoside-binding, soluble, 9C 15 0.002053 4.458 1 1 +654348 0.07224 0 1 +654364 NME1-NME2 NME1-NME2 readthrough 17 protein-coding NM23-LV|NMELV NME1-NME2 protein|NME1-NME2 readthrough transcript 3 0.0004106 7.188 1 1 +654412 FAM138B family with sequence similarity 138 member B 2 ncRNA F379|bA395L14.6 F379 retina-specific protein|chromosome 2 F379 retina specific protein 17 0.002327 0.1284 1 1 +654429 LRTM2 leucine rich repeats and transmembrane domains 2 12 protein-coding - leucine-rich repeat and transmembrane domain-containing protein 2 52 0.007117 1.446 1 1 +654433 PAX8-AS1 PAX8 antisense RNA 1 2 ncRNA - - 6.252 0 1 +654434 SNHG20 small nucleolar RNA host gene 20 17 ncRNA C17orf86|LINC00338|NCRNA00338|SCARNA16HG long intergenic non-protein coding RNA 338|small nucleolar RNA host gene 20 (non-protein coding) 6.978 0 1 +654463 FER1L6 fer-1 like family member 6 8 protein-coding C8ORFK23 fer-1-like protein 6|fer-1-like 6 194 0.02655 2.092 1 1 +654466 FGF7P3 fibroblast growth factor 7 pseudogene 3 9 pseudo KGFLP2 keratinocyte growth factor-like protein 2 6 0.0008212 6.193 1 1 +654502 IQCJ IQ motif containing J 3 protein-coding - IQ domain-containing protein J|calmodulin binding protein 9 0.001232 0.1614 1 1 +654780 LOC654780 splicing factor proline/glutamine-rich 16 ncRNA SFPQ - 0 0 1 0 +654790 PCP4L1 Purkinje cell protein 4 like 1 1 protein-coding IQM1 Purkinje cell protein 4-like protein 1|PCP4-like protein 1 2 0.0002737 4.299 1 1 +654816 NCF1B neutrophil cytosolic factor 1B pseudogene 7 pseudo NCF-1B|SH3PXD1B putative SH3 and PX domain-containing protein 1B|putative neutrophil cytosol factor 1B 13 0.001779 4.244 1 1 +654817 NCF1C neutrophil cytosolic factor 1C pseudogene 7 pseudo SH3PXD1C - 2 0.0002737 4.557 1 1 +664612 MIR539 microRNA 539 14 ncRNA MIRN539|hsa-mir-539|mir-539 - 1 0.0001369 1 0 +664613 MIR544A microRNA 544a 14 ncRNA MIR544|MIRN544|hsa-mir-544|hsa-mir-544a microRNA 544 0 0 1 0 +664614 MIR545 microRNA 545 X ncRNA MIRN545|hsa-mir-545|mir-545 - 0 0 1 0 +664616 MIR487B microRNA 487b 14 ncRNA MIRN487B|mir-487b hsa-mir-487b 0 0 1 0 +664617 MIR542 microRNA 542 X ncRNA MIRN542|hsa-mir-542|mir-542 - 2 0.0002737 1 0 +664618 HSP90AB4P heat shock protein 90 alpha family class B member 4, pseudogene 15 pseudo HSP90Bd heat shock protein 90Bd|heat shock protein 90kDa alpha (cytosolic), class B member 4, pseudogene|heat shock protein 90kDa alpha family class B member 4, pseudogene 0 0 0.9661 1 1 +664701 ZNF826P zinc finger protein 826, pseudogene 19 pseudo ZNF826 - 17 0.002327 4.395 1 1 +677679 SCARNA3 small Cajal body-specific RNA 3 1 ncRNA HBI-100 - 0.05035 0 1 +677681 SCARNA20 small Cajal body-specific RNA 20 17 ncRNA ACA66 - 0.01732 0 1 +677763 SCARNA21 small Cajal body-specific RNA 21 17 ncRNA ACA68|SCARNA21A - 0.06763 0 1 +677765 SCARNA18 small Cajal body-specific RNA 18 5 ncRNA SCARNA18A|U109 - 0.01287 0 1 +677766 SCARNA2 small Cajal body-specific RNA 2 1 ncRNA HBII-382|mgU2-25/61 - 11 0.001506 2.705 1 1 +677767 SCARNA7 small Cajal body-specific RNA 7 3 ncRNA U90 - 0 0 1.758 1 1 +677768 SCARNA13 small Cajal body-specific RNA 13 14 ncRNA U93 - 1 0.0001369 1 0 +677769 SCARNA17 small Cajal body-specific RNA 17 18 ncRNA U91 mgU12-22/U4-8 2.901 0 1 +677770 SCARNA22 small Cajal body-specific RNA 22 4 ncRNA ACA11 ACA11 snoRNA 1 0.0001369 0.04389 1 1 +677771 SCARNA4 small Cajal body-specific RNA 4 1 ncRNA ACA26 ACA26 scaRNA 0.03273 0 1 +677772 SCARNA6 small Cajal body-specific RNA 6 2 ncRNA U88 - 1 0.0001369 0.769 1 1 +677773 SCARNA23 small Cajal body-specific RNA 23 X ncRNA ACA12 ACA12 scaRNA 0.007074 0 1 +677774 SCARNA1 small Cajal body-specific RNA 1 1 ncRNA ACA35 ACA35 scaRNA 0.06749 0 1 +677775 SCARNA5 small Cajal body-specific RNA 5 2 ncRNA U87 - 0.9567 0 1 +677776 SCARNA8 small Cajal body-specific RNA 8 9 ncRNA U92 - 0 0 0.03244 1 1 +677777 SCARNA12 small Cajal body-specific RNA 12 12 ncRNA U89 U89 small nuclear RNA 1 0.0001369 2.381 1 1 +677778 SCARNA15 small Cajal body-specific RNA 15 15 ncRNA ACA45 ACA45 scaRNA 0.0318 0 1 +677779 LINC00488 long intergenic non-protein coding RNA 488 3 ncRNA C3orf66 - 3 0.0004106 0.7079 1 1 +677780 SCARNA11 small Cajal body-specific RNA 11 12 ncRNA ACA57 ACA57 scaRNA 0.01329 0 1 +677781 SCARNA16 small Cajal body-specific RNA 16 17 ncRNA ACA47 ACA47 scaRNA 0.962 0 1 +677784 FAM138D family with sequence similarity 138 member D 12 ncRNA F379 F379 retina-specific protein 18 0.002464 0.05562 1 1 +677790 TMEM78 transmembrane protein 78 1 ncRNA - - 5 0.0006844 1 0 +677792 SNORA1 small nucleolar RNA, H/ACA box 1 11 snoRNA ACA1 - 0.02765 0 1 +677793 SNORA2A small nucleolar RNA, H/ACA box 2A 12 snoRNA ACA2A ACA2a snoRNA 0.03237 0 1 +677794 SNORA2B small nucleolar RNA, H/ACA box 2B 12 snoRNA ACA2b ACA2b snoRNA 0 0 0.02308 1 1 +677795 SNORA5B small nucleolar RNA, H/ACA box 5B 7 snoRNA ACA5b - 0.01259 0 1 +677796 SNORA5C small nucleolar RNA, H/ACA box 5C 7 snoRNA ACA5c HBI-80 0.09827 0 1 +677797 SNORA7B small nucleolar RNA, H/ACA box 7B 3 snoRNA ACA7B - 0 0 2.362 1 1 +677798 SNORA9 small nucleolar RNA, H/ACA box 9 7 snoRNA ACA9|SNORA9A ACA9 snoRNA 0.06408 0 1 +677799 SNORA11 small nucleolar RNA, H/ACA box 11 X snoRNA SNORA11A|U107 U107 snoRNA|small nucleolar RNA, H/ACA box 11A 3 0.0004106 0.08322 1 1 +677800 SNORA12 small nucleolar RNA, H/ACA box 12 10 snoRNA U108 U108 snoRNA 0.3348 0 1 +677801 SNORA14A small nucleolar RNA, H/ACA box 14A 7 snoRNA ACA14a ACA14a snoRNA 1 0.0001369 0.0234 1 1 +677802 SNORA14B small nucleolar RNA, H/ACA box 14B 1 snoRNA ACA14b ACA14b snoRNA 1 0.0001369 0.09061 1 1 +677803 SNORA15 small nucleolar RNA, H/ACA box 15 7 snoRNA ACA15|SNORA15A ACA15 snoRNA 0.03482 0 1 +677804 SNORA17A small nucleolar RNA, H/ACA box 17A 9 snoRNA ACA17|SNORA17 ACA17 snoRNA|small nucleolar RNA, H/ACA box 17 1 0.0001369 1 0 +677805 SNORA18 small nucleolar RNA, H/ACA box 18 11 snoRNA ACA18 ACA18 snoRNA 0.2153 0 1 +677806 SNORA20 small nucleolar RNA, H/ACA box 20 6 snoRNA ACA20 ACA20 snoRNA 0.1111 0 1 +677807 SNORA22 small nucleolar RNA, H/ACA box 22 7 snoRNA ACA22|SNORA22A ACA22 snoRNA 0 0 0.1631 1 1 +677808 SNORA23 small nucleolar RNA, H/ACA box 23 11 snoRNA ACA23 ACA23 snoRNA 0.3667 0 1 +677809 SNORA24 small nucleolar RNA, H/ACA box 24 4 snoRNA ACA24|SNORA24A ACA24 snoRNA|ACA53 snoRNA 0.2183 0 1 +677810 SNORA26 small nucleolar RNA, H/ACA box 26 4 snoRNA HBI-6 - 0.07452 0 1 +677811 SNORA28 small nucleolar RNA, H/ACA box 28 14 snoRNA ACA28 ACA28 snoRNA 0.013 0 1 +677812 SNORA29 small nucleolar RNA, H/ACA box 29 6 snoRNA ACA29 ACA29 snoRNA 1 0.0001369 0.04828 1 1 +677813 SNORA30 small nucleolar RNA, H/ACA box 30 16 snoRNA ACA30|SNORA30A ACA30 snoRNA 0.00203 0 1 +677814 SNORA31 small nucleolar RNA, H/ACA box 31 13 snoRNA ACA31|SNORA31A ACA31 snoRNA 0 0 0.2285 1 1 +677815 SNORA2C small nucleolar RNA, H/ACA box 2C 12 snoRNA ACA34|MIR1291|SNORA34 ACA34 snoRNA|small nucleolar RNA, H/ACA box 34 0 0 0.1446 1 1 +677816 SNORA35 small nucleolar RNA, H/ACA box 35 X snoRNA HBI-36|SNORA35A - 7.952e-05 0 1 +677817 SNORA36A small nucleolar RNA, H/ACA box 36A X snoRNA ACA36 ACA36 snoRNA 0 0 0.02875 1 1 +677818 SNORA36B small nucleolar RNA, H/ACA box 36B 1 snoRNA ACA36b - 2 0.0002737 0.008557 1 1 +677819 SNORA37 small nucleolar RNA, H/ACA box 37 18 snoRNA ACA37 ACA37 snoRNA 0.06659 0 1 +677820 SNORA38 small nucleolar RNA, H/ACA box 38 6 snoRNA ACA38 ACA38 snoRNA 0.03682 0 1 +677821 SNORA71E small nucleolar RNA, H/ACA box 71E 20 snoRNA ACA39|SNORA39 ACA39 snoRNA|small nucleolar RNA, H/ACA box 39 2.565 0 1 +677822 SNORA40 small nucleolar RNA, H/ACA box 40 11 snoRNA ACA40|SNORA40A ACA40 snoRNA 0.186 0 1 +677823 SNORA80E small nucleolar RNA, H/ACA box 80E 1 snoRNA ACA42|SNORA42 ACA42 snoRNA|small nucleolar RNA, H/ACA box 42 1 0.0001369 0.03599 1 1 +677825 SNORA44 small nucleolar RNA, H/ACA box 44 1 snoRNA ACA44 ACA44 snoRNA 0.03058 0 1 +677826 SNORA3B small nucleolar RNA, H/ACA box 3B 11 snoRNA ACA3-2|SNORA45|SNORA45B ACA3-2 snoRNA|small nucleolar RNA, H/ACA box 45|small nucleolar RNA, H/ACA box 45B 2 0.0002737 0.1131 1 1 +677827 SNORA46 small nucleolar RNA, H/ACA box 46 16 snoRNA ACA46 ACA46 snoRNA 0.05282 0 1 +677828 SNORA47 small nucleolar RNA, H/ACA box 47 5 snoRNA HBI-115 - 0.1918 0 1 +677829 SNORA49 small nucleolar RNA, H/ACA box 49 12 snoRNA ACA49 ACA49 snoRNA 0 0 0.102 1 1 +677830 SNORA50A small nucleolar RNA, H/ACA box 50A 16 snoRNA ACA50|SNORA50|SNORA76A ACA50 snoRNA|small nucleolar RNA, H/ACA box 50|small nucleolar RNA, H/ACA box 76A 0.0359 0 1 +677831 SNORA51 small nucleolar RNA, H/ACA box 51 20 snoRNA ACA51 ACA51 snoRNA 1 0.0001369 0.02989 1 1 +677832 SNORA53 small nucleolar RNA, H/ACA box 53 12 snoRNA ACA53 - 1.053 0 1 +677833 SNORA54 small nucleolar RNA, H/ACA box 54 11 snoRNA ACA54 ACA54 snoRNA 0.04587 0 1 +677834 SNORA55 small nucleolar RNA, H/ACA box 55 1 snoRNA ACA55 ACA55 snoRNA 0.04514 0 1 +677835 SNORA56 small nucleolar RNA, H/ACA box 56 X snoRNA ACA56 ACA56 snoRNA 0 0 0.03389 1 1 +677836 SNORA58 small nucleolar RNA, H/ACA box 58 3 snoRNA ACA58|SNORA58B ACA58 snoRNA 0.008066 0 1 +677837 SNORA60 small nucleolar RNA, H/ACA box 60 20 snoRNA ACA60 ACA60 snoRNA 2 0.0002737 1 0 +677838 SNORA61 small nucleolar RNA, H/ACA box 61 1 snoRNA ACA61 ACA61 snoRNA 0.1771 0 1 +677839 SNORA71C small nucleolar RNA, H/ACA box 71C 20 snoRNA U71c - 1 0.0001369 0.09291 1 1 +677840 SNORA71D small nucleolar RNA, H/ACA box 71D 20 snoRNA U71d - 1 0.0001369 0.07886 1 1 +677841 SNORA74B small nucleolar RNA, H/ACA box 74B 5 snoRNA U19-2 U19-2 snoRNA 0.3622 0 1 +677842 SNORA50C small nucleolar RNA, H/ACA box 50C 17 snoRNA ACA62|SNORA76|SNORA76C small nucleolar RNA, H/ACA box 76|small nucleolar RNA, H/ACA box 76C 5 0.0006844 0.3928 1 1 +677843 SNORA77 small nucleolar RNA, H/ACA box 77 1 snoRNA ACA63|SNORA77A - 0.02297 0 1 +677844 SNORA78 small nucleolar RNA, H/ACA box 78 16 snoRNA ACA64 - 0.02932 0 1 +677845 SNORA79 small nucleolar RNA, H/ACA box 79 14 snoRNA ACA65|SNORA79A - 0.01626 0 1 +677846 SNORA80A small nucleolar RNA, H/ACA box 80A 21 snoRNA ACA67|SNORA80 small nucleolar RNA, H/ACA box 80 0.07056 0 1 +677847 SNORA81 small nucleolar RNA, H/ACA box 81 3 snoRNA HBI-61 HBI-61 snoRNA 0.6874 0 1 +677848 SNORD1A small nucleolar RNA, C/D box 1A 17 snoRNA R38A|snR38A R38a snoRNA 0 0 1 +677849 SNORD1B small nucleolar RNA, C/D box 1B 17 snoRNA R38B|snR38B R38b snoRNA 0 0 0 1 1 +677850 SNORD1C small nucleolar RNA, C/D box 1C 17 snoRNA R38C|snR38C R38c snoRNA 4.221 0 1 +677882 SNORA59B small nucleolar RNA, H/ACA box 59B 17 snoRNA ACA59 - 1 0.0001369 0.2739 1 1 +678655 CD27-AS1 CD27 antisense RNA 1 12 ncRNA - CD27 antisense RNA 1 (non-protein coding) 3 0.0004106 8.233 1 1 +684959 SNORA25 small nucleolar RNA, H/ACA box 25 11 snoRNA ACA25|SNORA25A - 0.06713 0 1 +692053 SNORD9 small nucleolar RNA, C/D box 9 14 snoRNA mgU6-53B - 0.000255 0 1 +692057 SNORD12 small nucleolar RNA, C/D box 12 20 snoRNA HBII-99|MIR1259|MIRN1259 hsa-mir-1259|microRNA 1259 0 0 1 +692058 SNORD11 small nucleolar RNA, C/D box 11 2 snoRNA HBII-95 - 0 0 1 +692063 SNORA32 small nucleolar RNA, H/ACA box 32 11 snoRNA ACA32 - 1 0.0001369 0.0173 1 1 +692072 SNORD5 small nucleolar RNA, C/D box 5 11 snoRNA mgh28S-2410 mgh28S-2410 snoRNA 0 0 1 +692073 SNORA16A small nucleolar RNA, H/ACA box 16A 1 snoRNA ACA16 - 0.06771 0 1 +692075 SNORD6 small nucleolar RNA, C/D box 6 11 snoRNA mgh28S-2412 mgh28S-2412 snoRNA 1 0.0001369 0 1 1 +692076 SNORD7 small nucleolar RNA, C/D box 7 17 snoRNA Z30|mgU6-47 - 0 0 1 +692085 SNORD45C small nucleolar RNA, C/D box 45C 1 snoRNA U45C - 0 0 1 +692086 SNORD17 small nucleolar RNA, C/D box 17 20 snoRNA HBI-43 - 2.062 0 1 +692087 SNORD49B small nucleolar RNA, C/D box 49B 17 snoRNA U49B - 0 0 1 +692088 SNORD50B small nucleolar RNA, C/D box 50B 6 snoRNA U50'|U50B - 0 0 1 +692089 SNORD19 small nucleolar RNA, C/D box 19 3 snoRNA HBII-108 - 0 0 1 +692090 SNORD59B small nucleolar RNA, C/D box 59B 12 snoRNA U59B - 0 0 1 +692091 SNORD23 small nucleolar RNA, C/D box 23 19 snoRNA HBII-115 - 0.001466 0 1 +692092 SNORD32B small nucleolar RNA, C/D box 32B 6 snoRNA U32B - 0 0 1 +692094 MSMP microseminoprotein, prostate associated 9 protein-coding PSMP prostate-associated microseminoprotein|PC3 prostate cancer cell-secreted microprotein 13 0.001779 4.998 1 1 +692099 FAM86DP family with sequence similarity 86 member D, pseudogene 3 pseudo FAM86D - 90 0.01232 7.196 1 1 +692106 SNORD65 small nucleolar RNA, C/D box 65 17 snoRNA HBII-135|SNORD65A - 0 0 1 +692107 SNORD66 small nucleolar RNA, C/D box 66 3 snoRNA HBII-142 - 0 0 0 1 1 +692108 SNORD67 small nucleolar RNA, C/D box 67 11 snoRNA HBII-166 - 1 0.0001369 0.01224 1 1 +692109 SNORD69 small nucleolar RNA, C/D box 69 3 snoRNA HBII-210 - 0 0 1 +692110 SNORD70 small nucleolar RNA, C/D box 70 2 snoRNA HBII-234|SNORD70A - 0 0 1 +692111 SNORD71 small nucleolar RNA, C/D box 71 16 snoRNA HBII-239|MIRN768|hsa-mir-768 microRNA 768 0 0 1 +692148 SCARNA10 small Cajal body-specific RNA 10 12 ncRNA U85 - 1 0.0001369 1.595 1 1 +692149 SCARNA14 small Cajal body-specific RNA 14 15 ncRNA U100 - 2 0.0002737 0.008981 1 1 +692157 SNORA16B small nucleolar RNA, H/ACA box 16B 1 snoRNA U98b - 0.02491 0 1 +692158 SNORA57 small nucleolar RNA, H/ACA box 57 11 snoRNA U99 - 1 0.0001369 0.7495 1 1 +692195 SNORD75 small nucleolar RNA, C/D box 75 1 snoRNA U75 - 0 0 1 +692196 SNORD76 small nucleolar RNA, C/D box 76 1 snoRNA U76 - 1 0.0001369 0 1 1 +692197 SNORD77 small nucleolar RNA, C/D box 77 1 snoRNA SNORD77A|U77 - 0 0 1 +692198 SNORD78 small nucleolar RNA, C/D box 78 1 snoRNA U78 - 0 0 1 +692199 SNORD84 small nucleolar RNA, C/D box 84 6 snoRNA U84 - 0 0 1 +692200 SNORD103C small nucleolar RNA, C/D box 103C 1 snoRNA HBII-251|SNORD85 small nucleolar RNA, C/D box 85 0 0 1 +692201 SNORD86 small nucleolar RNA, C/D box 86 20 snoRNA U86 - 0 0 1 +692202 SNORD88A small nucleolar RNA, C/D box 88A 19 snoRNA HBII-180A - 0 0 1 +692203 SNORD88B small nucleolar RNA, C/D box 88B 19 snoRNA HBII-180B - 7.364e-05 0 1 +692204 SNORD88C small nucleolar RNA, C/D box 88C 19 snoRNA HBII-180C - 0.0001766 0 1 +692205 SNORD89 small nucleolar RNA, C/D box 89 2 snoRNA HBII-289 - 3 0.0004106 0.06345 1 1 +692206 SNORD90 small nucleolar RNA, C/D box 90 9 snoRNA HBII-295 - 2 0.0002737 0 1 1 +692207 SNORD91A small nucleolar RNA, C/D box 91A 17 snoRNA HBII-296a - 0 0 1 +692208 SNORD91B small nucleolar RNA, C/D box 91B 17 snoRNA HBII-296b - 0 0 1 +692209 SNORD92 small nucleolar RNA, C/D box 92 2 snoRNA HBII-316 - 0 0 1 +692210 SNORD93 small nucleolar RNA, C/D box 93 7 snoRNA HBII-336 - 1 0.0001369 0 1 1 +692211 SNORD98 small nucleolar RNA, C/D box 98 10 snoRNA HBII-419 - 0 0 1 +692212 SNORD99 small nucleolar RNA, C/D box 99 1 snoRNA HBII-420 - 0 0 1 +692213 SNORD110 small nucleolar RNA, C/D box 110 20 snoRNA HBII-55 - 0 0 0 1 1 +692214 SNORD111 small nucleolar RNA, C/D box 111 16 snoRNA HBII-82 - 0 0 1 +692223 SNORD97 small nucleolar RNA, C/D box 97 11 snoRNA U97 - 0.3899 0 1 +692224 FBXO22-AS1 FBXO22 antisense RNA 1 15 ncRNA FBXO22OS|FISTC1OS|HsT18082|NCRNA00053 F-box only protein 22 opposite strand|F-box protein 22 opposite strand|FBXO22 antisense RNA 1 (non-protein coding)|FBXO22 opposite strand (non-protein coding)|FISTC1 opposite strand (non-protein coding) 5.901 0 1 +692225 SNORD94 small nucleolar RNA, C/D box 94 2 snoRNA U94 - 0.3335 0 1 +692226 SNORD96B small nucleolar RNA, C/D box 96B X snoRNA U96b - 0 0 1 +692227 SNORD104 small nucleolar RNA, C/D box 104 17 snoRNA U104 - 1 0.0001369 0 1 1 +692229 SNORD105 small nucleolar RNA, C/D box 105 19 snoRNA U105 - 1 0.0001369 0 1 1 +692233 SNORD117 small nucleolar RNA, C/D box 117 6 snoRNA U83 - 0 0 1 +692234 SNORD103A small nucleolar RNA, C/D box 103A 1 snoRNA U103 - 0.000304 0 1 +692312 PPAN-P2RY11 PPAN-P2RY11 readthrough 19 protein-coding - PPAN-P2RY11 protein|PPAN-P2RY11 readthrough transcript|SSF1/P2Y11 protein 45 0.006159 3.417 1 1 +693121 MIR411 microRNA 411 14 ncRNA MIRN411|hsa-mir-411|mir-411 - 5 0.0006844 1 0 +693123 MIR449B microRNA 449b 5 ncRNA MIRN449B|mir-449b hsa-mir-449b 1 0.0001369 1 0 +693124 MIR532 microRNA 532 X ncRNA MIRN532|hsa-mir-532|mir-532 - 1 0.0001369 1 0 +693125 MIR548A1 microRNA 548a-1 6 ncRNA MIRN548A1 hsa-mir-548a-1 3 0.0004106 1 0 +693126 MIR548A2 microRNA 548a-2 6 ncRNA MIRN548A2 hsa-mir-548a-2 0 0 1 0 +693127 MIR548A3 microRNA 548a-3 8 ncRNA MIRN548A3 hsa-mir-548a-3 1 0.0001369 1 0 +693128 MIR548B microRNA 548b 6 ncRNA MIRN548B hsa-mir-548b 1 0.0001369 1 0 +693129 MIR548C microRNA 548c 12 ncRNA MIRN548C hsa-mir-548c 1 0.0001369 1 0 +693130 MIR548D1 microRNA 548d-1 8 ncRNA MIRN548D1 hsa-mir-548d-1 1 0.0001369 1 0 +693131 MIR548D2 microRNA 548d-2 17 ncRNA MIRN548D2 hsa-mir-548d-2 1 0.0001369 1 0 +693133 MIR550A1 microRNA 550a-1 7 ncRNA MIR550-1|MIRN550-1|hsa-mir-550a-1|mir-550a-1 hsa-mir-550-1|microRNA 550-1 3 0.0004106 1 0 +693134 MIR550A2 microRNA 550a-2 7 ncRNA MIR550-2|MIRN550-2|hsa-mir-550a-2|mir-550a-2 hsa-mir-550-2|microRNA 550-2 1 0.0001369 1 0 +693136 MIR551B microRNA 551b 3 ncRNA MIRN551B|mir-551b hsa-mir-551b 4 0.0005475 1 0 +693140 MIR555 microRNA 555 1 ncRNA MIRN555|hsa-mir-555 - 1 0.0001369 1 0 +693141 MIR556 microRNA 556 1 ncRNA MIRN556|hsa-mir-556|mir-556 - 1 0.0001369 1 0 +693142 MIR557 microRNA 557 1 ncRNA MIRN557|hsa-mir-557 - 1 0.0001369 1 0 +693143 MIR558 microRNA 558 2 ncRNA MIRN558|hsa-mir-558 - 1 0.0001369 1 0 +693148 MIR563 microRNA 563 3 ncRNA MIRN563|hsa-mir-563 - 0 0 1 0 +693152 MIR567 microRNA 567 3 ncRNA MIRN567|hsa-mir-567 - 2 0.0002737 1 0 +693153 MIR568 microRNA 568 3 ncRNA MIRN568|hsa-mir-568 - 0 0 1 0 +693154 MIR569 microRNA 569 3 ncRNA MIRN569|hsa-mir-569 - 0 0 1 0 +693155 MIR570 microRNA 570 3 ncRNA MIRN570|hsa-mir-570 - 1 0.0001369 1 0 +693156 MIR571 microRNA 571 4 ncRNA MIRN571|hsa-mir-571 - 1 0.0001369 1 0 +693158 MIR573 microRNA 573 4 ncRNA MIRN573|hsa-mir-573|mir-573 - 1 0.0001369 1 0 +693163 MIR578 microRNA 578 4 ncRNA MIRN578|hsa-mir-578 - 0 0 1 0 +693164 MIR579 microRNA 579 5 ncRNA MIRN579|hsa-mir-579 - 0 0 1 0 +693166 MIR581 microRNA 581 5 ncRNA MIRN581|hsa-mir-581 - 0 0 1 0 +693170 MIR585 microRNA 585 5 ncRNA MIRN585|hsa-mir-585|mir-585 - 0 0 1 0 +693172 MIR587 microRNA 587 6 ncRNA MIRN587|hsa-mir-587 - 3 0.0004106 1 0 +693173 MIR588 microRNA 588 6 ncRNA MIRN588|hsa-mir-588 - 1 0.0001369 1 0 +693174 MIR589 microRNA 589 7 ncRNA MIRN589|hsa-mir-589|mir-589 - 1 0.0001369 1 0 +693178 MIR593 microRNA 593 7 ncRNA MIRN593|hsa-mir-593 - 0 0 1 0 +693180 MIR595 microRNA 595 7 ncRNA MIRN595|hsa-mir-595 - 0 0 1 0 +693181 MIR596 microRNA 596 8 ncRNA MIRN596|hsa-mir-596 - 1 0.0001369 1 0 +693182 MIR597 microRNA 597 8 ncRNA MIRN597|hsa-mir-597|mir-597 - 0 0 1 0 +693183 MIR598 microRNA 598 8 ncRNA MIRN598|hsa-mir-598|mir-598 - 0 0 1 0 +693184 MIR599 microRNA 599 8 ncRNA MIRN599|hsa-mir-599 - 0 0 1 0 +693186 MIR601 microRNA 601 9 ncRNA MIRN601|hsa-mir-601 - 0 0 1 0 +693187 MIR602 microRNA 602 9 ncRNA MIRN602|hsa-mir-602 - 4 0.0005475 1 0 +693189 MIR604 microRNA 604 10 ncRNA MIRN604|hsa-mir-604 - 1 0.0001369 1 0 +693190 MIR605 microRNA 605 10 ncRNA MIRN605|hsa-mir-605|mir-605 - 1 0.0001369 1 0 +693191 MIR606 microRNA 606 10 ncRNA MIRN606|hsa-mir-606 - 0 0 1 0 +693196 MIR611 microRNA 611 11 ncRNA MIRN611|hsa-mir-611 - 1 0.0001369 1 0 +693197 MIR612 microRNA 612 11 ncRNA MIRN612|hsa-mir-612 - 1 0.0001369 1 0 +693198 MIR613 microRNA 613 12 ncRNA MIRN613|hsa-mir-613 - 0 0 1 0 +693199 MIR614 microRNA 614 12 ncRNA MIRN614|hsa-mir-614 - 1 0.0001369 1 0 +693201 MIR616 microRNA 616 12 ncRNA MIRN616|hsa-mir-616 - 1 0.0001369 1 0 +693202 MIR617 microRNA 617 12 ncRNA MIRN617|hsa-mir-617 - 1 0.0001369 1 0 +693204 MIR619 microRNA 619 12 ncRNA MIRN619|hsa-mir-619 miR-619-5p 0 0 1 0 +693205 MIR620 microRNA 620 12 ncRNA MIRN620|hsa-mir-620 - 2 0.0002737 1 0 +693206 MIR621 microRNA 621 13 ncRNA MIRN621|hsa-mir-621 - 1 0.0001369 1 0 +693207 MIR622 microRNA 622 13 ncRNA MIRN622|hsa-mir-622 - 4 0.0005475 1 0 +693208 MIR623 microRNA 623 13 ncRNA MIRN623|hsa-mir-623 - 1 0.0001369 1 0 +693209 MIR624 microRNA 624 14 ncRNA MIRN624|hsa-mir-624|mir-624 - 1 0.0001369 1 0 +693212 MIR627 microRNA 627 15 ncRNA MIRN627|hsa-mir-627|mir-627 - 0 0 1 0 +693215 MIR630 microRNA 630 15 ncRNA MIRN630|hsa-mir-630 - 0 0 1 0 +693219 MIR634 microRNA 634 17 ncRNA MIRN634|hsa-mir-634 - 2 0.0002737 1 0 +693220 MIR635 microRNA 635 17 ncRNA MIRN635|hsa-mir-635 - 1 0.0001369 1 0 +693222 MIR637 microRNA 637 19 ncRNA MIRN637|hsa-mir-637 - 1 0.0001369 1 0 +693224 MIR639 microRNA 639 19 ncRNA MIRN639|hsa-mir-639 - 1 0.0001369 1 0 +693225 MIR640 microRNA 640 19 ncRNA MIRN640|hsa-mir-640 - 1 0.0001369 1 0 +693227 MIR642A microRNA 642a 19 ncRNA MIR642|MIRN642|hsa-mir-642|hsa-mir-642a|mir-642a microRNA 642|microRNA mir-642a 1 0.0001369 1 0 +693228 MIR643 microRNA 643 19 ncRNA MIRN643|hsa-mir-643|mir-643 - 1 0.0001369 1 0 +693230 MIR645 microRNA 645 20 ncRNA MIRN645|hsa-mir-645 - 1 0.0001369 1 0 +693231 MIR646 microRNA 646 20 ncRNA MIRN646|hsa-mir-646 - 1 0.0001369 1 0 +693233 MIR648 microRNA 648 22 ncRNA MIRN648|hsa-mir-648 - 1 0.0001369 1 0 +693234 MIR649 microRNA 649 22 ncRNA MIRN649|hsa-mir-649 - 0 0 1 0 +693235 MIR92B microRNA 92b 1 ncRNA MIRN92B|hsa-mir-92b|mir-92b - 2 0.0002737 1 0 +723778 MIR650 microRNA 650 22 ncRNA MIRN650|hsa-mir-650 - 0 0 1 0 +723809 LHFPL3-AS2 LHFPL3 antisense RNA 2 7 ncRNA - LHFPL3 antisense RNA 2 (non-protein coding) 1.783 0 1 +723961 INS-IGF2 INS-IGF2 readthrough 11 protein-coding INSIGF insulin, isoform 2|INS-IGF2 readthrough transcript protein|insulin- insulin-like growth factor 2 read-through product 10 0.001369 1.463 1 1 +723972 ANP32AP1 acidic nuclear phosphoprotein 32 family member A pseudogene 1 15 pseudo - acidic (leucine-rich) nuclear phosphoprotein 32 family, member A pseudogene 1|hepatopoietin PCn127 5 0.0006844 3.678 1 1 +724023 MIR653 microRNA 653 7 ncRNA MIRN653|hsa-mir-653|mir-653 - 1 0.0001369 1 0 +724024 MIR654 microRNA 654 14 ncRNA MIRN654|hsa-mir-654|mir-654 - 3 0.0004106 1 0 +724025 MIR655 microRNA 655 14 ncRNA MIRN655|hsa-mir-655|mir-655 - 1 0.0001369 1 0 +724026 MIR656 microRNA 656 14 ncRNA MIRN656|hsa-mir-656|mir-656 - 4 0.0005475 1 0 +724029 MIR659 microRNA 659 22 ncRNA MIRN659|hsa-mir-659|mir-659 - 0 0 1 0 +724033 MIR663A microRNA 663a 20 ncRNA MIR663|MIRN663|hsa-mir-663|hsa-mir-663a|mir-663a microRNA 663 1 0.0001369 1 0 +724087 LINC01545 long intergenic non-protein coding RNA 1545 X ncRNA CXorf31 - 1 0.0001369 1 0 +724102 SNHG4 small nucleolar RNA host gene 4 5 ncRNA NCRNA00059|U19H U19 host|small nucleolar RNA host gene (non-protein coding) 4|small nucleolar RNA host gene 4 (non-protein coding) 3.022 0 1 +727676 SNORD118 small nucleolar RNA, C/D box 118 17 snoRNA U8 - 1 0.0001369 1 0 +727677 CASC8 cancer susceptibility candidate 8 (non-protein coding) 8 ncRNA CARLo-1|LINC00860 long intergenic non-protein coding RNA 860 0 0 0.1666 1 1 +727686 SNURFL SNRPN upstream reading frame-like (pseudogene) X pseudo CXorf19 - 1 0.0001369 1 0 +727699 LINC00163 long intergenic non-protein coding RNA 163 21 ncRNA C21orf134|NCRNA00163|NLC1-A|NLC1A narcolepsy candidate region gene 1A|narcolepsy candidate-region 1 gene A 1 0.0001369 1 0 +727708 SNORD116-19 small nucleolar RNA, C/D box 116-19 15 snoRNA HBII-85-19 - 0.0001673 0 1 +727758 ROCK1P1 Rho associated coiled-coil containing protein kinase 1 pseudogene 1 18 pseudo - - 29 0.003969 1 0 +727800 RNF208 ring finger protein 208 9 protein-coding - RING finger protein 208 14 0.001916 7.235 1 1 +727820 LOC727820 uncharacterized LOC727820 1 unknown - - 1 0.0001369 1 0 +727828 TRIM64DP tripartite motif containing 64D, pseudogene 11 pseudo - tripartite motif containing 64B pseudogene 5 0.0006844 1 0 +727830 SPATA31A3 SPATA31 subfamily A member 3 9 protein-coding FAM75A3 spermatogenesis-associated protein 31A3|family with sequence similarity 75, member A3|protein FAM75A3 27 0.003696 0.2726 1 1 +727832 GOLGA6L6 golgin A6 family-like 6 15 protein-coding - golgin subfamily A member 6-like protein 6|golgi autoantigen, golgin subfamily a, 6-like 6|putative golgin subfamily A member 6-like protein 6 25 0.003422 0.7793 1 1 +727838 LOC727838 cancer/testis antigen family 47, member A11 pseudogene X pseudo - cancer/testis antigen family 47, member A pseudogene 0 0 1 0 +727851 RGPD8 RANBP2-like and GRIP domain containing 8 2 protein-coding RANBP2L1|RGP8|RanBP2alpha RANBP2-like and GRIP domain-containing protein 8|RAN binding protein 2-like 1|ran-binding protein 2-like 3|ranBP2-like 3|ranBP2L3 62 0.008486 0.6019 1 1 +727857 BHLHA9 basic helix-loop-helix family member a9 17 protein-coding BHLHF42|CCSPD class A basic helix-loop-helix protein 9|Fingerin|class F basic helix-loop-helix factor 42|class II basic helix-loop-helix protein 1 0.0001369 1 0 +727874 LOC727874 WW domain binding protein 11 pseudogene X pseudo - - 2 0.0002737 1 0 +727884 LOC727884 insulin like growth factor 2 mRNA binding protein 2 pseudogene 12 pseudo - - 1 0.0001369 1 0 +727896 LOC727896 cysteine and histidine rich domain containing 1 pseudogene 18 pseudo - cysteine and histidine-rich domain (CHORD) containing 1 pseudogene 4.702 0 1 +727897 MUC5B mucin 5B, oligomeric mucus/gel-forming 11 protein-coding MG1|MUC-5B|MUC5|MUC9 mucin-5B|cervical mucin MUC5B|high molecular weight salivary mucin MG1|mucin 5, subtype B, tracheobronchial|sublingual gland mucin 415 0.0568 5.189 1 1 +727905 SPATA31A5 SPATA31 subfamily A member 5 9 protein-coding FAM75A5 spermatogenesis-associated protein 31A5|family with sequence similarity 75, member A5|protein FAM75A5 2 0.0002737 0.1465 1 1 +727910 TLCD2 TLC domain containing 2 17 protein-coding - TLC domain-containing protein 2 3 0.0004106 1 0 +727924 LOC727924 uncharacterized LOC727924 15 ncRNA - - 0 0 0.1489 1 1 +727936 GXYLT2 glucoside xylosyltransferase 2 3 protein-coding GLT8D4 glucoside xylosyltransferase 2|glycosyltransferase 8 domain containing 4|glycosyltransferase 8 domain-containing protein 4 22 0.003011 5.586 1 1 +727940 RHOXF2B Rhox homeobox family member 2B X protein-coding - rhox homeobox family member 2B 10 0.001369 0.5099 1 1 +727941 SLC25A24P1 SLC25A24 pseudogene 1 1 pseudo - - 4 0.0005475 1 0 +727947 LOC727947 ubiquinol-cytochrome c reductase binding protein pseudogene 5 pseudo - - 0 0 1 0 +727956 SDHAP2 succinate dehydrogenase complex flavoprotein subunit A pseudogene 2 3 pseudo SDHAL2|SDHALP2 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 2|succinate dehydrogenase complex, subunit A, flavoprotein-like 2 13 0.001779 7.323 1 1 +727957 MROH1 maestro heat like repeat family member 1 8 protein-coding HEATR7A maestro heat-like repeat-containing protein family member 1|HEAT repeat containing 7A|HEAT repeat-containing protein 7A 25 0.003422 9.752 1 1 +727980 LOC727980 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene 14 pseudo - - 0 0 1 0 +728024 LOC728024 chromosome X open reading frame 56 pseudogene 8 pseudo - hCG1640171 1 0.0001369 4.453 1 1 +728026 LOC728026 prothymosin alpha-like 9 protein-coding - - 0 0 1 0 +728036 CT47A10 cancer/testis antigen family 47, member A10 X protein-coding CT47|CT47.10 cancer/testis antigen 47A|cancer/testis CT47 family, member 10|cancer/testis antigen 47 0.02281 0 1 +728039 SSR4P1 signal sequence receptor subunit 4 pseudogene 1 21 pseudo C21orf122|PRED57|PRED90 hCG401283|signal sequence receptor, delta pseudogene 1 2 0.0002737 4.817 1 1 +728042 CT47A9 cancer/testis antigen family 47, member A9 X protein-coding CT47.9 cancer/testis antigen 47A|cancer/testis CT47 family, member 9 0.0299 0 1 +728045 PPBPP1 pro-platelet basic protein pseudogene 1 4 pseudo PPBPL1|TGB2 connective tissue-activating peptide I|neutrophil-activating peptide-2-like 1|pro-platelet basic protein-like 1|thromboglobulin, beta-2 0 0 0.0009147 1 1 +728047 GOLGA8O golgin A8 family member O 15 protein-coding - golgin subfamily A member 8O|Golgin subfamily A member 6-like protein 11|Golgin subfamily A member 8O|golgin subfamily A member 8-like protein 2-like 1 0.0001369 1 0 +728062 CT47A6 cancer/testis antigen family 47, member A6 X protein-coding CT47.6 cancer/testis antigen 47A|cancer/testis CT47 family, member 6 4 0.0005475 0.0405 1 1 +728081 LINC00290 long intergenic non-protein coding RNA 290 4 ncRNA NCRNA00290 hCG2025798 0 0 1 0 +728090 CT47A2 cancer/testis antigen family 47, member A2 X protein-coding CT47.2 cancer/testis antigen 47A|cancer/testis CT47 family, member 2 0.0793 0 1 +728096 CT47A1 cancer/testis antigen family 47, member A1 X protein-coding CT47.1 cancer/testis antigen 47A|cancer/testis CT47 family, member 1 0.0635 0 1 +728098 LOC728098 mitogen-activated protein kinase 1 interacting protein 1-like pseudogene 6 pseudo - - 0 0 1 0 +728113 ANXA8L1 annexin A8-like 1 10 protein-coding ANXA8|ANXA8L2|VAC-beta|bA145E20.2 annexin A8-like protein 1|annexin A8-like protein 2|annexin A8L2|annexin VIII|annexin-8|vascular anticoagulant-beta 8 0.001095 0.4828 1 1 +728116 ZBTB8B zinc finger and BTB domain containing 8B 1 protein-coding ZNF916B zinc finger and BTB domain-containing protein 8B|putative zinc finger and BTB domain-containing protein 8B 11 0.001506 2.037 1 1 +728118 NUTM2A NUT family member 2A 10 protein-coding FAM22A NUT family member 2A|family with sequence similarity 22, member A|protein FAM22A 13 0.001779 5.296 1 1 +728121 CSPG4P12 chondroitin sulfate proteoglycan 4 pseudogene 12 15 pseudo - - 7 0.0009581 1 0 +728130 NUTM2D NUT family member 2D 10 pseudo FAM22D NUT family member 2A pseudogene|family with sequence similarity 22, member D 17 0.002327 6.147 1 1 +728137 TSPY3 testis specific protein, Y-linked 3 Y protein-coding CT78 testis-specific Y-encoded protein 3 1 0.0001369 0.1942 1 1 +728175 LOC728175 uncharacterized LOC728175 4 ncRNA - - 1 0.0001369 1 0 +728190 NUTM2A-AS1 NUTM2A antisense RNA 1 10 ncRNA FAM22A-AS1 FAM22A antisense RNA 1 12 0.001642 7.245 1 1 +728194 RSPH10B2 radial spoke head 10 homolog B2 7 protein-coding - radial spoke head 10 homolog B2|radial spoke head 10 homolog B 22 0.003011 2.126 1 1 +728196 LOC728196 uncharacterized LOC728196 11 unknown - - 0 0 1 0 +728208 LOC728208 uncharacterized LOC728208 2 unknown - - 2 0.0002737 1 0 +728215 FAM155A family with sequence similarity 155 member A 13 protein-coding - transmembrane protein FAM155A 95 0.013 4.926 1 1 +728218 LINC00864 long intergenic non-protein coding RNA 864 10 ncRNA - - 1 0.0001369 1 0 +728224 KRTAP4-8 keratin associated protein 4-8 17 protein-coding KAP4.8|KRTAP4.8 keratin-associated protein 4-8|keratin associated protein 4.8|ultrahigh sulfur keratin-associated protein 4.8 76 0.0104 0.05926 1 1 +728226 GGTLC3 gamma-glutamyltransferase light chain 3 22 pseudo GGT - 1 0.0001369 1 0 +728233 PI4KAP1 phosphatidylinositol 4-kinase alpha pseudogene 1 22 pseudo - phosphatidylinositol 4-kinase, catalytic, alpha polypeptide pseudogene 1|phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 1 25 0.003422 7.991 1 1 +728239 MAGED4 MAGE family member D4 X protein-coding MAGE-E1|MAGE1|MAGEE1 melanoma-associated antigen D4|MAGE-D4 antigen|MAGE-E1 antigen|melanoma antigen family D, 4|melanoma antigen family D4 6.272 0 1 +728244 RPS12P29 ribosomal protein S12 pseudogene 29 17 pseudo RPS12_15_1507 - 1 0.0001369 1 0 +728255 KRTAP1-4 keratin associated protein 1-4 17 protein-coding KAP1.4|KRTAP1.4 keratin-associated protein 1-4|high sulfur keratin-associated protein 1.4|keratin-associated protein 1.4 3 0.0004106 1 0 +728262 FAM157A family with sequence similarity 157 member A 3 protein-coding - putative protein FAM157A 22 0.003011 3.291 1 1 +728264 CARMN cardiac mesoderm enhancer-associated non-coding RNA 5 ncRNA CARMEN|MIR143HG MIR143 host gene (non-protein coding)|cardiac mesoderm enhancer-associated noncoding RNA 0 0 6.38 1 1 +728269 MAGEA9B MAGE family member A9B X protein-coding - melanoma-associated antigen 9|CT1.9|MAGE-9 antigen|cancer/testis antigen 1.9|melanoma antigen family A, 9B|melanoma antigen family A9B 3 0.0004106 1.419 1 1 +728276 CLEC19A C-type lectin domain family 19 member A 16 protein-coding - C-type lectin domain family 19 member A 2 0.0002737 0.115 1 1 +728279 KRTAP2-2 keratin associated protein 2-2 17 protein-coding KAP2.2 putative keratin-associated protein ENSP00000381495 5 0.0006844 0.06247 1 1 +728294 D2HGDH D-2-hydroxyglutarate dehydrogenase 2 protein-coding D2HGD D-2-hydroxyglutarate dehydrogenase, mitochondrial 37 0.005064 8.741 1 1 +728299 KRTAP19-8 keratin associated protein 19-8 21 protein-coding - keratin-associated protein 19-8 10 0.001369 0.02352 1 1 +728310 GOLGA6L7P golgin A6 family-like 7, pseudogene 15 pseudo GOLGA6L7 golgi autoantigen, golgin subfamily a, 6-like 7 (pseudogene)|golgin A6 family-like 9 pseudogene 18 0.002464 1 0 +728318 KRTAP9-1 keratin associated protein 9-1 17 protein-coding KAP9.1|KRTAP9L3 keratin-associated protein 9-1|Putative keratin-associated protein 9-2-like 3|keratin associated protein 9-like 3 20 0.002737 1 0 +728323 LOC728323 uncharacterized LOC728323 2 ncRNA - - 1 0.0001369 4.181 1 1 +728340 GTF2H2C GTF2H2 family member C 5 protein-coding GTF2H2C_2 general transcription factor IIH subunit 2-like protein|general transcription factor IIH polypeptide 2-like protein|general transcription factor IIH, polypeptide 2C 1 0.0001369 8.127 1 1 +728343 NXF2B nuclear RNA export factor 2B X protein-coding TCP11X1|bA353J17.1 nuclear RNA export factor 2|TAP-like protein 2|cancer/testis antigen 39 9 0.001232 0.2655 1 1 +728358 DEFA1B defensin alpha 1B 8 protein-coding HNP-1|HP-1|HP1 neutrophil defensin 1 0.87 0 1 +728361 OVOL3 ovo like zinc finger 3 19 protein-coding HOVO3 putative transcription factor ovo-like protein 3|OVO homolog-like 3|ovo-like 3 1 0.0001369 1 0 +728378 POTEF POTE ankyrin domain family member F 2 protein-coding A26C1B|ACTB|POTE2alpha|POTEACTIN POTE ankyrin domain family member F|ANKRD26-like family C member 1B|POTE-2 alpha-actin|beta actin|chimeric POTE-actin protein|prostate, ovary, testis expressed protein on chromosome 2 96 0.01314 3.922 1 1 +728392 LOC728392 uncharacterized LOC728392 17 protein-coding - uncharacterized protein LOC728392 7.304 0 1 +728395 TSPY4 testis specific protein, Y-linked 4 Y protein-coding TSPY10|TSPY8 testis-specific Y-encoded protein 4 0.1453 0 1 +728402 TPI1P3 triosephosphate isomerase 1 pseudogene 3 6 pseudo - - 0.6174 0 1 +728403 TSPY8 testis specific protein, Y-linked 8 Y protein-coding - testis-specific Y-encoded protein 8 0 0 1 0 +728404 4.823 0 1 +728409 LINC01548 long intergenic non-protein coding RNA 1548 21 ncRNA C21orf54 hCG2045804 0.01872 0 1 +728410 DUX4L2 double homeobox 4 like 2 4 pseudo DUX4 double homeobox protein 4-like protein 2 0.0411 0 1 +728411 GUSBP1 glucuronidase, beta pseudogene 1 5 pseudo - Putative beta-glucuronidase-like protein MGC87375 82 0.01122 6.806 1 1 +728416 LOC728416 translation machinery associated 7 homolog (S. cerevisiae) pseudogene 7 pseudo - translational machinery associated 7 homolog pseudogene 0 0 1 0 +728430 FAM90A20P putative protein FAM90A20 8 pseudo FAM90A20 - 0 0 1 0 +728434 C20orf187 chromosome 20 open reading frame 187 20 unknown dJ727I10.1 hCG2045828|putative uncharacterized protein C20orf187 1 0.0001369 1 0 +728441 GGT2 gamma-glutamyltransferase 2 22 protein-coding GGT|GGT 2 inactive gamma-glutamyltranspeptidase 2|gamma-glutamyltranspeptidase 2|glutathione hydrolase 2 3 0.0004106 1 0 +728448 PPIEL peptidylprolyl isomerase E like pseudogene 1 pseudo PPIEP1 peptidylprolyl isomerase E (cyclophilin E) pseudogene 1 1 0.0001369 5.461 1 1 +728458 OPN1MW2 opsin 1 (cone pigments), medium-wave-sensitive 2 X protein-coding GOP medium-wave-sensitive opsin 1|green cone photoreceptor pigment|green-sensitive opsin|opsin 1 cone pigments medium-wave-sensitive 2 6 0.0008212 1 0 +728461 1.166 0 1 +728464 METTL24 methyltransferase like 24 6 protein-coding C6orf186|dJ71D21.2 methyltransferase-like protein 24|UPF0624 protein C6orf186 19 0.002601 2.104 1 1 +728470 LOC728470 cancer/testis antigen 55 pseudogene X pseudo - - 0 0 1 0 +728489 DNLZ DNL-type zinc finger 9 protein-coding C9orf151|HEP|HEP1|TIMM15|ZIM17|bA413M3.2 DNL-type zinc finger protein|HSP70 escort protein|RP11-413M3.2|hsp70-escort protein 1|mtHsp70-escort protein|translocase of inner mitochondrial membrane 15 homolog 13 0.001779 7.288 1 1 +728492 SERF1B small EDRK-rich factor 1B 5 protein-coding FAM2B|H4F5C|h4F5 small EDRK-rich factor 1|SMA modifier 1|protein 4F5|small EDRK-rich factor 1B (centromeric) 1 0.0001369 1 0 +728495 FAM74A3 family with sequence similarity 74 member A3 9 ncRNA - - 31 0.004243 0.1275 1 1 +728498 GOLGA8H golgin A8 family member H 15 protein-coding GOLGA6L11 golgin subfamily A member 8H|Golgin subfamily A member 8-like protein 1|golgi autoantigen, golgin subfamily a, 6-like 11 3 0.0004106 1 0 +728554 LOC728554 THO complex 3 pseudogene 5 pseudo - - 7.988 0 1 +728568 C12orf73 chromosome 12 open reading frame 73 12 protein-coding - uncharacterized protein C12orf73 2 0.0002737 7.149 1 1 +728577 CNTNAP3B contactin associated protein-like 3B 9 protein-coding - contactin-associated protein-like 3B|cell recognition molecule Caspr3b 81 0.01109 1 0 +728588 MS4A18 membrane spanning 4-domains A18 11 protein-coding - membrane-spanning 4-domains subfamily A member 18 1 0.0001369 1 0 +728591 CCDC169 coiled-coil domain containing 169 13 protein-coding C13orf38 coiled-coil domain-containing protein 169|RP11-251J8.1 12 0.001642 2.553 1 1 +728597 DCDC2C doublecortin domain containing 2C 2 protein-coding - doublecortin domain-containing protein 2C|doublecortin domain containing 2C pseudogene 1 0.0001369 1 0 +728603 0.1737 0 1 +728606 PCAT18 prostate cancer associated transcript 18 (non-protein coding) 18 ncRNA LINC01092 long intergenic non-protein coding RNA 1092 2.159 0 1 +728609 SDHAP3 succinate dehydrogenase complex flavoprotein subunit A pseudogene 3 5 pseudo SDHACL|SDHAL SDHA C-terminal like|succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 3 41 0.005612 6.866 1 1 +728613 LOC728613 programmed cell death 6 pseudogene 5 pseudo - - 2 0.0002737 7.283 1 1 +728621 CCDC30 coiled-coil domain containing 30 1 protein-coding PFD6L|PFDN6L coiled-coil domain-containing protein 30|prefoldin subunit 6-like protein 68 0.009307 5.531 1 1 +728635 DHRS4L1 dehydrogenase/reductase 4 like 1 14 protein-coding SDR25C4 putative dehydrogenase/reductase SDR family member 4-like 1|Putative dehydrogenase/reductase SDR family member 4-like 2|dehydrogenase/reductase (SDR family) member 4 like 1|short chain dehydrogenase/reductase family 25C member 4 21 0.002874 3.395 1 1 +728640 FAM133CP family with sequence similarity 133, member A pseudogene 10 pseudo - - 5.141 0 1 +728642 CDK11A cyclin dependent kinase 11A 1 protein-coding CDC2L2|CDC2L3|CDK11-p110|CDK11-p46|CDK11-p58|PITSLRE|p58GTA cyclin-dependent kinase 11A|PITSLRE B|PITSLRE protein kinase beta|PITSLRE protein kinase beta SV1 isoform|PITSLRE protein kinase beta SV16 isoform|PITSLRE protein kinase beta SV17 isoform|PITSLRE protein kinase beta SV18 isoform|PITSLRE protein kinase beta SV2 isoform|PITSLRE protein kinase beta SV3 isoform|PITSLRE protein kinase beta SV6 isoform|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 35 0.004791 8.903 1 1 +728643 HNRNPA1P33 heterogeneous nuclear ribonucleoprotein A1 pseudogene 33 10 pseudo - - 6.158 0 1 +728655 HULC hepatocellular carcinoma up-regulated long non-coding RNA 6 ncRNA HCCAT1|LINC00078|NCRNA00078 hepatocellular carcinoma associated transcript 1 (non-protein coding)|highly up-regulated in liver cancer (non-protein coding)|highly up-regulated in liver cancer long non-coding RNA|long intergenic non-protein coding RNA 78 1.003 0 1 +728656 DMRTC1B DMRT like family C1B X protein-coding - doublesex- and mab-3-related transcription factor C1|DMRT-like family C1 2.967 0 1 +728661 SLC35E2B solute carrier family 35 member E2B 1 protein-coding SLC35E2 solute carrier family 35 member E2B 5 0.0006844 1 0 +728666 PRELID1P1 PRELI domain containing 1 pseudogene 1 6 pseudo - - 6 0.0008212 1 0 +728667 LOC728667 dehydrogenase/reductase (SDR family) member 2 pseudogene 14 pseudo - dehydrogenase/reductase (SDR family) member 4 like 2 pseudogene 0 0 1 0 +728689 EIF3CL eukaryotic translation initiation factor 3 subunit C-like 16 protein-coding - eukaryotic translation initiation factor 3 subunit C-like protein|eIF3 p110|eukaryotic translation initiation factor 3 subunit 8|eukaryotic translation initiation factor 3, subunit 8, 110kDa-like 7 0.0009581 13.42 1 1 +728695 SPANXB1 SPANX family member B1 X protein-coding B1|CT11.2|SPANX-B|SPANXB|SPANXB2|SPANXF1|SPANXF2 sperm protein associated with the nucleus on the X chromosome B1|SPANX family member B/F|SPANX family member F1|SPANX family, member B2|SPANX family, member F2|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 1 0.0001369 1 0 +728712 SPANXA2 SPANX family member A2 X protein-coding CT11.1|SPANX|SPANX-A|SPANXA sperm protein associated with the nucleus on the X chromosome A|SPANX family member A|cancer/testis antigen 11.1|nuclear-associated protein SPAN-Xa|sperm protein associated with the nucleus, X chromosome, family member A2 0.2642 0 1 +728723 ZBED3-AS1 ZBED3 antisense RNA 1 5 ncRNA - CTC-564N23.3|ZBED3 antisense RNA 1 (non-protein coding) 3 0.0004106 3.815 1 1 +728741 NPIPB6 nuclear pore complex interacting protein family member B6 16 protein-coding NPIPB nuclear pore complex-interacting protein family member B6|nuclear pore complex-interacting protein B type 16 0.00219 1 0 +728743 LOC728743 zinc finger protein pseudogene 7 pseudo - - 7.552 0 1 +728747 ANKRD20A4 ankyrin repeat domain 20 family member A4 9 protein-coding - ankyrin repeat domain-containing protein 20A4 22 0.003011 1.104 1 1 +728758 PIN4P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 pseudogene 1 15 pseudo - hCG1789710|protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) pseudogene|protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 pseudogene 1 5.638 0 1 +728773 PABPC1P2 poly(A) binding protein cytoplasmic 1 pseudogene 2 2 pseudo PABP2|PABP4|PABPCP2|PABPCP4 poly(A) binding protein, cytoplasmic, pseudogene 2|poly(A) binding protein, cytoplasmic, pseudogene 4 0 0 0.4778 1 1 +728780 ANKDD1B ankyrin repeat and death domain containing 1B 5 protein-coding - ankyrin repeat and death domain-containing protein 1B|ankyrin repeat and death domain-containing protein ENSP00000345065 3 0.0004106 1 0 +728788 ANKRD20A20P ankyrin repeat domain 20 family member A20, pseudogene 9 pseudo CCDC29 ankyrin repeat domain pseudogene|coiled-coil domain containing 29 0.6609 0 1 +728798 FRMPD2B FERM and PDZ domain containing 2B, pseudogene 10 pseudo FRMPD2L1|FRMPD2L2|FRMPD2P1|FRMPD2P2|FRMPDP2|PDZD5A|PDZD5B|PDZK5A|PDZK5B|bA556L1.2|yX59F3.2 FERM and PDZ domain containing 2 like 1|FERM and PDZ domain containing 2 like 2|FERM and PDZ domain containing 2 pseudogene 1|FERM and PDZ domain containing 2 pseudogene 2|FRMPD2 related 1|FRMPD2 related 2|PDZ domain containing 5A|PDZ domain containing 5B 0.2305 0 1 +728807 LOC728807 UDP glucuronosyltransferase family 2 member B15 pseudogene 4 pseudo - - 0 0 1 0 +728819 C1GALT1C1L C1GALT1-specific chaperone 1 like 2 protein-coding - C1GALT1-specific chaperone 1-like protein|hCG1645220 3.55 0 1 +728833 FAM72D family with sequence similarity 72 member D 1 protein-coding GCUD2 protein FAM72D|family with sequence similarity 72 member|gastric cancer up-regulated protein 2|gastric cancer up-regulated-2 3 0.0004106 5.472 1 1 +728841 NBPF8 neuroblastoma breakpoint family member 8 1 protein-coding NBPF8P putative neuroblastoma breakpoint family member 8|neuroblastoma breakpoint family, member 8, pseudogene 16 0.00219 1 0 +728855 LINC00623 long intergenic non-protein coding RNA 623 1 ncRNA CH17-118O6.2 - 4 0.0005475 7.836 1 1 +728858 C12orf71 chromosome 12 open reading frame 71 12 protein-coding - uncharacterized protein C12orf71|hCG1794298 30 0.004106 0.6427 1 1 +728875 5.411 0 1 +728882 FAM182B family with sequence similarity 182 member B 20 ncRNA - - 53 0.007254 4.488 1 1 +728888 NPIPB11 nuclear pore complex interacting protein family member B11 16 protein-coding NPIP nuclear pore complex-interacting protein family member B11|NPIP-like locus|Nuclear pore complex-interacting protein family member B11|hepatitis B virus pre-pre-S promoter DNA-binding protein|pps22-1 protein 6 0.0008212 1 0 +728911 CT45A2 cancer/testis antigen family 45 member A2 X protein-coding CT45-2|CT45.2 cancer/testis antigen family 45 member A2|cancer/testis antigen 45-2|cancer/testis antigen 45A2|cancer/testis antigen CT45 0.4558 0 1 +728927 ZNF736 zinc finger protein 736 7 protein-coding - zinc finger protein 736|KRAB-containing zinc-finger repressor protein 20 0.002737 1 0 +728929 TCEB3CL transcription elongation factor B subunit 3C like 18 protein-coding HsT828|eloA3-like-1 RNA polymerase II transcription factor SIII subunit A3-like-1|elongin-A3-like-1|transcription elongation factor B polypeptide 3C-like|transcription elongation factor B polypeptide 3C-like-1 6 0.0008212 1 0 +728932 6.091 0 1 +728936 5.175 0 1 +728939 3.584 0 1 +728957 ZNF705D zinc finger protein 705D 8 protein-coding ZNF705C zinc finger protein 705D|putative zinc finger protein 705C|zinc finger protein 705C 1 0.0001369 0.1603 1 1 +728963 RPS15AP10 ribosomal protein S15a pseudogene 10 1 pseudo RPS15A_4_42 - 1.854 0 1 +728970 PPP1R2P4 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 4 13 pseudo - - 1 0.0001369 1 0 +728989 LOC728989 phosphodiesterase 4D interacting protein pseudogene 1 pseudo - - 1 0.0001369 2.046 1 1 +729012 SKA2P1 spindle and kinetochore associated complex subunit 2 pseudogene 1 9 pseudo Em:AC006313.1|FAM33B|SKA2L family with sequence similarity 33, member B|spindle and kinetochore associated complex subunit 2-like 2 0.0002737 1 0 +729013 ZBED5-AS1 ZBED5 antisense RNA 1 11 ncRNA - CTD-2003C8.1 0 0 1 0 +729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 10 protein-coding - ribulose-phosphate 3-epimerase-like protein 1|hCG2024410|rcRPE protein|ribulose-5-phosphate-3-epimerase-like protein 1 4.898 0 1 +729025 SLC15A5 solute carrier family 15 member 5 12 protein-coding - solute carrier family 15 member 5|Peptide/histidine transporter ENSP00000340402 10 0.001369 1 0 +729057 LOC729057 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene 22 pseudo - mitochondrial import receptor subunit TOM40 homolog 4 0.0005475 1 0 +729073 FAM92A1P1 family with sequence similarity 92, member A2 (pseudogene) 15 pseudo FAM92A2 - 0 0 1 0 +729082 OIP5-AS1 OIP5 antisense RNA 1 15 ncRNA cyrano OIP5 antisense RNA 1 (non-protein coding) 1 0.0001369 8.84 1 1 +729085 FAM198A family with sequence similarity 198 member A 3 protein-coding C3orf41 protein FAM198A 14 0.001916 5.515 1 1 +729086 LOC729086 vesicular, overexpressed in cancer, prosurvival protein 1 pseudogene 1 pseudo - - 0 0 1 0 +729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 10 protein-coding CTGLF2 arf-GAP with GTPase, ANK repeat and PH domain-containing protein 5|AGAP-5|centaurin, gamma-like family, member 2 11 0.001506 5.025 1 1 +729096 BMS1P4 BMS1, ribosome biogenesis factor pseudogene 4 10 pseudo BMS1LP4 BMS1 homolog, ribosome assembly protein pseudogene|BMS1 pseudogene 4|BMS1L pseudogene 4 8 0.001095 4.325 1 1 +729121 RGPD4-AS1 RGPD4 antisense RNA 1 (head to head) 2 ncRNA - - 0.0203 0 1 +729131 KRT8P7 keratin 8 pseudogene 7 11 pseudo - - 1 0.0001369 1 0 +729141 LOC729141 chromosome 18 open reading frame 25 pseudogene 2 pseudo - - 1 0.0001369 1 0 +729156 GTF2IRD1P1 GTF2I repeat domain containing 1 pseudogene 1 7 pseudo - GTF2I repeat domain containing 1 pseusogene 1 38 0.005201 2.169 1 1 +729171 ANKRD20A8P ankyrin repeat domain 20 family member A8, pseudogene 2 pseudo ANKRD20B ankyrin repeat domain 20B|ankyrin repeat domain protein 18A pseudogene 153 0.02094 2.594 1 1 +729176 KATNBL1P6 katanin regulatory subunit B1 like 1 pseudogene 6 6 pseudo - katanin p80 subunit B-like 1 pseudogene 6 4.9 0 1 +729178 STXBP5-AS1 STXBP5 antisense RNA 1 6 ncRNA - STXBP5 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +729217 LOC729217 emopamil binding protein like pseudogene 16 pseudo - - 1 0.0001369 1 0 +729218 LOC729218 uncharacterized LOC729218 4 pseudo - - 5 0.0006844 1 0 +729224 LOC729224 uncharacterized LOC729224 2 ncRNA - - 1 0.0001369 1 0 +729230 CCR2 C-C motif chemokine receptor 2 3 protein-coding CC-CKR-2|CCR-2|CCR2A|CCR2B|CD192|CKR2|CKR2A|CKR2B|CMKBR2|MCP-1-R C-C chemokine receptor type 2|MCP-1 receptor|chemokine (C-C motif) receptor 2|monocyte chemoattractant protein 1 receptor|monocyte chemotactic protein 1 receptor 47 0.006433 4.953 1 1 +729233 PRR20B proline rich 20B 13 protein-coding - proline-rich protein 20B|FLJ40296 protein family member 0.0004572 0 1 +729234 FAHD2CP fumarylacetoacetate hydrolase domain containing 2C, pseudogene 2 pseudo - fumarylacetoacetate hydrolase domain containing 2 pseudogene|fumarylacetoacetate hydrolase domain containing 2A pseudogene 10 0.001369 5.523 1 1 +729238 SFTPA2 surfactant protein A2 10 protein-coding COLEC5|PSAP|PSP-A|PSPA|SFTP1|SFTPA2B|SP-2A|SP-A|SPA2|SPAII pulmonary surfactant-associated protein A2|35 kDa pulmonary surfactant-associated protein|alveolar proteinosis protein|collectin 5|surfactant, pulmonary-associated protein A2A 21 0.002874 3.643 1 1 +729240 PRR20C proline rich 20C 13 protein-coding - proline-rich protein 20C|FLJ40296 protein family member 0.0002862 0 1 +729246 PRR20D proline rich 20D 13 protein-coding - proline-rich protein 20D|FLJ40296 protein family member 0.0001326 0 1 +729252 KRT16P1 keratin 16 pseudogene 1 17 pseudo KRT14P|KRT16P keratin 14 pseudogene 3 0.0004106 1 0 +729258 RPS11P6 ribosomal protein S11 pseudogene 6 12 pseudo RPS11_2_1249 - 3 0.0004106 1 0 +729262 NUTM2B NUT family member 2B 10 protein-coding FAM22B|bA119F19.1 NUT family member 2B|family with sequence similarity 22, member B|protein FAM22B 7 0.0009581 1 0 +729264 TP53TG3D TP53 target 3D 16 protein-coding TP53TG3|TP53TG3B|TP53TG3C|TP53TG3E|TP53TG3F TP53-target gene 3 protein|TP53-inducible gene 3 protein 6 0.0008212 1 0 +729275 LOC729275 uncharacterized LOC729275 X unknown - - 0 0 1 0 +729288 ZNF286B zinc finger protein 286B 17 protein-coding ZNF286C|ZNF286L|ZNF590 putative zinc finger protein 286B|zinc finger 286C pseudogene|zinc finger protein 590 29 0.003969 4.675 1 1 +729305 LOC729305 uncharacterized LOC729305 11 unknown - - 2 0.0002737 1 0 +729313 LOC729313 peptidylprolyl isomerase A (cyclophilin A) pseudogene 16 pseudo - - 0 0 1 0 +729317 LOC729317 voltage dependent anion channel 2 pseudogene 2 pseudo - - 0 0 1 0 +729330 OC90 otoconin 90 8 protein-coding PLA2L otoconin-90|phospholipase A2 homolog 58 0.007939 0.243 1 1 +729338 CETN4P centrin 4, pseudogene 4 pseudo - CETN4 pseudogene|centrin EF-hand protein 4, pseudogene 1.406 0 1 +729355 TP53TG3B TP53 target 3B 16 protein-coding TP53TG3E|TP53TG3F TP53-target gene 3 protein|TP53-inducible gene 3 protein 1 0.0001369 1.371 1 1 +729359 PLIN4 perilipin 4 19 protein-coding KIAA1881|S3-12 perilipin-4|adipocyte protein S3-12 80 0.01095 6.31 1 1 +729375 FAM86HP family with sequence similarity 86, member A pseudogene 3 pseudo - - 36 0.004927 5.102 1 1 +729384 TRIM49D2 tripartite motif containing 49D2 11 protein-coding TRIM48L1|TRIM49D1|TRIM49D2P|TRIM49L|TRIM49L1 tripartite motif-containing protein 49D|tripartite motif containing 49D2, pseudogene|tripartite motif-containing 49-like|tripartite motif-containing protein 49-like protein 1|tripartite motif-containing protein 49D1|tripartite motif-containing protein 49D2 0.263 0 1 +729396 GAGE12J G antigen 12J X protein-coding GAGE11 G antigen 12J|G antigen 11 3 0.0004106 0.441 1 1 +729408 GAGE2D G antigen 2D X protein-coding CT4.8|GAGE-2D|GAGE-8|GAGE8 G antigen 2D|cancer/testis antigen 4.8 19 0.002601 0.6524 1 1 +729420 LMO7DN LMO7 downstream neighbor 13 protein-coding C13orf45 LMO7 downstream neighbor protein 1 0.0001369 1 0 +729438 GATSL2 GATS protein like 2 7 protein-coding CASTOR2|GATSL1 GATS-like protein 2|GATS protein-like 1|GATS-like protein 1|cellular arginine sensor for mTORC1 protein 2 1 0.0001369 1.665 1 1 +729440 CCDC61 coiled-coil domain containing 61 19 protein-coding - coiled-coil domain-containing protein 61 34 0.004654 7.393 1 1 +729442 GAGE12H G antigen 12H X protein-coding - G antigen 12H|GAGE-12H 3 0.0004106 1 0 +729447 GAGE2A G antigen 2A X protein-coding CT4.2|GAGE-2|GAGE-2A|GAGE2 G antigen 2A/2B|G antigen 2|cancer/testis antigen 4.2|cancer/testis antigen family 4, member 2 5 0.0006844 0.3781 1 1 +729461 LOC729461 uncharacterized LOC729461 22 ncRNA - - 5 0.0006844 1 0 +729467 HSD52 uncharacterized LOC729467 1 ncRNA - - 0.3996 0 1 +729475 RAD51AP2 RAD51 associated protein 2 2 protein-coding - RAD51-associated protein 2 97 0.01328 1.352 1 1 +729480 RPL23AP5 ribosomal protein L23a pseudogene 5 16 pseudo RPL23AL|RPL23A_35_1465|RPL2B|c367G8.3|rjd10 60S ribosomal protein L23A like 1 0.0001369 1 0 +729495 ABHD17AP4 abhydrolase domain containing 17A pseudogene P4 22 pseudo FAM108A5|FAM108A5P family with sequence similarity 108, member A5, pseudogene|putative abhydrolase domain-containing protein FAM108A5 0 0 1 0 +729497 LOC729497 nuclear receptor coactivator 4 pseudogene 4 pseudo - - 2 0.0002737 1 0 +729506 LOC729506 uncharacterized LOC729506 5 ncRNA - - 1 0.0001369 1 0 +729515 TMEM242 transmembrane protein 242 6 protein-coding BM033|C6orf35 transmembrane protein 242|UPF0463 transmembrane protein C6orf35 12 0.001642 8.491 1 1 +729522 AACSP1 acetoacetyl-CoA synthetase pseudogene 1 5 pseudo AACSL - 19 0.002601 1.244 1 1 +729528 PRAMEF14 PRAME family member 14 1 protein-coding - PRAME family member 14 6 0.0008212 0.06575 1 1 +729533 FAM72A family with sequence similarity 72 member A 1 protein-coding LMPIP|Ugene protein FAM72A|LMP1-induced protein|latent membrane protein 1-induced protein 3 0.0004106 4.091 1 1 +729540 RGPD6 RANBP2-like and GRIP domain containing 6 2 protein-coding RGP6|RGPD7|RanBP2L1|RanBP2L2 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 8.979 0 1 +729545 LOC729545 WBSCR19-like protein 5-like 7 protein-coding - - 0 0 1 0 +729582 DIRC3 disrupted in renal carcinoma 3 2 ncRNA - - 1 0.0001369 3.049 1 1 +729583 LINC01556 long intergenic non-protein coding RNA 1556 6 ncRNA C6orf100|dJ25J6.5 - 1 0.0001369 1 0 +729595 HMGB3P22 high mobility group box 3 pseudogene 22 5 pseudo - - 4 0.0005475 1 0 +729597 SPDYE6 speedy/RINGO cell cycle regulator family member E6 7 protein-coding - putative speedy protein E6|speedy homolog E6 5 0.0006844 4.48 1 1 +729602 NPIPB1P nuclear pore complex interacting protein family member B1, pseudogene 18 pseudo - nuclear pore complex interacting protein pseudogene 13 0.001779 1 0 +729603 LOC729603 calcineurin like EF-hand protein 1 pseudogene 6 pseudo - calcium binding protein P22 pseudogene 2 0.0002737 4.705 1 1 +729609 LOC729609 uncharacterized LOC729609 X ncRNA - - 0.1563 0 1 +729614 FLJ37453 uncharacterized LOC729614 1 ncRNA - - 4 0.0005475 6.683 1 1 +729627 PRR23A proline rich 23A 3 protein-coding - proline-rich protein 23A|UPF0572 protein ENSP00000372650|proline-rich protein 23C 32 0.00438 0.1813 1 1 +729633 MRS2P2 MRS2 pseudogene 2 12 pseudo - MRS2 magnesium homeostasis factor homolog pseudogene 2 1.568 0 1 +729648 ZNF812P zinc finger protein 812, pseudogene 19 pseudo ZNF812 - 28 0.003832 1 0 +729665 CCDC175 coiled-coil domain containing 175 14 protein-coding C14orf38|c14_5395 coiled-coil domain-containing protein 175 15 0.002053 1 0 +729668 GOLGA2P6 golgin A2 pseudogene 6 10 pseudo - golgi autoantigen, golgin subfamily a, 6 pseudogene|golgin A6 family, member A pseudogene 0.4541 0 1 +729678 LINC00847 long intergenic non-protein coding RNA 847 5 ncRNA - CTC-205M6.2 8.664 0 1 +729722 LOC729722 ankyrin repeat domain-containing protein ENSP00000383090-like 15 protein-coding - putative ankyrin repeat domain-containing protein ENSP00000383090 0 0 1 0 +729723 DNAJC27-AS1 DNAJC27 antisense RNA 1 2 ncRNA - DNAJC27 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +729747 ZNF878 zinc finger protein 878 19 protein-coding - zinc finger protein 878 50 0.006844 2.303 1 1 +729759 OR4F29 olfactory receptor family 4 subfamily F member 29 1 protein-coding OR7-21 olfactory receptor 4F3/4F16/4F29|olfactory receptor OR1-1|olfactory receptor OR7-21|seven transmembrane helix receptor 0.572 0 1 +729767 CEACAM18 carcinoembryonic antigen related cell adhesion molecule 18 19 protein-coding - carcinoembryonic antigen-related cell adhesion molecule 18 49 0.006707 0.1984 1 1 +729769 UQCRHP2 ubiquinol-cytochrome c reductase hinge protein pseudogene 2 2 pseudo - - 1 0.0001369 1 0 +729774 LOC729774 family with sequence similarity 207 member A pseudogene 18 pseudo - - 0 0 1 0 +729786 GOLGA8CP golgin A8 family member C, pseudogene 15 pseudo GOLGA8C golgi autoantigen, golgin subfamily a, 8C 0.9848 0 1 +729799 SEC14L1P1 SEC14 like 1 pseudogene 1 11 pseudo - - 3.779 0 1 +729809 DNM1P34 dynamin 1 pseudogene 34 15 pseudo DNM1DN8-1|DNM1DN8-5|DNM1DN8@ DNM1 pseudogene 34|Putative GED domain-containing protein LOC554175 18 0.002464 1 0 +729830 FAM160A1 family with sequence similarity 160 member A1 4 protein-coding - protein FAM160A1 27 0.003696 5.913 1 1 +729857 RGPD2 RANBP2-like and GRIP domain containing 2 2 protein-coding NUP358|RANBP2L2|RGP2 RANBP2-like and GRIP domain-containing protein 2|Ran binding protein 2-like 2|nucleoporin|ran-binding protein 2-like 2|ranBP2-like 2 17 0.002327 1 0 +729866 LOC729866 uncharacterized LOC729866 1 ncRNA - - 0 0 1 0 +729873 TBC1D3 TBC1 domain family member 3 17 protein-coding PRC17|TBC1D3A|TBC1D3F TBC1 domain family member 3|Rab GTPase-activating protein PRC17|TBC1 domain family, member 3F|prostate cancer gene 17 protein|protein TRE17-alpha 6 0.0008212 8.093 1 1 +729877 TBC1D3H TBC1 domain family member 3H 17 protein-coding - TBC1 domain family member 3H|TBC1 domain family member 3-like 1 0.0001369 3.602 1 1 +729884 2.944 0 1 +729920 ISPD isoprenoid synthase domain containing 7 protein-coding MDDGA7|MDDGC7|Nip|hCG_1745121 isoprenoid synthase domain-containing protein|2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase-like protein|4-diphosphocytidyl-2C-methyl-D-erythritol synthase homolog|notch1-induced protein|testicular tissue protein Li 97 27 0.003696 5.65 1 1 +729956 SHISA7 shisa family member 7 19 protein-coding - protein shisa-7|UPF0626 protein A|shisa homolog 7 7 0.0009581 2.039 1 1 +729960 LOC729960 NADPH oxidase 4 pseudogene 11 pseudo - - 1 0.0001369 1 0 +729967 MORN2 MORN repeat containing 2 2 protein-coding BLOCK27|MOPT MORN repeat-containing protein 2|MORN motif protein in testis|protein containing single MORN motif in testis 1 0.0001369 7.995 1 1 +729978 NPIPB2 nuclear pore complex interacting protein family, member B2 16 pseudo - nuclear pore complex interacting protein family member A1 pseudogene 1 0.0001369 1 0 +729991 BORCS8 BLOC-1 related complex subunit 8 19 protein-coding MEF2BNB protein MEF2BNB|MEF2B neighbor gene protein 8.216 0 1 +729993 SHISA9 shisa family member 9 16 protein-coding CKAMP44 protein shisa-9|cystine-knot AMPAR modulating protein|shisa homolog 9 15 0.002053 3.877 1 1 +730005 SEC14L6 SEC14 like lipid binding 6 22 protein-coding - putative SEC14-like protein 6|SEC14-like 6 7 0.0009581 1 0 +730013 ABCC6P2 ATP binding cassette subfamily C member 6 pseudogene 2 16 pseudo - ATP-binding cassette, sub-family C, member 6 pseudogene 2 4.127 0 1 +730051 ZNF814 zinc finger protein 814 19 protein-coding - putative uncharacterized zinc finger protein 814 162 0.02217 8.027 1 1 +730087 ZNF726 zinc finger protein 726 19 protein-coding - zinc finger protein 726 11 0.001506 1 0 +730091 LINC00886 long intergenic non-protein coding RNA 886 3 ncRNA - - 15 0.002053 1 0 +730092 RRN3P1 RRN3 homolog, RNA polymerase I transcription factor pseudogene 1 16 pseudo - RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 1|RRN3 RNA polymerase I transcription factor homolog pseudogene 80 0.01095 5.267 1 1 +730094 C16orf52 chromosome 16 open reading frame 52 16 protein-coding - uncharacterized protein C16orf52 8.144 0 1 +730101 LOC730101 uncharacterized LOC730101 6 ncRNA - - 6.942 0 1 +730110 LOC730110 zinc finger protein 492 pseudogene 9 pseudo - Zinc finger protein ENSP00000351689 0 0 1 0 +730112 FAM166B family with sequence similarity 166 member B 9 protein-coding - protein FAM166B 19 0.002601 2.693 1 1 +730130 TMEM229A transmembrane protein 229A 7 protein-coding - transmembrane protein 229A 16 0.00219 1.382 1 1 +730153 NPIPB10P nuclear pore complex interacting protein family, member B10, pseudogene 16 pseudo NPIP nuclear pore complex interacting protein family member A1 pseudogene|nuclear pore complex interacting protein pseudogene 4 0.0005475 1 0 +730239 ZDHHC20P4 zinc finger DHHC-type containing 20 pseudogene 4 13 pseudo - - 1 0.0001369 1 0 +730249 ACOD1 aconitate decarboxylase 1 13 protein-coding CAD|IRG1 cis-aconitate decarboxylase|aconitate decarboxylase|cis-aconitic acid decarboxylase|immune-responsive gene 1 protein homolog|immunoresponsive 1 homolog 4 0.0005475 1 0 +730262 PPIAL4E peptidylprolyl isomerase A like 4E 1 protein-coding COAS2 peptidyl-prolyl cis-trans isomerase A-like 4E|PPIase A-like 4E|peptidylprolyl isomerase A (cyclophilin A)-like 4E 0.02542 0 1 +730268 LOC730268 anaphase-promoting complex subunit 1-like 2 protein-coding - - 0 0 1 0 +730291 ZNF735 zinc finger protein 735 7 protein-coding ZNF735P putative zinc finger protein 735|zinc finger protein 735 pseudogene 12 0.001642 0.1015 1 1 +730394 GTF2H2C_2 GTF2H2 family member C, copy 2 5 protein-coding GTF2H2D general transcription factor IIH subunit 2-like protein|general transcription factor IIH polypeptide 2-like protein|general transcription factor IIH, polypeptide 2D 0 0 1 0 +730668 LOC730668 dynein heavy chain -like pseudogene 22 pseudo - - 1.521 0 1 +730755 KRTAP2-3 keratin associated protein 2-3 17 protein-coding KAP2.3|KRTAP2.3 keratin-associated protein 2-3|high sulfur keratin-associated protein 2.4|keratin-associated protein 2.3 1 0.0001369 1 0 +730811 MYT1L-AS1 MYT1L antisense RNA 1 2 ncRNA - - 0.1647 0 1 +730909 LOC730909 uncharacterized LOC730909 15 unknown - - 1 0.0001369 1 0 +730971 FLJ36777 uncharacterized LOC730971 4 ncRNA - - 2.652 0 1 +731220 RFX8 RFX family member 8, lacking RFX DNA binding domain 2 protein-coding - DNA-binding protein RFX8|RFX gene family member 8, lacking RFX DNA binding domain|regulatory factor X, 8 16 0.00219 2.303 1 1 +731779 LINC01300 long intergenic non-protein coding RNA 1300 8 ncRNA - CTD-3064M3.1 0.2574 0 1 +731789 LINC00202-2 long intergenic non-protein coding RNA 202-2 10 ncRNA - - 7 0.0009581 0.861 1 1 +732229 LOC732229 AN1-type zinc finger protein 5 pseudogene 19 pseudo - - 0 0 1 0 +732253 TDRG1 testis development related 1 (non-protein coding) 6 ncRNA LINC00532 Testis development-related protein 1|lincRNA-NR_024015|long intergenic non-protein coding RNA 532|testis development related protein 1 9 0.001232 0.7256 1 1 +732275 LINC00917 long intergenic non-protein coding RNA 917 16 ncRNA - - 4 0.0005475 0.08147 1 1 +735301 SNHG9 small nucleolar RNA host gene 9 16 ncRNA NCRNA00062 small nucleolar RNA host gene (non-protein coding) 9|small nucleolar RNA host gene 9 (non-protein coding) 5.348 0 1 +751071 METTL12 methyltransferase like 12 11 protein-coding U99HG methyltransferase-like protein 12, mitochondrial|Putative methyltransferase LOC751071, mitochondrial 18 0.002464 5.959 1 1 +751867 7.451 0 1 +752014 CEMP1 cementum protein 1 16 protein-coding CP-23|CP23 cementoblastoma-derived protein 1|cementum protein 23 16 0.00219 7.509 1 1 +767557 SYS1-DBNDD2 SYS1-DBNDD2 readthrough (NMD candidate) 20 ncRNA C20orf169-DBNDD2 SYS1-DBNDD2 readthrough (non-protein coding) 4.536 0 1 +767558 LUZP6 leucine zipper protein 6 7 protein-coding MPD6|MTPNUT leucine zipper protein 6|myeloproliferative disease-associated 6 kDa antigen|myeloproliferative disease-associated SEREX antigen|myeloproliferative disease-associated antigen, 6-kD|myotrophin 3'UTR transcript 3 0.0004106 11.89 1 1 +767561 SNORD113-1 small nucleolar RNA, C/D box 113-1 14 snoRNA 14q(I-1) - 1 0.0001369 0 1 1 +767562 SNORD113-2 small nucleolar RNA, C/D box 113-2 14 snoRNA 14q(I-2) - 1 0.0001369 0 1 1 +767563 SNORD113-3 small nucleolar RNA, C/D box 113-3 14 snoRNA 14q(I-3) - 2 0.0002737 1 0 +767564 SNORD113-4 small nucleolar RNA, C/D box 113-4 14 snoRNA 14q(I-4) - 5 0.0006844 0 1 1 +767565 SNORD113-5 small nucleolar RNA, C/D box 113-5 14 snoRNA 14q(I-5) - 4 0.0005475 0 1 1 +767566 SNORD113-6 small nucleolar RNA, C/D box 113-6 14 snoRNA 14q(I-6) - 2 0.0002737 0 1 1 +767567 SNORD113-7 small nucleolar RNA, C/D box 113-7 14 snoRNA 14q(I-7) - 1 0.0001369 0 1 1 +767569 SNORD113-9 small nucleolar RNA, C/D box 113-9 14 snoRNA 14q(I-9) - 1 0.0001369 0 1 1 +767577 SNORD114-1 small nucleolar RNA, C/D box 114-1 14 snoRNA 14q(II-1) - 4 0.0005475 0 1 1 +767578 SNORD114-2 small nucleolar RNA, C/D box 114-2 14 snoRNA 14q(II-2) - 2 0.0002737 0 1 1 +767579 SNORD114-3 small nucleolar RNA, C/D box 114-3 14 snoRNA 14q(II-3) - 3 0.0004106 0 1 1 +767580 SNORD114-4 small nucleolar RNA, C/D box 114-4 14 snoRNA 14q(II-4) - 2 0.0002737 0 1 1 +767581 SNORD114-5 small nucleolar RNA, C/D box 114-5 14 snoRNA 14q(II-5) - 0 0 1 +767582 SNORD114-6 small nucleolar RNA, C/D box 114-6 14 snoRNA 14q(II-6) - 1 0.0001369 0 1 1 +767583 SNORD114-7 small nucleolar RNA, C/D box 114-7 14 snoRNA 14q(II-7) - 1 0.0001369 0 1 1 +767584 SNORD114-8 small nucleolar RNA, C/D box 114-8 14 snoRNA 14q(II-8) - 0 0 1 +767585 SNORD114-9 small nucleolar RNA, C/D box 114-9 14 snoRNA 14q(II-9) - 1 0.0001369 0 1 1 +767588 SNORD114-10 small nucleolar RNA, C/D box 114-10 14 snoRNA 14q(II-10) - 0 0 1 +767589 SNORD114-11 small nucleolar RNA, C/D box 114-11 14 snoRNA 14q(II-11) - 0 0 0 1 1 +767590 SNORD114-12 small nucleolar RNA, C/D box 114-12 14 snoRNA 14q(II-12) - 0 0 1 +767591 SNORD114-13 small nucleolar RNA, C/D box 114-13 14 snoRNA 14q(II-13) - 1 0.0001369 0 1 1 +767592 SNORD114-14 small nucleolar RNA, C/D box 114-14 14 snoRNA 14q(II-14) - 0 0 1 +767593 SNORD114-15 small nucleolar RNA, C/D box 114-15 14 snoRNA 14q(II-15) - 0 0 1 +767594 SNORD114-16 small nucleolar RNA, C/D box 114-16 14 snoRNA 14q(II-16) - 0 0 1 +767595 SNORD114-17 small nucleolar RNA, C/D box 114-17 14 snoRNA 14q(II-17) - 2 0.0002737 0 1 1 +767596 SNORD114-18 small nucleolar RNA, C/D box 114-18 14 snoRNA 14q(II-18) - 0 0 1 +767597 SNORD114-19 small nucleolar RNA, C/D box 114-19 14 snoRNA 14q(II-19) - 0 0 1 +767598 SNORD114-20 small nucleolar RNA, C/D box 114-20 14 snoRNA 14q(II-20) - 1 0.0001369 0 1 1 +767599 SNORD114-21 small nucleolar RNA, C/D box 114-21 14 snoRNA 14q(II-21) - 0 0 1 +767600 SNORD114-22 small nucleolar RNA, C/D box 114-22 14 snoRNA 14q(II-22) - 1 0.0001369 0 1 1 +767603 SNORD114-23 small nucleolar RNA, C/D box 114-23 14 snoRNA 14q(II-23) - 0 0 1 +767604 SNORD114-24 small nucleolar RNA, C/D box 114-24 14 snoRNA 14q(II-24) - 0 0 1 +767605 SNORD114-25 small nucleolar RNA, C/D box 114-25 14 snoRNA 14q(II-25) - 0 0 1 +767606 SNORD114-26 small nucleolar RNA, C/D box 114-26 14 snoRNA 14q(II-26) - 4 0.0005475 0 1 1 +767608 SNORD114-27 small nucleolar RNA, C/D box 114-27 14 snoRNA 14q(II-27) - 2 0.0002737 0 1 1 +767609 SNORD114-28 small nucleolar RNA, C/D box 114-28 14 snoRNA 14q(II-28) - 3 0.0004106 0 1 1 +767610 SNORD114-29 small nucleolar RNA, C/D box 114-29 14 snoRNA 14q(II-29) - 0 0 0 1 1 +767611 SNORD114-30 small nucleolar RNA, C/D box 114-30 14 snoRNA 14q(II-30) - 0 0 0 1 1 +767612 SNORD114-31 small nucleolar RNA, C/D box 114-31 14 snoRNA 14q(II-31) - 0 0 0 1 1 +767811 H2BFXP H2B histone family member X, pseudogene X pseudo - - 2.218 0 1 +767846 PFN1P2 profilin 1 pseudogene 2 1 pseudo C1orf152|COAS3 chromosome 1 amplified sequence 3 3.241 0 1 +767850 PFN1P9 profilin 1 pseudogene 9 1 pseudo - - 1 0.0001369 1 0 +768096 HAR1A highly accelerated region 1A (non-protein coding) 20 ncRNA HAR1F|LINC00064|NCRNA00064 highly accelerated region 1A (non-protein-coding RNA)|human accelerated region 1, forward|long intergenic non-protein coding RNA 64 7 0.0009581 3.155 1 1 +768097 HAR1B highly accelerated region 1B (non-protein coding) 20 ncRNA HAR1R|LINC00065|NCRNA00065 highly accelerated region 1B (non-protein-coding RNA)|human accelerated region 1, reverse|long intergenic non-protein coding RNA 65 1.665 0 1 +768206 PRCD progressive rod-cone degeneration 17 protein-coding RP36 progressive rod-cone degeneration protein 1 0.0001369 3.371 1 1 +768211 RELL1 RELT like 1 4 protein-coding - RELT-like protein 1|receptor expressed in lymphoid tissues like 1|tmp_locus_29 6 0.0008212 8.874 1 1 +768212 MIR758 microRNA 758 14 ncRNA MIRN758|hsa-mir-758|mir-758 - 5 0.0006844 1 0 +768214 MIR668 microRNA 668 14 ncRNA MIRN668|hsa-mir-668 - 1 0.0001369 1 0 +768217 MIR769 microRNA 769 19 ncRNA MIRN769|hsa-mir-769|mir-769 - 0 0 1 0 +768218 MIR766 microRNA 766 X ncRNA MIRN766|hsa-mir-766|mir-766 - 1 0.0001369 1 0 +768219 MIR802 microRNA 802 21 ncRNA MIRN802|hsa-mir-802 - 1 0.0001369 1 0 +768220 MIR765 microRNA 765 1 ncRNA MIRN765|hsa-mir-765|mir-765 - 1 0.0001369 1 0 +768222 MIR770 microRNA 770 14 ncRNA MIRN770|hsa-mir-770 - 0 0 1 0 +768239 PSAPL1 prosaposin-like 1 (gene/pseudogene) 4 protein-coding - proactivator polypeptide-like 1|prosaposin-like protein 1 26 0.003559 1.466 1 1 +768329 0.05908 0 1 +780776 TVP23A trans-golgi network vesicle protein 23 homolog A 16 protein-coding FAM18A|YDR084C Golgi apparatus membrane protein TVP23 homolog A|family with sequence similarity 18, member A|protein FAM18A 10 0.001369 4.521 1 1 +780851 SNORD3A small nucleolar RNA, C/D box 3A 17 snoRNA RNU3|U3 RNA, U3 small nucleolar 21 0.002874 1 0 +780852 SNORD3B-2 small nucleolar RNA, C/D box 3B-2 17 snoRNA U3-2B|U3b2 - 14 0.001916 1 0 +780854 SNORD3D small nucleolar RNA, C/D box 3D 17 snoRNA U3-4 - 5 0.0006844 1 0 +790952 ESRG embryonic stem cell related (non-protein coding) 3 ncRNA HESRG embryonic stem cell related protein|human embryonic stem cell related 0.9924 0 1 +790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 11 protein-coding C11orf83|CCDS41658.1|MC3DN9|UNQ655 ubiquinol-cytochrome-c reductase complex assembly factor 3|UPF0723 protein C11orf83|assembly factor CBP4 homolog 6 0.0008212 8.632 1 1 +790969 ZNF705F zinc finger protein 705F 8 protein-coding - - 0 0 1 0 +791114 PWRN1 Prader-Willi region non-protein coding RNA 1 15 ncRNA NCRNA00198 - 0 0 0.5828 1 1 +791115 PWRN2 Prader-Willi region non-protein coding RNA 2 15 ncRNA NCRNA00199 - 0.102 0 1 +100008586 GAGE12F G antigen 12F X protein-coding - G antigen 12F|GAGE-12F|g antigen 12F/G/I 0.008089 0 1 +100009676 ZBTB11-AS1 ZBTB11 antisense RNA 1 3 ncRNA - - 0 0 6.544 1 1 +100033413 SNORD116-1 small nucleolar RNA, C/D box 116-1 15 snoRNA HBII-85-1|PWCR1 - 2 0.0002737 0 1 1 +100033414 SNORD116-2 small nucleolar RNA, C/D box 116-2 15 snoRNA HBII-85-2 - 0 0 0 1 1 +100033415 SNORD116-3 small nucleolar RNA, C/D box 116-3 15 snoRNA HBII-85-3 - 0 0 0 1 1 +100033416 SNORD116-4 small nucleolar RNA, C/D box 116-4 15 snoRNA HBII-85-4 - 0 0 4.386 1 1 +100033417 SNORD116-5 small nucleolar RNA, C/D box 116-5 15 snoRNA HBII-85-5 - 0 0 1 +100033418 SNORD116-6 small nucleolar RNA, C/D box 116-6 15 snoRNA HBII-85-6 - 1 0.0001369 1 0 +100033420 SNORD116-8 small nucleolar RNA, C/D box 116-8 15 snoRNA HBII-85-8 - 1 0.0001369 0 1 1 +100033422 SNORD116-10 small nucleolar RNA, C/D box 116-10 15 snoRNA HBII-85-10 - 0 0 1 +100033423 SNORD116-11 small nucleolar RNA, C/D box 116-11 15 snoRNA HBII-85-11 - 0 0 1 +100033424 SNORD116-12 small nucleolar RNA, C/D box 116-12 15 snoRNA HBII-85-12 - 0 0 1 +100033425 SNORD116-13 small nucleolar RNA, C/D box 116-13 15 snoRNA HBII-85-13 - 0 0 1 +100033426 SNORD116-14 small nucleolar RNA, C/D box 116-14 15 snoRNA HBII-85-14 - 0 0 1 +100033427 SNORD116-15 small nucleolar RNA, C/D box 116-15 15 snoRNA HBII-85-15 - 0 0 1 +100033428 SNORD116-16 small nucleolar RNA, C/D box 116-16 15 snoRNA HBII-85-16 - 0 0 1 +100033430 SNORD116-18 small nucleolar RNA, C/D box 116-18 15 snoRNA HBII-85-18 - 0 0 1 +100033431 SNORD116-20 small nucleolar RNA, C/D box 116-20 15 snoRNA HBII-85-20 - 1 0.0001369 2.71 1 1 +100033433 SNORD116-22 small nucleolar RNA, C/D box 116-22 15 snoRNA HBII-85-22 - 2 0.0002737 0 1 1 +100033434 SNORD116-23 small nucleolar RNA, C/D box 116-23 15 snoRNA HBII-85-23 - 0 0 1 +100033435 SNORD116-24 small nucleolar RNA, C/D box 116-24 15 snoRNA HBII-85-24 - 0 0 1 +100033436 SNORD116-25 small nucleolar RNA, C/D box 116-25 15 snoRNA HBII-85-25 - 0 0 1 +100033437 SNORD115-2 small nucleolar RNA, C/D box 115-2 15 snoRNA HBII-52-2 - 1 0.0001369 0 1 1 +100033438 SNORD116-26 small nucleolar RNA, C/D box 116-26 15 snoRNA HBII-85-26 - 0 0 1 +100033439 SNORD116-27 small nucleolar RNA, C/D box 116-27 15 snoRNA HBII-85-27 - 0 0 1 +100033440 SNORD115-3 small nucleolar RNA, C/D box 115-3 15 snoRNA HBII-52-3 - 0 0 1 +100033441 SNORD115-4 small nucleolar RNA, C/D box 115-4 15 snoRNA HBII-52-4 - 1 0.0001369 0 1 1 +100033442 SNORD115-5 small nucleolar RNA, C/D box 115-5 15 snoRNA HBII-52-5 - 0 0 1 +100033443 SNORD115-6 small nucleolar RNA, C/D box 115-6 15 snoRNA HBII-52-6 - 0 0 1 +100033444 SNORD115-7 small nucleolar RNA, C/D box 115-7 15 snoRNA HBII-52-7 - 0.02158 0 1 +100033445 SNORD115-8 small nucleolar RNA, C/D box 115-8 15 snoRNA HBII-52-8 - 0 0 1 +100033446 SNORD115-9 small nucleolar RNA, C/D box 115-9 15 snoRNA HBII-52-9 - 0 0 1 +100033447 SNORD115-10 small nucleolar RNA, C/D box 115-10 15 snoRNA HBII-52-10 - 0 0 1 +100033448 SNORD115-11 small nucleolar RNA, C/D box 115-11 15 snoRNA HBII-52-11 - 0 0 1 +100033449 SNORD115-12 small nucleolar RNA, C/D box 115-12 15 snoRNA HBII-52-12 - 1 0.0001369 1 0 +100033450 SNORD115-13 small nucleolar RNA, C/D box 115-13 15 snoRNA HBII-52-13 - 0.0869 0 1 +100033451 SNORD115-14 small nucleolar RNA, C/D box 115-14 15 snoRNA HBII-52-14 - 1 0.0001369 0 1 1 +100033454 SNORD115-16 small nucleolar RNA, C/D box 115-16 15 snoRNA HBII-52-16 - 0 0 1 +100033455 SNORD115-17 small nucleolar RNA, C/D box 115-17 15 snoRNA HBII-52-17 - 1 0.0001369 0 1 1 +100033456 SNORD115-18 small nucleolar RNA, C/D box 115-18 15 snoRNA HBII-52-18 - 2 0.0002737 1 0 +100033460 SNORD115-20 small nucleolar RNA, C/D box 115-20 15 snoRNA HBII-52-20 - 1 0.0001369 7.076e-05 1 1 +100033603 SNORD115-21 small nucleolar RNA, C/D box 115-21 15 snoRNA HBII-52-21 - 1 0.0001369 1 0 +100033799 SNORD115-22 small nucleolar RNA, C/D box 115-22 15 snoRNA HBII-52-22 - 0 0 1 +100033801 SNORD115-25 small nucleolar RNA, C/D box 115-25 15 snoRNA HBII-52-25 - 0 0 1 +100033802 SNORD115-26 small nucleolar RNA, C/D box 115-26 15 snoRNA HBII-52-26 - 1 0.0001369 0.5369 1 1 +100033803 SNORD115-29 small nucleolar RNA, C/D box 115-29 15 snoRNA HBII-52-29 - 1 0.0001369 1 0 +100033804 SNORD115-30 small nucleolar RNA, C/D box 115-30 15 snoRNA HBII-52-30 - 0 0 1 +100033805 SNORD115-31 small nucleolar RNA, C/D box 115-31 15 snoRNA HBII-52-31 - 0 0 1 +100033806 SNORD115-32 small nucleolar RNA, C/D box 115-32 15 snoRNA HBII-52-32 - 1 0.0001369 0 1 1 +100033807 SNORD115-33 small nucleolar RNA, C/D box 115-33 15 snoRNA HBII-52-33 - 0 0 1 +100033809 SNORD115-35 small nucleolar RNA, C/D box 115-35 15 snoRNA HBII-52-35 - 0 0 1 +100033810 SNORD115-36 small nucleolar RNA, C/D box 115-36 15 snoRNA HBII-52-36 - 2 0.0002737 1 0 +100033811 SNORD115-37 small nucleolar RNA, C/D box 115-37 15 snoRNA HBII-52-37 - 0 0 1 +100033812 SNORD115-38 small nucleolar RNA, C/D box 115-38 15 snoRNA HBII-52-38 - 2 0.0002737 0 1 1 +100033813 SNORD115-39 small nucleolar RNA, C/D box 115-39 15 snoRNA HBII-52-39 - 0 0 1 +100033814 SNORD115-40 small nucleolar RNA, C/D box 115-40 15 snoRNA HBII-52-40 - 0 0 1 +100033815 SNORD115-41 small nucleolar RNA, C/D box 115-41 15 snoRNA HBII-52-41 - 0 0 1 +100033816 SNORD115-42 small nucleolar RNA, C/D box 115-42 15 snoRNA HBII-52-42 - 6 0.0008212 1 0 +100033817 SNORD115-43 small nucleolar RNA, C/D box 115-43 15 snoRNA HBII-52-43 - 6 0.0008212 1 0 +100033818 SNORD115-44 small nucleolar RNA, C/D box 115-44 15 snoRNA HBII-52-44 - 4 0.0005475 0 1 1 +100033820 SNORD116-28 small nucleolar RNA, C/D box 116-28 15 snoRNA HBII-85-28 - 4.116 0 1 +100033821 SNORD116-29 small nucleolar RNA, C/D box 116-29 15 snoRNA HBII-85-29 - 0 0 1 +100033822 SNORD115-48 small nucleolar RNA, C/D box 115-48 15 snoRNA HBII-52-48 - 1 0.0001369 0 1 1 +100034743 PDZK1P1 PDZ domain containing 1 pseudogene 1 1 pseudo OTTHUMT00000038524|PDZK1P2 PDZ domain containing 1 pseudogene 2 2 0.0002737 1 0 +100036519 1.907 0 1 +100036563 SNORD115-24 small nucleolar RNA, C/D box 115-24 15 snoRNA HBII-52-24 HBII-52-24 snoRNA 0 0 1 +100036564 SNORD115-27 small nucleolar RNA, C/D box 115-27 15 snoRNA HBII-52-27 HBII-52-27 snoRNA 0 0 1 +100036565 SNORD115-28 small nucleolar RNA, C/D box 115-28 15 snoRNA HBII-52-28 HBII-52-28 snoRNA 0 0 1 +100036566 SNORD115-45 small nucleolar RNA, C/D box 115-45 15 snoRNA HBII-52-45|SNORD115-48 HBII-52-45 snoRNA 0 0 1 +100036567 SNORD115-47 small nucleolar RNA, C/D box 115-47 15 snoRNA HBII-52-46|HBII-52-47 HBII-52-46 snoRNA 0 0 1 +100037417 DDTL D-dopachrome tautomerase-like 22 protein-coding KB-226F1.2 D-dopachrome decarboxylase-like protein|D-dopachrome tautomerase-like protein 5 0.0006844 8.389 1 1 +100038246 TLX1NB TLX1 neighbor 10 ncRNA APT-B7|TD1|TDI TLX1 divergent gene protein|putative TLX1 neighbor protein 4 0.0005475 0.7577 1 1 +100048912 CDKN2B-AS1 CDKN2B antisense RNA 1 9 ncRNA ANRIL|CDKN2B-AS|CDKN2BAS|NCRNA00089|PCAT12|p15AS CDKN2B antisense RNA 1 (non-protein coding)|antisense noncoding RNA in the INK4 locus|p15 antisense RNA|prostate cancer associated transcript 12 0 0 3.093 1 1 +100049587 SIGLEC14 sialic acid binding Ig like lectin 14 19 protein-coding - sialic acid-binding Ig-like lectin 14|LLNLR-470E3.1|siglec-14 29 0.003969 4.683 1 1 +100049716 LOC100049716 uncharacterized LOC100049716 12 ncRNA - - 3 0.0004106 1 0 +100073347 MIMT1 MER1 repeat containing imprinted transcript 1 (non-protein coding) 19 ncRNA LINC00067|MIM1|NCRNA00067 long intergenic non-protein coding RNA 67 1 0.0001369 0.9119 1 1 +100093630 SNHG8 small nucleolar RNA host gene 8 4 ncRNA LINC00060|NCRNA00060 long intergenic non-protein coding RNA 60|small nucleolar RNA host gene (non-protein coding) 8|small nucleolar RNA host gene 8 (non-protein coding) 1 0.0001369 9.234 1 1 +100101116 TTTY1B testis-specific transcript, Y-linked 1B (non-protein coding) Y ncRNA TTTY1 - 0.01517 0 1 +100101266 HAVCR1P1 hepatitis A virus cellular receptor 1 pseudogene 1 19 pseudo - - 2.536 0 1 +100101267 POM121C POM121 transmembrane nucleoporin C 7 protein-coding POM121-2 nuclear envelope pore membrane protein POM 121C|POM121 membrane glycoprotein C|nuclear pore membrane protein 121-2|pore membrane protein of 121 kDa C 41 0.005612 9.911 1 1 +100101467 ZSCAN30 zinc finger and SCAN domain containing 30 18 protein-coding ZNF-WYM|ZNF397OS|ZNF917 zinc finger and SCAN domain-containing protein 30|ZNF397 opposite strand|zinc finger protein 397 opposite strand|zinc finger protein 397OS 23 0.003148 8.102 1 1 +100101490 MCTS2P malignant T-cell amplified sequence 2, pseudogene 20 pseudo MCTS2|PSIMCT-1 malignant T cell amplified sequence 1 pseudogene 0 0 3.896 1 1 +100101629 GAGE8 G antigen 8 X protein-coding CT4.8|GAGE-8 G antigen 2D|cancer/testis antigen 4.8|cancer/testis antigen family 4, member 8 0 0 0.237 1 1 +100101938 ANKRD26P3 ankyrin repeat domain 26 pseudogene 3 13 pseudo LINC00414 long intergenic non-protein coding RNA 414 0.2802 0 1 +100113378 SNORD119 small nucleolar RNA, C/D box 119 20 snoRNA - SNORD119 snoRNA 1 0.0001369 0 1 1 +100113379 SNORD121A small nucleolar RNA, C/D box 121A 9 snoRNA - SNORD121A snoRNA 0 0 1 +100113380 SNORD125 small nucleolar RNA, C/D box 125 22 snoRNA - SNORD125 snoRNA 0 0 1 +100113381 SNORD19B small nucleolar RNA, C/D box 19B 3 snoRNA - SNORD117 snoRNA 2 0.0002737 0 1 1 +100113382 SNORD105B small nucleolar RNA, C/D box 105B 19 snoRNA - SNORD105B snoRNA 0 0 0 1 1 +100113384 SNORD123 small nucleolar RNA, C/D box 123 5 snoRNA - SNORD123 snoRNA 0 0 1 +100113385 0 0 1 +100113386 UCKL1-AS1 UCKL1 antisense RNA 1 20 ncRNA UCKL1-AS|UCKL1AS|UCKL1OS UCKL1 antisense RNA 1 (non-protein coding)|uridine-cytidine kinase 1-like 1 opposite strand 3.965 0 1 +100113389 SNORD127 small nucleolar RNA, C/D box 127 14 snoRNA - SNORD118 snoRNA 0 0 1 +100113390 0 0 1 +100113391 SNORD126 small nucleolar RNA, C/D box 126 14 snoRNA MIR1201|MIRN1201 SNORD126 snoRNA|hsa-mir-1201|microRNA 1201 0 0 1 +100113392 SNORD11B small nucleolar RNA, C/D box 11B 2 snoRNA - SNORD11B snoRNA 0.0001541 0 1 +100113393 SNORD12B small nucleolar RNA, C/D box 12B 20 snoRNA - SNORD12B snoRNA 0 0 0.000262 1 1 +100113402 SNORD111B small nucleolar RNA, C/D box 111B 16 snoRNA MIR3647 SNORD111B snoRNA|hsa-mir-3647|microRNA 3647 1 0.0001369 0 1 1 +100113403 LIN28B-AS1 LIN28B antisense RNA 1 6 ncRNA C6orf220|LINC00577|dJ439I14.1 long intergenic non-protein coding RNA 577 1 0.0001369 1 0 +100113404 LINC00583 long intergenic non-protein coding RNA 583 9 ncRNA C9orf146 - 0 0 1 0 +100113407 TMEM170B transmembrane protein 170B 6 protein-coding - transmembrane protein 170B 9 0.001232 7.41 1 1 +100124412 FAM138E family with sequence similarity 138 member E 15 ncRNA F379 - 1 0.0001369 0.1085 1 1 +100124516 SNORD58C small nucleolar RNA, C/D box 58C 18 snoRNA U58 SNORD58C snoRNA|U58 small nucleolar RNA|U58 snoRNA 0 0 1 +100124533 SCARNA27 small Cajal body-specific RNA 27 6 ncRNA - SCARNA27 snoRNA 0.007529 0 1 +100124534 SNORA84 small nucleolar RNA, H/ACA box 84 9 snoRNA - SNORA84 snoRNA 0.08594 0 1 +100124535 SNORA36C small nucleolar RNA, H/ACA box 36C 2 snoRNA - SNORA36C snoRNA|small nucleolar RNA, H/ACA box 36C (retrotransposed) 0.001019 0 1 +100124536 SNORA38B small nucleolar RNA, H/ACA box 38B 17 snoRNA - SNORA38B snoRNA|small nucleolar RNA, H/ACA box 38B (retrotransposed) 0.04846 0 1 +100124537 SNORA70B small nucleolar RNA, H/ACA box 70B 2 snoRNA - SNORA70B snoRNA|small nucleolar RNA, H/ACA box 70B (retrotransposed) 0.007604 0 1 +100124538 SNORA70C small nucleolar RNA, H/ACA box 70C 9 snoRNA U70C SNORA70C snoRNA|U70 type 3 snoRT|small nucleolar RNA, H/ACA box 70C (retrotransposed) 0.0003375 0 1 +100124539 SNORA11B small nucleolar RNA, H/ACA box 11B 14 snoRNA - SNORA11B snoRNA|small nucleolar RNA, H/ACA box 11B (retrotransposed) 0.008029 0 1 +100124540 SNORA11C small nucleolar RNA, H/ACA box 11C X snoRNA - SNORA11C snoRNA|small nucleolar RNA, H/ACA box 11C (retrotransposed) 0.000409 0 1 +100124541 SNORA11D small nucleolar RNA, H/ACA box 11D X snoRNA - SNORA11D snoRNA 0.02475 0 1 +100124542 0.02844 0 1 +100124692 1.593 0 1 +100124700 HOTAIR HOX transcript antisense RNA 12 ncRNA HOXAS|HOXC-AS4|HOXC11-AS1|NCRNA00072 HOX transcript antisense RNA (non-protein coding)|HOXC cluster antisense RNA 4 (non-protein coding)|hox transcript antisense intergenic RNA 0 0 2.534 1 1 +100125288 ZGLP1 zinc finger, GATA-like protein 1 19 protein-coding GATAD3|GLP-1|GLP1 GATA-type zinc finger protein 1|GATA zinc finger domain containing 3|GATA-like protein 1 13 0.001779 4.752 1 1 +100125556 FAM86JP family with sequence similarity 86, member A pseudogene 3 pseudo - - 49 0.006707 6.039 1 1 +100126270 FMR1-AS1 FMR1 antisense RNA 1 X ncRNA ASFMR1|FMR1-AS|FMR1AS|FMR4 FMR1 antisense RNA 1 (non-protein coding)|antisense fragile X mental retardation protein variant A 0.7948 0 1 +100126296 MIR298 microRNA 298 20 ncRNA MIRN298|hsa-mir-298 - 2 0.0002737 1 0 +100126297 MIR300 microRNA 300 14 ncRNA MIRN300|hsa-mir-300 - 4 0.0005475 1 0 +100126299 VTRNA2-1 vault RNA 2-1 5 ncRNA CBL-3|CBL3|MIR886|MIRN886|VTRNA2|hsa-mir-886|hvg-5|nc886|svtRNA2-1a cord blood lymphocyte-derived noncoding RNA 3|microRNA 886|noncoding RNA 886 10 0.001369 1 0 +100126301 MIR509-2 microRNA 509-2 X ncRNA MIRN509-2 hsa-mir-509-2 3 0.0004106 1 0 +100126302 MIR450B microRNA 450b X ncRNA MIRN450B|mir-450b hsa-mir-450b 1 0.0001369 1 0 +100126303 MIR890 microRNA 890 X ncRNA MIRN890|hsa-mir-890 - 9 0.001232 1 0 +100126304 MIR891B microRNA 891b X ncRNA MIRN891B hsa-mir-891b 4 0.0005475 1 0 +100126306 MIR888 microRNA 888 X ncRNA MIRN888|hsa-mir-888 - 3 0.0004106 1 0 +100126307 MIR892B microRNA 892b X ncRNA MIRN892B hsa-mir-892b 3 0.0004106 1 0 +100126308 MIR541 microRNA 541 14 ncRNA MIRN541|hsa-mir-541|mir-541 - 4 0.0005475 1 0 +100126310 MIR876 microRNA 876 9 ncRNA MIRN876|hsa-mir-876|mir-876 - 4 0.0005475 1 0 +100126311 MIR147B microRNA 147b 15 ncRNA MIRN147B|mir-147b hsa-mir-147b 0 0 1 0 +100126313 MIR744 microRNA 744 17 ncRNA MIRN744|hsa-mir-744|mir-744 - 1 0.0001369 1 0 +100126315 MIR665 microRNA 665 14 ncRNA MIRN665|hsa-mir-665|mir-665 - 1 0.0001369 1 0 +100126316 MIR873 microRNA 873 9 ncRNA MIRN873|hsa-mir-873|mir-873 - 1 0.0001369 1 0 +100126317 MIR374B microRNA 374b X ncRNA MIRN374B|mir-374b hsa-mir-374b 0 0 1 0 +100126319 MIR216B microRNA 216b 2 ncRNA MIRN216B|mir-216b hsa-mir-216b 1 0.0001369 1 0 +100126320 MIR920 microRNA 920 12 ncRNA MIRN920|hsa-mir-920 - 4 0.0005475 1 0 +100126321 MIR922 microRNA 922 3 ncRNA MIRN922|hsa-mir-922 - 0 0 1 0 +100126324 MIR934 microRNA 934 X ncRNA MIRN934|hsa-mir-934|mir-934 - 1 0.0001369 1 0 +100126326 MIR936 microRNA 936 10 ncRNA MIRN936|hsa-mir-936 - 0 0 1 0 +100126327 MIR938 microRNA 938 10 ncRNA MIRN938|hsa-mir-938 - 0 0 1 0 +100126328 MIR940 microRNA 940 16 ncRNA MIRN940|hsa-mir-940|mir-940 - 1 0.0001369 1 0 +100126331 MIR942 microRNA 942 1 ncRNA MIRN942|hsa-mir-942|mir-942 - 0 0 1 0 +100126332 MIR943 microRNA 943 4 ncRNA MIRN943|hsa-mir-943 - 0 0 1 0 +100126333 MIR708 microRNA 708 11 ncRNA MIRN708|hsa-mir-708 - 0 0 1 0 +100126334 MIR885 microRNA 885 3 ncRNA MIRN885|hsa-mir-885|mir-885 - 1 0.0001369 1 0 +100126335 MIR543 microRNA 543 14 ncRNA MIRN543|hsa-mir-543|mir-543 - 7 0.0009581 1 0 +100126336 MIR208B microRNA 208b 14 ncRNA MIRN208B|mir-208b hsa-mir-208b 0 0 1 0 +100126337 MIR509-3 microRNA 509-3 X ncRNA MIRN509-3|mir-509-3 hsa-mir-509-3 6 0.0008212 1 0 +100126341 MIR891A microRNA 891a X ncRNA MIRN891A hsa-mir-891a 5 0.0006844 1 0 +100126342 MIR892A microRNA 892a X ncRNA MIRN892A hsa-mir-892a 4 0.0005475 1 0 +100126346 MIR190B microRNA 190b 1 ncRNA MIRN190B|mir-190b hsa-mir-190b 2 0.0002737 1 0 +100126347 MIR887 microRNA 887 5 ncRNA MIRN887|hsa-mir-887 - 1 0.0001369 1 0 +100126348 MIR760 microRNA 760 1 ncRNA MIRN760|hsa-mir-760|mir-760 - 1 0.0001369 1 0 +100126351 MIR939 microRNA 939 8 ncRNA MIRN939|hsa-mir-939|mir-939 - 0 0 1 0 +100126354 MIR297 microRNA 297 4 ncRNA MIRN297|hsa-mir-297 - 3 0.0004106 1 0 +100126572 GJE1 gap junction protein epsilon 1 6 pseudo CX23 connexin-23|gap junction epsilon-1 protein|gap junction protein, epsilon 1, 23kDa 1 0.0001369 1 0 +100126693 LINC00322 long intergenic non-protein coding RNA 322 21 ncRNA C21orf136|NCRNA00322 - 1 0.0001369 1 0 +100126780 SNAR-G1 small ILF3/NF90-associated RNA G1 19 snRNA - small NF90-associated RNA G1|small nuclear ILF3/NF90-associated RNA G1 0.03938 0 1 +100126781 SNAR-F small ILF3/NF90-associated RNA F 19 snRNA - small NF90-associated RNA F|small nuclear ILF3/NF90-associated RNA F 0.004527 0 1 +100126784 LOC100126784 uncharacterized LOC100126784 11 ncRNA - - 4.676 0 1 +100126791 EGOT eosinophil granule ontogeny transcript (non-protein coding) 3 ncRNA EGO|NCRNA00190 - 2.163 0 1 +100126793 GHRLOS ghrelin opposite strand/antisense RNA 3 ncRNA GHRL-AS1|GHRLAS|NCRNA00068 GHRL antisense RNA 1 (non-protein coding) 0 0 3.348 1 1 +100126799 SNAR-A2 small ILF3/NF90-associated RNA A2 19 snRNA SNAR-A53129250 small NF90-associated RNA A53129250|small nuclear ILF3/NF90-associated RNA A2 0.004615 0 1 +100127888 SLCO4A1-AS1 SLCO4A1 antisense RNA 1 20 ncRNA - - 2.207 0 1 +100127889 C10orf131 chromosome 10 open reading frame 131 10 protein-coding bA690P14.3 uncharacterized protein C10orf131 6 0.0008212 0.8536 1 1 +100127919 LOC100127919 developmental pluripotency associated 3 pseudogene 12 pseudo - - 0 0 1 0 +100127950 HECW1-IT1 HECW1 intronic transcript 1 7 ncRNA - HECW1 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100127952 ATF4P4 activating transcription factor 4 pseudogene 4 11 pseudo ATF4B activating transcription factor 4 (tax-responsive enhancer element B67) pseudogene|activating transcription factor 4B 36 0.004927 1 0 +100127974 LOC100127974 uncharacterized LOC100127974 12 unknown - - 1 0.0001369 1 0 +100127982 LOC100127982 transmembrane protein 69 pseudogene 8 pseudo - - 1 0.0001369 1 0 +100128002 LOC100128002 uncharacterized LOC100128002 12 ncRNA - - 1 0.0001369 1 0 +100128006 LOC100128006 uncharacterized LOC100128006 17 ncRNA - - 0 0 1 0 +100128023 DPPA2P3 developmental pluripotency associated 2 pseudogene 3 3 pseudo - - 0.1667 0 1 +100128063 LOC100128063 uncharacterized LOC100128063 5 unknown - - 0 0 1 0 +100128071 FAM229A family with sequence similarity 229 member A 1 protein-coding - protein FAM229A 1 0.0001369 1 0 +100128076 LOC100128076 protein tyrosine phosphatase pseudogene 9 pseudo - - 0.5474 0 1 +100128081 JAZF1-AS1 JAZF1 antisense RNA 1 7 ncRNA - JAZF1 antisense RNA 1 (non-protein coding) 0 0 1 0 +100128086 LOC100128086 APAF1 interacting protein pseudogene 9 pseudo - - 0 0 1 0 +100128108 LOC100128108 putative ubiquitin-conjugating enzyme E2Q2-like protein 15 protein-coding - putative ubiquitin-conjugating enzyme E2Q2-like protein 0 0 1 0 +100128124 HGC6.3 uncharacterized LOC100128124 6 protein-coding - uncharacterized protein LOC100128124 3 0.0004106 0.8634 1 1 +100128126 STAU2-AS1 STAU2 antisense RNA 1 8 ncRNA - STAU2 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100128164 LOC100128164 four and a half LIM domains 1 pseudogene 3 pseudo - - 5 0.0006844 1.704 1 1 +100128190 SLC9B1P1 solute carrier family 9 member B1 pseudogene 1 Y pseudo NHEDC1P1 Na+/H+ exchanger domain containing 1 pseudogene 1|Putative protein SLC9B1-like 1|solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 1|solute carrier family 9, subfamily B (cation proton antiporter 2), member 1 pseudogene 1 6 0.0008212 1 0 +100128191 TMPO-AS1 TMPO antisense RNA 1 12 ncRNA - TMPO antisense RNA 1 (non-protein coding) 6.247 0 1 +100128239 LOC100128239 uncharacterized LOC100128239 11 ncRNA - - 1 0.0001369 2.782 1 1 +100128252 ZNF667-AS1 ZNF667 antisense RNA 1 (head to head) 19 ncRNA MORT - 2 0.0002737 1 0 +100128254 FAM90A28P family with sequence similarity 90 member A28, pseudogene 19 pseudo - - 1 0.0001369 1 0 +100128285 DNM1P35 dynamin 1 pseudogene 35 15 pseudo DNM1DN8-2|DNM1DN8.2|DNM1DN8@|FKSG88 DNM1 pseudogene 35|DNM1DN8.2 duplicon 3 0.0004106 4.435 1 1 +100128288 LOC100128288 uncharacterized LOC100128288 17 ncRNA - - 5.061 0 1 +100128292 DLG5-AS1 DLG5 antisense RNA 1 10 ncRNA - - 3.948 0 1 +100128327 TRAPPC3L trafficking protein particle complex 3 like 6 protein-coding BET3L|bA259P20.2 trafficking protein particle complex subunit 3-like protein|BET3-like protein|TRAPPC3-like protein 9 0.001232 0.8359 1 1 +100128340 LOC100128340 uncharacterized LOC100128340 5 unknown - - 3 0.0004106 1 0 +100128355 LOC100128355 ribosomal protein S27a pseudogene X pseudo - - 0 0 1 0 +100128362 LOC100128362 protein phosphatase 2 catalytic subunit alpha pseudogene 1 pseudo - - 0 0 1 0 +100128378 LINC00696 long intergenic non-protein coding RNA 696 3 ncRNA C3orf74 - 4 0.0005475 0.5432 1 1 +100128385 FAM225B family with sequence similarity 225 member B (non-protein coding) 9 ncRNA C9orf110|LINC00256B|NCRNA00256B long intergenic non-protein coding RNA 256B|non-protein coding RNA 256B 1 0.0001369 5.623 1 1 +100128496 C20orf78 chromosome 20 open reading frame 78 20 protein-coding dJ1068E13.1 putative uncharacterized protein C20orf78 3 0.0004106 1 0 +100128514 ARHGAP42P5 Rho GTPase activating protein 42 pseudogene 5 14 pseudo - - 1 0.0001369 1 0 +100128537 C1orf132 chromosome 1 open reading frame 132 1 ncRNA - - 2 0.0002737 1 0 +100128542 BET1P1 Bet1 golgi vesicular membrane trafficking protein pseudogene 1 7 pseudo - blocked early in transport 1 homolog pseudogene 0.6834 0 1 +100128553 CTAGE4 CTAGE family member 4 7 protein-coding cTAGE-4 cTAGE family member 4|cutaneous T-cell lymphoma-associated antigen 4|cutaneous-T-cell-lymphoma-specific tumor antigen 4|protein cTAGE-4 4 0.0005475 5.098 1 1 +100128554 LOC100128554 uncharacterized LOC100128554 12 ncRNA - - 0.2289 0 1 +100128569 C19orf71 chromosome 19 open reading frame 71 19 protein-coding - uncharacterized protein C19orf71|Uncharacterized protein ENSP00000327950 6 0.0008212 3.258 1 1 +100128573 LOC100128573 uncharacterized LOC100128573 19 ncRNA - - 0.9968 0 1 +100128574 ARMCX3-AS1 ARMCX3 antisense RNA 1 X unknown - ARMCX3 antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +100128588 LOC100128588 PIN2/TERF1 interacting, telomerase inhibitor 1 pseudogene 6 pseudo - - 1 0.0001369 1 0 +100128590 SLC8A1-AS1 SLC8A1 antisense RNA 1 2 ncRNA - SLC8A1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100128601 LOC100128601 zinc finger protein 770 pseudogene X pseudo - - 0 0 1 0 +100128640 ACVR2B-AS1 ACVR2B antisense RNA 1 3 ncRNA - ACVR2B antisense RNA 1 (non-protein coding) 1 0.0001369 4.719 1 1 +100128675 HPN-AS1 HPN antisense RNA 1 19 ncRNA - CTD-2527I21.11 6 0.0008212 1.656 1 1 +100128688 GPR50-AS1 GPR50 antisense RNA 1 X ncRNA - GPR50 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100128714 LOC100128714 uncharacterized LOC100128714 15 ncRNA - - 1 0.0001369 1 0 +100128731 OST4 oligosaccharyltransferase complex subunit 4, non-catalytic 2 protein-coding - dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 4|oligosaccharyltransferase 4 homolog 1 0.0001369 11.3 1 1 +100128770 LOC100128770 uncharacterized LOC100128770 16 ncRNA - - 1 0.0001369 1 0 +100128775 LOC100128775 neural precursor cell expressed, developmentally down-regulated 8 pseudogene 1 pseudo - - 0 0 1 0 +100128782 LINC00476 long intergenic non-protein coding RNA 476 9 ncRNA C9orf130|NAG11|NAG12 nasopharyngeal carcinoma-associated gene 12 3 0.0004106 6.943 1 1 +100128788 SRRM2-AS1 SRRM2 antisense RNA 1 16 ncRNA - CTD-2270P14.3|SRRM2 antisense RNA 1 (non-protein coding) 4 0.0005475 3.552 1 1 +100128811 GPR158-AS1 GPR158 antisense RNA 1 10 ncRNA - GPR158 antisense RNA 1 (non-protein coding) 1 0.0001369 0.6397 1 1 +100128822 LINC01003 long intergenic non-protein coding RNA 1003 7 ncRNA - - 6.763 0 1 +100128842 4.355 0 1 +100128890 FAM66B family with sequence similarity 66 member B 8 ncRNA FAM66E family with sequence similarity 66, member E 37 0.005064 1 0 +100128893 GATA6-AS1 GATA6 antisense RNA 1 (head to head) 18 ncRNA locus5689 locus 5689 0 0 1 0 +100128927 ZBTB42 zinc finger and BTB domain containing 42 14 protein-coding LCCS6|ZNF925 zinc finger and BTB domain-containing protein 42 10 0.001369 8.265 1 1 +100128946 LINC01310 long intergenic non-protein coding RNA 1310 22 ncRNA WI2-81516E3.1 - 2 0.0002737 1 0 +100128977 MAPT-AS1 MAPT antisense RNA 1 17 ncRNA - MAPT antisense RNA 1 (non-protein coding) 0.9731 0 1 +100128979 LOC100128979 uncharacterized LOC100128979 15 ncRNA - - 2 0.0002737 1 0 +100129027 LOC100129027 uncharacterized LOC100129027 21 ncRNA - - 1 0.0001369 1 0 +100129034 LOC100129034 uncharacterized LOC100129034 9 ncRNA - - 10.23 0 1 +100129046 LOC100129046 uncharacterized LOC100129046 1 ncRNA - - 0 0 1 0 +100129055 LOC100129055 cyclin Y like 1 pseudogene 10 pseudo - - 0.5525 0 1 +100129066 UNQ6494 uncharacterized LOC100129066 9 ncRNA - - 1.703 0 1 +100129075 KTN1-AS1 KTN1 antisense RNA 1 14 ncRNA C14orf33|MYCLo-3 KTN1 antisense RNA 1 (non-protein coding) 5 0.0006844 5.556 1 1 +100129094 BTNL10 butyrophilin like 10 1 protein-coding BTN4|BUTR1 butyrophilin-like protein 10|butyrophilin related 1 1 0.0001369 1 0 +100129096 LOC100129096 tropomyosin 1 (alpha) pseudogene 8 pseudo - - 0 0 1 0 +100129118 LOC100129118 transmembrane protein 167A pseudogene 19 pseudo - - 0 0 1 0 +100129128 KHDC1L KH domain containing 1 like 6 protein-coding - putative KHDC1-like protein|KH homology domain containing 1-like|RP11-257K9.7 9 0.001232 1.607 1 1 +100129138 LOC100129138 THAP domain containing, apoptosis associated protein 3 pseudogene 1 pseudo - - 1 0.0001369 1 0 +100129144 LOC100129144 zinc finger protein 681 pseudogene X pseudo - - 0 0 1 0 +100129196 MATN1-AS1 MATN1 antisense RNA 1 1 ncRNA - MATN1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100129239 CXorf51A chromosome X open reading frame 51A X protein-coding CXorf51 uncharacterized protein LOC100129239 0.04229 0 1 +100129250 TOPORS-AS1 TOPORS antisense RNA 1 9 ncRNA C9orf133 TOPORS antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100129271 C1orf68 chromosome 1 open reading frame 68 1 protein-coding LEP7|XP32 skin-specific protein 32|skin-specific protein (xp32) 5 0.0006844 0.406 1 1 +100129278 TDRD15 tudor domain containing 15 2 protein-coding - tudor domain-containing protein 15|tudor domain-containing protein 6-like 1 0.0001369 1 0 +100129293 LOC100129293 IgLON family member 5 pseudogene 7 pseudo - - 1 0.0001369 1 0 +100129345 LOC100129345 uncharacterized LOC100129345 14 ncRNA - - 2 0.0002737 1 0 +100129354 NRADDP neurotrophin receptor associated death domain, pseudogene 3 pseudo - NRADD pseudogene 1.421 0 1 +100129385 C9orf92 chromosome 9 open reading frame 92 9 protein-coding Em:AL513424.1 putative uncharacterized protein C9orf92 1 0.0001369 1 0 +100129387 GABPB1-AS1 GABPB1 antisense RNA 1 15 ncRNA - GABPB1 antisense RNA 1 (non-protein coding) 6.566 0 1 +100129396 FAM106CP family with sequence similarity 106 member C, pseudogene 17 ncRNA FAM106C - 2.001 0 1 +100129405 MSTO2P misato family member 2, pseudogene 1 pseudo MSTO2 misato homolog 2 pseudogene 3 0.0004106 6.56 1 1 +100129424 RPL19P12 ribosomal protein L19 pseudogene 12 7 pseudo RPL19_4_829 - 6.113 0 1 +100129434 LOC100129434 uncharacterized LOC100129434 2 ncRNA - - 1 0.0001369 1 0 +100129464 LINC01546 long intergenic non-protein coding RNA 1546 X ncRNA CXorf28 - 1 0.0001369 1 0 +100129476 LOC100129476 uncharacterized LOC100129476 1 unknown - - 1 0.0001369 1 0 +100129478 LOC100129478 chromosome 4 open reading frame 46 pseudogene 16 pseudo - - 0 0 1 0 +100129480 MKRN2OS MKRN2 opposite strand 3 protein-coding C3orf83|MKRN2-AS1 MKRN2 opposite strand protein|MKRN2 antisense RNA 1 (non-protein coding)|MKRN2 antisense gene protein 1 1 0.0001369 1 0 +100129482 ZNF37BP zinc finger protein 37B, pseudogene 10 pseudo KOX21|ZNF37B zinc finger protein 37b (KOX 21) 18 0.002464 7.92 1 1 +100129527 LOC100129527 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) pseudogene 8 pseudo - - 0 0 1 0 +100129528 MUC8 mucin 8 12 protein-coding - mucin 8, tracheobronchial 2 0.0002737 1 0 +100129534 LOC100129534 small nuclear ribonucleoprotein polypeptide N pseudogene 1 pseudo - - 5.076 0 1 +100129543 ZNF730 zinc finger protein 730 19 protein-coding - putative zinc finger protein 730 51 0.006981 1 0 +100129550 LOC100129550 uncharacterized LOC100129550 3 ncRNA - - 7.511 0 1 +100129583 FAM47E family with sequence similarity 47 member E 4 protein-coding - protein FAM47E 6 0.0008212 5.587 1 1 +100129620 LOC100129620 uncharacterized LOC100129620 1 ncRNA - - 1 0.0001369 1 0 +100129631 IGHV2OR16-5 immunoglobulin heavy variable 2/OR16-5 (non-functional) 16 pseudo IGHV2OR165 IGHV2/OR16-5 3 0.0004106 1 0 +100129637 7.549 0 1 +100129669 IZUMO3 IZUMO family member 3 9 protein-coding C9orf134|bA20A20.1 izumo sperm-egg fusion protein 3 4 0.0005475 1 0 +100129675 LOC100129675 uncharacterized LOC100129675 2 unknown - - 0 0 1 0 +100129696 TFP1 transferrin pseudogene 1 3 pseudo TFP - 3 0.0004106 1 0 +100129707 LOC100129707 presenilin associated rhomboid like pseudogene 3 pseudo - - 1 0.0001369 1 0 +100129716 ARRDC3-AS1 ARRDC3 antisense RNA 1 5 ncRNA - ARRDC3 antisense RNA 1 (non-protein coding) 3.007 0 1 +100129726 LINC01126 long intergenic non-protein coding RNA 1126 2 ncRNA - - 2.642 0 1 +100129792 CCDC152 coiled-coil domain containing 152 5 protein-coding CH5400 coiled-coil domain-containing protein 152 7 0.0009581 6.023 1 1 +100129827 MRVI1-AS1 MRVI1 antisense RNA 1 11 ncRNA - MRVI1 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +100129836 COL4A2-AS2 COL4A2 antisense RNA 2 13 protein-coding - uncharacterized protein LOC100129836|COL4A2 antisense RNA 2 (non-protein coding) 2 0.0002737 1 0 +100129842 ZNF737 zinc finger protein 737 19 protein-coding ZNF102 zinc finger protein 737|zinc finger protein 102 (Y3) 68 0.009307 7.512 1 1 +100129845 PCOLCE-AS1 PCOLCE antisense RNA 1 7 ncRNA - PCOLCE antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100129931 LOC100129931 uncharacterized LOC100129931 4 ncRNA - - 1 0.0001369 1 0 +100129933 GLYATL1P2 glycine-N-acyltransferase like 1 pseudogene 2 11 pseudo - - 1 0.0001369 1 0 +100129935 LOC100129935 lectin, galactoside binding soluble 14 pseudogene 19 pseudo - - 0.04866 0 1 +100129942 LOC100129942 capping actin protein of muscle Z-line alpha subunit 2 pseudogene 15 pseudo - - 1 0.0001369 1 0 +100129969 FAM205C family with sequence similarity 205 member C 9 protein-coding FAM205CP protein FAM205C|FAM205C pseudogene|family with sequence similarity 205, member C, pseudogene|protein FAM205CP|putative family with sequence similarity 205, member C protein|transmembrane protein C9orf144B pseudogene 1 0.0001369 1 0 +100130015 URAHP urate (hydroxyiso-) hydrolase, pseudogene 16 pseudo URAH 5-hydroxyisourate hydrolase pseudogene|HIU hydrolase 1 0.0001369 4.599 1 1 +100130017 FTLP10 ferritin light chain pseudogene 10 4 pseudo - ferritin, light polypeptide pseudogene 10 4 0.0005475 0.03355 1 1 +100130086 HSFX2 heat shock transcription factor family, X-linked 2 X protein-coding - heat shock transcription factor, X-linked 4.716 0 1 +100130093 6.154 0 1 +100130134 LOC100130134 staufen double-stranded RNA binding protein 2 pseudogene X pseudo - - 1 0.0001369 1 0 +100130148 MAPT-IT1 MAPT intronic transcript 1 17 ncRNA - MAPT intronic transcript 1 (non-protein coding) 1.147 0 1 +100130155 MIR124-2HG MIR124-2 host gene 8 ncRNA LINC00966 MIR124-2 host gene (non-protein coding)|long intergenic non-protein coding RNA 966 9 0.001232 1 0 +100130172 LOC100130172 uncharacterized LOC100130172 5 ncRNA - - 1 0.0001369 1 0 +100130190 SRRM1P3 serine/arginine repetitive matrix 1 pseudogene 3 X pseudo - - 1 0.0001369 1 0 +100130238 LOC100130238 uncharacterized LOC100130238 12 ncRNA - - 2.095 0 1 +100130264 LOC100130264 uncharacterized LOC100130264 20 ncRNA - - 0.2026 0 1 +100130274 CCDC166 coiled-coil domain containing 166 8 protein-coding - coiled-coil domain-containing protein 166 5 0.0006844 0.276 1 1 +100130302 SUPT20HL1 SPT20 homolog, SAGA complex component-like 1 X protein-coding FAM48B1|SPT20L transcription factor SPT20 homolog-like 1|family with sequence similarity 48, member B1|protein FAM48B1|suppressor of Ty 20 homolog (S. cerevisiae)-like 1 12 0.001642 0.3288 1 1 +100130311 C17orf107 chromosome 17 open reading frame 107 17 protein-coding - uncharacterized protein C17orf107 5 0.0006844 5.95 1 1 +100130331 LOC100130331 POTE ankyrin domain family, member F pseudogene 1 pseudo - - 1 0.0001369 2.502 1 1 +100130353 LOC100130353 major facilitator superfamily domain containing 14B pseudogene 11 pseudo - hippocampus abundant transcript-like 1 pseudogene 0 0 1 0 +100130361 CXorf49 chromosome X open reading frame 49 X protein-coding CXorf49B uncharacterized protein CXorf49|putative uncharacterized protein CXorf49 3 0.0004106 1 0 +100130386 LINC00552 long intergenic non-protein coding RNA 552 13 ncRNA - - 0.7044 0 1 +100130417 LOC100130417 uncharacterized LOC100130417 1 ncRNA - - 0.3798 0 1 +100130418 CECR7 cat eye syndrome chromosome region, candidate 7 (non-protein coding) 22 ncRNA SAHL1 - 9 0.001232 3.843 1 1 +100130426 0.04093 0 1 +100130433 LOC100130433 uncharacterized LOC100130433 9 protein-coding - - 1 0.0001369 1 0 +100130449 PP14571 uncharacterized LOC100130449 2 ncRNA - - 3 0.0004106 2.99 1 1 +100130502 LOC100130502 uncharacterized LOC100130502 2 unknown - - 1 0.0001369 1 0 +100130519 TMEM221 transmembrane protein 221 19 protein-coding - transmembrane protein 221|Putative transmembrane protein ENSP00000342162 1 0.0001369 1 0 +100130522 PARD6G-AS1 PARD6G antisense RNA 1 18 ncRNA - PARD6G antisense RNA 1 (non-protein coding) 3.275 0 1 +100130557 NFYC-AS1 NFYC antisense RNA 1 1 ncRNA 0808y08y - 5.213 0 1 +100130581 LINC00910 long intergenic non-protein coding RNA 910 17 ncRNA - CTD-3014M21.4 5.453 0 1 +100130613 PRR32 proline rich 32 X protein-coding CXorf64 proline-rich protein 32 15 0.002053 0.7008 1 1 +100130691 LOC100130691 uncharacterized LOC100130691 2 ncRNA - - 3.663 0 1 +100130717 CECR5-AS1 CECR5 antisense RNA 1 22 ncRNA CECR4|NCRNA00017 CECR5 antisense RNA 1 (non-protein coding)|cat eye syndrome chromosome region, candidate 4 (non-protein coding) 1 0.0001369 1.761 1 1 +100130733 LRRC70 leucine rich repeat containing 70 5 protein-coding SLRN leucine-rich repeat-containing protein 70|synleurin 14 0.001916 4.771 1 1 +100130742 LRRC69 leucine rich repeat containing 69 8 protein-coding - leucine-rich repeat-containing protein 69 11 0.001506 1.865 1 1 +100130746 LOC100130746 AKT interacting protein pseudogene 5 pseudo - - 3 0.0004106 1 0 +100130761 LOC100130761 uncharacterized LOC100130761 2 protein-coding - - 0 0 1 0 +100130771 EFCAB10 EF-hand calcium binding domain 10 7 ncRNA - EF-hand domain-containing protein 3 0.0004106 2.687 1 1 +100130776 AGAP2-AS1 AGAP2 antisense RNA 1 12 ncRNA PUNISHER - 3 0.0004106 7.285 1 1 +100130849 LOC100130849 phosphorylase kinase gamma subunit 1 pseudogene 7 pseudo - - 1 0.0001369 1 0 +100130855 USP3-AS1 USP3 antisense RNA 1 15 ncRNA - - 1 0.0001369 1 0 +100130872 LOC100130872 uncharacterized LOC100130872 4 ncRNA - - 5.178 0 1 +100130873 CARM1P1 coactivator associated arginine methyltransferase 1 pseudogene 1 9 pseudo CARM1L - 2 0.0002737 1 0 +100130881 LOC100130881 zinc finger protein 12 pseudogene 10 pseudo - - 1 0.0001369 1 0 +100130889 PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) 6 ncRNA NCRNA00196 - 1.31 0 1 +100130890 TSTD3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 6 protein-coding - thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 3|rhodanese domain-containing protein 3 3 0.0004106 1 0 +100130932 SNRPGP15 small nuclear ribonucleoprotein polypeptide G pseudogene 15 19 pseudo - - 5.97 0 1 +100130933 SMIM6 small integral membrane protein 6 17 protein-coding C17orf110 small integral membrane protein 6 2.91 0 1 +100130935 CSAG4 CSAG family member 4 (pseudogene) X pseudo - CSAG family, member 2 pseudogene|CSAG family, member 4|chondrosarcoma-associated gene 2/3 protein pseudogene 31 0.004243 1 0 +100130958 SYCE1L synaptonemal complex central element protein 1 like 16 protein-coding MRP2 synaptonemal complex central element protein 1-like|meiosis-related protein 13 0.001779 3.468 1 1 +100130967 C6orf99 chromosome 6 open reading frame 99 6 protein-coding yR211F11.1 putative uncharacterized protein C6orf99 1 0.0001369 1 0 +100130987 LOC100130987 uncharacterized LOC100130987 11 ncRNA - - 3.574 0 1 +100130988 C7orf72 chromosome 7 open reading frame 72 7 protein-coding - uncharacterized protein C7orf72 21 0.002874 0.1006 1 1 +100130990 LOC100130990 zinc finger protein 561-like 5 pseudo - - 0 0 1 0 +100131089 SRP14-AS1 SRP14 antisense RNA1 (head to head) 15 ncRNA - - 4 0.0005475 1 0 +100131096 TNRC6C-AS1 TNRC6C antisense RNA 1 17 ncRNA - - 3 0.0004106 1 0 +100131137 BSPH1 binder of sperm protein homolog 1 19 protein-coding BSP1|ELSPBP2 binder of sperm protein homolog 1|binder of sperm 1|bovine seminal plasma protein homolog 1|bovine seminal plasma protein-like 1|epididymal sperm binding protein 2 6 0.0008212 0.01168 1 1 +100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 1 protein-coding KAT thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 1|putative thiosulfate sulfurtransferase KAT|thiosulfate sulfurtransferase (rhodanese)-like domain containing 1|thiosulfate sulfurtransferase KAT, putative 3 0.0004106 8.841 1 1 +100131193 CCDC183-AS1 CCDC183 antisense RNA 1 9 ncRNA KIAA1984-AS1 - 4 0.0005475 5.055 1 1 +100131208 SNAP25-AS1 SNAP25 antisense RNA 1 20 ncRNA - SNAP25 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +100131211 NEMP2 nuclear envelope integral membrane protein 2 2 protein-coding TMEM194B nuclear envelope integral membrane protein 2|UPF0571 transmembrane protein|transmembrane protein 194B 6 0.0008212 6.797 1 1 +100131213 ZNF503-AS2 ZNF503 antisense RNA 2 10 ncRNA C10orf41|NCRNA00245 ZNF503 antisense RNA 2 (non-protein coding) 5.851 0 1 +100131223 LOC100131223 ADP ribosylation factor like GTPase 8B pseudogene 1 pseudo - ADP-ribosylation factor-like 8B pseudogene 0 0 1 0 +100131234 MIR181A1HG MIR181A1 host gene 1 ncRNA - MIR181A1 host gene (non-protein coding)|familial acute myelogenous leukemia related factor 0 0 1 0 +100131257 LOC100131257 zinc finger protein 655 pseudogene 7 pseudo - - 1 0.0001369 1 0 +100131275 NSAP11 nervous system abundant protein 11 8 unknown - - 1 0.0001369 1 0 +100131360 LOC100131360 serine/threonine-protein phosphatase 4 regulatory subunit 2-like 3 pseudo - - 0 0 1 0 +100131390 SP9 Sp9 transcription factor 2 protein-coding ZNF990 transcription factor Sp9|Sp9 transcription factor homolog|zinc finger protein 990 7 0.0009581 0.7657 1 1 +100131434 LINC00893 long intergenic non-protein coding RNA 893 X ncRNA - gene W 1 0.0001369 4.734 1 1 +100131439 CD300LD CD300 molecule like family member d 17 protein-coding CD300D|CLM-4|CMRF35-A4|CMRF35A4 CMRF35-like molecule 4|CD300 antigen-like family member D|immune receptor CD300d 8 0.001095 0.06927 1 1 +100131454 DBIL5P diazepam binding inhibitor-like 5, pseudogene 17 pseudo ELP2P endozepine-like peptide 2 pseudogene 3 0.0004106 3.548 1 1 +100131479 LOC100131479 zinc finger protein 430 pseudogene 19 pseudo - - 0 0 1 0 +100131482 LOC100131482 thioredoxin like 4A pseudogene 2 pseudo - - 0 0 1 0 +100131496 LOC100131496 uncharacterized LOC100131496 20 ncRNA - - 1.695 0 1 +100131539 ZNF705E zinc finger protein 705E 11 protein-coding - putative zinc finger protein 705E 10 0.001369 1 0 +100131551 LINC00887 long intergenic non-protein coding RNA 887 3 ncRNA - linc-ATP13A4-8 2.424 0 1 +100131561 FKSG29 FKSG29 13 ncRNA - - 0.2371 0 1 +100131582 LOC100131582 uncharacterized LOC100131582 16 unknown - - 0 0 1 0 +100131662 LOC100131662 uncharacterized LOC100131662 2 unknown - - 0 0 1 0 +100131669 LOC100131669 uncharacterized LOC100131669 18 unknown - - 1 0.0001369 1 0 +100131691 MZF1-AS1 MZF1 antisense RNA 1 19 ncRNA - - 4.827 0 1 +100131726 FAM83A-AS1 FAM83A antisense RNA 1 8 ncRNA HCCC11|HCCC11_v1|HCCC11_v2 HCC-related HCC-C11_v3 1.874 0 1 +100131755 ARMCX4 armadillo repeat containing, X-linked 4 X protein-coding CXorf35|GASP4 armadillo repeat-containing X-linked protein 4|armadillo repeat containing, X-linked 4 pseudogene 11 0.001506 1 0 +100131814 LINC00271 long intergenic non-protein coding RNA 271 6 ncRNA C6orf217|NCRNA00271 - 10 0.001369 2.345 1 1 +100131816 UBE2DNL ubiquitin conjugating enzyme E2 D N-terminal like (pseudogene) X pseudo - ubiquitin conjugating enzyme E2D N-terminal like (pseudogene)|ubiquitin-conjugating enzyme E2D N-terminal like 0.1103 0 1 +100131827 ZNF717 zinc finger protein 717 3 protein-coding X17|ZNF838 zinc finger protein 717|krueppel-like factor X17|kruppel-like zinc finger factor X17|zinc finger protein 838 49 0.006707 4.994 1 1 +100131859 LOC100131859 SAP domain containing ribonucleoprotein pseudogene 7 pseudo - - 1 0.0001369 1 0 +100131897 FAM196B family with sequence similarity 196 member B 5 protein-coding C5orf57 protein FAM196B 25 0.003422 2.405 1 1 +100131902 KRTAP25-1 keratin associated protein 25-1 21 protein-coding KAP25.1 keratin-associated protein 25-1 9 0.001232 0.0016 1 1 +100131980 ZNF705G zinc finger protein 705G 8 protein-coding - putative zinc finger protein 705G 7 0.0009581 1 0 +100131997 FAM27E3 family with sequence similarity 27 member E3 9 ncRNA - - 1 0.0001369 1 0 +100131998 RRN3P3 RRN3 homolog, RNA polymerase I transcription factor pseudogene 3 16 pseudo - RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 3|RRN3 RNA polymerase I transcription factor homolog pseudogene 9 0.001232 5.571 1 1 +100132074 FOXO6 forkhead box O6 1 protein-coding - forkhead box protein O6 1 0.0001369 1 0 +100132077 LOC100132077 uncharacterized LOC100132077 9 ncRNA - - 1 0.0001369 1 0 +100132103 FAM66E family with sequence similarity 66 member E 8 ncRNA - - 4 0.0005475 0.971 1 1 +100132111 LOC100132111 uncharacterized LOC100132111 1 ncRNA - - 2.678 0 1 +100132159 CALML3-AS1 CALML3 antisense RNA 1 10 ncRNA - - 0 0 1 0 +100132163 PHKA2-AS1 PHKA2 antisense RNA 1 X ncRNA - PHKA2 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100132169 WASIR2 WASH and IL9R antisense RNA 2 16 ncRNA NCRNA00286A WASH and IL9R antisense RNA 2 (non-protein coding)|non-protein coding RNA 286A 3 0.0004106 1 0 +100132215 LOC100132215 uncharacterized LOC100132215 2 ncRNA - - 3.771 0 1 +100132247 NPIPB5 nuclear pore complex interacting protein family member B5 16 protein-coding - nuclear pore complex interacting protein family member|nuclear pore complex interacting protein related 21 0.002874 7.198 1 1 +100132257 LOC100132257 Putative ankyrin repeat domain-containing protein ENSP00000383069 14 protein-coding - - 1 0.0001369 1 0 +100132273 NDUFA6-AS1 NDUFA6 antisense RNA 1 (head to head) 22 ncRNA - - 1 0.0001369 1 0 +100132287 LOC100132287 uncharacterized LOC100132287 1 ncRNA - - 8.053 0 1 +100132288 TEKT4P2 tektin 4 pseudogene 2 21 pseudo MAFIPL|TEKT4P Tektin-4 like protein LOC389833 36 0.004927 7.679 1 1 +100132330 LOC100132330 mal, T-cell differentiation protein-like pseudogene 2 pseudo - - 0 0 1 0 +100132341 CLUHP3 clustered mitochondria homolog pseudogene 3 16 pseudo C16orf67|KIAA0664L3|KIAA0664P3|URLC3 KIAA0664-like 3|clustered mitochondria (cluA/CLU1) homolog pseudogene 3|up-regulated in lung cancer 3 2 0.0002737 5.361 1 1 +100132354 LINC01512 long intergenic non-protein coding RNA 1512 6 ncRNA HI-LNC77 Human Islet Long Non Coding RNA 77|TCONS_00011120 1.488 0 1 +100132386 KRTAP4-9 keratin associated protein 4-9 17 protein-coding KAP4.9 keratin-associated protein 4-9|keratin-associated protein 4.9|ultrahigh sulfur keratin-associated protein 4.9 79 0.01081 0.04133 1 1 +100132396 ZNF705B zinc finger protein 705B 8 protein-coding - zinc finger protein 705B|Putative zinc finger protein 705D-like protein LOC100132396|putative zinc finger protein 705B 8 0.001095 1 0 +100132399 GAGE12D G antigen 12D X protein-coding GAGE-12B G antigen 12B/C/D/E|GAGE-12D|g antigen 12C/D/E 0.6904 0 1 +100132403 FAM157B family with sequence similarity 157 member B 9 protein-coding - putative protein FAM157B 42 0.005749 0.9735 1 1 +100132406 NBPF10 neuroblastoma breakpoint family member 10 1 protein-coding AB6|AG1|NBPF9 neuroblastoma breakpoint family member 10 217 0.0297 8.465 1 1 +100132417 FCGR1CP Fc fragment of IgG receptor Ic, pseudogene 1 pseudo CD64c|FCGR1C|FCRIC|IGFR1|IGFRC Fc fragment of IgG, high affinity Ic, receptor (CD64), pseudogene|Fc fragment of IgG, high affinity Ic, receptor for (CD64)|immunoglobulin gamma Fc receptor 1C 2 0.0002737 4.584 1 1 +100132463 CLDN24 claudin 24 4 protein-coding CLDN21 putative claudin-24|claudin 21 3 0.0004106 1 0 +100132464 FAM99B family with sequence similarity 99 member B (non-protein coding) 11 ncRNA - family with sequence similarity 99, member B 3 0.0004106 0.1373 1 1 +100132476 KRTAP4-7 keratin associated protein 4-7 17 protein-coding KAP4.7|KRTAP4.7 putative keratin-associated protein 4-X|Ultrahigh sulfur keratin-associated protein 4.7 68 0.009307 0.03696 1 1 +100132510 GLRXP3 glutaredoxin pseudogene 3 5 pseudo GLRXL glutaredoxin (thioltransferase) pseudogene 3 1 0.0001369 1 0 +100132526 FGD5P1 FYVE, RhoGEF and PH domain containing 5 pseudogene 1 3 pseudo - - 5 0.0006844 1 0 +100132565 GOLGA8F golgin A8 family member F 15 pseudo - golgi autoantigen, golgin subfamily a, 8F|golgin A8 family, member F pseudogene|golgin-like hypothetical protein LOC440321 6 0.0008212 0.04029 1 1 +100132580 RBMXP4 RNA binding motif protein, X-linked pseudogene 4 4 pseudo - - 0 0 1 0 +100132594 PGAM1P5 phosphoglycerate mutase 1 pseudogene 5 12 pseudo - - 4 0.0005475 1 0 +100132677 BSN-AS2 BSN antisense RNA 2 (head to head) 3 ncRNA - BSN antisense RNA 2 (non-protein coding) 1 0.0001369 1 0 +100132686 LOC100132686 uncharacterized LOC100132686 11 ncRNA - - 0 0 1 0 +100132707 PAXIP1-AS2 PAXIP1 antisense RNA 2 7 ncRNA PAXIP1OS PAXIP1 opposite strand 5.976 0 1 +100132708 CYP4F30P cytochrome P450 family 4 subfamily F member 30, pseudogene 2 pseudo C2orf14 4F-se9[6:7:8]|cytochrome P450, family 4, subfamily F, polypeptide 30, pseudogene 10 0.001369 0.5889 1 1 +100132724 DCAF13P3 DDB1 and CUL4 associated factor 13 pseudogene 3 15 pseudo - WD repeats and SOF1 domain containing pseudogene 1.9 0 1 +100132759 VN1R7P vomeronasal 1 receptor 7 pseudogene 21 pseudo ORLP1|PHB4C5 olfactory receptor-like pseudogene 1|pheromone receptor pseudogene 1 0.0001369 1 0 +100132774 KDM4A-AS1 KDM4A antisense RNA 1 1 ncRNA - KDM4A antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100132831 LOC100132831 A20-binding inhibitor of NF-kappaB activation 2 pseudogene X pseudo - TNFAIP3 interacting protein 2 pseudogene 0.666 0 1 +100132832 PMS2P9 PMS1 homolog 2, mismatch repair system component pseudogene 9 7 pseudo PMS2L17|PMS2LP1|PMSR5 PMS2 postmeiotic segregation increased 2 pseudogene|postmeiotic segregation increased 2 pseudogene 9|postmeiotic segregation increased 2-like 17|postmeiotic segregation increased 2-like pseudogene 1 2.27 0 1 +100132857 LOC100132857 heat shock protein 90kDa alpha family class B member 1 pseudogene X pseudo - heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene 1 0.0001369 1 0 +100132910 LOC100132910 PRO1477 18 unknown - - 1 0.0001369 1 0 +100132911 DPH3P1 diphthamide biosynthesis 3 pseudogene 1 20 protein-coding C20orf143|DPH3B|ZCSL1 putative DPH3 homolog B|CSL-type zinc finger-containing protein 1|DPH3 homolog B (KTI11, S. cerevisiae)|zinc finger, CSL domain containing 1 4.249 0 1 +100132916 FAM159B family with sequence similarity 159 member B 5 protein-coding - membrane protein FAM159B 3 0.0004106 1 0 +100132923 FAM66D family with sequence similarity 66 member D 8 ncRNA - - 65 0.008897 3.227 1 1 +100132929 FAM25BP protein FAM25 10 pseudo FAM25A|FAM25B|FAM25C|FAM25G protein FAM25B 0.7371 0 1 +100132948 FAM27C family with sequence similarity 27 member C 9 ncRNA FAM27A|FAM27A1|FAM27A3|bA7G23.5 family with sequence similarity 27, member A 1 0.0001369 3.695 1 1 +100132963 SMIM9 small integral membrane protein 9 X protein-coding CXorf68 small integral membrane protein 9 4 0.0005475 1 0 +100132979 GOLGA8DP golgin A8 family member D, pseudogene 15 pseudo GOLGA8D golgi autoantigen, golgin subfamily a, 8D 47 0.006433 0.4037 1 1 +100132994 CXorf49B chromosome X open reading frame 49B X protein-coding CXorf49 uncharacterized protein CXorf49 1.25 0 1 +100133029 LOC100133029 sirtuin 5 pseudogene 1 pseudo - - 0 0 1 0 +100133036 FAM95B1 family with sequence similarity 95 member B1 9 ncRNA - - 4.419 0 1 +100133050 LOC100133050 glucuronidase beta pseudogene 5 pseudo - - 3 0.0004106 0.1551 1 1 +100133077 LOC100133077 uncharacterized LOC100133077 9 ncRNA - - 2 0.0002737 1 0 +100133091 LOC100133091 uncharacterized LOC100133091 7 ncRNA - - 3 0.0004106 1 0 +100133121 FAM27B family with sequence similarity 27 member B 9 ncRNA FAM27A2 - 0.2323 0 1 +100133128 LOC100133128 Beta-defensin 108B-like 4 protein-coding - - 0 0 1 0 +100133144 2.967 0 1 +100133161 LINC01001 long intergenic non-protein coding RNA 1001 11 ncRNA - - 5.171 0 1 +100133171 0.4174 0 1 +100133172 FAM66A family with sequence similarity 66 member A 8 ncRNA - - 1.265 0 1 +100133204 C9orf147 chromosome 9 open reading frame 147 9 unknown bA32M23.3 - 0 0 1 0 +100133205 LINC00240 long intergenic non-protein coding RNA 240 6 ncRNA C6orf41|NCRNA00240|bA373D17.1 - 2.976 0 1 +100133234 SBF1P1 SET binding factor 1 pseudogene 1 8 pseudo - - 1.1 0 1 +100133267 LOC100133267 defensin, beta 130-like 8 protein-coding - beta-defensin 130-like 1 0.0001369 1 0 +100133284 LOC100133284 striatin, calmodulin binding protein pseudogene 13 pseudo - - 0 0 1 0 +100133285 PCDH8P1 protocadherin 8 pseudogene 1 13 pseudo - - 1 0.0001369 1 0 +100133308 RSU1P2 Ras suppressor protein 1 pseudogene 2 10 pseudo - - 12 0.001642 0.2419 1 1 +100133311 HOXA-AS3 HOXA cluster antisense RNA 3 7 ncRNA HOXA6as HOXA cluster antisense RNA 3 (non-protein coding) 8 0.001095 1 0 +100133326 LOC100133326 serine/threonine-protein phosphatase 4 regulatory subunit 2-like 3 pseudo - - 0 0 1 0 +100133331 LOC100133331 uncharacterized LOC100133331 1 ncRNA - - 6.824 0 1 +100133469 0.7414 0 1 +100133545 MRPL23-AS1 MRPL23 antisense RNA 1 11 ncRNA - MRPL23 antisense RNA 1 (non-protein coding) 1 0.0001369 2.401 1 1 +100133612 LINC01134 long intergenic non-protein coding RNA 1134 1 ncRNA - - 2.654 0 1 +100133669 LOC100133669 uncharacterized LOC100133669 8 ncRNA - - 2 0.0002737 2.564 1 1 +100133893 0.8288 0 1 +100133920 LOC100133920 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like pseudogene 2 pseudo - - 0.1668 0 1 +100133941 CD24 CD24 molecule 6 protein-coding CD24A signal transducer CD24|CD24 antigen (small cell lung carcinoma cluster 4 antigen) 12.42 0 1 +100133957 UXT-AS1 UXT antisense RNA 1 X ncRNA - - 2.866 0 1 +100133985 LOC100133985 uncharacterized LOC100133985 2 ncRNA - - 3.602 0 1 +100133991 MAP3K14-AS1 MAP3K14 antisense RNA 1 17 ncRNA - - 7 0.0009581 4.05 1 1 +100134015 UBOX5-AS1 UBOX5 antisense RNA 1 20 ncRNA - UBOX5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100134229 JHDM1D-AS1 JHDM1D antisense RNA 1 (head to head) 7 ncRNA - - 7.116 0 1 +100134259 LINC01119 long intergenic non-protein coding RNA 1119 2 ncRNA - - 3.061 0 1 +100134368 LOC100134368 uncharacterized LOC100134368 16 ncRNA - - 2 0.0002737 2.193 1 1 +100134444 KCNJ18 potassium voltage-gated channel subfamily J member 18 17 protein-coding KIR2.6|TTPP2 inward rectifier potassium channel 18|inward rectifier K(+) channel Kir2.6|inwardly rectifying potassium channel 18|potassium channel, inwardly rectifying subfamily J, member 18|thyrotoxic periodic paralysis susceptibility ion channel 17 0.002327 1 0 +100134713 NDUFB2-AS1 NDUFB2 antisense RNA 1 7 ncRNA - NDUFB2 antisense RNA 1 (non-protein coding) 1 0.0001369 4.241 1 1 +100134868 LOC100134868 uncharacterized LOC100134868 20 ncRNA - - 2.024 0 1 +100134869 UBE2Q2P2 ubiquitin conjugating enzyme E2 Q2 pseudogene 2 15 pseudo UBE2Q2P3|UBE2QP2 ubiquitin conjugating enzyme E2Q family member 2 pseudogene 2|ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 3|ubiquitin-conjugating enzyme E2Q family pseudogene 2 9 0.001232 3.226 1 1 +100134934 TEN1 TEN1 CST complex subunit 17 protein-coding C17orf106 CST complex subunit TEN1|TEN1 telomerase capping complex subunit homolog|protein telomeric pathways with STN1 homolog|telomere length regulation protein TEN1 homolog|telomeric pathways in association with Stn1, number 1 1 0.0001369 8.378 1 1 +100134938 UPK3BL uroplakin 3B-like 7 protein-coding UPLP uroplakin-3b-like protein|uroplakin 3C protein|uroplakin-3-like protein|uroplakin-like protein 1 0.0001369 7.556 1 1 +100137047 JMJD7 jumonji domain containing 7 15 protein-coding - jmjC domain-containing protein 7|jumonji domain-containing protein 7 2 0.0002737 1 0 +100137049 PLA2G4B phospholipase A2 group IVB 15 protein-coding HsT16992|cPLA2-beta cytosolic phospholipase A2 beta|phospholipase A2, group IVB (cytosolic) 10 0.001369 1 0 +100141515 C17orf99 chromosome 17 open reading frame 99 17 protein-coding UNQ464 uncharacterized protein C17orf99|GLPG464 10 0.001369 1.234 1 1 +100144596 LINC00029 long intergenic non-protein coding RNA 29 20 ncRNA C20orf51|NCRNA00029 Putative uncharacterized protein C20orf51 2 0.0002737 0.09365 1 1 +100144603 CHKB-AS1 CHKB antisense RNA 1 (head to head) 22 ncRNA - CTA-384D8.20 3.227 0 1 +100144604 LINC00930 long intergenic non-protein coding RNA 930 15 ncRNA - - 1.977 0 1 +100144748 KLLN killin, p53-regulated DNA replication inhibitor 10 protein-coding CWS4|KILLIN killin 4 0.0005475 4.803 1 1 +100144878 LRRC53 leucine rich repeat containing 53 1 protein-coding - - 3 0.0004106 1 0 +100147770 RNU7-22P RNA, U7 small nuclear 22 pseudogene 10 pseudo U7.22 RNA, small nuclear U7.22 pseudogene 1 0.0001369 1 0 +100151643 KRTAP20-4 keratin associated protein 20-4 21 pseudo KAP20.4 Putative keratin-associated protein 20-4|keratin associated protein 20-1 pseudogene 0.02589 0 1 +100151683 RNU4ATAC RNA, U4atac small nuclear (U12-dependent splicing) 2 snRNA MOPD1|RFMN|RNU4ATAC1|TALS|U4ATAC - 0.07921 0 1 +100151684 RNU6ATAC RNA, U6atac small nuclear (U12-dependent splicing) 9 snRNA RNU6ATAC1|U6ATAC RNA, U6atac small nuclear 1 0.0643 0 1 +100158262 SCARNA9L small Cajal body-specific RNA 9-like X ncRNA - small Cajal body-specific RNA 9-like (retrotransposed) 0.3701 0 1 +100169750 PRINS psoriasis associated non-protein coding RNA induced by stress 10 ncRNA NCRNA00074 psoriasis associated RNA induced by stress (non-protein coding) 1.675 0 1 +100169752 TEX36-AS1 TEX36 antisense RNA 1 10 ncRNA - - 0.003551 0 1 +100169851 PATE3 prostate and testis expressed 3 11 protein-coding HEL-127|PATE-DJ prostate and testis expressed protein 3|PATE-like protein DJ|acrosomal vesicle protein HEL-127|secreted TFP/Ly-6/uPAR protein PATE-DJ 5 0.0006844 0.08182 1 1 +100169890 PEG3-AS1 PEG3 antisense RNA 1 19 ncRNA APEG3|NCRNA00155|PEG3-AS|PEG3AS PEG3 antisense RNA 1 (non-protein coding)|antisense transcript gene of PEG3 0 0 0.3425 1 1 +100169951 SNAR-A3 small ILF3/NF90-associated RNA A3 19 snRNA - small nuclear ILF3/NF90-associated RNA A3|snaR-A53118848 0.009904 0 1 +100169956 SNAR-A4 small ILF3/NF90-associated RNA A4 19 snRNA - small nuclear ILF3/NF90-associated RNA A4|snaR-A55287678 0 0 1 +100169959 SNAR-A13 small ILF3/NF90-associated RNA A13 19 snRNA - small nuclear ILF3/NF90-associated RNA A13|snaR-A53139991 0.0002932 0 1 +100170217 SNAR-B2 small ILF3/NF90-associated RNA B2 19 snRNA - - 0.03998 0 1 +100170218 SNAR-C2 small ILF3/NF90-associated RNA C2 19 snRNA - - 0 0 1 +100170219 SNAR-C4 small ILF3/NF90-associated RNA C4 19 snRNA - - 0.02258 0 1 +100170220 SNAR-E small ILF3/NF90-associated RNA E 19 snRNA - - 0.001642 0 1 +100170221 SNAR-H small ILF3/NF90-associated RNA H 2 snRNA snaR-2 small ILF3/NF90-associated RNA 2 0.0009569 0 1 +100170222 SNAR-I small ILF3/NF90-associated RNA I 3 snRNA snaR-3 small ILF3/NF90-associated RNA 3 0.001092 0 1 +100170226 SNAR-C3 small ILF3/NF90-associated RNA C3 19 snRNA - - 0.0006623 0 1 +100170227 SNAR-D small ILF3/NF90-associated RNA D 19 snRNA - - 0.0006177 0 1 +100170228 SNAR-G2 small ILF3/NF90-associated RNA G2 19 snRNA - - 0.0005721 0 1 +100170229 SRRM5 serine/arginine repetitive matrix 5 19 protein-coding ZNF576 serine/arginine repetitive matrix protein 5|zinc finger protein 576 22 0.003011 4.766 1 1 +100170765 ERICH4 glutamate rich 4 19 protein-coding C19orf69 glutamate-rich protein 4 3 0.0004106 0.7816 1 1 +100170841 C17orf96 chromosome 17 open reading frame 96 17 protein-coding PRR28 uncharacterized protein C17orf96|Uncharacterized protein ENSP00000317905|proline rich 28 14 0.001916 7.306 1 1 +100170939 5.185 0 1 +100188893 TOMM6 translocase of outer mitochondrial membrane 6 6 protein-coding OBTP|TOM6 mitochondrial import receptor subunit TOM6 homolog|over-expressed breast tumor protein|overexpressed breast tumor protein|translocase of outer membrane 6 kDa subunit homolog|translocase of outer mitochondrial membrane 6 homolog 5 0.0006844 11.06 1 1 +100188947 HECTD2-AS1 HECTD2 antisense RNA 1 10 ncRNA - - 1.72 0 1 +100188949 LINC00426 long intergenic non-protein coding RNA 426 13 ncRNA - - 0 0 2.807 1 1 +100188953 LINC00092 long intergenic non-protein coding RNA 92 9 ncRNA NCRNA00092|bA346B7.1 - 1 0.0001369 3.069 1 1 +100188954 DNMBP-AS1 DNMBP antisense RNA 1 10 ncRNA NCRNA00093|bA287G8.2 DNMBP antisense RNA 1 (non-protein coding) 1 0.0001369 2.486 1 1 +100189589 DCTN1-AS1 DCTN1 antisense RNA 1 2 ncRNA - DCTN1 antisense RNA 1 (non-protein coding) 0.983 0 1 +100190938 RAMP2-AS1 RAMP2 antisense RNA 1 17 ncRNA - CTD-3193K9.7 1 0.0001369 4.675 1 1 +100190939 TPT1-AS1 TPT1 antisense RNA 1 13 ncRNA - TPT1 antisense RNA 1 (non-protein coding) 28 0.003832 6.955 1 1 +100190940 LOC100190940 uncharacterized LOC100190940 12 ncRNA - - 1.112 0 1 +100190949 C5orf52 chromosome 5 open reading frame 52 5 protein-coding - uncharacterized protein C5orf52 11 0.001506 0.2075 1 1 +100190986 LOC100190986 uncharacterized LOC100190986 16 ncRNA - - 6.474 0 1 +100191040 C2CD4D C2 calcium dependent domain containing 4D 1 protein-coding FAM148D C2 calcium-dependent domain-containing protein 4D|family with sequence similarity 148, member D 6 0.0008212 3.361 1 1 +100192378 ZFHX4-AS1 ZFHX4 antisense RNA 1 8 ncRNA - ZFHX4 antisense RNA 1 (non-protein coding) 1 0.0001369 1.916 1 1 +100192379 PP12613 uncharacterized LOC100192379 4 ncRNA - - 0.3634 0 1 +100192386 FLJ16779 uncharacterized LOC100192386 20 ncRNA - - 3.505 0 1 +100192420 FLJ41941 uncharacterized LOC100192420 22 ncRNA - XXbac-B476C20.17 0.6936 0 1 +100192426 LOC100192426 uncharacterized LOC100192426 18 ncRNA - - 0.3442 0 1 +100216001 LINC00704 long intergenic non-protein coding RNA 704 10 ncRNA - - 1.832 0 1 +100216544 DNM1P47 dynamin 1 pseudogene 47 15 pseudo DNM1DN14-3|DNM1DN14@ DNM1 pseudogene 47 344 0.04708 1 0 +100216545 KMT2E-AS1 KMT2E antisense RNA 1 (head to head) 7 ncRNA - - 6.583 0 1 +100233209 PCED1B-AS1 PCED1B antisense RNA 1 12 ncRNA - PCED1B antisense RNA 1 (non-protein coding) 3.896 0 1 +100240726 1.272 0 1 +100240734 LOC100240734 uncharacterized LOC100240734 12 ncRNA - - 0.791 0 1 +100240735 LOC100240735 uncharacterized LOC100240735 12 ncRNA - - 2.239 0 1 +100268168 LOC100268168 uncharacterized LOC100268168 5 ncRNA - CTC-308K20.1 3.011 0 1 +100270710 7.352 0 1 +100270746 LOC100270746 uncharacterized LOC100270746 6 ncRNA - - 4.86 0 1 +100270804 LOC100270804 uncharacterized LOC100270804 20 ncRNA - - 4.48 0 1 +100271386 RPS4XP20 ribosomal protein S4X pseudogene 20 19 pseudo RPS4P20|RPS4X_9_1648 - 1 0.0001369 1 0 +100271447 RPL21P122 ribosomal protein L21 pseudogene 122 17 pseudo RPL21_58_1515 - 0 0 1 0 +100271626 RPL23AP79 ribosomal protein L23a pseudogene 79 19 pseudo RPL23A_39_1676 - 5 0.0006844 1 0 +100271702 LINC00940 long intergenic non-protein coding RNA 940 12 ncRNA - - 0 0 1 0 +100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 2 protein-coding - rho guanine nucleotide exchange factor 33|DH and coiled-coil domain-containing protein ENSP00000381780|Rho guanine nucleotide exchange factor (GEF) 33 31 0.004243 3.357 1 1 +100271722 LINC00899 long intergenic non-protein coding RNA 899 22 ncRNA - - 4.745 0 1 +100271831 3.95 0 1 +100271832 LOC100271832 uncharacterized LOC100271832 2 ncRNA - - 0.3252 0 1 +100271835 LIMS3-LOC440895 LIMS3-LOC440895 readthrough 2 ncRNA - LIM and senescent cell antigen-like domains 3-two pore channel 3 pseudogene read-through 3 0.0004106 4.616 1 1 +100271836 SMG1P3 SMG1P3, nonsense mediated mRNA decay associated PI3K related kinase pseudogene 3 16 pseudo - SMG1 pseudogene 3|smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 7.793 0 1 +100271849 MEF2B myocyte enhancer factor 2B 19 protein-coding RSRFR2 myocyte-specific enhancer factor 2B|MADS box transcription enhancer factor 2, polypeptide B (myocyte enhancer factor 2B)|serum response factor-like protein 2 22 0.003011 5.119 1 1 +100271874 ZNRF2P2 zinc and ring finger 2 pseudogene 2 7 pseudo - - 1 0.0001369 1 0 +100271927 RASA4B RAS p21 protein activator 4B 7 protein-coding - ras GTPase-activating protein 4B|putative Ras GTPase-activating protein 4B 8 0.001095 1 0 +100272146 NFE2L3P2 nuclear factor, erythroid 2 like 3 pseudogene 2 17 pseudo - nuclear factor (erythroid-derived 2)-like 3 pseudogene 2 5.127 0 1 +100272147 CMC4 C-X9-C motif containing 4 X protein-coding C6.1B|MTCP1|MTCP1B|MTCP1NB|p8|p8MTCP1 cx9C motif-containing protein 4|C-x(9)-C motif containing 4 homolog|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 8 0.001095 8.219 1 1 +100272216 3.206 0 1 +100272217 LOC100272217 uncharacterized LOC100272217 9 ncRNA - - 4.591 0 1 +100272228 LINC00894 long intergenic non-protein coding RNA 894 X ncRNA - - 0 0 4.626 1 1 +100286793 6.995 0 1 +100286844 BCDIN3D-AS1 BCDIN3D antisense RNA 1 12 ncRNA - BCDIN3D antisense RNA 1 (non-protein coding) 4.498 0 1 +100286922 LOC100286922 DnaJ heat shock protein family (Hsp40) member B3 pseudogene 2 pseudo - DnaJ (Hsp40) homolog, subfamily B, member 3 pseudogene 2 0.0002737 1 0 +100287029 DDX11L10 DEAD/H-box helicase 11 like 10 16 pseudo DDX11L1|DDX11P DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 10|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 1|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 10|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 pseudogene|DEAD/H box polypeptide 11 like 10 2 0.0002737 1 0 +100287045 FAM90A26 family with sequence similarity 90, member A26, pseudogene 4 pseudo FAM90A26P - 2 0.0002737 1 0 +100287066 LOC100287066 defensin beta 131 pseudogene 8 pseudo - - 0 0 1 0 +100287102 DDX11L1 DEAD/H-box helicase 11 like 1 1 pseudo - DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 1|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 1|DEAD/H box polypeptide 11 like 1 12 0.001642 1 0 +100287128 IGHV1OR15-2 immunoglobulin heavy variable 1/OR15-2 (pseudogene) 15 pseudo IGHV1OR152 IGHV1/OR15-2 1 0.0001369 1 0 +100287171 WASH1 WAS protein family homolog 1 9 protein-coding FAM39E|WASH WAS protein family homolog 1|CXYorf1-like protein on chromosome 9|FLJ00075 protein|family with sequence similarity 39, member E 6 0.0008212 1 0 +100287226 ZNF729 zinc finger protein 729 19 protein-coding - zinc finger protein 729 22 0.003011 1 0 +100287227 TIPARP-AS1 TIPARP antisense RNA 1 3 ncRNA - TIPARP antisense RNA 1 (non-protein coding) 2.865 0 1 +100287284 MANSC4 MANSC domain containing 4 12 protein-coding - MANSC domain-containing protein 4|MANSC domain-containing protein ENSP00000370673 9 0.001232 1 0 +100287314 LINC00941 long intergenic non-protein coding RNA 941 12 ncRNA - - 1 0.0001369 1 0 +100287327 USP17L17 ubiquitin specific peptidase 17-like family member 17 4 protein-coding - ubiquitin carboxyl-terminal hydrolase 17-like protein 17 2 0.0002737 1 0 +100287366 OSTM1-AS1 OSTM1 antisense RNA 1 6 unknown - OSTM1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100287372 IGHV3OR16-13 immunoglobulin heavy variable 3/OR16-13 (non-functional) 16 pseudo IGHV3OR1613 IGHV3/OR16-13 1 0.0001369 1 0 +100287399 POTEB2 POTE ankyrin domain family member B2 15 protein-coding - POTE ankyrin domain family member B2 2 0.0002737 1 0 +100287430 LOC100287430 ribosomal protein S5 pseudogene 6 pseudo - - 0 0 1 0 +100287477 LOC100287477 zinc finger protein 420-like 19 protein-coding - uncharacterized protein LOC100287477 0 0 1 0 +100287559 ADPGK-AS1 ADPGK antisense RNA 1 15 ncRNA - ADPGK antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +100287569 LINC00173 long intergenic non-protein coding RNA 173 12 ncRNA NCRNA00173 - 11 0.001506 3.043 1 1 +100287616 LOXL1-AS1 LOXL1 antisense RNA 1 15 ncRNA - LOXL1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100287639 MTHFD2P1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene 1 3 pseudo - - 40 0.005475 1 0 +100287704 LOC100287704 uncharacterized LOC100287704 7 ncRNA - - 0.03923 0 1 +100287718 ANKRD66 ankyrin repeat domain 66 6 protein-coding - ankyrin repeat domain-containing protein 66 4 0.0005475 0.4317 1 1 +100287722 AP4B1-AS1 AP4B1 antisense RNA 1 1 ncRNA - AP4B1 antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +100287765 LINC00630 long intergenic non-protein coding RNA 630 X ncRNA LL0XNC01-157D4.1|LL0XNC01-237H1.2 - 0 0 1 0 +100287792 LOC100287792 uncharacterized LOC100287792 20 ncRNA - - 2 0.0002737 1 0 +100287825 LOC100287825 golgin A8 family member A pseudogene 7 pseudo - - 0 0 1 0 +100287896 LOC100287896 uncharacterized LOC100287896 11 protein-coding - uncharacterized protein LOC100287896 2 0.0002737 1 0 +100287898 TTC34 tetratricopeptide repeat domain 34 1 protein-coding - tetratricopeptide repeat protein 34|TPR repeat protein 34|TPR repeat-containing protein ENSP00000383873 6 0.0008212 1 0 +100287931 LOC100287931 uncharacterized LOC100287931 4 unknown - - 0 0 1 0 +100287932 TIMM23 translocase of inner mitochondrial membrane 23 10 protein-coding TIM23 mitochondrial import inner membrane translocase subunit Tim23|translocase of inner mitochondrial membrane 23 homolog|translocase of the inner mitochondrial membrane 8 0.001095 1 0 +100287934 LOC100287934 uncharacterized LOC100287934 1 unknown - - 1 0.0001369 1 0 +100288069 LOC100288069 uncharacterized LOC100288069 1 ncRNA - - 4 0.0005475 1 0 +100288077 WTAPP1 Wilms tumor 1 associated protein pseudogene 1 11 pseudo - - 7 0.0009581 1 0 +100288130 MTCL1P1 MTCL1 pseudogene 1 13 pseudo CCDC165P1|SOGA2P1 SOGA family member 2 pseudogene 1|coiled-coil domain containing 165 pseudogene 1 1 0.0001369 1 0 +100288142 NBPF20 neuroblastoma breakpoint family member 20 1 protein-coding - neuroblastoma breakpoint family member 20 20 0.002737 1 0 +100288211 LOC100288211 PPPDE peptidase domain containing 1 pseudogene 19 pseudo - desumoylating isopeptidase 2 pseudogene 0 0 1 0 +100288287 KRTAP22-2 keratin associated protein 22-2 21 protein-coding KAP22.2 keratin-associated protein 22-2 4 0.0005475 1 0 +100288323 KRTAP21-3 keratin associated protein 21-3 21 protein-coding - keratin-associated protein 21-3 2 0.0002737 1 0 +100288332 NPIPA5 nuclear pore complex interacting protein family member A5 16 protein-coding NPIP nuclear pore complex-interacting protein family member A5 20 0.002737 1 0 +100288380 ULK4P2 ULK4 pseudogene 2 15 pseudo D-X|FAM7A2 family with sequence similarity 7, member A2|unc-51-like kinase 4 (ULK4) pseudogene|unc-51-like kinase 4 pseudogene 2 7 0.0009581 1.228 1 1 +100288413 ERVMER34-1 endogenous retrovirus group MER34 member 1 4 protein-coding - endogenous retrovirus group MER34 member 1 Env polyprotein|HERV-MER_4q12 provirus ancestral Env polyprotein|LP9056 protein 8 0.001095 1 0 +100288428 LMCD1-AS1 LMCD1 antisense RNA 1 (head to head) 3 ncRNA - - 2 0.0002737 1 0 +100288486 DDX11L9 DEAD/H-box helicase 11 like 9 15 pseudo - DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 9|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 9|DEAD/H box polypeptide 11 like 9 6 0.0008212 1 0 +100288560 LOC100288560 mitochondrial ribosomal protein S18C pseudogene X pseudo - - 0 0 1 0 +100288570 LOC100288570 glycosylphosphatidylinositol anchor attachment protein 1 homolog (yeast) pseudogene 2 pseudo - - 2 0.0002737 1 0 +100288637 LOC100288637 OTU deubiquitinase 7A pseudogene 15 pseudo - OTU domain containing 7A pseudogene 0 0 1 0 +100288724 LOC100288724 transient receptor potential cation channel subfamily C member 6 pseudogene 7 pseudo - - 0 0 1 0 +100288730 PAN3-AS1 PAN3 antisense RNA 1 13 ncRNA - PAN3 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100288778 LOC100288778 WAS protein family homolog 1 pseudogene 12 pseudo - - 1 0.0001369 8.821 1 1 +100288788 LOC100288788 RNA binding motif protein, X-linked-like 3 pseudogene X pseudo - - 0 0 1 0 +100288797 TMEM239 transmembrane protein 239 20 protein-coding - transmembrane protein 239 4 0.0005475 1 0 +100288801 FRG2C FSHD region gene 2 family member C 3 protein-coding - protein FRG2-like-2|FSHD region gene 2 protein family member C|HSA3-FRG2 0 0 0.5719 1 1 +100288908 LOC100288908 PRO2898 11 protein-coding - - 0 0 1 0 +100288962 LOC100288962 S-phase kinase-associated protein 1 pseudogene 4 pseudo - - 0 0 1 0 +100288979 DCAF13P2 DDB1 and CUL4 associated factor 13 pseudogene 2 5 pseudo - - 1 0.0001369 1 0 +100288998 MTND1P15 mitochondrially encoded NADH:ubiquinone oxidoreductase core subunit 1 pseudogene 15 17 pseudo - MT-ND1 pseudogene 15 3 0.0004106 1 0 +100289009 LOC100289009 uncharacterized LOC100289009 11 protein-coding - - 0 0 1 0 +100289017 MOXD2P monooxygenase, DBH-like 2, pseudogene 7 pseudo MOXD2 DBH-like monooxygenase protein 2|dopamine-beta-hydroxylase-like pseudogene 4 0.0005475 1 0 +100289027 CDK2AP2P1 cyclin dependent kinase 2 associated protein 2 pseudogene 1 9 pseudo - - 1 0.0001369 1 0 +100289061 LOC100289061 uncharacterized LOC100289061 1 ncRNA - - 0 0 1 0 +100289087 TSPY10 testis specific protein, Y-linked 10 Y protein-coding - testis-specific Y-encoded protein 10 1 0.0001369 1 0 +100289090 LOC100289090 uncharacterized LOC100289090 15 unknown - - 2 0.0002737 1 0 +100289098 GS1-124K5.4 uncharacterized LOC100289098 7 ncRNA - - 3 0.0004106 1 0 +100289124 FAM27E2 family with sequence similarity 27 member E2 9 ncRNA FAM27E1 family with sequence similarity 27, member E1 4 0.0005475 1 0 +100289133 KRT8P32 keratin 8 pseudogene 32 5 pseudo - - 2 0.0002737 1 0 +100289178 GNG12-AS1 GNG12 antisense RNA 1 1 ncRNA - GNG12 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100289187 GS1-259H13.2 transmembrane protein 225-like 7 protein-coding - transmembrane protein 225-like 1 0.0001369 1 0 +100289196 LOC100289196 chromosome 7 open reading frame 73 pseudogene 7 pseudo - - 0 0 1 0 +100289237 CEP164P1 centrosomal protein 164 pseudogene 1 10 pseudo - centrosomal protein 164kDa pseudogene 1 5 0.0006844 1 0 +100289255 LINC00675 long intergenic non-protein coding RNA 675 17 ncRNA - - 1 0.0001369 1 0 +100289341 MAN1B1-AS1 MAN1B1 antisense RNA 1 (head to head) 9 ncRNA - - 5.585 0 1 +100289388 KCTD21-AS1 KCTD21 antisense RNA 1 11 ncRNA - - 2 0.0002737 1 0 +100289410 MCF2L-AS1 MCF2L antisense RNA 1 13 ncRNA - MCF2L antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100289462 DEFB4B defensin beta 4B 8 protein-coding DEFB4P beta-defensin 4B|beta defensin 2|defensin, beta 4, pseudogene 1 0.0001369 1 0 +100289470 LOC100289470 chromosome 5 open reading frame 60 pseudogene 5 pseudo - - 0 0 1 0 +100289561 LOC100289561 uncharacterized LOC100289561 7 protein-coding - uncharacterized protein LOC100289561 0 0 1 0 +100289574 HERC2P4 hect domain and RLD 2 pseudogene 4 16 pseudo D16F37S5 HECT and RLD domain containing E3 ubiquitin protein ligase 2 pseudogene 21 0.002874 1 0 +100289580 LOC100289580 uncharacterized LOC100289580 16 ncRNA - - 2 0.0002737 1 0 +100289635 ZNF605 zinc finger protein 605 12 protein-coding - zinc finger protein 605 11 0.001506 8.509 1 1 +100289678 ZNF783 zinc finger family member 783 7 protein-coding - protein ZNF783 36 0.004927 1 0 +100293516 ZNF587B zinc finger protein 587B 19 protein-coding - zinc finger protein 587B 22 0.003011 1 0 +100294720 NHEG1 neuroblastoma highly expressed 1 6 ncRNA - - 0.2302 0 1 +100302090 DDX11L8 DEAD/H-box helicase 11 like 8 12 pseudo - DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 8|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 8 0 0 1 0 +100302112 MIR1284 microRNA 1284 3 ncRNA MIRN1284|hsa-mir-1284|mir-1284 - 1 0.0001369 1 0 +100302114 MIR513C microRNA 513c X ncRNA MIRN513C|hsa-mir-513c - 2 0.0002737 1 0 +100302115 MIR1468 microRNA 1468 X ncRNA MIRN1468|hsa-mir-1468|mir-1468 - 1 0.0001369 1 0 +100302117 MIR320B1 microRNA 320b-1 1 ncRNA MIR320B-1|MIRN320B1|hsa-mir-320b-1|mir-320b-1 - 1 0.0001369 1 0 +100302122 MIR1183 microRNA 1183 7 ncRNA MIRN1183|hsa-mir-1183 - 0 0 1 0 +100302123 MIR1275 microRNA 1275 6 ncRNA MIRN1275|hsa-mir-1275|mir-1275 - 2 0.0002737 1 0 +100302124 MIR1288 microRNA 1288 17 ncRNA MIRN1288|hsa-mir-1288 - 0 0 1 0 +100302125 MIR1289-1 microRNA 1289-1 20 ncRNA MIRN1289-1|hsa-mir-1289-1 - 1 0.0001369 1 0 +100302128 MIR1302-3 microRNA 1302-3 2 ncRNA MIRN1302-3|hsa-mir-1302-3 - 6 0.0008212 1 0 +100302132 MIR1182 microRNA 1182 1 ncRNA MIRN1182|hsa-mir-1182 - 1 0.0001369 1 0 +100302134 MIR1289-2 microRNA 1289-2 5 ncRNA MIRN1289-2|hsa-mir-1289-2 - 1 0.0001369 1 0 +100302136 MIR1252 microRNA 1252 12 ncRNA MIRN1252|hsa-mir-1252 - 1 0.0001369 1 0 +100302140 MIR1302-6 microRNA 1302-6 7 ncRNA MIRN1302-6|hsa-mir-1302-6 - 0 0 1 0 +100302141 MIR1913 microRNA 1913 6 ncRNA MIRN1913|hsa-mir-1913 - 0 0 1 0 +100302142 MIR1246 microRNA 1246 2 ncRNA MIRN1246|hsa-mir-1246 - 1 0.0001369 1 0 +100302144 MIR1912 microRNA 1912 X ncRNA MIRN1912|hsa-mir-1912|mir-1912 - 0 0 1 0 +100302145 MIR1247 microRNA 1247 14 ncRNA MIRN1247|hsa-mir-1247|mir-1247 - 0 0 1 0 +100302146 MIR1302-5 microRNA 1302-5 20 ncRNA MIRN1302-5|hsa-mir-1302-5 - 1 0.0001369 1 0 +100302148 MIR1263 microRNA 1263 3 ncRNA MIRN1263|hsa-mir-1263 - 0 0 1 0 +100302150 MIR1296 microRNA 1296 10 ncRNA MIRN1296|hsa-mir-1296|mir-1296 - 1 0.0001369 1 0 +100302152 MIR548N microRNA 548n 7 ncRNA MIRN548N|hsa-mir-548n - 2 0.0002737 1 0 +100302157 MIR1185-1 microRNA 1185-1 14 ncRNA MIRN1185-1|hsa-mir-1185-1|mir-1185-1 - 3 0.0004106 1 0 +100302158 MIR1231 microRNA 1231 1 ncRNA MIRN1231|hsa-mir-1231 - 1 0.0001369 1 0 +100302161 MIR1205 microRNA 1205 8 ncRNA MIRN1205|hsa-mir-1205 - 2 0.0002737 1 0 +100302163 MIR1278 microRNA 1278 1 ncRNA MIRN1278|hsa-mir-1278|mir-1278 - 0 0 1 0 +100302164 MIR2113 microRNA 2113 6 ncRNA hsa-mir-2113 - 2 0.0002737 1 0 +100302167 MIR1299 microRNA 1299 9 ncRNA MIRN1299|hsa-mir-1299 - 1 0.0001369 1 0 +100302168 MIR1257 microRNA 1257 20 ncRNA MIRN1257|hsa-mir-1257 - 4 0.0005475 1 0 +100302169 MIR320D2 microRNA 320d-2 X ncRNA MIR320D-2|MIRN320D2|hsa-mir-320d-2|mir-320d-2 - 0 0 1 0 +100302174 MIR1307 microRNA 1307 10 ncRNA MIRN1307|hsa-mir-1307|mir-1307 - 2 0.0002737 1 0 +100302175 MIR1207 microRNA 1207 8 ncRNA MIRN1207|hsa-mir-1207 - 2 0.0002737 1 0 +100302177 MIR1269A microRNA 1269a 4 ncRNA MIR1269|MIRN1269|hsa-mir-1269|hsa-mir-1269a microRNA 1269 8 0.001095 1 0 +100302184 MIR1272 microRNA 1272 15 ncRNA MIRN1272|hsa-mir-1272|mir-1272 - 0 0 1 0 +100302185 MIR1204 microRNA 1204 8 ncRNA hsa-mir-1204 - 2 0.0002737 1 0 +100302191 MIR548I4 microRNA 548i-4 X ncRNA MIR548I-4|MIRN548I4|hsa-mir-548i-4 - 2 0.0002737 1 0 +100302193 MIR1255A microRNA 1255a 4 ncRNA MIRN1255A|hsa-mir-1255a - 0 0 1 0 +100302195 MIR320C2 microRNA 320c-2 18 ncRNA MIR320C-2|MIRN320C2|hsa-mir-320c-2|mir-320c-2 - 1 0.0001369 1 0 +100302196 MIR1234 microRNA 1234 8 ncRNA MIRN1234|hsa-mir-1234 - 11 0.001506 1 0 +100302202 MIR1266 microRNA 1266 15 ncRNA MIRN1266|hsa-mir-1266|mir-1266 - 3 0.0004106 1 0 +100302204 MIR548I1 microRNA 548i-1 3 ncRNA MIR548I-1|MIRN548I1|hsa-mir-548i-1|mir-548i-1 - 3 0.0004106 1 0 +100302205 MIR1283-2 microRNA 1283-2 19 ncRNA MIRN1283-2|hsa-mir-1283-2|mir-1283-2 - 2 0.0002737 1 0 +100302208 MIR1253 microRNA 1253 17 ncRNA MIRN1253|hsa-mir-1253 - 0 0 1 0 +100302209 MIR1185-2 microRNA 1185-2 14 ncRNA MIRN1185-2|hsa-mir-1185-2|mir-1185-2 - 5 0.0006844 1 0 +100302211 MIR1203 microRNA 1203 17 ncRNA MIRN1203|hsa-mir-1203 - 1 0.0001369 1 0 +100302212 MIR1324 microRNA 1324 3 ncRNA MIRN1324|hsa-mir-1324 - 14 0.001916 1 0 +100302214 MIR1277 microRNA 1277 X ncRNA MIRN1277|hsa-mir-1277 - 0 0 1 0 +100302220 MIR1293 microRNA 1293 12 ncRNA MIRN1293|hsa-mir-1293|mir-1293 - 1 0.0001369 1 0 +100302222 MIR1911 microRNA 1911 X ncRNA MIRN1911|hsa-mir-1911|mir-1911 - 0 0 1 0 +100302223 MIR1302-8 microRNA 1302-8 9 ncRNA MIRN1302-8|hsa-mir-1302-8 - 1 0.0001369 1 0 +100302227 MIR1302-1 microRNA 1302-1 12 ncRNA MIRN1302-1|hsa-mir-1302-1 - 0 0 1 0 +100302228 MIR1261 microRNA 1261 11 ncRNA MIRN1261|hsa-mir-1261 - 3 0.0004106 1 0 +100302229 MIR1250 microRNA 1250 17 ncRNA MIRN1250|hsa-mir-1250|mir-1250 - 0 0 1 0 +100302235 MIR1179 microRNA 1179 15 ncRNA MIRN1179|hsa-mir-1179|mir-1179 - 3 0.0004106 1 0 +100302236 MIR1260A microRNA 1260a 14 ncRNA MIR1260|MIRN1260|hsa-mir-1260|hsa-mir-1260a|mir-1260a microRNA 1260 1 0.0001369 1 0 +100302240 MIR1304 microRNA 1304 11 ncRNA MIRN1304|hsa-mir-1304 - 1 0.0001369 1 0 +100302250 MIR1197 microRNA 1197 14 ncRNA MIRN1197|hsa-mir-1197|mir-1197 - 4 0.0005475 1 0 +100302255 MIR1323 microRNA 1323 19 ncRNA MIRN1323|hsa-mir-1323|mir-1323 - 2 0.0002737 1 0 +100302258 MIR1469 microRNA 1469 15 ncRNA MIRN1469|hsa-mir-1469 - 1 0.0001369 1 0 +100302259 MIR1202 microRNA 1202 6 ncRNA MIRN1202|hsa-mir-1202 - 1 0.0001369 1 0 +100302261 MIR1910 microRNA 1910 16 ncRNA MIRN1910|hsa-mir-1910|mir-1910 - 0 0 1 0 +100302265 MIR1283-1 microRNA 1283-1 19 ncRNA MIRN1283-1|hsa-mir-1283-1|mir-1283-1 - 2 0.0002737 1 0 +100302267 MIR2054 microRNA 2054 4 ncRNA hsa-mir-2054 - 1 0.0001369 1 0 +100302274 MIR1178 microRNA 1178 12 ncRNA MIRN1178|hsa-mir-1178 - 1 0.0001369 1 0 +100302276 MIR1290 microRNA 1290 1 ncRNA MIRN1290|hsa-mir-1290 - 0 0 1 0 +100302277 MIR548I2 microRNA 548i-2 4 ncRNA MIR548I-2|MIRN548I2|hsa-mir-548i-2|mir-548i-2 - 6 0.0008212 1 0 +100302279 MIR1262 microRNA 1262 1 ncRNA MIRN1262|hsa-mir-1262|mir-1262 - 0 0 1 0 +100302281 MIR1208 microRNA 1208 8 ncRNA MIRN1208|hsa-mir-1208 - 9 0.001232 1 0 +100302283 MIR1227 microRNA 1227 19 ncRNA MIRN1227|hsa-mir-1227|mir-1227 - 1 0.0001369 1 0 +100302284 MIR1303 microRNA 1303 5 ncRNA MIRN1303|hsa-mir-1303 - 2 0.0002737 1 0 +100302287 MIR548H3 microRNA 548h-3 17 ncRNA MIR548H-3|MIRN548H3|hsa-mir-548h-3 - 1 0.0001369 1 0 +100302401 RASAL2-AS1 RASAL2 antisense RNA 1 1 ncRNA - RASAL2 antisense RNA 1 (non-protein coding) 3 0.0004106 3.945 1 1 +100302640 LINC00882 long intergenic non-protein coding RNA 882 3 ncRNA - - 15 0.002053 2.274 1 1 +100302650 BRE-AS1 BRE antisense RNA 1 2 ncRNA - BRE antisense RNA 1 (non-protein coding) 4.445 0 1 +100302652 GPR75-ASB3 GPR75-ASB3 readthrough 2 protein-coding - GPR75-ASB3 protein 25 0.003422 1 0 +100302692 FTX FTX transcript, XIST regulator (non-protein coding) X ncRNA LINC00182|MIR374AHG|NCRNA00182 five prime to XIST|mir-374a-545 cluster host gene (non-protein coding) 25 0.003422 5.017 1 1 +100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough 5 protein-coding - TRAM adaptor with GOLD domain|TMED7-TICAM2 read-through transcript 7 0.0009581 5.619 1 1 +100302737 ZNF861P zinc finger protein 861, pseudogene 19 pseudo - zinc finger protein 709 pseudogene 0 0 1 0 +100302738 RNU6-21P RNA, U6 small nuclear 21, pseudogene 16 pseudo RNU6-21 - 0 0 1 0 +100302741 RNU6-15P RNA, U6 small nuclear 15, pseudogene 10 pseudo RNU6-15 - 0 0 1 0 +100302742 RNU6-42P RNA, U6 small nuclear 42, pseudogene 3 pseudo RNU6-42 - 1 0.0001369 1 0 +100303453 TSNAX-DISC1 TSNAX-DISC1 readthrough (NMD candidate) 1 ncRNA - - 4 0.0005475 0.6112 1 1 +100303491 ZEB2-AS1 ZEB2 antisense RNA 1 2 ncRNA ZEB2-AS|ZEB2AS|ZEB2NAT ZEB2 antisense RNA 1 (non-protein coding)|ZEB2 natural antisense transcript 1 0.0001369 1 0 +100303728 SLC25A5-AS1 SLC25A5 antisense RNA 1 X ncRNA - SLC25A5 antisense RNA 1 (non-protein coding) 1 0.0001369 4.637 1 1 +100309464 OTX2-AS1 OTX2 antisense RNA 1 (head to head) 14 ncRNA OTX2OS1 OTX2 antisense RNA 1 (non-protein coding)|Otx2 opposite strand transcript 1 38 0.005201 1 0 +100310846 ANKRD61 ankyrin repeat domain 61 7 protein-coding - ankyrin repeat domain-containing protein 61 2 0.0002737 1 0 +100313769 MIR320B2 microRNA 320b-2 1 ncRNA MIR320B-2|MIRN320B2|mir-320b-2 hsa-mir-320b-2 1 0.0001369 1 0 +100313770 MIR548K microRNA 548k 11 ncRNA MIRN548K hsa-mir-548k 0 0 1 0 +100313772 MIR548M microRNA 548m X ncRNA MIRN548M hsa-mir-548m 4 0.0005475 1 0 +100313777 MIR670 microRNA 670 11 ncRNA hsa-mir-670 - 1 0.0001369 1 0 +100313778 MIR759 microRNA 759 13 ncRNA hsa-mir-759 - 0 0 1 0 +100313779 MIR2117 microRNA 2117 17 ncRNA - hsa-mir-2117 1 0.0001369 1 0 +100313780 MIR2278 microRNA 2278 9 ncRNA mir-2278 hsa-mir-2278 0 0 1 0 +100313822 MIR513B microRNA 513b X ncRNA MIRN513B hsa-mir-513b 3 0.0004106 1 0 +100313824 MIR663B microRNA 663b 2 ncRNA MIRN663B|mir-663b hsa-mir-663b 6 0.0008212 1 0 +100313829 MIR548O microRNA 548o 7 ncRNA MIRN548O hsa-mir-548o 0 0 1 0 +100313840 MIR2115 microRNA 2115 3 ncRNA - hsa-mir-2115 0 0 1 0 +100313841 MIR548Q microRNA 548q 10 ncRNA - hsa-mir-548q 1 0.0001369 1 0 +100313843 MIR711 microRNA 711 3 ncRNA hsa-mir-711 - 0 0 1 0 +100313884 MIR548H4 microRNA 548h-4 8 ncRNA MIR548H-4|MIRN548H4|hsa-mir-548h-4 - 2 0.0002737 1 0 +100313892 MIR761 microRNA 761 1 ncRNA hsa-mir-761 - 0 0 1 0 +100313895 MIR548F4 microRNA 548f-4 7 ncRNA MIR548F-4|MIRN548F4|hsa-mir-548f-4 - 1 0.0001369 1 0 +100313938 MIR548G microRNA 548g 4 ncRNA MIRN548G|hsa-mir-548g - 0 0 1 0 +100316868 HOTTIP HOXA distal transcript antisense RNA 7 ncRNA HOXA-AS6|HOXA13-AS1|NCRNA00213 HOXA cluster antisense RNA 6 (non-protein coding)|HOXA distal transcript antisense RNA (non-protein coding)|HOXA13 antisense RNA 1 (non-protein coding)|HoxA transcript at the distal tip 2 0.0002737 1 0 +100316904 SAP25 Sin3A associated protein 25 7 protein-coding - histone deacetylase complex subunit SAP25|25 kDa Sin3-associated polypeptide|Sin3 corepressor complex subunit SAP25|Sin3A-associated protein, 25kDa|sin3-associated polypeptide, 25kDa|sin3A-binding protein 25 3 0.0004106 1 0 +100329109 GCSHP3 glycine cleavage system protein H pseudogene 3 2 pseudo - glycine cleavage system protein H (aminomethyl carrier) pseudogene 3 4 0.0005475 1 0 +100329135 TRPC5OS TRPC5 opposite strand X protein-coding TRPC5-AS1 putative uncharacterized protein TRPC5OS|TRPC5 antisense RNA 1 (non-protein coding)|TRPC5 opposite strand protein|TRPC5-antisense RNA 1 1 0.0001369 1 0 +100379220 TMED11P transmembrane p24 trafficking protein 11, pseudogene 4 pseudo p24a1|p24alpha1 transmembrane emp24 protein transport domain containing 11, pseudogene 2 0.0002737 1 0 +100379249 BOK-AS1 BOK antisense RNA 1 2 ncRNA BOK-AS|BOKAS|NAToB|NCRNA00151 BOK antisense RNA 1 (non-protein coding) 0 0 1 0 +100379661 GRIK1-AS2 GRIK1 antisense RNA 2 21 ncRNA C21orf41|NCRNA00258 GRIK1 antisense RNA 2 (non-protein coding) 0 0 1 0 +100381270 ZBED6 zinc finger BED-type containing 6 1 protein-coding MGR zinc finger BED domain-containing protein 6 3 0.0004106 1 0 +100418747 KRT8P35 keratin 8 pseudogene 35 3 pseudo - - 1 0.0001369 1 0 +100418770 KRT18P26 keratin 18 pseudogene 26 2 pseudo - - 1 0.0001369 1 0 +100419029 NF1P4 neurofibromin 1 pseudogene 4 14 pseudo NF1L4|NF1L6 Putative neurofibromin 1-like protein 4/6|neurofibromin 1-like 4 2 0.0002737 1 0 +100420190 SEPHS2P1 selenophosphate synthetase 2 pseudogene 1 5 pseudo SEPHS1P5 selenophosphate synthetase 1 pseudogene 5 1 0.0001369 1 0 +100420926 ZEB2P1 zinc finger E-box binding homeobox 2 pseudogene 1 4 pseudo ZEB1P1 zinc finger E-box binding homeobox 1 pseudogene 1 0 0 1 0 +100421589 LRRC37A7P leucine rich repeat containing 37 member A7, pseudogene 18 pseudo - leucine rich repeat containing 37A pseudogene 3 0.0004106 1 0 +100421638 CTAGE13P CTAGE family member 13, pseudogene 6 pseudo - cutaneous T-cell lymphoma-associated antigen 1 pseudogene 1 0.0001369 1 0 +100421860 ENPP7P8 ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene 8 11 pseudo - - 6 0.0008212 1 0 +100422238 CYP4F23P cytochrome P450 family 4 subfamily F member 23, pseudogene 19 pseudo - cytochrome P450, family 4, subfamily F, polypeptide 23, pseudogene|cytochrome P450, family 4, subfamily F, polypeptide 3 pseudogene 3 0.0004106 1 0 +100422833 MIR3188 microRNA 3188 19 ncRNA mir-3188 hsa-mir-3188 1 0.0001369 1 0 +100422846 MIR3164 microRNA 3164 11 ncRNA - hsa-mir-3164 1 0.0001369 1 0 +100422847 MIR514B microRNA 514b X ncRNA mir-514b hsa-mir-514b 1 0.0001369 1 0 +100422859 MIR3136 microRNA 3136 3 ncRNA mir-3136 hsa-mir-3136 1 0.0001369 1 0 +100422883 MIR4325 microRNA 4325 20 ncRNA - hsa-mir-4325 1 0.0001369 1 0 +100422887 MIR4280 microRNA 4280 5 ncRNA - hsa-mir-4280 1 0.0001369 1 0 +100422896 MIR3140 microRNA 3140 4 ncRNA mir-3140 hsa-mir-3140 1 0.0001369 1 0 +100422904 MIR3193 microRNA 3193 20 ncRNA - hsa-mir-3193 1 0.0001369 1 0 +100422911 MIR500B microRNA 500b X ncRNA mir-500b hsa-mir-500b 1 0.0001369 1 0 +100422913 MIR320E microRNA 320e 19 ncRNA mir-320e hsa-mir-320e 1 0.0001369 1 0 +100422918 MIR3167 microRNA 3167 11 ncRNA - hsa-mir-3167 1 0.0001369 1 0 +100422930 MIR4330 microRNA 4330 X ncRNA - hsa-mir-4330 1 0.0001369 1 0 +100422934 MIR3143 microRNA 3143 6 ncRNA mir-3143 hsa-mir-3143 1 0.0001369 1 0 +100422935 MIR3118-4 microRNA 3118-4 15 ncRNA - hsa-mir-3118-4 1 0.0001369 1 0 +100422938 MIR3142 microRNA 3142 5 ncRNA - hsa-mir-3142 3 0.0004106 1 0 +100422939 MIR3147 microRNA 3147 7 ncRNA mir-3147 hsa-mir-3147 1 0.0001369 1 0 +100422944 MIR3186 microRNA 3186 17 ncRNA mir-3186 hsa-mir-3186 1 0.0001369 1 0 +100422947 MIR3122 microRNA 3122 1 ncRNA mir-3122 hsa-mir-3122 1 0.0001369 1 0 +100422951 MIR3144 microRNA 3144 6 ncRNA mir-3144 hsa-mir-3144 2 0.0002737 1 0 +100422959 MIR4268 microRNA 4268 2 ncRNA - hsa-mir-4268 1 0.0001369 1 0 +100422960 MIR3179-1 microRNA 3179-1 16 ncRNA - hsa-mir-3179-1 1 0.0001369 1 0 +100422966 MIR4277 microRNA 4277 5 ncRNA - hsa-mir-4277 1 0.0001369 1 0 +100422969 MIR2909 microRNA 2909 17 ncRNA - hsa-mir-2909 1 0.0001369 1 0 +100422975 MIR4252 microRNA 4252 1 ncRNA - hsa-mir-4252 1 0.0001369 1 0 +100422993 MIR3130-1 microRNA 3130-1 2 ncRNA MIR3130-3|mir-3130-1 hsa-mir-3130-1|hsa-mir-3130-3|microRNA 3130-3 1 0.0001369 1 0 +100422998 MIR3199-2 microRNA 3199-2 22 ncRNA mir-3199-2 hsa-mir-3199-2 1 0.0001369 1 0 +100423013 MIR4310 microRNA 4310 15 ncRNA - hsa-mir-4310 1 0.0001369 1 0 +100423018 MIR3156-3 microRNA 3156-3 21 ncRNA mir-3156-3 hsa-mir-3156-3 3 0.0004106 1 0 +100423035 MIR4313 microRNA 4313 15 ncRNA - hsa-mir-4313 3 0.0004106 1 0 +100423038 MIR466 microRNA 466 3 ncRNA hsa-mir-466 - 1 0.0001369 1 0 +100423062 IGLL5 immunoglobulin lambda like polypeptide 5 22 protein-coding IGL|IGLV|VL-MAR immunoglobulin lambda-like polypeptide 5|G lambda-1|anti HBs antibody light-chain Fab fragment|germline immunoglobulin lambda 1|immunoglobin anti-granzymeB light chain variable region|immunoglobulin lambda-3 surrogate light chain|omega light chain protein 14.1 38 0.005201 1 0 +100431172 KLRF2 killer cell lectin like receptor F2 12 protein-coding NKp65 killer cell lectin-like receptor subfamily F member 2|activating coreceptor NKp65|killer cell lectin-like receptor subfamily F, member 2|lectin-like receptor F2 3 0.0004106 1 0 +100462767 ACTBP12 actin, beta pseudogene 12 1 pseudo ACTGP5 actin, gamma pseudogene 5 2 0.0002737 1 0 +100462953 MINOS1P1 mitochondrial inner membrane organizing system 1 pseudogene 1 13 pseudo CG012|N4BP2L2-IT|N4BP2L2-IT1|N4BP2L2IT1 N4BP2L2 intronic transcript (non-protein coding)|N4BP2L2 intronic transcript 1 (non-protein coding)|N4BPL2 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100462983 MTRNR2L3 MT-RNR2-like 3 20 protein-coding HN3 humanin-like 3|MTRNR2-like 3|humanin-like protein 3 1 0.0001369 1 0 +100463289 MTRNR2L5 MT-RNR2-like 5 10 protein-coding HN5 humanin-like 5|MTRNR2-like 5|humanin-like protein 5 1 0.0001369 1 0 +100499171 LINC00276 long intergenic non-protein coding RNA 276 2 ncRNA NCRNA00276 - 0 0 1 0 +100499177 THAP9-AS1 THAP9 antisense RNA 1 4 ncRNA - THAP9 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100499227 USP2-AS1 USP2 antisense RNA 1 (head to head) 11 ncRNA THY1-AS1 - 14 0.001916 1 0 +100499405 LINC00987 long intergenic non-protein coding RNA 987 12 ncRNA - - 21 0.002874 1 0 +100499466 LINC00674 long intergenic non-protein coding RNA 674 17 ncRNA - - 3 0.0004106 1 0 +100499483 CCDC180 coiled-coil domain containing 180 9 protein-coding BDAG1|C9orf174|KIAA1529 coiled-coil domain-containing protein 180|Behcet's Disease Associated Gene 1 124 0.01697 1 0 +100500815 MIR3687-1 microRNA 3687-1 21 ncRNA MIR3687|hsa-mir-3687-1 hsa-mir-3687|microRNA 3687 1 0.0001369 1 0 +100500817 MIR3612 microRNA 3612 12 ncRNA - hsa-mir-3612 1 0.0001369 1 0 +100500819 MIR3609 microRNA 3609 7 ncRNA mir-3609 hsa-mir-3609 1 0.0001369 1 0 +100500827 MIR3614 microRNA 3614 17 ncRNA mir-3614 hsa-mir-3614 1 0.0001369 1 0 +100500836 MIR3914-1 microRNA 3914-1 7 ncRNA - hsa-mir-3914-1 1 0.0001369 1 0 +100500846 MIR3689A microRNA 3689a 9 ncRNA - hsa-mir-3689a 1 0.0001369 1 0 +100500847 MIR3615 microRNA 3615 17 ncRNA mir-3615 hsa-mir-3615 0 0 1 0 +100500849 MIR3916 microRNA 3916 1 ncRNA mir-3916 hsa-mir-3916 1 0.0001369 1 0 +100500862 MIR3648-1 microRNA 3648-1 21 ncRNA MIR3648|hsa-mir-3648-1 hsa-mir-3648|microRNA 3648 27 0.003696 1 0 +100500866 MIR3941 microRNA 3941 10 ncRNA - hsa-mir-3941 1 0.0001369 1 0 +100500872 MIR3911 microRNA 3911 9 ncRNA mir-3911 hsa-mir-3911 1 0.0001369 1 0 +100500887 MIR676 microRNA 676 X ncRNA hsa-mir-676|mir-676 - 1 0.0001369 1 0 +100500890 MIR3611 microRNA 3611 10 ncRNA - hsa-mir-3611 1 0.0001369 1 0 +100500906 MIR3689B microRNA 3689b 9 ncRNA mir-3689b hsa-mir-3689b 1 0.0001369 1 0 +100500916 MIR3180-5 microRNA 3180-5 16 ncRNA mir-3180-5 hsa-mir-3180-5 1 0.0001369 1 0 +100505385 IQCJ-SCHIP1 IQCJ-SCHIP1 readthrough 3 protein-coding - IQ motif containing J-schwannomin interacting protein 1 fusion protein|IQ motif containing J-schwannomin interacting protein 1 read-through transcript 34 0.004654 1 0 +100505498 LOC100505498 uncharacterized LOC100505498 2 ncRNA - - 1 0.0001369 1 0 +100505501 LOC100505501 uncharacterized LOC100505501 8 unknown - - 1 0.0001369 1 0 +100505557 GSTM5P1 glutathione S-transferase mu 5 pseudogene 1 3 pseudo GST1L|GSTM1L glutathione S-transferase M1-like|glutathione S-transferase mu 1-like 2 0.0002737 1 0 +100505566 LINC00578 long intergenic non-protein coding RNA 578 3 ncRNA - - 0 0 1 0 +100505621 C11orf72 chromosome 11 open reading frame 72 11 ncRNA - - 5 0.0006844 1 0 +100505641 FGD5-AS1 FGD5 antisense RNA 1 3 ncRNA - FGD5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100505678 STARD4-AS1 STARD4 antisense RNA 1 5 ncRNA - CTC-426B10.1|STARD4 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100505687 LINC00888 long intergenic non-protein coding RNA 888 3 ncRNA - - 0 0 1 0 +100505696 SH3BP5-AS1 SH3BP5 antisense RNA 1 3 ncRNA - - 1 0.0001369 1 0 +100505724 KRTAP9-7 keratin associated protein 9-7 17 protein-coding KAP9.7|KRTAP9L1 keratin-associated protein 9-7|keratin associated protein 9-like 1|putative keratin-associated protein 9-2-like 1 2 0.0002737 1 0 +100505741 SPATA1 spermatogenesis associated 1 1 protein-coding SP-2|SPAP1 spermatogenesis-associated protein 1|sperm-specific protein SP-2 28 0.003832 1 0 +100505753 KRTAP16-1 keratin associated protein 16-1 17 protein-coding KAP16.1 keratin-associated protein 16-1|putative keratin-associated protein 10-like ENSP00000375147 11 0.001506 1 0 +100505758 PRMT5-AS1 PRMT5 antisense RNA 1 14 ncRNA - PRMT5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100505782 LOC100505782 uncharacterized LOC100505782 17 ncRNA - - 2 0.0002737 1 0 +100505832 PROX1-AS1 PROX1 antisense RNA 1 1 ncRNA - PROX1 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100505852 ZNF355P zinc finger protein 355, pseudogene 21 pseudo PRED65|ZNF834 zinc finger protein 834 2 0.0002737 1 0 +100505854 APTR Alu-mediated CDKN1A/p21 transcriptional regulator (non-protein coding) 7 ncRNA RSBN1L-AS1 RSBN1L antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100505879 KIF25-AS1 KIF25 antisense RNA 1 6 ncRNA C6orf54|HGC6.1.1|NCRNA00300 KIF25 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100505881 MAGI2-AS3 MAGI2 antisense RNA 3 7 ncRNA - MAGI2 antisense RNA 3 (non-protein coding) 1 0.0001369 1 0 +100505894 TMEM161B-AS1 TMEM161B antisense RNA 1 5 ncRNA linc-POLR3G-8 CTC-358I24.1|TMEM161B antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100505929 LINC01549 long intergenic non-protein coding RNA 1549 21 ncRNA C21orf37 - 1 0.0001369 1 0 +100505967 LINC00645 long intergenic non-protein coding RNA 645 14 ncRNA - - 1 0.0001369 1 0 +100505978 LOC100505978 uncharacterized LOC100505978 12 ncRNA - - 2 0.0002737 1 0 +100506012 PPP5D1 PPP5 tetratricopeptide repeat domain containing 1 19 protein-coding - protein PPP5D1|PPP5 TPR repeat domain-containing protein 1 1 0.0001369 1 0 +100506033 PTOV1-AS1 PTOV1 antisense RNA 1 19 ncRNA - PTOV1 antisense RNA 1 (non-protein coding) 4 0.0005475 1 0 +100506035 LINC00989 long intergenic non-protein coding RNA 989 4 ncRNA - - 0 0 1 0 +100506049 LRRC72 leucine rich repeat containing 72 7 protein-coding - leucine-rich repeat-containing protein 72|leucine-rich repeat-containing protein ENSP00000371558 7 0.0009581 1 0 +100506070 RBFADN RBFA downstream neighbor (non-protein coding) 18 ncRNA - - 2 0.0002737 1 0 +100506071 LOC100506071 uncharacterized LOC100506071 14 ncRNA - - 1 0.0001369 1 0 +100506080 HMGA1P4 high mobility group AT-hook 1 pseudogene 4 9 pseudo - - 2 0.0002737 1 0 +100506084 ARL17B ADP ribosylation factor like GTPase 17B 17 protein-coding ARL17|ARL17A ADP-ribosylation factor-like protein 17|ADP-ribosylation factor 7|ADP-ribosylation factor-like 17B 2 0.0002737 1 0 +100506098 LOC100506098 uncharacterized LOC100506098 7 ncRNA - - 1 0.0001369 1 0 +100506123 LOC100506123 uncharacterized LOC100506123 2 ncRNA - - 2 0.0002737 1 0 +100506127 LOC100506127 putative uncharacterized protein FLJ37770-like 11 protein-coding - putative uncharacterized protein FLJ37770 1 0.0001369 1 0 +100506136 LOC100506136 uncharacterized LOC100506136 7 ncRNA - - 1 0.0001369 1 0 +100506144 TMEM35B transmembrane protein 35B 1 protein-coding ZMYM6NB uncharacterized protein ZMYM6NB|ZMYM6 neighbor protein 1 0.0001369 1 0 +100506190 LINC00963 long intergenic non-protein coding RNA 963 9 ncRNA - - 1 0.0001369 1 0 +100506237 NKX2-1-AS1 NKX2-1 antisense RNA 1 14 ncRNA - NKX2-1 antisense RNA 1 (non-protein coding)|Putative uncharacterized protein CS0DJ013YG01 1 0.0001369 1 0 +100506243 KRBOX1 KRAB box domain containing 1 3 protein-coding - KRAB domain-containing protein 1 4 0.0005475 1 0 +100506272 LOC100506272 uncharacterized LOC100506272 4 ncRNA - - 1 0.0001369 1 0 +100506334 LINC00649 long intergenic non-protein coding RNA 649 21 ncRNA - TCONS_00028768 2 0.0002737 1 0 +100506376 TTLL10-AS1 TTLL10 antisense RNA 1 1 unknown - TTLL10 antisense RNA 1 (non-protein coding) 11 0.001506 1 0 +100506388 LOC100506388 uncharacterized LOC100506388 17 protein-coding - uncharacterized protein LOC100506388 1 0.0001369 1 0 +100506412 LINC00871 long intergenic non-protein coding RNA 871 14 ncRNA - - 0 0 1 0 +100506428 CBR3-AS1 CBR3 antisense RNA 1 21 ncRNA PlncRNA-1|PlncRNA1 CBR3 antisense RNA 1 (non-protein coding)|prostate cancer-up-regulated long noncoding RNA 1 20 0.002737 1 0 +100506433 LINC00648 long intergenic non-protein coding RNA 648 14 ncRNA - - 0 0 1 0 +100506436 SPAG5-AS1 SPAG5 antisense RNA 1 17 ncRNA - SPAG5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100506443 ITPKB-IT1 ITPKB intronic transcript 1 1 ncRNA - ITPKB intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100506462 SRD5A3-AS1 SRD5A3 antisense RNA 1 4 ncRNA - SRD5A3 antisense RNA 1 (non-protein coding) 0 0 1 0 +100506495 LIFR-AS1 LIFR antisense RNA 1 5 ncRNA - CTD-2196P11.1|LIFR antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100506540 SPTY2D1-AS1 SPTY2D1 antisense RNA 1 11 ncRNA - SPTY2D1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100506544 LOC100506544 uncharacterized LOC100506544 22 unknown - - 1 0.0001369 1 0 +100506555 PVRL3-AS1 PVRL3 antisense RNA 1 3 ncRNA - PVRL3 antisense RNA 1 (non-protein coding) 0 0 1 0 +100506581 C16orf95 chromosome 16 open reading frame 95 16 protein-coding - uncharacterized protein C16orf95 8 0.001095 1 0 +100506627 DCDC5 doublecortin domain containing 5 11 protein-coding - doublecortin domain-containing protein 5 45 0.006159 1 0 +100506649 PXN-AS1 PXN antisense RNA 1 12 ncRNA EyeLinc4 PXN antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100506650 C17orf112 chromosome 17 open reading frame 112 17 protein-coding - uncharacterized protein C17orf112 1 0.0001369 1 0 +100506658 OCLN occludin 5 protein-coding BLCPMG|PPP1R115 occludin|phosphatase 1, regulatory subunit 115|tight junction protein occludin 29 0.003969 1 0 +100506660 DDX11-AS1 DDX11 antisense RNA 1 12 ncRNA CONCR DDX11 antisense RNA 1 (non-protein coding) 6 0.0008212 1 0 +100506686 IQCH-AS1 IQCH antisense RNA 1 15 ncRNA - IQCH antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100506733 FAM170B-AS1 FAM170B antisense RNA 1 10 ncRNA - - 1 0.0001369 1 0 +100506736 SLFN12L schlafen family member 12 like 17 protein-coding - schlafen family member 12-like 36 0.004927 1 0 +100506742 CASP12 caspase 12 (gene/pseudogene) 11 protein-coding CASP-12|CASP12P1 inactive caspase-12|caspase 12 pseudogene 1 3 0.0004106 1 0 +100506749 AGAP1-IT1 AGAP1 intronic transcript 1 2 ncRNA - AGAP1 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100506755 MIR497HG mir-497-195 cluster host gene 17 ncRNA MIR195HG mir-497-195 cluster host gene (non-protein coding) 3 0.0004106 1 0 +100506757 LINC00629 long intergenic non-protein coding RNA 629 X ncRNA LINC00629A|LINC00629B|LINC00629C|LINC00629D - 0 0 1 0 +100506779 TSPOAP1-AS1 TSPOAP1 antisense RNA 1 17 ncRNA BZRAP1-AS1 BZRAP1 antisense RNA 1 (non-protein coding) 9 0.001232 1 0 +100506783 HOXD-AS2 HOXD cluster antisense RNA 2 2 ncRNA - HOXD cluster antisense RNA 2 (non-protein coding) 4 0.0005475 1 0 +100506826 MYLK-AS1 MYLK antisense RNA 1 3 ncRNA - MYLK antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100506835 LINC00840 long intergenic non-protein coding RNA 840 10 ncRNA - - 2 0.0002737 1 0 +100506866 TTN-AS1 TTN antisense RNA 1 2 ncRNA - TTN antisense RNA 1 (non-protein coding) 35 0.004791 1 0 +100506874 LINC00933 long intergenic non-protein coding RNA 933 15 ncRNA - - 13 0.001779 1 0 +100506888 TCEB3CL2 transcription elongation factor B subunit 3C like 2 18 protein-coding - 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 4 0.0005475 1 0 +100506901 LL0XNC01-250H12.3 uncharacterized LL0XNC01-250H12.3 X ncRNA - - 1 0.0001369 1 0 +100506928 LOC100506928 uncharacterized LOC100506928 16 unknown - - 1 0.0001369 1 0 +100506930 LINC00665 long intergenic non-protein coding RNA 665 19 ncRNA - - 6 0.0008212 1 0 +100506994 PTPRG-AS1 PTPRG antisense RNA 1 3 ncRNA - - 0 0 1 0 +100507027 MRLN myoregulin 10 protein-coding LINC00948|M1|MLN|MUSER1 myoregulin|long intergenic non-protein coding RNA 948|muscle enriched RNA 1|muscle specific 1 3 0.0004106 1 0 +100507043 TUNAR TCL1 upstream neural differentiation-associated RNA 14 ncRNA HI-LNC78|LINC00617|TUNA Human Islet Long Non Coding RNA 78|Tcl1 upstream neuron-associated lincRNA|long intergenic non-protein coding RNA 617 7 0.0009581 1 0 +100507055 LRCOL1 leucine rich colipase like 1 12 protein-coding - leucine-rich colipase-like protein 1 5 0.0006844 1 0 +100507062 PSMD6-AS2 PSMD6 antisense RNA 2 3 ncRNA - PSMD6 antisense RNA 2 (non-protein coding) 0 0 1 0 +100507064 TEX26-AS1 TEX26 antisense RNA 1 13 ncRNA LINC00447 TEX26 antisense RNA 1 (non-protein coding)|long intergenic non-protein coding RNA 447 0 0 1 0 +100507098 ADAMTS9-AS2 ADAMTS9 antisense RNA 2 3 ncRNA - ADAMTS9 antisense RNA 2 (non-protein coding)|CTD-2230D16.1 1 0.0001369 1 0 +100507143 LINC00708 long intergenic non-protein coding RNA 708 10 ncRNA GS1-756B1.2 - 0 0 1 0 +100507163 LINC00709 long intergenic non-protein coding RNA 709 10 ncRNA - - 0 0 1 0 +100507206 LINC00943 long intergenic non-protein coding RNA 943 12 ncRNA - - 7 0.0009581 1 0 +100507246 SNHG16 small nucleolar RNA host gene 16 17 ncRNA ncRAN non-coding RNA expressed in aggressive neuroblastoma|small nucleolar RNA host gene 16 (non-protein coding) 3 0.0004106 1 0 +100507249 C8orf17 chromosome 8 open reading frame 17 8 protein-coding MOST-1|MOST1 MOLT-4 sequence tag-1 1 0.0001369 1 0 +100507250 LOC100507250 uncharacterized LOC100507250 12 ncRNA - - 2 0.0002737 1 0 +100507257 MEG9 maternally expressed 9 (non-protein coding) 14 ncRNA LINC00584 long intergenic non-protein coding RNA 584 1 0.0001369 1 0 +100507266 STX18-AS1 STX18 antisense RNA 1 (head to head) 4 ncRNA - - 1 0.0001369 1 0 +100507267 LINC01187 long intergenic non-protein coding RNA 1187 5 ncRNA CTB-27N1.1|KIDR kidney-specific RNA 0 0 1 0 +100507290 ZNF865 zinc finger protein 865 19 protein-coding - zinc finger protein 865 6 0.0008212 1 0 +100507291 LOC100507291 uncharacterized LOC100507291 3 ncRNA - - 1 0.0001369 1 0 +100507321 ERVK13-1 endogenous retrovirus group K13 member 1 16 ncRNA - HERV-K_16p3.3 provirus ancestral Env polyprotein 12 0.001642 1 0 +100507334 LOC100507334 two pore channel 3 pseudogene 2 pseudo - - 1 0.0001369 1 0 +100507377 LOC100507377 uncharacterized LOC100507377 12 ncRNA - - 3 0.0004106 1 0 +100507398 INTS6-AS1 INTS6 antisense RNA 1 13 ncRNA - INTS6 antisense RNA 1 (non-protein coding) 14 0.001916 1 0 +100507401 LRP4-AS1 LRP4 antisense RNA 1 11 ncRNA - LRP4 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100507404 TMLHE-AS1 TMLHE antisense RNA 1 X ncRNA - TMLHE antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100507421 TMEM178B transmembrane protein 178B 7 protein-coding - transmembrane protein 178B 1 0.0001369 1 0 +100507423 MKNK1-AS1 MKNK1 antisense RNA 1 1 ncRNA - MKNK1 antisense RNA 1 (non-protein coding) 8 0.001095 1 0 +100507428 LINC00458 long intergenic non-protein coding RNA 458 13 ncRNA LncRNA-ES3 - 0 0 1 0 +100507431 LOC100507431 uncharacterized LOC100507431 11 ncRNA - - 2 0.0002737 1 0 +100507436 MICA MHC class I polypeptide-related sequence A 6 protein-coding MIC-A|PERB11.1 MHC class I polypeptide-related sequence A|HLA class I antigen|MHC class I chain-related protein A|MHC class I related chain A|MHC class I related sequence A|stress inducible class I homolog|truncated MHC class I polypeptide-related sequence A 29 0.003969 1 0 +100507444 PPP1R2P1 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 1 6 pseudo IPP-2P|PPP1R2P - 10 0.001369 1 0 +100507466 DPH6-AS1 DPH6 antisense RNA 1 (head to head) 15 ncRNA ATPBD4-AS1 ATPBD4 antisense RNA 1 (head to head)|ATPBD4 antisense RNA 1 (non-protein coding) 0 0 1 0 +100507490 ZNF859P zinc finger protein 859, pseudogene 1 pseudo - - 1 0.0001369 1 0 +100507495 SDCBP2-AS1 SDCBP2 antisense RNA 1 20 ncRNA - SDCBP2 antisense RNA 1 (non-protein coding) 8 0.001095 1 0 +100507524 ARHGEF26-AS1 ARHGEF26 antisense RNA 1 3 ncRNA - ARHGEF26 antisense RNA 1 (non-protein coding) 0 0 1 0 +100507528 LINC00613 long intergenic non-protein coding RNA 613 4 ncRNA - - 1 0.0001369 1 0 +100507533 SOX21-AS1 SOX21 antisense RNA 1 (head to head) 13 ncRNA - SOX21 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100507546 LOC100507546 uncharacterized LOC100507546 5 unknown - - 1 0.0001369 1 0 +100507564 LOC100507564 uncharacterized LOC100507564 1 ncRNA - - 1 0.0001369 1 0 +100507582 BHLHE40-AS1 BHLHE40 antisense RNA 1 3 ncRNA - - 4 0.0005475 1 0 +100507608 KRTAP9-6 keratin associated protein 9-6 17 protein-coding KAP9.6|KRTAP9.6|KRTAP9L2 keratin-associated protein 9-6|keratin associated protein 9-like 2|putative keratin-associated protein 9-2-like 2 0 0 1 0 +100507612 LINC00402 long intergenic non-protein coding RNA 402 13 ncRNA - - 0 0 1 0 +100507629 LINC00658 long intergenic non-protein coding RNA 658 20 ncRNA - - 1 0.0001369 1 0 +100507633 TNKS2-AS1 TNKS2 antisense RNA 1 (head to head) 10 ncRNA - - 1 0.0001369 1 0 +100507646 LOC100507646 uncharacterized LOC100507646 19 unknown - NINP6167 1 0.0001369 1 0 +100507650 RNF212B ring finger protein 212B 14 protein-coding C14orf164 RING finger protein 212B|RING finger protein C14orf164|RING finger protein C14orf164-like 1 0.0001369 1 0 +100509894 CPB2-AS1 CPB2 antisense RNA 1 13 ncRNA - CPB2 antisense RNA 1 (non-protein coding) 0 0 1 0 +100526664 LY75-CD302 LY75-CD302 readthrough 2 protein-coding - LY75-CD302 fusion protein|DEC-205/DCL-1 fusion 24 0.003285 1 0 +100526693 ARPC4-TTLL3 ARPC4-TTLL3 readthrough 3 protein-coding - ARPC4-TTLL3 fusion protein|ARPC4-TTLL3 read-through transcript 2 0.0002737 1 0 +100526694 MSANTD3-TMEFF1 MSANTD3-TMEFF1 readthrough 9 protein-coding C9orf3-TMEFF1|C9orf30-TMEFF1 MSANTD3-TMEFF1 fusion protein 15 0.002053 1 0 +100526737 RBM14-RBM4 RBM14-RBM4 readthrough 11 protein-coding COAZ RBM14-RBM4 protein|RBM14/RBM4 fusion|transcriptional coactivator CoAZ 1 0.0001369 1 0 +100526739 APITD1-CORT APITD1-CORT readthrough 1 protein-coding - APITD1-CORT protein 9 0.001232 1 0 +100526740 ATP5J2-PTCD1 ATP5J2-PTCD1 readthrough 7 protein-coding - ATP5J2-PTCD1 fusion protein|ATP5J2-PTCD1 read-through transcript 14 0.001916 1 0 +100526760 ABHD14A-ACY1 ABHD14A-ACY1 readthrough 3 protein-coding - ABHD14A-ACY1 readthrough (NMD candidate)|ABHD14A-ACY1 readthrough (non-protein coding) 2 0.0002737 1 0 +100526761 CCDC169-SOHLH2 CCDC169-SOHLH2 readthrough 13 protein-coding C13orf38-SOHLH2 CCDC169-SOHLH2 protein 9 0.001232 1 0 +100526771 TMPRSS4-AS1 TMPRSS4 antisense RNA 1 11 ncRNA - TMPRSS4 antisense RNA 1 (non-protein coding) 7 0.0009581 1 0 +100526772 TMEM110-MUSTN1 TMEM110-MUSTN1 readthrough 3 protein-coding - TMEM110-MUSTN1 fusion protein|TMEM110-MUSTN1 read-through transcript 3 0.0004106 1 0 +100526773 EPPIN-WFDC6 EPPIN-WFDC6 readthrough 20 protein-coding SPINLW1-WFDC6 SPINLW1-WFDC6 fusion protein|SPINLW1-WFDC6 read-through transcript|SPINLW1-WFDC6 readthrough 4 0.0005475 1 0 +100526783 C15orf38-AP3S2 C15orf38-AP3S2 readthrough 15 protein-coding - C15orf38-AP3S2 fusion protein 1 0.0001369 1 0 +100526794 NT5C1B-RDH14 NT5C1B-RDH14 readthrough 2 protein-coding - NT5C1B-RDH14 protein|NT5C1B-RDH14 read-through transcript 9 0.001232 1 0 +100526825 INMT-FAM188B INMT-FAM188B readthrough (NMD candidate) 7 ncRNA - INMT-FAM188B readthrough (non-protein coding) 12 0.001642 1 0 +100526832 PHOSPHO2-KLHL23 PHOSPHO2-KLHL23 readthrough 2 protein-coding - kelch-like protein 23 6 0.0008212 1 0 +100526835 FPGT-TNNI3K FPGT-TNNI3K readthrough 1 protein-coding - FPGT-TNNI3K fusion protein 72 0.009855 1 0 +100526836 BLOC1S5-TXNDC5 BLOC1S5-TXNDC5 readthrough (NMD candidate) 6 ncRNA MUTED-TXNDC5 BLOC1S5-TXNDC5 readthrough (non-protein coding)|MUTED-TXNDC5 readthrough (non-protein coding) 10 0.001369 1 0 +100526837 EEF1E1-BLOC1S5 EEF1E1-BLOC1S5 readthrough (NMD candidate) 6 ncRNA EEF1E1-MUTED EEF1E1-MUTED readthrough 1 0.0001369 1 0 +100526842 RPL17-C18orf32 RPL17-C18orf32 readthrough 18 protein-coding - RPL17-C18orf32 protein 9 0.001232 1 0 +100527949 GIMAP1-GIMAP5 GIMAP1-GIMAP5 readthrough 7 protein-coding - GIMAP1-GIMAP5 protein 11 0.001506 1 0 +100527960 MROH7-TTC4 MROH7-TTC4 readthrough (NMD candidate) 1 ncRNA HEATR8-TTC4 HEATR8-TTC4 readthrough 5 0.0006844 1 0 +100527963 PMF1-BGLAP PMF1-BGLAP readthrough 1 protein-coding PMF1 PMF1-BGLAP protein|polyamine-modulated factor 1 1 0.0001369 1 0 +100528007 BORCS7-ASMT BORCS7-ASMT readthrough (NMD candidate) 10 ncRNA C10orf32-AS3MT|C10orf32-ASMT - 3 0.0004106 1 0 +100528017 SAA2-SAA4 SAA2-SAA4 readthrough 11 protein-coding - SAA2-SAA2 protein|SAA2-SAA2 read-through transcript 5 0.0006844 1 0 +100528020 FAM187A family with sequence similarity 187 member A 17 protein-coding - Ig-like V-type domain-containing protein FAM187A 4 0.0005475 1 0 +100528021 ST20-MTHFS ST20-MTHFS readthrough 15 protein-coding - ST20-MTHFS protein 1 0.0001369 1 0 +100528030 POC1B-GALNT4 POC1B-GALNT4 readthrough 12 protein-coding - POC1B-GALNT4 protein|POC1B-GALNT4 fusion 25 0.003422 1 0 +100528032 KLRC4-KLRK1 KLRC4-KLRK1 readthrough 12 protein-coding - NKG2-D type II integral membrane protein|NK cell receptor D|NKG2-D-activating NK receptor|killer cell lectin-like receptor subfamily K member 1 14 0.001916 1 0 +100528062 ARMCX5-GPRASP2 ARMCX5-GPRASP2 readthrough X protein-coding - G-protein coupled receptor-associated sorting protein 2 4 0.0005475 1 0 +100528064 NEDD8-MDP1 NEDD8-MDP1 readthrough 14 protein-coding - NEDD8-MDP1 protein|NEDD8-MDP1 read-through transcript 2 0.0002737 1 0 +100529063 BCL2L2-PABPN1 BCL2L2-PABPN1 readthrough 14 protein-coding - BCL2L2-PABPN1 protein 3 0.0004106 1 0 +100529097 RPL36A-HNRNPH2 RPL36A-HNRNPH2 readthrough X protein-coding - RPL36A-HNRNPH2 protein 1 0.0001369 1 0 +100529144 CORO7-PAM16 CORO7-PAM16 readthrough 16 protein-coding - CORO7-PAM16 protein 22 0.003011 1 0 +100529211 TMEM256-PLSCR3 TMEM256-PLSCR3 readthrough (NMD candidate) 17 ncRNA C17orf61-PLSCR3 - 2 0.0002737 1 0 +100529239 RPS10-NUDT3 RPS10-NUDT3 readthrough 6 protein-coding - RPS10-NUDT3 protein|ribosomal protein S10 homologue 3 0.0004106 1 0 +100529240 ZNF816-ZNF321P ZNF816-ZNF321P readthrough 19 protein-coding ZNF816-ZNF321 ZNF816-ZNF321 protein|ZNF816-ZNF321 read-through transcript|ZNF816-ZNF321 readthrough 4 0.0005475 1 0 +100529241 HSPE1-MOB4 HSPE1-MOB4 readthrough 2 protein-coding HSPE1-PHOCN HSPE1-MOB4 protein 3 0.0004106 1 0 +100529257 SYNJ2BP-COX16 SYNJ2BP-COX16 readthrough 14 protein-coding - SYNJ2BP-COX16 protein 1 0.0001369 1 0 +100529261 CHURC1-FNTB CHURC1-FNTB readthrough 14 protein-coding - CHURC1-FNTB protein 6 0.0008212 1 0 +100529262 MIA-RAB4B MIA-RAB4B readthrough (NMD candidate) 19 ncRNA - - 3 0.0004106 1 0 +100529264 RAB4B-EGLN2 RAB4B-EGLN2 readthrough (NMD candidate) 19 ncRNA RERT-lncRNA RAB4B-EGLN2 readthrough (non-protein coding)|RAB4B-EGLN2 readthrough long non-coding RNA 6 0.0008212 1 0 +100529855 ZNF625-ZNF20 ZNF625-ZNF20 readthrough (NMD candidate) 19 ncRNA - - 1 0.0001369 1 0 +100532724 NPHP3-ACAD11 NPHP3-ACAD11 readthrough (NMD candidate) 3 ncRNA - - 1 0.0001369 1 0 +100532726 NDUFC2-KCTD14 NDUFC2-KCTD14 readthrough 11 protein-coding - NADH dehydrogenase [ubiquinone] 1 subunit C2, isoform 2|NDUFC2-KCTD14 readthrough transcript protein 1 0.0001369 1 0 +100532731 COMMD3-BMI1 COMMD3-BMI1 readthrough 10 protein-coding - COMMD3-BMI1 read-through protein 6 0.0008212 1 0 +100532732 MSH5-SAPCD1 MSH5-SAPCD1 readthrough (NMD candidate) 6 ncRNA MSH5-C6orf26 MSH5-C6orf26 readthrough (non-protein coding)|MSH5-SAPCD1 readthrough (non-protein coding) 21 0.002874 1 0 +100532736 MINOS1-NBL1 MINOS1-NBL1 readthrough 1 protein-coding C1orf151-NBL1 C1orf151-NBL1 read-through protein 2 0.0002737 1 0 +100532737 ATP6V1G2-DDX39B ATP6V1G2-DDX39B readthrough (NMD candidate) 6 ncRNA - ATP6V1G2-DDX39B readthrough (non-protein coding) 6 0.0008212 1 0 +100532746 PPT2-EGFL8 PPT2-EGFL8 readthrough (NMD candidate) 6 ncRNA - - 13 0.001779 1 0 +100533105 C8orf44-SGK3 C8orf44-SGK3 readthrough 8 protein-coding - serine/threonine-protein kinase Sgk3|cytokine-independent survival kinase|serum/glucocorticoid-regulated kinase 3 2 0.0002737 1 0 +100533107 RTEL1-TNFRSF6B RTEL1-TNFRSF6B readthrough (NMD candidate) 20 ncRNA - RTEL1-TNFRSF6B readthrough (non-protein coding) 1 0.0001369 1 0 +100533177 KRTAP29-1 keratin associated protein 29-1 17 protein-coding KAP29.2 keratin-associated protein 29-1|Keratin-associated protein 29.2 7 0.0009581 1 0 +100533181 FXYD6-FXYD2 FXYD6-FXYD2 readthrough 11 protein-coding - FXYD6-FXYD2 read-through protein 2 0.0002737 1 0 +100533182 SEC24B-AS1 SEC24B antisense RNA 1 4 ncRNA 1/2-SBSRNA4 SEC24B antisense RNA 1 (non-protein coding)|lncRNA_BC009800 3 0.0004106 1 0 +100533183 ZNF664-FAM101A filamin-interacting protein FAM101A 12 protein-coding - filamin-interacting protein FAM101A|ZNF664-FAM101A readthrough|protein FAM101A|refilinA|regulator of filamin protein A 1 0.0001369 1 0 +100533184 ARHGAP19-SLIT1 ARHGAP19-SLIT1 readthrough (NMD candidate) 10 ncRNA - - 26 0.003559 1 0 +100533467 BIVM-ERCC5 BIVM-ERCC5 readthrough 13 protein-coding ERCC5-202 BIVM-ERCC5 protein 58 0.007939 1 0 +100533483 DYX1C1-CCPG1 DYX1C1-CCPG1 readthrough (NMD candidate) 15 ncRNA - DYX1C1-CCPG1 readthrough (non-protein coding) 2 0.0002737 1 0 +100533496 TVP23C-CDRT4 TVP23C-CDRT4 readthrough 17 protein-coding FAM18B2-CDRT4 uncharacterized protein LOC100533496|FAM18B2-CDRT4 readthrough 1 0.0001369 1 0 +100533646 ZNF840P zinc finger protein 840, pseudogene 20 pseudo C20orf157|ZNF840|dJ981L23.3 putative zinc finger protein 840|zinc finger protein 135 pseudogene 0 0 1 0 +100533955 SENP3-EIF4A1 SENP3-EIF4A1 readthrough (NMD candidate) 17 ncRNA - - 16 0.00219 1 0 +100533970 P2RX5-TAX1BP3 P2RX5-TAX1BP3 readthrough (NMD candidate) 17 ncRNA - - 3 0.0004106 1 0 +100533975 SLMO2-ATP5E SLMO2-ATP5E readthrough 20 ncRNA - - 1 0.0001369 1 0 +100533990 APOC4-APOC2 APOC4-APOC2 readthrough (NMD candidate) 19 ncRNA - - 1 0.0001369 1 0 +100533997 MAGEA10-MAGEA5 MAGEA10-MAGEA5 readthrough X protein-coding CT1.5 melanoma-associated antigen 5|MAGE-5 antigen|cancer/testis antigen 1.5 1 0.0001369 1 0 +100534592 URGCP-MRPS24 URGCP-MRPS24 readthrough 7 protein-coding - uncharacterized protein LOC100534592 1 0.0001369 1 0 +100534593 STX16-NPEPL1 STX16-NPEPL1 readthrough (NMD candidate) 20 ncRNA - STX16-NPEPL1 readthrough (non-protein coding) 5 0.0006844 1 0 +100534599 ISY1-RAB43 ISY1-RAB43 readthrough 3 protein-coding - ISY1-RAB43 protein 11 0.001506 1 0 +100616120 MIR4695 microRNA 4695 1 ncRNA - hsa-mir-4695 1 0.0001369 1 0 +100616122 MIR4523 microRNA 4523 17 ncRNA - hsa-mir-4523 0 0 1 0 +100616131 MIR3689D1 microRNA 3689d-1 9 ncRNA - hsa-mir-3689d-1 1 0.0001369 1 0 +100616144 MIR548AN microRNA 548an X ncRNA - hsa-mir-548an 2 0.0002737 1 0 +100616184 MIR4477A microRNA 4477a 9 ncRNA - hsa-mir-4477a 19 0.002601 1 0 +100616185 MIR371B microRNA 371b 19 ncRNA - hsa-mir-371b 5 0.0006844 1 0 +100616194 MIR4477B microRNA 4477b 9 ncRNA - hsa-mir-4477b 2 0.0002737 1 0 +100616252 MIR548AJ2 microRNA 548aj-2 X ncRNA - hsa-mir-548aj-2 1 0.0001369 1 0 +100616282 MIR4738 microRNA 4738 17 ncRNA - hsa-mir-4738 1 0.0001369 1 0 +100616302 MIR548X2 microRNA 548x-2 13 ncRNA - hsa-mir-548x-2 1 0.0001369 1 0 +100616313 MIR4749 microRNA 4749 19 ncRNA mir-4749 hsa-mir-4749 1 0.0001369 1 0 +100616318 MIR4664 microRNA 4664 8 ncRNA - hsa-mir-4664 1 0.0001369 1 0 +100616333 MIR3689C microRNA 3689c 9 ncRNA - hsa-mir-3689c 1 0.0001369 1 0 +100616344 MIR3689D2 microRNA 3689d-2 9 ncRNA - hsa-mir-3689d-2 1 0.0001369 1 0 +100616381 MIR4456 microRNA 4456 5 ncRNA - hsa-mir-4456 1 0.0001369 1 0 +100616385 MIR4732 microRNA 4732 17 ncRNA mir-4732 hsa-mir-4732 1 0.0001369 1 0 +100616668 TPTE2P5 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 5 13 pseudo - TPTE2 pseudogene 8 0.001095 1 0 +100628307 DIO2-AS1 DIO2 antisense RNA 1 14 ncRNA - CTD-2540C19.1|DIO2 antisense RNA 1 (non-protein coding) 0 0 1 0 +100628315 DNM3OS DNM3 opposite strand/antisense RNA 1 ncRNA DNM3-AS1|MIR199A2HG DNM3 antisense RNA 1 (non-protein coding)|DNM3 opposite strand/antisense RNA (non-protein coding)|MIR199A2 host gene (non-protein coding)|dynamin 3, opposite strand 1 0.0001369 1 0 +100631383 FAM47E-STBD1 FAM47E-STBD1 readthrough 4 protein-coding - uncharacterized protein LOC100631383 13 0.001779 1 0 +100652740 PYCARD-AS1 PYCARD antisense RNA 1 16 ncRNA C16orf98|PYCARDOS PYCARD opposite strand 5 0.0006844 1 0 +100652748 TIMM23B translocase of inner mitochondrial membrane 23 homolog B 10 protein-coding TIMM23|bA592B15.7 putative mitochondrial import inner membrane translocase subunit Tim23B 1 0.0001369 1 0 +100652759 PRICKLE2-AS1 PRICKLE2 antisense RNA 1 3 ncRNA - PRICKLE2 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100652781 SNX29P1 sorting nexin 29 pseudogene 1 16 pseudo RUNDC2B|RUNDC2L Putative RUN domain-containing protein 2B|RUN domain containing 2B|RUNDC2-like protein|Sorting nexin 29 protein pseudogene 1 0 0 1 0 +100652824 KIAA2012 KIAA2012 2 protein-coding - uncharacterized protein KIAA2012 1 0.0001369 1 0 +100652846 CACNA1C-AS1 CACNA1C antisense RNA 1 12 ncRNA - CACNA1C antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +100652857 TMCO5B transmembrane and coiled-coil domains 5B (pseudogene) 15 pseudo - transmembrane and coiled-coil domain-containing protein 5B 2 0.0002737 1 0 +100652865 LINC00539 long intergenic non-protein coding RNA 539 13 ncRNA LINC00422 long intergenic non-protein coding RNA 422 2 0.0002737 1 0 +100652929 HP09025 uncharacterized LOC100652929 17 ncRNA - CTD-2116F7.1 3 0.0004106 1 0 +100750225 PCAT1 prostate cancer associated transcript 1 (non-protein coding) 8 ncRNA PCA1|PCAT-1 - 2 0.0002737 1 0 +100820829 MYZAP myocardial zonula adherens protein 15 protein-coding GCOM1|Gup|MYOZAP myocardial zonula adherens protein|GRINL1A complex locus upstream|GRINL1A upstream protein|myocardial intercalated disc protein|myocardium-enriched ZO1-associated protein|myocardium-enriched zonula adherens protein|myocardium-enriched zonula occludens-1-associated protein 3 0.0004106 1 0 +100847020 MIR5582 microRNA 5582 11 ncRNA - hsa-mir-5582 1 0.0001369 1 0 +100847046 MIR5010 microRNA 5010 17 ncRNA mir-5010 hsa-mir-5010 1 0.0001369 1 0 +100847090 MIR5187 microRNA 5187 1 ncRNA mir-5187 hsa-mir-5187 1 0.0001369 1 0 +100852406 POTEH-AS1 POTEH antisense RNA 1 22 ncRNA LA16c-3G11.5 POTEH antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100852410 ZRANB2-AS2 ZRANB2 antisense RNA 2 (head to head) 1 ncRNA - ZRANB2 antisense RNA 2 (non-protein coding) 0 0 1 0 +100859921 LINC00536 long intergenic non-protein coding RNA 536 8 ncRNA - - 0 0 1 0 +100861402 CERS6-AS1 CERS6 antisense RNA 1 2 ncRNA - - 1 0.0001369 1 0 +100861412 FSBP fibrinogen silencer binding protein 8 protein-coding - fibrinogen silencer-binding protein 4 0.0005475 1 0 +100861437 NARR nine-amino acid residue-repeats 17 protein-coding - ras-related protein Rab-34, isoform NARR 1 0.0001369 1 0 +100861468 LINC00492 long intergenic non-protein coding RNA 492 5 ncRNA - CTD-2340E1.1 1 0.0001369 1 0 +100861519 GDNF-AS1 GDNF antisense RNA 1 (head to head) 5 protein-coding GDNFOS GDNF antisense RNA 1 (head to head)|GDNF opposite strand 0 0 1 0 +100861522 LINC00489 long intergenic non-protein coding RNA 489 20 ncRNA - - 1 0.0001369 1 0 +100861530 UFL1-AS1 UFL1 antisense RNA 1 6 ncRNA - UFL1 antisense RNA 1 (non-protein coding) 0 0 1 0 +100861548 PINK1-AS PINK1 antisense RNA 1 ncRNA NAPINK1|PINK1-AS1|PINK1AS PINK1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100861550 PDX1-AS1 PDX1 antisense RNA 1 13 ncRNA HI-LNC71|PLUTO PDX1 antisense RNA 1 (non-protein coding) 0 0 1 0 +100861552 LINC00558 long intergenic non-protein coding RNA 558 13 ncRNA - - 2 0.0002737 1 0 +100861573 LINC00572 long intergenic non-protein coding RNA 572 13 ncRNA - - 0 0 1 0 +100862680 LINC00507 long intergenic non-protein coding RNA 507 12 ncRNA - - 0 0 1 0 +100862728 UPK1A-AS1 UPK1A antisense RNA 1 19 ncRNA - UPK1A antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873165 SRGAP2-AS1 SRGAP2 antisense RNA 1 1 ncRNA - SRGAP2 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100873277 RNA5SP22 RNA, 5S ribosomal pseudogene 22 1 pseudo RN5S22 RNA, 5S ribosomal 22 2 0.0002737 1 0 +100873336 RNA5-8SP6 RNA, 5.8S ribosomal pseudogene 6 Y pseudo RN5-8S6 RNA, 5.8S ribosomal 6 41 0.005612 1 0 +100873410 RNA5SP143 RNA, 5S ribosomal pseudogene 143 3 pseudo RN5S143 RNA, 5S ribosomal 143 0 0 1 0 +100873536 RNA5SP283 RNA, 5S ribosomal pseudogene 283 9 pseudo RN5S283 RNA, 5S ribosomal 283 4 0.0005475 1 0 +100873537 RNA5SP284 RNA, 5S ribosomal pseudogene 284 9 pseudo RN5S284 RNA, 5S ribosomal 284 1 0.0001369 1 0 +100873571 RNA5-8SP2 RNA, 5.8S ribosomal pseudogene 2 16 pseudo RN5-8S2 RNA, 5.8S ribosomal 2 3 0.0004106 1 0 +100873576 RNA5SP301 RNA, 5S ribosomal pseudogene 301 10 pseudo RN5S301 RNA, 5S ribosomal 301 1 0.0001369 1 0 +100873645 RNA5SP392 RNA, 5S ribosomal pseudogene 392 15 pseudo RN5S392 RNA, 5S ribosomal 392 3 0.0004106 1 0 +100873760 RNU6-46P RNA, U6 small nuclear 46, pseudogene 11 pseudo RNU6-46 - 1 0.0001369 1 0 +100873788 SNX18P27 sorting nexin 18 pseudogene 27 8 pseudo - - 1 0.0001369 1 0 +100873793 PHF2P2 PHD finger protein 2 pseudogene 2 13 pseudo - - 1 0.0001369 1 0 +100873849 RN7SKP5 RNA, 7SK small nuclear pseudogene 5 13 pseudo - - 1 0.0001369 1 0 +100873856 SNORD116-30 small nucleolar RNA, C/D box 116-30 15 snoRNA HBII-85-30 - 1 0.0001369 1 0 +100873902 GK-AS1 GK antisense RNA 1 X ncRNA - GK antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873919 NDP-AS1 NDP antisense RNA 1 X ncRNA - NDP antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100873928 CASK-AS1 CASK antisense RNA 1 X ncRNA - CASK antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873929 VCAN-AS1 VCAN antisense RNA 1 5 ncRNA - VCAN antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873932 DPYD-AS1 DPYD antisense RNA 1 1 ncRNA - DPYD antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873935 MTOR-AS1 MTOR antisense RNA 1 1 ncRNA - MTOR antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873939 LNX1-AS1 LNX1 antisense RNA 1 4 ncRNA - LNX1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873941 OPA1-AS1 OPA1 antisense RNA 1 3 ncRNA - OPA1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100873946 VAV3-AS1 VAV3 antisense RNA 1 1 ncRNA - VAV3 antisense RNA 1 (non-protein coding) 0 0 1 0 +100873947 LMLN-AS1 LMLN antisense RNA 1 3 ncRNA - LMLN antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100873956 EAF1-AS1 EAF1 antisense RNA 1 3 ncRNA - EAF1 antisense RNA 1 (non-protein coding) 0 0 1 0 +100873965 MED4-AS1 MED4 antisense RNA 1 13 ncRNA MED4-AS MED4 antisense RNA (non-protein coding)|MED4 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873975 CNTN4-AS1 CNTN4 antisense RNA 1 3 ncRNA - CNTN4 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873976 CNTN4-AS2 CNTN4 antisense RNA 2 3 ncRNA - CNTN4 antisense RNA 2 (non-protein coding) 1 0.0001369 1 0 +100873979 RBMS3-AS3 RBMS3 antisense RNA 3 3 ncRNA - RBMS3 antisense RNA 3 (non-protein coding) 1 0.0001369 1 0 +100873981 ANO1-AS1 ANO1 antisense RNA 1 11 ncRNA - ANO1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100873989 GRM5-AS1 GRM5 antisense RNA 1 11 ncRNA - GRM5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874014 NAV2-AS2 NAV2 antisense RNA 2 11 ncRNA - NAV2 antisense RNA 2 (non-protein coding) 1 0.0001369 1 0 +100874034 UBXN7-AS1 UBXN7 antisense RNA 1 3 ncRNA - UBXN7 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874036 PLCH1-AS2 PLCH1 antisense RNA 2 3 ncRNA - PLCH1 antisense RNA 2 (non-protein coding) 1 0.0001369 1 0 +100874044 HHATL-AS1 HHATL antisense RNA 1 3 ncRNA - HHATL antisense RNA 1 (non-protein coding) 0 0 1 0 +100874047 LINC00499 long intergenic non-protein coding RNA 499 4 ncRNA - - 1 0.0001369 1 0 +100874048 DGUOK-AS1 DGUOK antisense RNA 1 2 ncRNA - DGUOK antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874049 LINC00505 long intergenic non-protein coding RNA 505 1 ncRNA - - 1 0.0001369 1 0 +100874052 LINC00534 long intergenic non-protein coding RNA 534 8 ncRNA - - 0 0 1 0 +100874055 LINC00570 long intergenic non-protein coding RNA 570 2 ncRNA ncRNA-a5 noncoding RNA-activating 5 3 0.0004106 1 0 +100874057 LINC00283 long intergenic non-protein coding RNA 283 13 ncRNA NCRNA00283 - 16 0.00219 1 0 +100874058 COX10-AS1 COX10 antisense RNA 1 17 ncRNA COX10-AS|COX10AS COX10 antisense RNA (non-protein coding)|COX10 antisense RNA 1 (non-protein coding) 39 0.005338 1 0 +100874068 GRTP1-AS1 GRTP1 antisense RNA 1 13 ncRNA - GRTP1 antisense RNA 1 (non-protein coding) 0 0 1 0 +100874092 UBE2E1-AS1 UBE2E1 antisense RNA 1 3 ncRNA - UBE2E1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100874094 ZNF197-AS1 ZNF197 antisense RNA 1 3 ncRNA - ZNF197 antisense RNA 1 (non-protein coding) 0 0 1 0 +100874100 STEAP2-AS1 STEAP2 antisense RNA 1 7 ncRNA - STEAP2 antisense RNA 1 (non-protein coding) 38 0.005201 1 0 +100874103 SRGAP3-AS1 SRGAP3 antisense RNA 1 3 ncRNA - SRGAP3 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874107 MTUS2-AS1 MTUS2 antisense RNA 1 13 ncRNA - MTUS2 antisense RNA 1 (non-protein coding)|hCG2020170 2 0.0002737 1 0 +100874117 EGFLAM-AS1 EGFLAM antisense RNA 1 5 ncRNA - EGFLAM antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874122 FRMPD3-AS1 FRMPD3 antisense RNA 1 X ncRNA - FRMPD3 antisense RNA 1 (non-protein coding) 0 0 1 0 +100874137 LINC00351 long intergenic non-protein coding RNA 351 13 ncRNA - - 0 0 1 0 +100874150 LINC00379 long intergenic non-protein coding RNA 379 13 ncRNA - - 0 0 1 0 +100874151 LINC00381 long intergenic non-protein coding RNA 381 13 ncRNA - hCG1820717 3 0.0004106 1 0 +100874156 LINC00393 long intergenic non-protein coding RNA 393 13 ncRNA - - 0 0 1 0 +100874164 LINC00417 long intergenic non-protein coding RNA 417 13 ncRNA - - 2 0.0002737 1 0 +100874167 LINC00423 long intergenic non-protein coding RNA 423 13 ncRNA - - 1 0.0001369 1 0 +100874174 LINC00444 long intergenic non-protein coding RNA 444 13 ncRNA - - 0 0 1 0 +100874180 LINC00459 long intergenic non-protein coding RNA 459 13 ncRNA - - 1 0.0001369 1 0 +100874184 LINC00502 long intergenic non-protein coding RNA 502 10 ncRNA - - 1 0.0001369 1 0 +100874186 PLCB2-AS1 PLCB2 antisense RNA 1 15 ncRNA - PLCB2 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874187 LINC00559 long intergenic non-protein coding RNA 559 13 ncRNA - - 0 0 1 0 +100874190 SAMSN1-AS1 SAMSN1 antisense RNA 1 21 ncRNA - SAMSN1 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874197 EFCAB6-AS1 EFCAB6 antisense RNA 1 22 ncRNA - CITF22-123F2.1|EFCAB6 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874212 MYCBP2-AS1 MYCBP2 antisense RNA 1 13 ncRNA - MYCBP2 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +100874214 TM4SF19-AS1 TM4SF19 antisense RNA 1 3 ncRNA - TM4SF19 antisense RNA 1 (non-protein coding) 3 0.0004106 1 0 +100874219 TMEM212-AS1 TMEM212 antisense RNA 1 3 ncRNA - TMEM212 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874222 RNF219-AS1 RNF219 antisense RNA 1 13 ncRNA POU4F1-AS1 POU4F1 antisense RNA 1 (non-protein coding) 11 0.001506 1 0 +100874232 C1QTNF9-AS1 C1QTNF9 antisense RNA 1 13 ncRNA - C1QTNF9 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874241 STARD13-AS STARD13 antisense RNA 13 ncRNA STARD13-AS2 STARD13 antisense RNA 2 (non-protein coding) 1 0.0001369 1 0 +100874243 PRICKLE2-AS3 PRICKLE2 antisense RNA 3 3 ncRNA - PRICKLE2 antisense RNA 3 (non-protein coding) 1 0.0001369 1 0 +100874249 DENND5B-AS1 DENND5B antisense RNA 1 12 ncRNA - DENND5B antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100874255 RNASEH2B-AS1 RNASEH2B antisense RNA 1 13 ncRNA - RNASEH2B antisense RNA 1 (non-protein coding) 0 0 1 0 +100874261 LINC00854 long intergenic non-protein coding RNA 854 17 ncRNA TMEM106A-AS1 TMEM106A antisense RNA 1 (non-protein coding)|TMEM106A antisense RNA 1 (tail to tail) 24 0.003285 1 0 +100874313 AGBL4-IT1 AGBL4 intronic transcript 1 1 ncRNA - AGBL4 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100874323 HOXA10-AS HOXA10 antisense RNA 7 ncRNA HOXA-AS4 HOXA cluster antisense RNA 4 (non-protein coding) 1 0.0001369 1 0 +100874339 ZNRF3-IT1 ZNRF3 intronic transcript 1 22 ncRNA - ZNRF3 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100874343 HS1BP3-IT1 HS1BP3 intronic transcript 1 2 ncRNA - HS1BP3 intronic transcript 1 (non-protein coding) 0 0 1 0 +100874353 RPS6KA2-IT1 RPS6KA2 intronic transcript 1 6 ncRNA - RPS6KA2 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100874365 HOXC-AS3 HOXC cluster antisense RNA 3 12 ncRNA - HOXC cluster antisense RNA 3 (non-protein coding) 2 0.0002737 1 0 +100874368 CACNA1C-IT1 CACNA1C intronic transcript 1 12 ncRNA - CACNA1C intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100874373 STARD13-IT1 STARD13 intronic transcript 1 13 ncRNA - STARD13 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +100874381 NPIPP1 nuclear pore complex interacting protein pseudogene 1 16 pseudo - - 3 0.0004106 1 0 +100874392 ANKRD20A12P ankyrin repeat domain 20 family member A12, pseudogene 4 pseudo - ankyrin repeat domain 20 family, member A pseudogene 15 0.002053 1 0 +100885778 NALCN-AS1 NALCN antisense RNA 1 13 ncRNA - NALCN antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +100885781 LINC00348 long intergenic non-protein coding RNA 348 13 ncRNA - - 0 0 1 0 +100885789 IFNG-AS1 IFNG antisense RNA 1 12 ncRNA GS1-410F4.2|NEST|Tmevpg1 IFNG antisense RNA 1 (non-protein coding)|LincR-Ifng-3'AS|Theiler's murine encephalomyelitis virus persistence candidate gene 1 6 0.0008212 1 0 +100885850 PTGES3L-AARSD1 PTGES3L-AARSD1 readthrough 17 protein-coding - PTGES3L-AARSD1 protein 19 0.002601 1 0 +100887750 MRPS31P5 mitochondrial ribosomal protein S31 pseudogene 5 13 pseudo MRPS31P3 mitochondrial ribosomal protein S31 pseudogene 3 8 0.001095 1 0 +100887754 LINC00359 long intergenic non-protein coding RNA 359 13 ncRNA - - 2 0.0002737 1 0 +100996279 LINC00269 long intergenic non-protein coding RNA 269 X ncRNA CXorf62|NCRNA00269 - 1 0.0001369 1 0 +100996295 DNAH17-AS1 DNAH17 antisense RNA 1 17 ncRNA - - 1 0.0001369 1 0 +100996307 LIPE-AS1 LIPE antisense RNA 1 19 ncRNA - CTB-50E14.6 19 0.002601 1 0 +100996331 POTEB POTE ankyrin domain family member B 15 protein-coding A26B1|CT104.5|POTE-15|POTE15 POTE ankyrin domain family member B|ANKRD26-like family B, member 1|POTE ankyrin domain family member B-like|cancer/testis antigen family 104, member 5|prostate, ovary, testis-expressed protein on chromosome 15|protein expressed in prostate, ovary, testis, and placenta 15 2 0.0002737 1 0 +100996465 LCA10 lung carcinoma-associated 10 X ncRNA LCAP - 4 0.0005475 1 0 +100996541 FAM157C family with sequence similarity 157 member C 16 ncRNA - - 35 0.004791 1 0 +100996567 ANTXRLP1 anthrax toxin receptor-like pseudogene 1 10 pseudo - - 2 0.0002737 1 0 +100996665 LINC01533 long intergenic non-protein coding RNA 1533 19 ncRNA CTC-360P9.3 - 0 0 1 0 +100996712 SRGAP2D SLIT-ROBO Rho GTPase activating protein 2D (pseudogene) 1 pseudo - SLIT-ROBO Rho GTPase-activating protein 2-like|SLIT-ROBO Rho GTPase-activating protein 2D 1 0.0001369 1 0 +100996928 C7orf55-LUC7L2 C7orf55-LUC7L2 readthrough 7 protein-coding - C7orf55-LUC7L2 protein 19 0.002601 1 0 +100996930 LINC00621 long intergenic non-protein coding RNA 621 13 ncRNA - - 7 0.0009581 1 0 +100996939 PYURF PIGY upstream reading frame 4 protein-coding PREY protein preY, mitochondrial|PIGY upstream reading frame protein 2 0.0002737 1 0 +100996941 IL21-AS1 IL21 antisense RNA 1 4 ncRNA - IL21 antisense RNA 1 (non-protein coding) 0 0 1 0 +101059918 GOLGA8R golgin A8 family member R 15 protein-coding - golgin subfamily A member 8R 1 0.0001369 1 0 +101059953 NPIPA8 nuclear pore complex interacting protein family member A8 16 protein-coding LCR16a9 nuclear pore complex-interacting protein family member A8|morpheus gene family member 9 9 0.001232 1 0 +101060039 HNRNPA1P57 heterogeneous nuclear ribonucleoprotein A1 pseudogene 57 2 pseudo - - 1 0.0001369 1 0 +101060171 ARMC4P1 armadillo repeat containing 4 pseudogene 1 10 pseudo - - 8 0.001095 1 0 +101060179 LOC101060179 uncharacterized LOC101060179 11 protein-coding - - 1 0.0001369 1 0 +101060200 ZNF891 zinc finger protein 891 12 protein-coding - zinc finger protein 891|hCG1646157 1 0.0001369 1 0 +101060424 LOC101060424 otoancorin-like 16 protein-coding - - 4 0.0005475 1 0 +101060596 LOC101060596 serine/threonine-protein kinase SMG1-like 16 protein-coding - - 3 0.0004106 1 0 +101101773 LINC00609 long intergenic non-protein coding RNA 609 14 ncRNA - - 0 0 1 0 +101101775 TMEM220-AS1 TMEM220 antisense RNA 1 17 ncRNA - CTC-297N7.5 0 0 1 0 +101340251 SNORD124 small nucleolar RNA, C/D box 124 17 snoRNA - - 0 0 1 0 +101410534 DLGAP1-AS4 DLGAP1 antisense RNA 4 18 ncRNA - DLGAP1 antisense RNA 4 (non-protein coding) 1 0.0001369 1 0 +101410535 LAMTOR5-AS1 LAMTOR5 antisense RNA 1 1 ncRNA - - 1 0.0001369 1 0 +101410536 EVX1-AS EVX1 antisense RNA 7 ncRNA EVX1-AS1 EVX1 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +101410542 UCHL1-AS1 UCHL1 antisense RNA 1 (head to head) 4 ncRNA - - 0 0 1 0 +101805492 CASC9 cancer susceptibility candidate 9 (non-protein coding) 8 ncRNA ESCCAL-1|ESSCAL1|LINC00981 ESCC-associated lncRNA|esophageal squamous cell carcinoma associated lncRNA-1|esophageal squamous cell carcinoma sssociated lncRNA-1|long intergenic non-protein coding RNA 981 0 0 1 0 +101926917 ANKRD18CP ankyrin repeat domain 18C, pseudogene 9 pseudo - ankyrin repeat domain-containing protein 18A-like 5 0.0006844 1 0 +101927115 CTB-12O2.1 uncharacterized LOC101927115 5 ncRNA - - 0 0 1 0 +101927233 SEMA6A-AS1 SEMA6A antisense RNA 1 5 ncRNA CTB-118N6.3 - 2 0.0002737 1 0 +101927546 ANO7L1 anoctamin 7 like 1 1 protein-coding ANO7P1|C1orf224|TMEM16M anoctamin 7 pseudogene 1|anoctamin-4-like|transmembrane protein 16M 2 0.0002737 1 0 +101928376 IL12A-AS1 IL12A antisense RNA 1 3 ncRNA - CTD-2049J23.2 10 0.001369 1 0 +101928630 CTC-436P18.1 uncharacterized LOC101928630 5 ncRNA - - 0 0 1 0 +101928638 PRR31 proline rich 31 9 protein-coding C9orf141 putative uncharacterized protein C9orf141-like 3 0.0004106 1 0 +101928649 CTC-338M12.4 uncharacterized LOC101928649 5 ncRNA - - 9 0.001232 1 0 +101928999 IQCF5-AS1 IQCF5 antisense RNA 1 3 ncRNA - IQCF5 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +101929093 LINC01350 long intergenic non-protein coding RNA 1350 1 ncRNA GS1-204I12.1 - 0 0 1 0 +101929152 P3H2-AS1 P3H2 antisense RNA 1 3 ncRNA LEPREL1-AS1 LEPREL1 antisense RNA 1 (non-protein coding) 5 0.0006844 1 0 +101929176 CTD-2297D10.2 uncharacterized LOC101929176 5 ncRNA - - 0 0 1 0 +101929198 ATP13A4-AS1 ATP13A4 antisense RNA 1 3 ncRNA - ATP13A4 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +101929212 SMIM2-AS1 SMIM2 antisense RNA 1 13 ncRNA C13orf44-AS1|C3orf81-AS1 SMIM2 antisense RNA 1 (non-protein coding) 0 0 1 0 +101929222 DISC1FP1 DISC1 fusion partner 1 (non-protein coding) 11 ncRNA Boymaw DISC1/FP1 fusion 1 0.0001369 1 0 +101929423 MEF2C-AS1 MEF2C antisense RNA 1 5 ncRNA - CTC-454M9.1 4 0.0005475 1 0 +101929637 NTM-AS1 NTM antisense RNA 1 11 ncRNA C11orf39 - 1 0.0001369 1 0 +101978719 LINC00970 long intergenic non-protein coding RNA 970 1 ncRNA - - 2 0.0002737 1 0 +102464831 MIR6080 microRNA 6080 17 ncRNA hsa-mir-6080 microRNA mir-6080 47 0.006433 1 0 +102577425 ARHGAP23P1 Rho GTPase activating protein 23 pseudogene 1 16 pseudo - - 1 0.0001369 1 0 +102723489 LINC00205 long intergenic non-protein coding RNA 205 21 ncRNA C21orf86|NCRNA00205 - 4 0.0005475 1 0 +102724167 PABPC5-AS1 PABPC5 antisense RNA 1 X ncRNA CXorf46 PABPC5 antisense RNA 1 (non-protein coding) 2 0.0002737 1 0 +102724307 CYP17A1-AS1 CYP17A1 antisense RNA 1 10 ncRNA CYP17A1OS|bA753C18.3 CYP17A1 antisense RNA 1 (non-protein coding)|cytochrome P450, family 17, subfamily A, polypeptide 1 opposite strand 1 0.0001369 1 0 +102724339 CTB-30L5.1 uncharacterized CTB-30L5.1 7 ncRNA - CTB-111H14.1 0 0 1 0 +102724473 GAGE10 G antigen 10 X protein-coding GAGE-10 G antigen 10 10 0.001369 1 0 +102724536 PRR33 proline rich 33 11 protein-coding C11orf89 - 2 0.0002737 1 0 +102725045 NOVA1-AS1 NOVA1 antisense RNA 1 (head to head) 14 ncRNA C14orf22 NOVA1 antisense RNA 1 (non-protein coding) 0 0 1 0 +102902672 LINC00843 long intergenic non-protein coding RNA 843 10 ncRNA - - 1 0.0001369 1 0 +103164619 PCAT2 prostate cancer associated transcript 2 (non-protein coding) 8 ncRNA CARLo-4|PCA2|TCONS_00015167 cancer-associated region long noncoding RNA 4 0 0 1 0 +103625684 RNU6-2 RNA, U6 small nuclear 2 19 snRNA U6-2 - 0 0 1 0 +104169670 TMEM5-AS1 TMEM5 antisense RNA 1 12 ncRNA - - 1 0.0001369 1 0 +104169671 LINC01036 long intergenic non-protein coding RNA 1036 1 ncRNA - - 1 0.0001369 1 0 +104326057 GACAT1 gastric cancer associated transcript 1 (non-protein coding) 2 ncRNA LINC00876 long intergenic non-protein coding RNA 876 0 0 1 0 +104355136 LINC01033 long intergenic non-protein coding RNA 1033 5 ncRNA - - 1 0.0001369 1 0 +104355296 SCEL-AS1 SCEL antisense RNA 1 13 ncRNA - SCEL antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +104355426 LENG8-AS1 LENG8 antisense RNA 1 19 ncRNA - LENG8 antisense RNA 1 (non-protein coding) 0 0 1 0 +104413891 SAPCD1-AS1 SAPCD1 antisense RNA 1 6 ncRNA C6orf26-AS1 SAPCD1 antisense RNA 1 (non-protein coding)|XXbac-BPG32J3.18 6 0.0008212 1 0 +104472715 SNHG14 small nucleolar RNA host gene 14 15 ncRNA 115HG|LNCAT|NCRNA00214|UBE3A-AS|UBE3A-AS1|UBE3AATS UBE3A antisense RNA 1 (non-protein coding)|small nucleolar RNA host gene 14 (non-protein coding) 502 0.06871 1 0 +104533120 TRIM31-AS1 TRIM31 antisense RNA 1 6 ncRNA - TRIM31 antisense RNA 1 (non-protein coding)|XXbac-BPG250I8.13 1 0.0001369 1 0 +105371564 SMCR2 Smith-Magenis syndrome chromosome region, candidate 2 (non-protein coding) 17 ncRNA TCONS_00025215 - 15 0.002053 1 0 +105371653 GS1-204I12.4 uncharacterized GS1-204I12.4 1 ncRNA - - 0 0 1 0 +105373010 LL22NC03-86D4.1 uncharacterized LL22NC03-86D4.1 22 ncRNA - - 5 0.0006844 1 0 +105375013 HCG20 HLA complex group 20 (non-protein coding) 6 ncRNA NCRNA00149 - 0 0 1 0 +105375283 GS1-278J22.2 uncharacterized GS1-278J22.2 7 ncRNA - - 0 0 1 0 +105375380 LINC00972 long intergenic non-protein coding RNA 972 7 ncRNA - - 0 0 1 0 +105378215 CTB-99A3.1 uncharacterized CTB-99A3.1 5 ncRNA - - 0 0 1 0 +105379181 CTB-49A3.2 uncharacterized CTB-49A3.2 5 ncRNA - - 3 0.0004106 1 0 +105379191 CTB-1I21.1 uncharacterized CTB-1I21.1 5 ncRNA - - 0 0 1 0 +105601840 WDR7-OT1 WDR7 overlapping transcript 1 18 ncRNA WDR7-UA1|WDR7-UT1 WDR7 3'UTR-associated RNA 1|WDR7 overlapping transcript 1 (non-protein coding) 1 0.0001369 1 0 +106144578 LINC00604 long intergenic non-protein coding RNA 604 5 ncRNA - - 1 0.0001369 1 0 +106144602 LINC01076 long intergenic non-protein coding RNA 1076 13 other - - 1 0.0001369 1 0 +106478954 EHMT2-AS1 EHMT2 antisense RNA 1 6 ncRNA - EHMT2 antisense RNA 1 (non-protein coding) 1 0.0001369 1 0 +106478956 MDC1-AS1 MDC1 antisense RNA 1 6 ncRNA MDC1-AS MDC1 antisense RNA 1 (non-protein coding)|XXbac-BPG27H4.7 1 0.0001369 1 0 +106478975 SMYD3-IT1 SMYD3 intronic transcript 1 1 ncRNA - SMYD3 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +106478998 RNA5SP174 RNA, 5S ribosomal pseudogene 174 4 pseudo RN5S174 RNA, 5S ribosomal 174 1 0.0001369 1 0 +106479025 LRRC37A14P leucine rich repeat containing 37 member A14, pseudogene 22 pseudo - - 1 0.0001369 1 0 +106479038 ALG1L13P asparagine-linked glycosylation 1-like 13, pseudogene 8 pseudo - - 29 0.003969 1 0 +106479157 RN7SKP141 RNA, 7SK small nuclear pseudogene 141 2 pseudo - - 0 0 1 0 +106479202 RN7SKP240 RNA, 7SK small nuclear pseudogene 240 6 pseudo - - 1 0.0001369 1 0 +106479206 RN7SKP250 RNA, 7SK small nuclear pseudogene 250 12 pseudo - - 1 0.0001369 1 0 +106479255 RN7SL87P RNA, 7SL, cytoplasmic 87, pseudogene 5 pseudo - - 0 0 1 0 +106479339 RN7SL319P RNA, 7SL, cytoplasmic 319, pseudogene 15 pseudo - - 3 0.0004106 1 0 +106479345 RN7SL332P RNA, 7SL, cytoplasmic 332, pseudogene 6 pseudo - - 1 0.0001369 1 0 +106479400 RN7SL484P RNA, 7SL, cytoplasmic 484, pseudogene 15 pseudo - - 1 0.0001369 1 0 +106480134 RNU6-1300P RNA, U6 small nuclear 1300, pseudogene 8 pseudo - - 0 0 1 0 +106480380 RN7SL680P RNA, 7SL, cytoplasmic 680, pseudogene 20 pseudo - - 0 0 1 0 +106480436 RNA5SP70 RNA, 5S ribosomal pseudogene 70 1 pseudo RN5S70 RNA, 5S ribosomal 70 1 0.0001369 1 0 +106480440 LINC00500 long intergenic non-protein coding RNA 500 4 ncRNA - - 0 0 1 0 +106480741 ZNF346-IT1 ZNF346 intronic transcript 1 5 ncRNA - ZNF346 intronic transcript 1 (non-protein coding) 1 0.0001369 1 0 +106480770 RNA5SP498 RNA, 5S ribosomal pseudogene 498 X|Y pseudo RN5S498 RNA, 5S ribosomal 498 1 0.0001369 1 0 +106480897 RN7SKP207 RNA, 7SK small nuclear pseudogene 207 5 pseudo - - 1 0.0001369 1 0 +106481627 RNU1-120P RNA, U1 small nuclear 120, pseudogene 1 pseudo - - 0 0 1 0 +106635537 RN7SL860P RNA, 7SL, cytoplasmic 860, pseudogene 19 pseudo - - 2 0.0002737 1 0 +106660612 LINC00680 long intergenic non-protein coding RNA 680 6 ncRNA - - 1 0.0001369 1 0 +107133486 CDK2AP2P2 cyclin dependent kinase 2 associated protein 2 pseudogene 2 9 pseudo - - 1 0.0001369 1 0 +107133516 SMURF2P1 SMAD specific E3 ubiquitin protein ligase 2 pseudogene 1 17 pseudo - - 15 0.002053 1 0 +107161144 DTX2P1 DTX2 pseudogene 1 7 pseudo - - 1 0.0001369 1 0 +107403068 CYP4F31P cytochrome P450 family 4 subfamily F member 31, pseudogene 2 pseudo - CYP4F-se10[6:7:8]|cytochrome P450, family 4, subfamily F, polypeptide 31, pseudogene 1 0.0001369 1 0 diff --git a/scripts/5.differential-expression.py b/scripts/5.differential-expression.py new file mode 100644 index 0000000..ee7be9b --- /dev/null +++ b/scripts/5.differential-expression.py @@ -0,0 +1,156 @@ + +# coding: utf-8 + +# ## Compute cancer-type-specific differential expression scores for each gene +# +# Compares tumor to normal tissue in the same patient. + +# In[1]: + +import os + +import pandas +import numpy +from scipy.stats import ttest_1samp + + +# In[2]: + +path = os.path.join('data', 'complete', 'expression-matrix.tsv.bz2') +expr_df = pandas.read_table(path, index_col=0) + + +# In[3]: + +path = os.path.join('data', 'complete', 'samples.tsv') +sample_df = ( + pandas.read_table(path) + # Filter for samples with expression + .query("sample_id in @expr_df.index") +) +patient_df = sample_df[['patient_id', 'acronym']].drop_duplicates() +sample_df.head(2) + + +# In[4]: + +type_df = sample_df.pivot('patient_id', 'sample_type', values='sample_id') +type_df = type_df[['Primary Tumor', 'Solid Tissue Normal']] +# Filter for paired samples +type_df = type_df[type_df.isnull().sum(axis='columns') == 0] +type_df = type_df.reset_index().merge(patient_df) +type_df.head(2) + + +# In[5]: + +def get_diffex(subtype_df, expr_df): + """ + For each gene, compute differential expression between paired tumor and normal tissue. + """ + tumor_df = expr_df.loc[list(subtype_df['Primary Tumor']), :] + normal_df = expr_df.loc[list(subtype_df['Solid Tissue Normal']), :] + for df in tumor_df, normal_df: + df.index = subtype_df.index + + diffex_df = tumor_df - normal_df + ttest = ttest_1samp(diffex_df, popmean=0, axis=0) + + df = pandas.DataFrame.from_items([ + ('entrez_gene_id', diffex_df.columns), + ('patients', len(diffex_df)), + ('tumor_mean', tumor_df.mean()), + ('normal_mean', normal_df.mean()), + ('mean_diff', diffex_df.mean()), + ('t_stat', ttest.statistic), + ('mlog10_p_value', -numpy.log10(ttest.pvalue)), + ]) + return df + + +# In[6]: + +diffex_df = (type_df + .groupby('acronym') + .apply(get_diffex, expr_df=expr_df) + .reset_index('acronym') + .query("patients >= 5") +) + +diffex_df.entrez_gene_id = diffex_df.entrez_gene_id.astype(int) + + +# In[7]: + +# Add gene symbols +path = os.path.join('data', 'expression-genes.tsv') +gene_df = pandas.read_table(path, low_memory=False) +gene_df = gene_df[['entrez_gene_id', 'symbol']] +len(gene_df) + + +# In[8]: + +diffex_df = diffex_df.merge(gene_df, how='left') +diffex_df.tail() + + +# In[9]: + +path = os.path.join('data', 'complete', 'differential-expression.tsv.bz2') +diffex_df.to_csv(path, sep='\t', index=False, compression='bz2', float_format='%.4g') + + +# In[10]: + +# Patients with paired samples per disease +path = os.path.join('download', 'diseases.tsv') +acronym_df = pandas.read_table(path) + +(type_df.acronym + .value_counts().rename('patients') + .reset_index().rename(columns={'index': 'acronym'}) + .merge(acronym_df) + .sort_values('patients', ascending=False) +) + + +# # Reduce expression dimensionality with NMF + +# In[11]: + +from sklearn.decomposition import NMF +import matplotlib.pyplot as plt +import seaborn + +get_ipython().magic('matplotlib inline') + + +# In[12]: + +nmf = NMF(n_components=100, random_state=0) +expr_nmf_df = nmf.fit_transform(expr_df) +expr_nmf_df = pandas.DataFrame(expr_nmf_df, index=expr_df.index) +expr_nmf_df.iloc[:5, :5] + + +# In[13]: + +diffex_nmf_df = (type_df + .groupby('acronym') + .apply(get_diffex, expr_df=expr_nmf_df) + .reset_index('acronym') + .rename(columns={'entrez_gene_id': 'component'}) + .query("patients >= 5") +) +diffex_nmf_df.head(2) + + +# In[14]: + +# Acronyms at https://github.com/cognoma/cancer-data/blob/master/download/diseases.tsv +plot_df = diffex_nmf_df.pivot(index='acronym', columns='component', values='t_stat').fillna(0) +grid = seaborn.clustermap(plot_df, metric='correlation', figsize=(9, 6)) +grid.ax_heatmap.tick_params(labelbottom='off') +_ = plt.setp(grid.ax_heatmap.yaxis.get_majorticklabels(), rotation=0) + diff --git a/scripts/6.differential-expression.py b/scripts/6.differential-expression.py new file mode 100644 index 0000000..c0a02c0 --- /dev/null +++ b/scripts/6.differential-expression.py @@ -0,0 +1,99 @@ + +# coding: utf-8 + +# ## Compute cancer-type-specific differential expression scores for each gene +# +# Compares tumor to normal tissue in the same patient. + +# In[1]: + +import os + +import pandas +import numpy +from scipy.stats import ttest_1samp + + +# In[2]: + +path = os.path.join('data', 'complete', 'expression-matrix.tsv.bz2') +expr_df = pandas.read_table(path, index_col=0) + + +# In[3]: + +path = os.path.join('data', 'complete', 'samples.tsv') +sample_df = ( + pandas.read_table(path) + # Filter for samples with expression + .query("sample_id in @expr_df.index") +) +patient_df = sample_df[['patient_id', 'acronym']].drop_duplicates() +sample_df.head(2) + + +# In[4]: + +type_df = sample_df.pivot('patient_id', 'sample_type', values='sample_id') +type_df = type_df[['Primary Tumor', 'Solid Tissue Normal']] +# Filter for paired samples +type_df = type_df[type_df.isnull().sum(axis='columns') == 0] +type_df = type_df.reset_index().merge(patient_df) +type_df.head(2) + + +# In[5]: + +def get_diffex(subtype_df): + """ + For each gene, compute differential expression between paired tumor and normal tissue. + """ + tumor_df = expr_df.loc[list(subtype_df['Primary Tumor']), :] + normal_df = expr_df.loc[list(subtype_df['Solid Tissue Normal']), :] + for df in tumor_df, normal_df: + df.index = subtype_df.index + + diffex_df = tumor_df - normal_df + ttest = ttest_1samp(diffex_df, popmean=0, axis=0) + + df = pandas.DataFrame.from_items([ + ('entrez_gene_id', diffex_df.columns), + ('patients', len(diffex_df)), + ('tumor_mean', tumor_df.mean()), + ('normal_mean', normal_df.mean()), + ('mean_diff', diffex_df.mean()), + ('t_stat', ttest.statistic), + ('mlog10_p_value', -numpy.log10(ttest.pvalue)), + ]) + return df + +diffex_df = (type_df + .groupby('acronym') + .apply(get_diffex) + .reset_index('acronym') + .query("patients >= 5") +) + +diffex_df.entrez_gene_id = diffex_df.entrez_gene_id.astype(int) + + +# In[6]: + +# Add gene symbols +path = os.path.join('data', 'genes.tsv') +gene_df = pandas.read_table(path, low_memory=False) +gene_df = gene_df[['entrez_gene_id', 'symbol']] +len(gene_df) + + +# In[7]: + +diffex_df = diffex_df.merge(gene_df, how='left') +diffex_df.tail() + + +# In[8]: + +path = os.path.join('data', 'complete', 'differential-expression.tsv.bz2') +diffex_df.to_csv(path, sep='\t', index=False, compression='bz2', float_format='%.4g') +